@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #669A39;
  --nav-color: rgba(73, 103, 47, 0.9);
  --background-color: #49672F;
  --text-color: #333333;
  --section-color: rgba(255, 255, 255, 0.7);
  --gotop-color: #F2F5AD;
  --aside-width: 240px;
  --gap-width: 55px;
  --section-padding: 80px 95px;
}
@media screen and (max-width: 1200px) {
  :root {
    --aside-width: 200px;
    --gap-width: 40px;
    --section-padding: 50px 65px;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --section-padding: 30px 20px;
    --gap-width: 30px;
  }
}

html, body {
  scroll-behavior: smooth;
}

body {
  position: relative;
  background: url(../images/bg.png);
  background-color: #49672F;
  background-repeat: repeat;
  background-size: auto;
  font-family: "Noto Sans TC", serif;
  font-weight: 400;
}

.viewport {
  width: 100%;
  height: 100%;
  overflow-y: auto;
}

.viewport-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

::webkit-scrollbar {
  display: none;
}

.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: #fff;
  border: 1px solid transparent;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}

.btn-primary:hover {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  background-color: #fff;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 98;
  width: 100%;
  height: 80px;
  transition: all 0.2s linear;
}
.header .container {
  max-width: 1250px;
  height: 100%;
  margin: 0 auto;
  padding: 0 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .logo {
  display: flex;
  align-items: center;
  gap: 25px;
}
.header .logo a img {
  height: 100%;
  object-fit: contain;
  vertical-align: middle;
}
.header .linking {
  height: 34px;
}
.header .udn {
  height: 34px;
}
.header .tool {
  display: flex;
  align-items: center;
  gap: 25px;
}
.header .tool a {
  width: 30px;
  aspect-ratio: 1;
}
.header .tool a img {
  width: 100%;
  vertical-align: middle;
}
.header--srcoll {
  background-color: var(--primary-color);
}
@media screen and (max-width: 767px) {
  .header {
    height: 70px;
  }
  .header .container {
    padding: 0 20px;
  }
  .header .line, .header .fb {
    display: none;
  }
}
@media screen and (max-width: 414px) {
  .header {
    height: 50px;
  }
  .header .logo {
    gap: 15px;
  }
  .header .linking {
    height: 24px;
  }
  .header .udn {
    height: 24px;
  }
  .header .tool a {
    width: 24px;
  }
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  height: 100dvh;
  background-color: var(--nav-color);
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.25s linear, opacity 0.25s linear;
}
.nav > .container {
  position: relative;
  max-width: 1250px;
  height: 100%;
  padding: 130px 25px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.nav .close {
  display: block;
  position: absolute;
  top: 25px;
  right: 25px;
  width: 30px;
  aspect-ratio: 1;
}
.nav .close img {
  width: 100%;
  vertical-align: middle;
}
.nav .menu {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.nav .menu a {
  padding: 20px 80px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 28px;
  border-radius: 40px;
  border: 1px solid transparent;
}
.nav .menu a:hover {
  border: 1px solid #fff;
}
.nav .social {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}
.nav--show {
  visibility: visible;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .nav > .container {
    padding: 100px 20px;
  }
  .nav .menu {
    gap: 30px;
  }
  .nav .menu a {
    font-size: 24px;
    padding: 15px 50px;
  }
  .nav .close {
    top: 20px;
    right: 20px;
  }
}
@media screen and (max-width: 414px) {
  .nav .menu {
    gap: 20px;
  }
  .nav .menu a {
    font-size: 20px;
    padding: 10px 40px;
  }
  .nav .close {
    top: 11px;
    width: 24px;
  }
}

.kv {
  width: 100%;
  aspect-ratio: 1920/754;
}
.kv img {
  width: 100%;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .kv {
    aspect-ratio: 768/1270;
  }
}

.main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 25px;
}
.main__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  font-family: "Noto Serif TC", serif;
  font-weight: 900;
  margin-bottom: 15px;
}
.main__title span:first-child {
  font-size: 40px;
  display: flex;
  align-items: center;
}
.main__title span:first-child img {
  width: 40px;
  vertical-align: middle;
  margin: 0 10px;
}
.main__title span:last-child {
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .main__title span:first-child {
    font-size: 32px;
  }
  .main__title span:first-child img {
    width: 50px;
  }
  .main__title span:last-child {
    font-size: 20px;
  }
}
@media screen and (max-width: 340px) {
  .main__title span:first-child {
    font-size: 28px;
  }
  .main__title span:first-child img {
    width: 56px;
    margin: 0 5px;
  }
  .main__title span:last-child {
    font-size: 18px;
  }
}

.section {
  position: relative;
  background-color: var(--section-color);
  padding: var(--section-padding);
  color: var(--text-color);
  border-radius: 20px;
  margin-bottom: 30px;
}
.section > .container {
  display: flex;
  gap: var(--gap-width);
}
.section__archor {
  position: absolute;
  top: -90px;
  left: 0;
  visibility: hidden;
}
.section__title {
  position: relative;
  color: var(--text-color);
  font-size: 24px;
  font-weight: 700;
  padding: 0 0 25px 20px;
  border-bottom: 1px solid var(--primary-color);
}
.section__title::before {
  position: absolute;
  top: 7px;
  left: 0;
  content: "";
  width: 8px;
  height: 24px;
  background-color: var(--primary-color);
}
.section__title-no-line {
  border: none;
}
.section__content {
  padding: 25px 0;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-color);
}
.section__content--filter {
  position: relative;
  max-height: 292px;
  overflow-y: hidden;
}
.section__link {
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  color: var(--primary-color);
}
.section__link::before {
  content: "👉";
}
@media screen and (max-width: 767px) {
  .section > .container {
    flex-direction: column;
  }
  .section__title {
    font-size: 18px;
    padding: 0 0 20px 13px;
  }
  .section__title::before {
    top: 6px;
    height: 17px;
  }
  .section__content {
    padding: 20px 0;
  }
}

.primary {
  color: var(--primary-color);
}

.more {
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.more__button {
  display: flex;
  align-items: center;
  gap: 5px;
  outline: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
}
.more__button span {
  color: var(--primary-color);
  font-size: 16px;
}
.more__button img {
  width: 14px;
}
.more--hide {
  display: none;
}

.wrapper {
  flex: 1;
  /* width: calc(100% - var(--aside-width) - var(--gap-width)); */
}
@media screen and (max-width: 767px) {
  .wrapper {
    width: 100%;
  }
}

.cover {
  align-self: start;
  width: var(--aside-width);
  aspect-ratio: 300/426;
}
.cover img {
  width: 100%;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .cover {
    align-self: center;
    width: 100%;
    max-width: 320px;
  }
}

.author {
  align-self: start;
  width: var(--aside-width);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
}
.author img {
  width: 100%;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .author {
    align-self: center;
    width: 100%;
    max-width: 320px;
  }
}

.platform {
  padding: 30px 0 0;
  border-top: 1px solid var(--primary-color);
}
.platform p {
  font-size: 16px;
  color: var(--text-color);
  margin-bottom: 30px;
}
.platform a:not(.btn-primary) {
  color: var(--primary-color);
}

.platform .btn-primary {
  text-decoration: none;
}

.select-group {
  --gap: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
}

.select-group > * {
  width: calc((100% - var(--gap) * 3) / 4);
}
@media screen and (max-width: 1023px) {
  .select-group > * {
    width: calc((100% - var(--gap) * 1) / 2);
  }
}
@media screen and (max-width: 414px) {
  .select-group > * {
    width: 100%;
  }
}

.gotop {
  width: 56px;
  aspect-ratio: 1;
  position: fixed;
  bottom: 20px;
  right: 20px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.2s linear;
  cursor: pointer;
}
.gotop img {
  width: 100%;
  vertical-align: middle;
}
.gotop--show {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 767px) {
  .gotop {
    width: 50px;
    right: 10px;
  }
}

.footer {
  background-color: var(--primary-color);
  color: #fff;
  font-size: 14px;
  text-align: center;
  padding: 12px 15px;
}

.recommand-table thead th {
  text-align: start;
  color: red;
  font-size: 20px;
}
.recommand-table tbody {
  font-size: 16px;
  color: var(--text-color);
}
.recommand-table tbody td:nth-child(odd) {
  width: 60px;
  vertical-align: top;
}/*# sourceMappingURL=index.css.map */