@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Infant:ital,wght@0,300..700;1,300..700&family=Lexend+Exa:wght@100..900&family=Noto+Sans+TC:wght@100..900&family=Noto+Serif+TC:wght@200..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
body {
  padding-bottom: 88px;
  color: #211E2D;
  font-size: 18px;
}

@media screen and (max-width: 1700px) {
  body {
    padding-bottom: 78px;
  }
}

@media screen and (max-width: 991px) {
  body {
    padding-bottom: 55px;
  }
}

@media screen and (max-width: 400px) {
  body {
    padding-bottom: 48px;
  }
}

* {
  font-family: "Lexend Exa", "Noto Sans TC", sans-serif;
  padding: 0;
  margin: 0;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: #211E2D;
}

img {
  max-width: 100%;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

button, input, select, textarea {
  border: 0;
  background-color: transparent;
  outline: none;
  font-size: 18px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type="number"] {
  -moz-appearance: textfield;
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
  -webkit-appearance: none;
}

.container {
  max-width: 1600px;
  padding-left: 40px;
  padding-right: 40px;
}

@media screen and (max-width: 991px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.main {
  padding-top: 100px;
  overflow: hidden;
}

.main.pt-0 {
  padding-top: 0;
}

@media screen and (max-width: 991px) {
  .main {
    padding-top: 64px;
  }
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #FF7500;
  color: #fff;
  padding: 0 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100px;
  z-index: 100;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header.scrolldown {
  height: 66px;
}

.header.scrolldown .header_logo {
  width: 174px;
}

.header_menu {
  position: relative;
  width: 21px;
  height: 21px;
}

.header_menu-wrap {
  width: 100px;
  display: none;
}

.header_menu .bar {
  width: 100%;
  height: 2px;
  background-color: #fff;
  left: 0;
  position: absolute;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header_menu .bar-top {
  top: 2px;
}

.header_menu .bar-middle {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.header_menu .bar-bottom {
  top: calc(100% - 2px);
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.header_menu.active .bar {
  top: 50%;
  left: 50%;
}

.header_menu.active .bar-top, .header_menu.active .bar-middle {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.header_menu.active .bar-bottom {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.header_logo {
  width: 250px;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header_logo .logo-lg {
  display: block;
}

.header_logo .logo-sm {
  display: none;
}

.header_nav_first {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header_nav_first > li {
  margin: 0 5px;
  position: relative;
}

.header_nav_first > li > a {
  font-size: 18px;
  padding: 10px 30px;
  position: relative;
  color: #fff;
  font-size: 18px;
  display: block;
  cursor: pointer;
}

.header_nav_first > li > a::after {
  position: absolute;
  content: "";
  width: calc(100% - 60px);
  height: 1px;
  bottom: 8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}

.header_nav_first > li > a:hover::after {
  opacity: 1;
}

.header_nav_first > li.drop:hover .header_nav_second {
  opacity: 1;
  visibility: visible;
}

.header_nav_second {
  background-color: #FFF1E6;
  padding: 25px 35px;
  position: absolute;
  top: 100%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header_nav_second > li > a {
  padding: 10px 0;
  border-bottom: 1px solid #EAC396;
  white-space: nowrap;
  display: block;
  color: #211E2D;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header_nav_second > li > a:hover {
  color: #FF7500;
}

.header_nav_second > li:last-child > a {
  border: 0;
}

.header_nav .social-link {
  display: none;
  margin-top: 45px;
}

.header_icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 15px;
  width: 250px;
}

.header_icon a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header_icon a svg {
  width: 18px;
  height: 21px;
}

.header_icon a svg path, .header_icon a svg rect {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  fill: #fff;
}

.header_icon a span {
  color: #fff;
  letter-spacing: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header_icon a:hover {
  background-color: #fff;
}

.header_icon a:hover svg path {
  fill: #FF7500;
}

.header_icon a:hover span {
  color: #FF7500;
}

@media screen and (max-width: 1600px) {
  .header_nav_first > li > a {
    padding: 10px 15px;
  }
  .header_nav_first > li > a::after {
    width: calc(100% - 30px);
  }
}

@media screen and (max-width: 1399px) {
  .header {
    padding-left: 20px;
    padding-right: 20px;
  }
  .header_logo, .header_icon {
    width: 150px;
  }
  .header_nav a {
    font-size: 16px;
  }
  .header_nav_first > li > a {
    padding: 10px 5px;
  }
  .header_nav_first > li > a::after {
    width: calc(100% - 10px);
  }
}

@media screen and (max-width: 991px) {
  .header {
    height: 64px;
  }
  .header_menu-wrap {
    display: block;
  }
  .header_logo {
    width: 65px;
  }
  .header_logo .logo-lg {
    display: none;
  }
  .header_logo .logo-sm {
    display: block;
  }
  .header_nav {
    position: fixed;
    width: 100%;
    height: calc(100% - 64px);
    top: 64px;
    background-color: #FFF1E6;
    left: -100vw;
    overflow-y: auto;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .header_nav_first {
    padding: 35px 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .header_nav_first > li {
    width: 100%;
  }
  .header_nav_first > li > a {
    width: 100%;
    position: relative;
    color: #FF7500;
    font-weight: 500;
    padding: 16px 0;
    border-bottom: 1px solid #EAC396;
  }
  .header_nav_first > li:first-child > a {
    border-top: 1px solid #EAC396;
  }
  .header_nav_first > li.drop > a::before, .header_nav_first > li.drop > a::after {
    position: absolute;
    content: "";
    background-color: #FF7500;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 10;
    bottom: inherit;
    left: inherit;
    opacity: 1;
  }
  .header_nav_first > li.drop > a::before {
    width: 2px;
    height: 16px;
    right: 7px;
  }
  .header_nav_first > li.drop > a::after {
    width: 16px;
    height: 2px;
    right: 0;
  }
  .header_nav_first > li.drop.open > a::before {
    opacity: 0;
  }
  .header_nav_first > li.li-about {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .header_nav_first > li.li-product {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .header_nav_first > li.li-news {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .header_nav_first > li.li-event {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .header_nav_first > li.li-cask {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .header_nav_first > li.li-channel {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .header_nav_first > li.li-tour {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .header_nav_second {
    position: static;
    opacity: 1;
    visibility: visible;
    width: 100%;
    padding: 15px 0;
    display: none;
    -webkit-transition: none;
    transition: none;
  }
  .header_nav_second > li > a {
    border: 0;
  }
  .header_nav.active {
    left: 0;
  }
  .header_nav .social-link {
    padding: 0 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header_icon {
    gap: 8px;
    width: 100px;
  }
  .header_icon a {
    width: 30px;
    height: 30px;
  }
  .header_icon a svg {
    width: 14px;
    height: 16px;
  }
  .header_icon a span {
    font-size: 10px;
  }
  .header.scrolldown .header_logo {
    width: 65px;
  }
}

.fixed-bottom {
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 50;
}

.fixed-bottom .btn-top {
  margin-right: 35px;
  margin-left: auto;
  margin-bottom: 10px;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background-color: rgba(255, 117, 0, 0.8);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4px;
  color: #fff;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.fixed-bottom .btn-top img {
  width: 17px;
}

.fixed-bottom .btn-top span {
  display: block;
  font-size: 15px;
  font-family: "Roboto", sans-serif;
  text-align: center;
  font-weight: 700;
  color: #fff;
}

.fixed-bottom .btn-top:hover {
  background-color: #FF7500;
}

.fixed-bottom .ban-slogan {
  width: 100%;
  padding: 12px;
  background-color: #211E2D;
  border-top: 1px solid #FF7500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.fixed-bottom .ban-slogan span {
  font-size: 50px;
  font-weight: 300;
  letter-spacing: 1em;
  color: #FF7500;
}

.fixed-bottom .ban-slogan img {
  width: 52px;
  margin: 0 46px 0 0;
}

@media screen and (max-width: 1700px) {
  .fixed-bottom .ban-slogan span {
    font-size: 44px;
    letter-spacing: 0.7em;
  }
}

@media screen and (max-width: 1700px) {
  .fixed-bottom .ban-slogan span {
    font-size: 36px;
    letter-spacing: 0.4em;
  }
  .fixed-bottom .ban-slogan img {
    margin-right: 13px;
  }
}

@media screen and (max-width: 991px) {
  .fixed-bottom .btn-top {
    margin-right: 20px;
    margin-bottom: 5px;
    width: 44px;
    height: 44px;
    gap: 3px;
  }
  .fixed-bottom .btn-top img {
    width: 12px;
  }
  .fixed-bottom .btn-top span {
    font-size: 10px;
  }
  .fixed-bottom .ban-slogan span {
    font-size: 20px;
    letter-spacing: 0.1em;
  }
  .fixed-bottom .ban-slogan img {
    margin-right: 5px;
    width: 30px;
  }
}

@media screen and (max-width: 400px) {
  .fixed-bottom .ban-slogan span {
    font-size: 16px;
    letter-spacing: 0.1em;
  }
  .fixed-bottom .ban-slogan img {
    margin-right: 0px;
    width: 20px;
  }
}

.btn {
  width: 200px;
  height: 50px;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 18px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn-primary {
  background-color: #FF7500;
  border: 1px solid #FF7500;
  color: #fff;
}

.btn-primary:hover {
  background-color: #fff;
  color: #FF7500;
}

.btn-gray {
  background-color: #211E2D;
  border: 1px solid #211E2D;
  color: #fff;
  opacity: 0.5;
}

.btn-gray:hover {
  background-color: #FF7500;
  border-color: #FF7500;
  opacity: 1;
}

.btn-outline {
  border: 1px solid #FF7500;
  color: #FF7500;
}

.btn-outline:hover {
  background-color: #FF7500;
  color: #fff;
}

.btn-bg-white {
  background-color: #fff;
  border: 1px solid #fff;
  color: #FF7500;
}

.btn-bg-white:hover {
  background-color: #FF7500;
  color: #fff;
}

@media screen and (max-width: 575px) {
  .btn {
    width: 190px;
    height: 48px;
  }
}

.title {
  text-align: center;
  margin-bottom: 70px;
  font-size: 52px;
  font-family: "Noto Serif TC", serif;
  font-weight: normal;
  position: relative;
}

.title::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 2px;
  background-color: #FF7500;
  top: -18px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.title-inner {
  color: #FF7500;
  text-align: center;
  font-size: 45px;
  font-family: "Noto Serif TC", serif;
  font-weight: 500;
}

.title-inner.title-dark {
  color: #211E2D;
}

@media screen and (max-width: 991px) {
  .title {
    font-size: 38px;
    margin-bottom: 35px;
  }
  .title::before {
    top: -10px;
  }
}

.subtitle {
  text-align: center;
  font-size: 18px;
  font-weight: normal;
}

.inner-title {
  margin-bottom: 40px;
}

.inner-title .title-inner {
  margin-bottom: 0;
}

.inner-title .subtitle {
  margin: 0;
  margin-top: 10px;
}

.swiper-slide {
  height: auto;
}

.swiper-arrow {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background-color: #211E2D;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.swiper-arrow img {
  width: 12px;
}

.swiper-arrow:hover {
  background-color: #FF7500;
}

@media screen and (max-width: 575px) {
  .swiper-arrow {
    width: 40px;
    height: 40px;
  }
  .swiper-arrow img {
    width: 7px;
  }
}

.footer {
  padding: 55px 0 115px;
  background-color: #FF7500;
  position: relative;
}

.footer_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 237px;
}

.footer_logo {
  width: 160px;
  margin-bottom: 45px;
}

.footer_info li {
  font-size: 16px;
  margin-bottom: 15px;
  color: #fff;
}

.footer_info li a {
  color: #fff;
}

.footer_right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 45px;
  gap: 70px;
}

.footer_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 70px;
}

.footer_nav a {
  color: #fff;
}

.footer_nav_title {
  margin-bottom: 20px;
}

.footer_nav_title a {
  font-size: 20px;
  font-weight: 500;
  display: block;
}

.footer_nav_item {
  margin-bottom: 15px;
}

.footer_nav_item a {
  color: #FFE9D8;
}

.footer_copyright {
  font-size: 12px;
  margin-bottom: 8px;
  color: #fff;
}

.footer_designer {
  font-size: 10px;
  font-weight: 300;
  margin: 0;
  color: #fff;
  opacity: 0.5;
}

.footer_house {
  position: absolute;
  width: 52.03%;
  right: 0;
  bottom: 0;
}

.footer_house-m {
  display: none;
  width: 100%;
}

@media screen and (max-width: 1500px) {
  .footer_right {
    gap: 30px;
  }
  .footer_nav {
    gap: 30px;
  }
}

@media screen and (max-width: 1199px) {
  .footer {
    padding-top: 55px;
    padding-bottom: 0;
  }
  .footer_logo {
    margin-bottom: 35px;
  }
  .footer_top {
    display: block;
    margin-bottom: 80px;
  }
  .footer_info {
    margin-bottom: 80px;
  }
  .footer_right {
    display: block;
  }
  .footer_nav {
    display: block;
  }
  .footer_nav_title a {
    font-size: 18px;
  }
  .footer_nav ul {
    margin-bottom: 50px;
  }
  .footer .social-link {
    margin-bottom: 80px;
  }
  .footer_designer {
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 767px) {
  .footer_house {
    display: none;
  }
  .footer_house-m {
    display: block;
  }
}

.social-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.social-link a {
  width: 50px;
  height: 50px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
}

.social-link a img {
  width: 35px;
}

.born {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 0;
  left: 0;
  z-index: 100;
}

.born_wrapper {
  max-width: 500px;
  width: calc(100% - 40px);
  border-radius: 10px;
  background-color: rgba(255, 117, 0, 0.9);
  padding: 50px 20px;
  text-align: center;
}

.born_logo {
  display: block;
  width: 127px;
  margin: 0 auto 30px;
}

.born p {
  font-size: 15px;
  color: #fff;
}

.born p.born_text {
  font-size: 18px;
}

.born input {
  margin: 10px 0;
  width: 200px;
  height: 60px;
  border-radius: 10px;
  border: 1px solid #EAC396;
  text-align: center;
  font-size: 33px;
  color: #fff;
}

.born input::-webkit-input-placeholder {
  color: #fff;
}

.born input:-ms-input-placeholder {
  color: #fff;
}

.born input::-ms-input-placeholder {
  color: #fff;
}

.born input::placeholder {
  color: #fff;
}

.born .btn {
  margin: 30px auto 20px;
}

.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.breadcrumb a {
  font-size: 15px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #fff;
}

.breadcrumb a:hover {
  color: #FF7500;
}

.breadcrumb li {
  padding-right: 24px;
  position: relative;
}

.breadcrumb li::after {
  position: absolute;
  content: ">";
  top: 50%;
  right: 8px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-family: "noto sans TC";
  font-size: 15px;
  color: #fff;
}

.breadcrumb li:last-child::after {
  display: none;
}

.breadcrumb-gray a {
  color: #78777D;
}

.breadcrumb-gray a:hover {
  color: #FF7500;
}

.breadcrumb-gray li::after {
  color: #78777D;
}

.breadcrumb-dark a {
  color: #211E2D;
}

.breadcrumb-dark a:hover {
  color: #FF7500;
}

.breadcrumb-dark li::after {
  color: #211E2D;
}

@media screen and (max-width: 767px) {
  .breadcrumb li {
    padding-right: 0;
    padding-left: 16px;
  }
  .breadcrumb li::after {
    -webkit-transform: translateY(-50%) scaleX(-1);
            transform: translateY(-50%) scaleX(-1);
    right: inherit;
    left: 0px;
  }
  .breadcrumb li:not(.active-pre) {
    display: none;
  }
}

.banner {
  position: relative;
  z-index: 0;
}

.banner_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
  z-index: -1;
  -o-object-position: right center;
     object-position: right center;
}

.banner_bg.m {
  display: none;
}

.banner .breadcrumb a {
  color: #fff;
}

.banner .breadcrumb li::after {
  color: #fff;
}

.banner-short {
  width: 100%;
  padding: 50px 0;
  margin-bottom: 60px;
}

.banner-high {
  width: 100%;
  padding-bottom: 31.25%;
}

.banner-high .page-title {
  position: absolute;
  text-align: center;
  top: 26.67%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
  width: 100%;
}

.banner-high .page-title .breadcrumb {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 767px) {
  .banner_bg.pc {
    display: none;
  }
  .banner_bg.m {
    display: block;
  }
  .banner-short {
    margin-bottom: 35px;
  }
  .banner-high {
    padding-bottom: 106.67%;
  }
  .banner-high .banner_text {
    top: 28.5%;
  }
  .banner-high h1 {
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
  }
}

.tab {
  margin-bottom: 60px;
  overflow-x: auto;
}

.tab ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

.tab ul a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 182px;
  height: 50px;
  border-radius: 100px;
  border: 1px solid rgba(33, 30, 45, 0.2);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: rgba(33, 30, 45, 0.7);
}

.tab ul a.active, .tab ul a:hover {
  background-color: #FF7500;
  border-color: #FF7500;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .tab {
    margin-bottom: 35px;
  }
  .tab ul {
    gap: 10px;
  }
  .tab ul a {
    width: 106px;
    height: 36px;
    font-size: 15px;
  }
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 110px;
  gap: 20px;
}

.pagination li {
  font-size: 16px;
}

.pagination a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 16px;
}

.pagination a svg {
  width: 8px;
  height: 16px;
}

.pagination a svg path {
  fill: #211E2D;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.pagination_num {
  border: 1px solid #E4E4E4;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.pagination_num.active, .pagination_num:hover {
  background-color: #211E2D;
  border-color: #211E2D;
  color: #fff;
}

.pagination_arrow:hover svg path {
  fill: #FF7500;
}

@media screen and (max-width: 767px) {
  .pagination {
    gap: 2px;
    margin-bottom: 80px;
  }
}

.btn-back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 11px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.btn-back svg {
  width: 44px;
  height: 12px;
}

.btn-back svg path, .btn-back svg line {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn-back span {
  font-size: 15px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn-back:hover svg path, .btn-back:hover svg line {
  stroke: #FF7500;
}

.btn-back:hover span {
  color: #FF7500;
}

.page-title h1 {
  color: #fff;
  font-family: "Noto Serif TC", serif;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 52px;
  letter-spacing: 0.15em;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .page-title h1 {
    font-size: 46px;
  }
}

.form {
  position: relative;
}

.form label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form label .star {
  color: #C80000;
  font-size: 15px;
  margin-left: 7px;
}

.form_bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.form_bg > img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
}

.form_main {
  width: 50%;
  margin-left: auto;
  margin-right: 0;
  padding: 145px calc((100vw - 1600px) / 2 - 40px) 56px 40px;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  min-height: 100vh;
}

.form_main h1 {
  margin-bottom: 30px;
  font-size: 52px;
  font-weight: normal;
  font-family: "Noto Serif TC", serif;
}

.form_inner {
  max-width: 500px;
  margin: 0 auto;
}

.form_inner .row {
  margin-left: -5px;
  margin-right: -5px;
}

.form_inner .row > div {
  padding-left: 5px;
  padding-right: 5px;
}

.form_item {
  width: 100%;
  position: relative;
  height: 60px;
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #FF7500;
  padding: 0 28px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-bottom: 18px;
}

.form_item.select {
  background-image: url(../images/select_arrow.svg);
  background-size: 13px;
  background-position: calc(100% - 20px) center;
  background-repeat: no-repeat;
}

.form_item.textarea {
  height: 120px;
}

.form_item.textarea label {
  top: 16px;
  -webkit-transform: none;
          transform: none;
}

.form_item.datetime {
  background-image: url(../images/core-calendar.svg);
  background-size: 24px;
  background-position: calc(100% - 20px) center;
  background-repeat: no-repeat;
}

.form_item.datetime input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  opacity: 0;
}

.form_item.datetime.focus input {
  opacity: 1;
}

.form_item input, .form_item select, .form_item textarea {
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.form_item select {
  opacity: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.form_item select option {
  padding: 5px 10px;
}

.form_item textarea {
  padding: 20px 0;
}

.form_item label {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  top: 50%;
  left: 28px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: text;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  pointer-events: none;
}

.form_item.state-error {
  border-color: #FF0000;
  border-width: 2px;
}

.form_item.state-error select {
  opacity: 1;
}

.form_item.state-error label {
  font-size: 14px;
  padding: 2px 8px;
  background-color: #FF0000;
  border-radius: 100px;
  color: #fff;
  top: 0;
  left: 18px;
}

.form_item.focus {
  border-color: #211E2D;
}

.form_item.focus select {
  opacity: 1;
}

.form_item.focus label {
  font-size: 14px;
  padding: 2px 8px;
  background-color: #211E2D;
  border-radius: 100px;
  color: #fff;
  top: 0;
  left: 18px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.form_checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}

.form_checkbox input {
  width: 32px;
  height: 32px;
  position: relative;
}

.form_checkbox input::after {
  position: absolute;
  content: "";
  width: 36px;
  height: 36px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #FF7500;
}

.form_checkbox input:checked::after {
  display: none;
}

.form_checkbox label {
  font-size: 15px;
  padding-top: 3px;
}

.form_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 18px;
  margin-top: 50px;
}

.form-submit h1 {
  font-size: 35px;
  font-family: "Noto Serif TC", serif;
  margin-bottom: 12px;
  font-weight: normal;
}

.form-submit_intro {
  font-size: 16px;
  margin-bottom: 30px;
}

.form-submit_intro.intro-orange {
  color: #FF7500;
}

.form-submit_wrapper {
  background-color: #fff;
  border-radius: 10px;
  padding: 50px 40px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.form-submit_logo {
  width: 250px;
  margin-bottom: 20px;
}

.form-submit_title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 22px;
}

.form-submit_title .highlight {
  font-size: 24px;
}

.form-submit_text {
  margin-bottom: 23px;
}

.form-submit .btn {
  margin-bottom: 40px;
}

.form-submit_remark {
  color: #1759B1;
  font-size: 15px;
  margin: 0;
}

.form-submit_main {
  padding: 16px 0;
  border-top: 2px solid #FF7500;
  border-bottom: 2px solid #FF7500;
  padding: 40px 0;
  margin-bottom: 40px;
}

.form-submit_table {
  width: 100%;
  border-spacing: 0;
  margin-bottom: 45px;
}

.form-submit_table td {
  padding: 13px 0;
  border-top: 1px solid #EAC396;
}

.form-submit_table tr {
  padding: 0;
}

.form-submit_table tr:last-child td {
  border-bottom: 1px solid #EAC396;
}

.form-submit_table .table-title {
  font-size: 16px;
  color: rgba(33, 30, 45, 0.7);
}

.form-submit_info {
  margin-bottom: 50px;
}

.form-submit_info p {
  font-size: 16px;
  margin-bottom: 20px;
}

.form-submit_info ul li {
  margin-bottom: 10px;
}

.form-submit_info ul li:last-child {
  margin-bottom: 0;
}

.form-submit_hint {
  font-size: 16px;
  margin: 0;
  color: #9E692C;
  line-height: 1.9;
}

.form_vertify {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 18px;
  padding: 0 !important;
}

.form_vertify_item.vertify-btn {
  width: 60px;
}

.form_vertify_item.vertify-input, .form_vertify_item.vertify-num {
  width: calc((100% - 60px) / 2);
  padding-right: 10px;
}

.form_vertify_item .form_item {
  margin: 0;
}

.form_vertify_inner {
  background-color: #fff;
  height: 60px;
  border-radius: 10px;
  border: 1px solid #FF7500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.form_vertify_num {
  height: 50px;
}

.form_vertify_icon {
  width: 20px;
}

.form-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 18px;
}

.form-radio .radio-item {
  margin-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}

.form-radio .radio-item input {
  width: 36px;
  height: 36px;
  position: relative;
}

.form-radio .radio-item input::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #FF7500;
}

.form-radio .radio-item input:checked::before {
  opacity: 0;
}

@media screen and (max-width: 1700px) {
  .form_main {
    padding: 145px 40px 56px;
  }
}

@media screen and (max-width: 991px) {
  .form_main {
    padding: 114px 20px 80px;
    width: 100%;
  }
  .form_main h1 {
    margin-bottom: 34px;
    font-size: 40px;
  }
  .form_item label {
    font-size: 16px;
  }
  .form-submit h1 {
    font-size: 26px;
    margin-bottom: 12px;
  }
  .form-submit_table.table-lg {
    display: block;
  }
  .form-submit_table.table-lg tr {
    display: block;
    border-top: 1px solid #EAC396;
    padding: 12px 0;
  }
  .form-submit_table.table-lg tr:last-child {
    border-bottom: 1px solid #EAC396;
  }
  .form-submit_table.table-lg td {
    width: 100%;
    display: block;
    border: 0 !important;
    padding: 0;
  }
  .form-submit_table.table-lg td br {
    display: none;
  }
  .form-submit_table.table-lg td.table-title {
    margin-bottom: 5px;
  }
  .form_vertify {
    display: block;
  }
  .form_vertify_item.vertify-btn {
    width: 60px;
  }
  .form_vertify_item.vertify-input, .form_vertify_item.vertify-num {
    width: 100%;
    padding: 0;
    margin-bottom: 10px;
  }
}

.home-banner {
  padding: 0;
}

.home-banner .swiper-slide {
  position: relative;
  width: 100%;
  padding-bottom: 42%;
}

.home-banner_item {
  position: relative;
  width: 100% !important;
  padding-bottom: 42%;
}

.home-banner_img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
}

.home-banner_img.img-m {
  display: none;
}

.home-banner .swiper-pagination {
  position: absolute;
}

.home-banner .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #ccc;
  border: 1px solid #ccc;
  opacity: 0.7;
  margin: 0 7px;
}

.home-banner .swiper-pagination-bullet-active {
  background-color: #000000;
  opacity: 1;
  border: 1px solid #fff;
}

.home-banner .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
}

.home-banner .slick-arrow.arrow-left {
  left: 10px;
}

.home-banner .slick-arrow.arrow-right {
  right: 10px;
}

.home-about {
  padding: 9.74vw 0 11.51vw;
  background: linear-gradient(75deg, #AC3123 0%, rgba(217, 75, 16, 0.8) 25%, rgba(255, 117, 0, 0.75) 50%, rgba(255, 140, 36, 0.7) 70%, rgba(255, 181, 36, 0.6) 100%);
  position: relative;
  z-index: 0;
  color: #fff;
  font-weight: normal;
  margin-top: -5px;
}

.home-about_mask {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(75deg, #AC3123 0%, rgba(217, 75, 16, 0.8) 25%, rgba(255, 117, 0, 0.75) 50%, rgba(255, 140, 36, 0.7) 70%, rgba(255, 181, 36, 0.6) 100%);
  z-index: -1;
}

.home-about_video {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
  z-index: -1;
}

.home-about_bg {
  position: absolute;
  width: 68.032%;
  right: 0;
  bottom: 0;
}

.home-about h2 {
  font-family: "Noto Serif TC", serif;
  font-size: 58px;
  font-weight: normal;
  color: #fff;
}

.home-about h3 {
  font-family: "Cormorant Infant", serif;
  font-size: 38px;
  color: #fff;
  margin-bottom: 25px;
}

.home-about p {
  line-height: 2;
  color: #fff;
  margin-bottom: 30px;
}

.home-product {
  padding: 80px 0 130px;
}

.home-product_wrapper {
  position: relative;
  margin-bottom: 60px;
}

.home-product-next, .home-product-prev {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.home-product-next {
  right: -86px;
}

.home-product-prev {
  left: -86px;
}

.home-product .btn-outline {
  margin: 0 auto;
  font-weight: 300;
}

.home-recommend {
  padding: 150px 0;
  background: -webkit-gradient(linear, left bottom, left top, from(#FFF1E6), to(#FFFFFF));
  background: linear-gradient(to top, #FFF1E6 0%, #FFFFFF 100%);
  position: relative;
  z-index: 0;
}

.home-recommend .row {
  margin: 0;
}

.home-recommend .row > div {
  padding: 0;
}

.home-recommend_pic > img {
  -webkit-box-shadow: 0 20px 60px -30px rgba(0, 0, 0, 0.4);
          box-shadow: 0 20px 60px -30px rgba(0, 0, 0, 0.4);
}

.home-recommend_text {
  padding-left: 90px;
}

.home-recommend_text .title {
  margin: 0 0 40px;
  text-align: left;
}

.home-recommend_text .title::before {
  left: 0;
  -webkit-transform: none;
          transform: none;
}

.home-recommend_text h3 {
  font-size: 30px;
  font-weight: normal;
  margin-bottom: 25px;
  font-family: "Noto Serif TC", serif;
}

.home-recommend_text p {
  line-height: 2;
  margin-bottom: 60px;
}

.home-recommend_pic-bg {
  position: absolute;
  width: 44.11%;
  padding-bottom: calc(44.11% * 0.74);
  background-image: url(../images/home_recommend_bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  z-index: -1;
}

.home-recommend_decoration {
  position: absolute;
  width: 26.41%;
  top: -12.5vw;
  right: 0;
}

.home-explore {
  padding: 164px 0 211px;
  background-image: url(../images/home_explore.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.home-explore .title {
  text-align: left;
  margin-bottom: 10px;
  color: #fff;
}

.home-explore .title::before {
  left: 0;
  -webkit-transform: none;
          transform: none;
}

.home-explore p {
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 60px;
  color: #fff;
}

.home-explore_cloud {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  color: #fff;
}

.home-explore_cloud.cloud-m {
  display: none;
}

.home-news {
  padding: 100px 0 130px;
  background: -webkit-gradient(linear, left bottom, left top, from(#FFF1E6), color-stop(50%, #FFF1E6), color-stop(80%, #fff), to(#fff));
  background: linear-gradient(to top, #FFF1E6 0%, #FFF1E6 50%, #fff 80%, #fff 100%);
}

.home-news_wrapper {
  position: relative;
}

.home-news .btn-outline {
  margin: 0 auto;
}

.home-news-next, .home-news-prev {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.home-news-next {
  right: -86px;
}

.home-news-prev {
  left: -86px;
}

.home-news .news_head {
  background-color: #FFF1E6;
}

.home-news .swiper-arrow {
  display: none;
}

@media screen and (max-width: 1600px) {
  .home-product .container {
    padding-left: 100px;
    padding-right: 100px;
  }
  .home-news .container {
    padding-left: 100px;
    padding-right: 100px;
  }
}

@media screen and (max-width: 1199px) {
  .home-news .swiper-arrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (max-width: 991px) {
  .home-recommend {
    padding: 30px 0 80px;
  }
  .home-recommend .container {
    padding: 0;
  }
  .home-recommend_pic {
    padding-left: 20px;
    margin-bottom: 40px;
  }
  .home-recommend_text {
    padding: 0 20px;
  }
  .home-recommend_text .title {
    margin-bottom: 35px;
  }
  .home-recommend_text h3 {
    margin-bottom: 20px;
    font-size: 25px;
  }
  .home-recommend_text p {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 40px;
  }
  .home-recommend_pic-bg {
    width: 94.67%;
    padding-bottom: calc(94.67% * 0.6);
  }
  .home-recommend_decoration {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .home-about {
    padding-top: 80px;
    padding-bottom: 0;
  }
  .home-about h2 {
    font-size: 48px;
    margin-bottom: 7px;
  }
  .home-about h3 {
    font-size: 25px;
    margin-bottom: 25px;
  }
  .home-about p {
    font-size: 16px;
    line-height: 1.9;
    text-align: justify;
  }
  .home-about p br {
    display: none;
  }
  .home-about .btn-primary {
    margin-bottom: 70px;
  }
  .home-about_bg {
    position: static;
    width: 100%;
  }
  .home-about_mask {
    background: -webkit-gradient(linear, left top, right top, from(#AC3123), color-stop(10%, #AC3123), color-stop(50%, rgba(217, 75, 16, 0.8)), to(rgba(255, 117, 0, 0.75)));
    background: linear-gradient(to right, #AC3123 0%, #AC3123 10%, rgba(217, 75, 16, 0.8) 50%, rgba(255, 117, 0, 0.75) 100%);
  }
  .home-explore {
    padding-top: 80px;
    padding-bottom: 103.47vw;
    background-image: url(../images/home_explore_m.png);
  }
  .home-explore p {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 40px;
  }
  .home-explore_cloud.cloud-pc {
    display: none;
  }
  .home-explore_cloud.cloud-m {
    display: block;
  }
}

@media screen and (max-width: 575px) {
  .home-banner .swiper-slide {
    padding-bottom: 149.33%;
  }
  .home-banner_item {
    padding-bottom: 149.33%;
  }
  .home-banner_img.img-pc {
    display: none;
  }
  .home-banner_img.img-m {
    display: block;
  }
  .home-product {
    padding: 80px 0;
  }
  .home-product .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .home-product-next, .home-product-prev {
    z-index: 10;
  }
  .home-product-next {
    right: -15px;
  }
  .home-product-prev {
    left: -15px;
  }
  .home-product_wrapper {
    margin-bottom: 40px;
  }
  .home-news {
    padding: 15px 0 80px;
    background: -webkit-gradient(linear, left bottom, left top, from(#FFF1E6), color-stop(60%, #FFF1E6), color-stop(90%, #fff), to(#fff));
    background: linear-gradient(to top, #FFF1E6 0%, #FFF1E6 60%, #fff 90%, #fff 100%);
  }
  .home-news-next, .home-news-prev {
    z-index: 10;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .home-news-next {
    right: -15px;
  }
  .home-news-prev {
    left: -15px;
  }
  .home-news .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .home-news .btn-outline {
    margin-top: -40px;
  }
}

.product {
  display: block;
  padding: 45px 30px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFF1E6), color-stop(25%, #FFF1E6), color-stop(50%, #FFFBF8), color-stop(75%, #FFF1E6), to(#FFF1E6));
  background: linear-gradient(to bottom, #FFF1E6 0%, #FFF1E6 25%, #FFFBF8 50%, #FFF1E6 75%, #FFF1E6 100%);
  position: relative;
  text-align: center;
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 1px solid #FFF1E6;
}

.product_img {
  position: relative;
  width: 100%;
  padding-bottom: 108.39%;
  margin-bottom: 30px;
}

.product_img > img {
  position: absolute;
  /* content: ""; */
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  top: 0;
  left: 0;
}

.product_catagory {
  margin-bottom: 10px;
  color: #FF7500;
  font-size: 16px;
}

.product_name {
  font-size: 26px;
  font-weight: 500;
  font-family: "Noto Serif TC", serif;
  margin: 0;
}

.product_new {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #FF7500;
  font-size: 12px;
  border: 1px solid #FF7500;
  color: #FF7500;
  top: 10px;
  left: 10px;
}

.product:hover {
  background-color: #fff;
  border: 1px solid #FF7500;
}

.product-list {
  margin-bottom: 30px;
}

.product-list .row {
  margin-left: -20px;
  margin-right: -20px;
}

.product-list .row > div {
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 50px;
}

.product-detail > .row {
  margin: 0;
}

.product-detail > .row > div {
  padding: 0;
}

.product-detail_pic {
  width: 100%;
  height: 100vh;
  position: relative;
}

.product-detail_pic > img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
}

.product-detail_pic-wrap {
  position: fixed;
  width: 50%;
  top: 0;
  left: 0;
}

.product-detail_text {
  padding-top: 130px;
  padding-left: 70px;
  padding-right: calc(50vw - 800px - 40px);
}

.product-detail_text .breadcrumb {
  margin-bottom: 20px;
}

.product-detail_text .btn-back {
  margin-left: auto;
  margin-bottom: 40px;
}

.product-detail_text h1 {
  font-size: 52px;
  font-weight: 500;
  margin-bottom: 3px;
  font-family: "Noto Serif TC", serif;
}

.product-detail_text h2 {
  font-family: "Cormorant Infant", serif;
  opacity: 0.6;
  font-weight: 500;
  margin-bottom: 40px;
  font-size: 32px;
}

.product-detail_text-wrap {
  margin-left: auto;
}

.product-detail_catagory {
  margin-bottom: 10px;
}

.product-detail .product_new {
  position: static;
  background-color: #FF7500;
  color: #fff;
  margin-bottom: 13px;
}

.product-detail_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
}

.product-detail_info li {
  padding: 0 19px;
  position: relative;
}

.product-detail_info li:first-child {
  padding-left: 0;
}

.product-detail_info li:last-child {
  padding-right: 0;
}

.product-detail_info li:last-child::after {
  display: none;
}

.product-detail_info li::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 20px;
  background-color: #211E2D;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.product-detail_intro {
  font-family: "微軟正黑體", sans-serif;
  margin-bottom: 55px;
  line-height: 1.8;
}

.product-detail_main {
  margin-bottom: 140px;
}

.product-detail_sec {
  margin-bottom: 100px;
}

.product-detail_sec .editor {
  line-height: 1.4;
  font-family: "微軟正黑體", sans-serif;
  margin-bottom: 40px;
}

.product-detail_title {
  color: #FF7500;
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 30px;
  font-family: "Noto Serif TC", serif;
}

.product-detail_prize {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.product-detail_prize_item {
  width: 100%;
  margin-bottom: 30px;
}

.product-detail_prize_item > img {
  width: 108px;
  margin: 0 auto 15px;
}

.product-detail_prize_item > p {
  text-align: center;
  font-size: 16px;
  margin: 0;
}

.product-detail_note .row {
  margin-left: -7px;
  margin-right: -7px;
}

.product-detail_note .row > div {
  padding-left: 7px;
  padding-right: 7px;
}

.product-detail_note .row > div:first-child .product-detail_note_item {
  background-color: #FF7500;
}

.product-detail_note .row > div:nth-child(2) .product-detail_note_item {
  background-color: #E54D13;
}

.product-detail_note .row > div:nth-child(3) .product-detail_note_item {
  background-color: #B13222;
}

.product-detail_note_item {
  padding: 20px;
  border-radius: 20px 0 50px 0;
  height: 100%;
}

.product-detail_note_item h4 {
  font-size: 36px;
  margin-bottom: 12px;
  font-family: "Noto Serif TC", serif;
  color: #fff;
}

.product-detail_note_item p {
  line-height: 1.7;
  margin: 0;
  text-align: justify;
  color: #fff;
}

@media screen and (max-width: 1700px) {
  .product-detail_text {
    padding-right: 40px;
  }
}

@media screen and (max-width: 991px) {
  .product {
    padding: 40px 25px 50px;
  }
  .product_catagory {
    font-size: 15px;
  }
  .product_name {
    font-size: 23px;
  }
  .product_new {
    width: 42px;
    height: 42px;
    font-size: 10px;
  }
  .product-list {
    margin-bottom: 45px;
  }
  .product-list .row > div {
    margin-bottom: 35px;
  }
  .product-list .product {
    height: auto;
  }
  .product-detail {
    padding-top: 64px;
  }
  .product-detail_pic {
    height: 0;
    padding-bottom: 103.93%;
    position: relative;
    margin-bottom: 25px;
    top: inherit;
  }
  .product-detail_pic-wrap {
    position: relative;
    width: 100%;
  }
  .product-detail_text {
    padding: 0 20px 20px;
  }
  .product-detail_text .breadcrumb {
    margin-bottom: 37px;
  }
  .product-detail_text .btn-back {
    display: none;
  }
  .product-detail_text h1 {
    font-size: 38px;
  }
  .product-detail_text h2 {
    font-size: 22px;
  }
  .product-detail_text .btn {
    display: none;
  }
  .product-detail_info {
    display: block;
  }
  .product-detail_info li {
    padding: 0;
    margin-bottom: 10px;
    font-size: 16px;
  }
  .product-detail_info li:last-child {
    margin-bottom: 0;
  }
  .product-detail_info li::after {
    display: none;
  }
  .product-detail_intro {
    font-size: 16px;
    margin: 0;
    line-height: 1.9;
  }
  .product-detail_main {
    margin-bottom: 100px;
  }
  .product-detail_sec {
    margin-bottom: 60px;
  }
  .product-detail_sec .editor {
    line-height: 1.6;
    font-size: 16px;
  }
  .product-detail_title {
    font-size: 32px;
  }
  .product-detail_note_item {
    height: auto;
    margin-bottom: 13px;
    padding: 20px 25px 30px 25px;
  }
  .product-detail_note_item h4 {
    font-size: 32px;
    margin-bottom: 17px;
  }
  .product-detail_note_item p {
    font-size: 16px;
  }
  .product-detail_prize_item {
    margin-bottom: 40px;
  }
}

.news {
  display: block;
}

.news_main {
  position: relative;
}

.news_pic {
  position: relative;
  width: 100%;
  padding-bottom: 121.62%;
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.news_pic > img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.news_head {
  padding: 24px 15px 15px 0;
  width: 82%;
  background-color: #fff;
}

.news_text {
  -webkit-transform: translateY(-70px);
          transform: translateY(-70px);
  z-index: 3;
}

.news_text p {
  margin: 0;
  line-height: 1.8;
}

.news_title {
  font-size: 26px;
  font-family: "Noto Serif TC", serif;
  margin-bottom: 10px;
  font-weight: normal;
}

.news_date {
  color: #FF7500;
  font-size: 15px;
  margin: 0;
}

.news_address {
  margin-bottom: 20px;
  font-family: "微軟正黑體", sans-serif;
}

.news:hover .news_pic > img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.news-list .row {
  margin-left: -20px;
  margin-right: -20px;
}

.news-list .row > div {
  padding-left: 20px;
  padding-right: 20px;
}

.news-detail {
  padding-bottom: 110px;
}

.news-detail_head {
  margin-bottom: 58px;
}

.news-detail_head .breadcrumb {
  padding: 40px 0;
}

.news-detail_head .container {
  padding-right: 100px;
  position: relative;
}

.news-detail_title {
  padding: 40px 100px 170px;
  background-image: url(../images/news_detail_bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.news-detail_title .btn-back svg path, .news-detail_title .btn-back svg line {
  stroke: #fff;
}

.news-detail_title .btn-back span {
  color: #fff;
}

.news-detail_title h1 {
  font-size: 52px;
  font-weight: 500;
  margin: 0;
  color: #fff;
  font-family: "Noto Serif TC", serif;
}

.news-detail_title_wrapper {
  width: 40%;
}

.news-detail_title_text {
  position: relative;
}

.news-detail_title_text::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 2px;
  background-color: #FF7500;
  left: 0;
  top: -36px;
}

.news-detail_date {
  margin-top: 143px;
  color: #fff;
  font-size: 20px;
  margin-bottom: 10px;
}

.news-detail_pic {
  position: absolute;
  width: 56.25%;
  padding-bottom: calc(56.25% * 0.61);
  top: 0;
  right: 0;
}

.news-detail_pic > img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
}

.news-detail_content .container {
  padding-left: 100px;
  padding-right: 100px;
}

.news-detail_content .editor * {
  font-family: "微軟正黑體", sans-serif;
  line-height: 1.9;
  word-break: break-all;
}

.news-detail_content .btn-back {
  margin-top: 110px;
}

.news-detail_info li {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.news-detail_info li span {
  font-size: 20px;
  color: #fff;
}

.news-detail_info li span.info-ch {
  font-family: "微軟正黑體", sans-serif;
}

@media screen and (max-width: 1199px) {
  .news_text {
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
}

@media screen and (max-width: 991px) {
  .news_text {
    -webkit-transform: translateY(-80px);
            transform: translateY(-80px);
  }
  .news-detail {
    padding-bottom: 80px;
  }
  .news-detail_head {
    margin-bottom: 40px;
  }
  .news-detail_head .breadcrumb {
    display: none;
  }
  .news-detail_head .container {
    padding: 0;
  }
  .news-detail_title {
    padding: 40px 20px;
    background-image: url(../images/news_detail_bg_m.png);
  }
  .news-detail_title h1 {
    font-size: 46px;
  }
  .news-detail_title_wrapper {
    width: 100%;
  }
  .news-detail_date {
    margin-top: 95px;
    font-size: 16px;
  }
  .news-detail_pic {
    position: relative;
    width: 100%;
    padding-bottom: 61%;
    top: inherit;
    right: inherit;
  }
  .news-detail_content .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .news-detail_info li span {
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  .news_pic::before {
    width: 91%;
    height: 20%;
  }
}

@media screen and (max-width: 575px) {
  .news_text {
    -webkit-transform: translateY(-18vw);
            transform: translateY(-18vw);
  }
}

.about_intro {
  text-align: center;
  padding: 100px 0 140px;
  font-size: 26px;
  font-family: "Noto Serif TC", serif;
  line-height: 1.9;
}

.about_item {
  background-color: #FFF1E6;
  padding: 0 80px;
  position: relative;
  z-index: 0;
  margin-bottom: 180px;
}

.about_item .row {
  margin: 0;
}

.about_item .row > div {
  padding: 0;
}

.about_item:nth-child(even) .about_pic-wrap {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.about_item:nth-child(even) .about_text {
  padding-left: 0;
  padding-right: 80px;
}

.about_item:nth-child(even) .about_text-wrap {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.about_item.item-1 .about_text {
  padding-top: 80px;
  padding-bottom: 80px;
}

.about_item.item-2 .about_text {
  padding-top: 80px;
  padding-bottom: 80px;
}

.about_item.item-3 .about_text {
  padding-top: 80px;
  padding-bottom: 80px;
}

.about_pic {
  position: relative;
  width: 100%;
  padding-bottom: 66.67%;
  -webkit-transform: translateY(-80px);
          transform: translateY(-80px);
}

.about_pic > img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
}

.about_text {
  padding-left: 80px;
}

.about_text p {
  line-height: 2;
  margin: 0;
}

.about_list {
  padding-top: 70px;
}

@media screen and (max-width: 1700px) {
  .about_item::before {
    height: 50px;
  }
  .about_item.item-1 .about_text {
    padding-top: 40px;
  }
  .about_item.item-2 .about_text {
    padding-top: 40px;
  }
  .about_item.item-3 .about_text {
    padding-top: 40px;
  }
  .about_text p {
    font-size: 16px;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
}

@media screen and (max-width: 991px) {
  .about_intro {
    padding: 70px 0;
    font-size: 20px;
    line-height: 1.8;
  }
  .about_list {
    padding-bottom: 40px;
  }
  .about_item {
    padding: 0;
    margin-bottom: 40px;
  }
  .about_item::before {
    display: none;
  }
  .about_item .about_pic {
    -webkit-transform: none;
            transform: none;
  }
  .about_item .about_pic-wrap {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }
  .about_item .about_text {
    padding: 30px 20px !important;
  }
  .about_item .about_text-wrap {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }
  .about_text {
    padding: 30px 20px !important;
  }
  .about_text p {
    line-height: 1.9;
    font-size: 16px;
    -webkit-transform: none;
            transform: none;
  }
  .about-process .timeline_pic-wrap {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }
  .about-process .timeline_text {
    padding: 0 0 20px !important;
  }
  .about-process .timeline_text-wrap {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }
  .about-process .timeline_num {
    margin-bottom: 0;
  }
  .about-process .timeline_title {
    margin-bottom: 0;
  }
}

.about-history_house {
  width: 400px;
  margin: 65px auto;
}

.about-history_update {
  text-align: center;
  color: #B47328;
  font-family: "Noto Serif TC", serif;
  margin: 25px 0 0;
  font-size: 36px;
  padding-bottom: 200px;
  background-color: #fff;
}

.about-history .timeline {
  position: relative;
}

.about-history .timeline_line {
  position: absolute;
  content: "";
  width: 1px;
  height: 0;
  background-color: #FF7500;
  top: 0;
  left: 50%;
  z-index: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  max-height: 100%;
}

.about-history .timeline_item {
  position: relative;
}

.about-history .timeline_item::before {
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #FF7500;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
}

.about-history .timeline::after {
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  background-image: url(../images/arrow_triangle.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}

.about-process {
  padding-bottom: 200px;
  position: relative;
  z-index: 0;
}

.about-process .about_intro {
  padding: 100px 0 130px;
}

.about-process::after {
  position: absolute;
  content: "";
  width: 100%;
  padding-bottom: 27.68%;
  background-color: #FFF1E6;
  top: 0;
  left: 0;
  z-index: -1;
}

.about-story {
  padding: 144px 0 110px;
}

.about-story .row {
  margin: 0;
  position: relative;
  z-index: 0;
}

.about-story .row > div {
  padding: 0;
}

.about-story_text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding-top: 35px;
}

.about-story_text .page-title {
  margin-bottom: 57px;
}

.about-story_text .breadcrumb a {
  color: #fff;
}

.about-story_text p {
  color: #fff;
  margin: 0;
  line-height: 2;
}

.about-story_video {
  position: relative;
  width: 100%;
  padding-bottom: 56.33%;
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
          box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.about-story_video iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.about-story_bg {
  position: absolute;
  width: 66.17%;
  top: -64px;
  left: 0;
  z-index: -1;
}

.about-story_bg.m {
  display: none;
}

.about-recommendation {
  padding: 80px 0 160px;
}

.about-recommendation .row {
  margin-left: -25px;
  margin-right: -25px;
}

.about-recommendation .row > div {
  padding-left: 25px;
  padding-right: 25px;
}

.about-recommendation_pic {
  position: relative;
  width: 100%;
  padding-bottom: 80%;
  margin-bottom: 13px;
}

.about-recommendation_pic > img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
}

.about-recommendation_country {
  font-size: 16px;
  color: #FF7500;
  margin-bottom: 3px;
}

.about-recommendation_name {
  font-size: 32px;
  font-weight: 500;
  font-family: "Noto Serif TC", serif;
  margin-bottom: 3px;
}

.about-recommendation_title {
  font-size: 16px;
  color: #EAC396;
  margin-bottom: 14px;
  font-family: "Noto Sans TC", sans-serif;
  font-weight: normal;
}

.about-recommendation_detail {
  font-family: "微軟正黑體", sans-serif;
  margin: 0;
  line-height: 1.8;
}

.about-recommendation_item {
  margin-bottom: 80px;
}

@media screen and (max-width: 991px) {
  .about-history_house {
    width: 250px;
    margin: 40px auto 25px;
  }
  .about-history_update {
    font-size: 30px;
    padding-bottom: 0;
    text-align: left;
    padding-left: 34px;
    margin-top: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    margin-bottom: 100px;
  }
  .about-history .timeline {
    position: relative;
  }
  .about-history .timeline_line {
    left: 20px;
  }
  .about-history .timeline_item::before {
    left: 0;
  }
  .about-history .timeline::after {
    left: 20px;
  }
  .about-process {
    padding-bottom: 80px;
    position: relative;
    z-index: 0;
  }
  .about-process .about_intro {
    padding: 70px 0 65px;
  }
  .about-process::after {
    padding-bottom: 90.67%;
  }
  .about-story {
    padding: 50px 0 80px;
    position: relative;
  }
  .about-story_bg {
    width: 100%;
    top: 0;
  }
  .about-story_bg.pc {
    display: none;
  }
  .about-story_bg.m {
    display: block;
  }
  .about-story .page-title {
    margin-bottom: 52px;
  }
  .about-story_text {
    padding-bottom: 52px;
    text-align: center;
  }
  .about-story_text .breadcrumb {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .about-recommendation {
    padding: 50px 0 0;
  }
}

.timeline_item {
  padding-bottom: 100px;
}

.timeline_item .row {
  margin: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.timeline_item .row > div {
  padding: 0;
}

.timeline_item:nth-child(odd) .timeline_pic-wrap {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.timeline_item:nth-child(odd) .timeline_text {
  padding-left: 60px;
}

.timeline_item:nth-child(odd) .timeline_text-wrap {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.timeline_item:nth-child(even) .timeline_pic-wrap {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.timeline_item:nth-child(even) .timeline_text {
  padding-right: 60px;
  text-align: right;
}

.timeline_item:nth-child(even) .timeline_text-wrap {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.timeline_pic {
  position: relative;
  width: 100%;
  padding-bottom: 60%;
}

.timeline_pic > img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
}

.timeline_num {
  font-family: "Roboto", sans-serif;
  color: #FF7500;
  font-size: 100px;
  font-weight: 700;
  margin-bottom: 6px;
}

.timeline_title {
  font-family: "Noto Serif TC", serif;
  color: #B47328;
  font-size: 36px;
  font-weight: normal;
  margin-bottom: 12px;
}

.timeline_intro {
  margin: 0;
  line-height: 1.7;
}

.timeline_intro p {
  margin: 0;
}

@media screen and (max-width: 991px) {
  .timeline_item {
    padding-bottom: 70px;
  }
  .timeline_item:nth-child(even) .timeline_pic-wrap {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .timeline_item:nth-child(even) .timeline_text {
    text-align: left;
  }
  .timeline_item:nth-child(even) .timeline_text-wrap {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .timeline_text {
    padding: 14px 14px 0 !important;
  }
  .timeline_num {
    font-size: 60px;
    margin-bottom: 7px;
  }
  .timeline_title {
    font-size: 30px;
  }
  .timeline_intro {
    font-size: 16px;
  }
  .timeline_head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 12px;
    gap: 10px;
  }
}

.channel {
  padding-bottom: 60px;
}

.channel_place {
  margin-bottom: 40px;
}

.channel_place h2 {
  margin-bottom: 15px;
  font-family: "Noto Serif TC", serif;
  color: #FF7500;
  font-size: 36px;
  font-weight: normal;
}

.channel_item {
  padding: 13px 0;
  border-top: 1px solid #EAC396;
}

.channel_item:last-child {
  border-bottom: 1px solid #EAC396;
}

.channel_title {
  font-size: 22px;
  font-family: "Noto Serif TC", serif;
  margin: 0;
}

.channel_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.channel_info span {
  font-size: 16px;
}

.channel_icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #211E2D;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.channel_icon img {
  width: 64%;
}

@media screen and (max-width: 991px) {
  .channel {
    padding-bottom: 70px;
  }
  .channel_place h2 {
    margin-bottom: 10px;
  }
  .channel_item {
    padding: 20px 20px 13px;
    border-radius: 7px;
    margin-bottom: 10px;
    border: 1px solid #FF7500;
  }
  .channel_title {
    font-size: 26px;
    margin-bottom: 12px;
  }
  .channel_info {
    margin-bottom: 7px;
  }
  .channel_info span {
    width: calc(100% - 28px - 8px);
  }
}

.event-list .row {
  margin-left: -25px;
  margin-right: -25px;
}

.event-list .row > div {
  padding-left: 25px;
  padding-right: 25px;
}

.event-list .news {
  margin-bottom: 25px;
}

.event-list .news_pic {
  padding-bottom: 80%;
}

.event-list .news_mask {
  width: 87%;
  height: 14.5%;
}

.event-list .news_head {
  width: 87%;
}

.event-list .news_title {
  margin-bottom: 0px;
}

.event-list .news_address {
  margin-bottom: 20px;
}

.event-list .news_date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.event-list .news_date span {
  font-size: 16px;
}

.event-list .news_date span.highlight {
  color: #FF7500;
}

.event-list .news_text {
  -webkit-transform: translateY(-55px);
          transform: translateY(-55px);
}

.event-detail {
  padding-bottom: 110px;
}

.event-detail .container {
  position: relative;
}

.event-detail .news-detail_head {
  padding-top: 40px;
  margin-bottom: 80px;
}

.event-detail .news-detail_head .breadcrumb {
  padding-top: 0;
}

.event-detail .news-detail_pic {
  width: 62.5%;
  padding-bottom: calc(62.5% * 0.6);
  margin-left: auto;
  margin-right: 0;
  z-index: -1;
}

.event-detail .news-detail_title {
  width: 47%;
  background-image: url(../images/event_detail_bg.png);
  -webkit-box-shadow: 0 3px 60px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 60px rgba(0, 0, 0, 0.16);
  padding: 40px 100px 70px;
}

.event-detail .news-detail_title_wrapper {
  width: 100%;
}

.event-detail .news-detail_title .btn-back {
  margin-bottom: 135px;
}

.event-detail .news-detail_title_text {
  margin-bottom: 70px;
}

.event-detail .news-detail_title_text h1 {
  margin-bottom: 20px;
}

.event-detail .news-detail_title .btn-outline {
  border-color: #fff;
  color: #fff;
}

.event-detail .news-detail_title .btn-outline:hover {
  background-color: #fff;
  border-color: #fff;
  color: #FF7500;
}

.event-detail .news-detail_content .btn {
  margin-top: 80px;
  margin-bottom: 110px;
}

.event-form {
  padding-top: 40px;
  padding-bottom: 108px;
}

.event-form .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.event-form .breadcrumb {
  width: 38%;
}

.event-form .news-detail_title {
  position: absolute;
  width: 47%;
  top: 60px;
  padding: 100px;
  background-image: url(../images/form_bg.png);
  -webkit-box-shadow: 0 3px 60px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 60px rgba(0, 0, 0, 0.16);
}

.event-form .news-detail_title_wrapper {
  width: 100%;
}

.event-form .news-detail_title .btn-back {
  display: none;
}

.event-form .news-detail_title_text::before {
  top: -34px;
}

.event-form .news-detail_title_text h1 {
  margin-bottom: 20px;
}

.event-form_main {
  width: 62%;
  background-color: #FFF1E6;
  padding-left: 150px;
  padding-top: 70px;
  padding-bottom: 90px;
}

.event-form_inner {
  max-width: 500px;
  margin: 0 auto;
}

.event-form_inner .btn {
  margin-top: 50px;
}

.event-form_inner h3 {
  margin-bottom: 30px;
  font-size: 15px;
  font-weight: normal;
  display: none;
}

.event-form-submit .event-form_main {
  padding-left: 200px;
}

.event-form-submit .form-submit_intro {
  margin-bottom: 16px;
}

.event-form-submit .form-submit_table .table-title {
  width: 110px;
}

@media screen and (max-width: 991px) {
  .event-detail .news-detail_head {
    padding-top: 0;
    margin-bottom: 40px;
  }
  .event-detail .news-detail_pic {
    width: 100%;
    padding-bottom: 60%;
    z-index: 1;
  }
  .event-detail .news-detail_title {
    width: 100%;
    background-image: url(../images/event_detail_bg_m.png);
    padding: 40px 20px;
  }
  .event-detail .news-detail_title .btn-back {
    margin-bottom: 74px;
  }
  .event-detail .news-detail_title_text {
    margin-bottom: 40px;
  }
  .event-detail .news-detail_info {
    width: 100%;
  }
  .event-detail .news-detail_info li {
    width: 100%;
  }
  .event-form {
    padding: 0;
  }
  .event-form .container {
    display: block;
    padding: 0;
  }
  .event-form .breadcrumb {
    display: none;
  }
  .event-form .news-detail_title {
    position: static;
    width: 100%;
    padding: 40px 20px;
    background-image: url(../images/form_bg_m.png);
  }
  .event-form .news-detail_title .btn-back {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 60px;
  }
  .event-form .news-detail_title_text::before {
    top: -22px;
  }
  .event-form .news-detail_title_text h1 {
    margin-bottom: 10px;
    font-size: 30px;
  }
  .event-form_main {
    width: 100%;
    padding: 40px 20px 80px;
  }
  .event-form_inner h3 {
    display: block;
  }
  .event-form-submit .news-detail_title {
    padding-top: 60px;
  }
  .event-form-submit .event-form_main {
    padding-left: 20px;
    padding-bottom: 40px;
  }
  .event-form-submit .form-submit_table .table-title {
    width: 110px;
  }
}

.banner-cask {
  position: relative;
  width: 100%;
  padding-bottom: 48%;
  margin-bottom: 60px;
}

.banner-cask_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
}

.banner-cask_bg.m {
  display: none;
}

.banner-cask_text {
  position: absolute;
  width: 100%;
  text-align: center;
  left: 0;
  bottom: 6.9vw;
}

.banner-cask_text .page-title {
  text-align: center;
  margin-bottom: 40px;
}

.banner-cask_text .page-title h1 {
  text-shadow: 0 5px 8px rgba(0, 0, 0, 0.6);
}

.banner-cask_text .page-title .breadcrumb {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.banner-cask_intro {
  font-size: 20px;
  text-align: center;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 50px;
  padding-left: 16px;
  padding-right: 16px;
}

.banner-cask .btn {
  border: 1px solid #fff;
  color: #fff;
  margin: 0 auto;
}

.banner-cask .btn:hover {
  background-color: #fff;
  color: #FF7500;
}

@media screen and (max-width: 991px) {
  .banner-cask {
    padding-bottom: 242.67%;
  }
  .banner-cask_bg.pc {
    display: none;
  }
  .banner-cask_bg.m {
    display: block;
  }
  .banner-cask_text {
    bottom: 29.07vw;
  }
  .banner-cask_intro {
    font-size: 18px;
  }
}

.cask_flow {
  margin-bottom: 110px;
}

.cask_flow .row {
  margin-left: -30px;
  margin-right: -30px;
}

.cask_flow .row > div {
  padding-left: 30px;
  padding-right: 30px;
}

.cask_flow_pic {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  margin-bottom: 6px;
}

.cask_flow_pic > img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
}

.cask_flow_text {
  text-align: center;
}

.cask_flow_num {
  font-family: "Roboto", sans-serif;
  color: #EAC396;
  font-size: 50px;
  margin: 0;
}

.cask_flow_title {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 8px;
  font-family: "Noto Serif TC", serif;
}

.cask_flow_intro {
  margin: 0;
  line-height: 1.8;
}

.cask_intro .row {
  margin-left: -20px;
  margin-right: -20px;
}

.cask_intro .row > div {
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 60px;
}

.cask_intro_item {
  height: 100%;
  background-color: #F8F7F7;
}

.cask_intro_pic {
  position: relative;
  width: 100%;
  padding-bottom: 121.62%;
}

.cask_intro_pic > img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
}

.cask_intro_text {
  padding: 20px 20px 30px;
}

.cask_intro_text h3 {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 10px;
  font-family: "Noto Serif TC", serif;
}

.cask_intro_text p {
  font-family: "微軟正黑體", sans-serif;
  margin: 0;
  line-height: 1.8;
  text-align: justify;
}

.cask_intro_head {
  margin-bottom: 30px;
}

.cask_intro_feat {
  margin-bottom: 15px;
}

.cask_intro_feat h4 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 5px;
  font-family: "Noto Serif TC", serif;
}

.cask_intro_feat.feat-orange h4 {
  color: #FF7500;
}

.cask_intro_feat.feat-deeporange h4 {
  color: #E54D13;
}

.cask_intro_feat.feat-red h4 {
  color: #B13222;
}

.cask-btn {
  margin: 0 auto 110px;
}

.cask-form .breadcrumb {
  margin-bottom: 30px;
}

.cask-form .btn {
  margin-top: 50px;
}

.cask-form .form_main h1 {
  margin-bottom: 40px;
}

.cask-submit .form_inner {
  max-width: 660px;
}

.cask-submit .form-submit_text {
  margin-bottom: 39px;
}

.cask-submit .form-submit_intro {
  margin-bottom: 12px;
}

.cask-submit .form-submit_table {
  margin-bottom: 30px;
}

.cask-submit .form-submit_wrapper {
  margin-top: 32px;
}

@media screen and (max-width: 991px) {
  .cask_flow {
    margin-bottom: 60px;
  }
  .cask_flow_item {
    margin-bottom: 50px;
  }
  .cask_intro .row > div {
    margin-bottom: 40px;
  }
  .cask_intro_item {
    height: auto;
  }
  .cask_intro_text {
    padding: 20px 20px 0;
  }
  .cask-btn {
    margin: 40px auto 80px;
  }
  .cask-submit .form-submit_table {
    margin-bottom: 30px;
  }
}

.banner-tour {
  position: relative;
  padding-bottom: 31.25%;
  width: 100%;
  margin-bottom: 50px;
}

.banner-tour_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
}

.banner-tour_bg.m {
  display: none;
}

.banner-tour .page-title {
  position: absolute;
  width: 100%;
  left: 0;
  top: 160px;
  text-align: center;
}

.banner-tour .page-title h1 {
  text-shadow: 0 0 6px #000;
}

.banner-tour .page-title .breadcrumb {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 991px) {
  .banner-tour {
    padding-bottom: 107.2%;
    margin-bottom: 40px;
  }
  .banner-tour_bg {
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    top: 0;
    left: 0;
  }
  .banner-tour_bg.pc {
    display: none;
  }
  .banner-tour_bg.m {
    display: block;
  }
  .banner-tour .page-title {
    top: 114px;
  }
}

.tour_bigtitle {
  margin-bottom: 77px;
}

.tour_title {
  color: #FF7500;
  font-size: 30px;
  font-family: "Noto Serif TC", serif;
  text-align: center;
  margin-bottom: 20px;
}

.tour_address {
  margin-bottom: 77px;
}

.tour_address p {
  text-align: center;
  margin: 0;
}

.tour_traffic {
  max-width: 1080px;
  margin: 0 auto 100px;
  padding-left: 20px;
  padding-right: 20px;
}

.tour_traffic .row {
  margin-left: -35px;
  margin-right: -35px;
}

.tour_traffic .row > div {
  padding-left: 35px;
  padding-right: 35px;
}

.tour_traffic_item {
  text-align: center;
}

.tour_traffic_item h4 {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 10px;
}

.tour_traffic_item p {
  line-height: 1.8;
  margin: 0;
}

.tour_traffic_icon {
  width: 150px;
  margin: 0 auto 12px;
}

.tour_accommodation {
  padding-top: 70px;
}

.tour_accommodation .tour_title {
  text-align: left;
  margin-bottom: 30px;
}

.tour_accommodation_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 17px;
  margin: 14px 0;
}

.tour_accommodation_item h4 {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 1px;
}

.tour_accommodation p {
  -webkit-transform: none;
          transform: none;
  margin: 0;
}

.tour_accommodation_place {
  color: #B47328;
}

.tour_accommodation_address {
  font-size: 16px;
  margin: 0;
}

.tour_accommodation .about_text {
  padding-top: 80px;
}

.tour_plan .about_pic-wrap {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.tour_plan .about_text {
  padding: 40px 70px 80px 0;
}

.tour_plan .about_text-wrap {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.tour_plan .about_item .row {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.tour_plan .tour_title {
  text-align: left;
}

.tour_plan p {
  -webkit-transform: none;
          transform: none;
}

.tour_plan_swiper {
  -webkit-transform: translateY(-80px);
          transform: translateY(-80px);
}

.tour_plan_pic {
  width: 100%;
  padding-bottom: 96.67%;
  position: relative;
}

.tour_plan_pic > img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
}

.tour_plan_list {
  margin-bottom: 30px;
  position: relative;
  z-index: 0;
}

.tour_plan_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  gap: 10px;
  padding: 0 17px;
  border-radius: 100px;
  cursor: pointer;
}

.tour_plan_list li::after {
  margin-bottom: 0;
}

.tour_plan_list li h4 {
  font-size: 24px;
  font-weight: 500;
  margin: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.tour_plan_list li p {
  margin: 0;
  font-size: 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.tour_plan_list li.active {
  padding: 12px 17px;
  background-color: #fff;
  -webkit-box-shadow: 0 7px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 7px 20px rgba(0, 0, 0, 0.1);
}

.tour_plan_list li.active .tour_plan_step {
  background-color: #FF7500;
  color: #fff;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.tour_plan_list li.active h4 {
  font-size: 28px;
}

.tour_plan_list li.active p {
  color: #B47328;
}

.tour_plan_list::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: #EAC396;
  left: 38px;
  top: 0;
  z-index: -1;
}

.tour_plan_step {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #EAC396;
  font-size: 22px;
  color: #fff;
}

.tour_planswiper h4 {
  font-size: 25px;
  text-decoration: underline;
  margin-bottom: 5px;
  font-weight: 500;
}

.tour_planswiper p {
  color: #B47328;
  margin: 0;
}

.tour_planswiper-wrap {
  position: relative;
  display: none;
}

.tour_planswiper-next, .tour_planswiper-prev {
  top: 50%;
  z-index: 10;
}

.tour_planswiper-next {
  right: 0;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}

.tour_planswiper-prev {
  left: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.tour-form .btn {
  margin-top: 50px;
}

.tour-form .breadcrumb {
  margin-bottom: 30px;
}

.tour-form .form_item.state-error {
  border-color: transparent;
  background-color: rgba(255, 255, 255, 0.7);
}

.tour-form .form_item.focus {
  border-color: transparent;
  background-color: rgba(255, 255, 255, 0.7);
}

@media screen and (max-width: 991px) {
  .tour_bigtitle {
    margin-bottom: 50px;
    font-size: 30px;
  }
  .tour_address {
    margin-bottom: 50px;
  }
  .tour_traffic {
    margin: 0 auto 50px;
  }
  .tour_traffic_item {
    margin-bottom: 40px;
  }
  .tour_accommodation .tour_title {
    text-align: center;
  }
  .tour_accommodation_item {
    display: block;
    margin: 12px 0;
    text-align: center;
  }
  .tour_plan .about_pic-wrap {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .tour_plan .about_text {
    padding: 30px 0 70px !important;
  }
  .tour_plan .about_text-wrap {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .tour_plan .about_text .btn {
    margin: 50px auto 0;
  }
  .tour_plan .tour_title {
    text-align: center;
    margin-bottom: 30px;
  }
  .tour_plan_list {
    display: none;
  }
  .tour_plan_step {
    background-color: #FF7500;
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    margin: 0 auto 5px;
  }
  .tour_plan_intro {
    text-align: center;
  }
  .tour_plan_swiper {
    -webkit-transform: none;
            transform: none;
  }
  .tour_planswiper-wrap {
    display: block;
  }
}
/*# sourceMappingURL=style.css.map */