/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@200;300;400;500;700&display=swap");
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

button {
  cursor: pointer;
  outline: none;
}

html {
  font-family: "Noto Sans TC", sans-serif;
}

.main-header-wrapper {
  position: relative;
  box-sizing: border-box;
  padding: 60px 0 45px;
  min-height: 177px;
}

.main-header {
  margin: 0 auto;
  width: 92%;
  max-width: 1760px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
@media screen and (max-width: 640px) {
  .main-header {
    width: 94%;
  }
}
@media screen and (min-width: 640px) {
  .main-header {
    width: 90%;
  }
}
@media screen and (min-width: 1024px) {
  .main-header {
    width: 86%;
  }
}
.main-header .logo {
  display: flex;
  align-items: center;
}
.main-header .logo img {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .main-header .main-nav {
    width: 62%;
  }
}
@media screen and (min-width: 820px) {
  .main-header .main-nav {
    width: 94%;
  }
}
@media screen and (min-width: 1280px) {
  .main-header .main-nav {
    width: 40%;
  }
}
@media screen and (min-width: 1366px) {
  .main-header .main-nav {
    width: 50%;
  }
}
.main-header .main-nav .btn-toggle {
  margin-top: 15px;
  width: 40px;
  height: 40px;
  background: url("../images/common/icon-hamburger.svg") 50% 50%/contain no-repeat;
  border: 0;
}
@media screen and (min-width: 769px) {
  .main-header .main-nav .btn-toggle {
    display: none;
  }
}
.main-header .main-nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .main-header .main-nav ul {
    position: absolute;
    z-index: 100;
    top: 177px;
    right: 0;
    left: 0;
    height: auto;
    flex-direction: column;
    background: #f8f8f8;
    box-shadow: 0 2px 10px rgba(80, 80, 80, 0.15);
  }
  .main-header .main-nav ul:not(.active) {
    display: none;
  }
}
.main-header .main-nav li {
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 1px;
}
@media screen and (max-width: 768px) {
  .main-header .main-nav li {
    width: 100%;
  }
}
.main-header .main-nav li ol li {
  display: inline-block;
}
.main-header .main-nav a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 4px;
  text-align: center;
  line-height: 1.2;
  color: #333;
  border: 1px solid transparent;
  transition: border-color 0.3s, border-radius 0.8s cubic-bezier(0, 0, 1, 0.5);
}
@media screen and (min-width: 769px) {
  .main-header .main-nav a {
    position: relative;
    z-index: 1;
    padding: 0 2px 0 1vw;
    border-radius: 10px;
  }
  .main-header .main-nav a:hover, .main-header .main-nav a.active {
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.4);
  }
  .main-header .main-nav a:hover:before, .main-header .main-nav a.active:before {
    content: "";
    position: absolute;
    right: 0;
    height: 45%;
    bottom: 0;
    z-index: -1;
    width: 80%;
    background: #d5b366;
    transform: skew(-30deg, 0);
  }
}
@media screen and (max-width: 768px) {
  .main-header .main-nav a {
    box-sizing: border-box;
    padding: 20px;
    width: 100%;
    border-bottom: 1px solid #ddd;
  }
  .main-header .main-nav a.active {
    color: #fff;
    background: linear-gradient(75deg, rgba(220, 194, 132, 0.6), rgba(213, 179, 102, 0.8));
  }
}

.main-footer .container {
  display: flex;
  gap: 20px 0;
}
@media screen and (max-width: 768px) {
  .main-footer .container {
    flex-direction: column;
  }
}
.main-footer .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  border-right: 1px solid #040000;
}
@media screen and (max-width: 768px) {
  .main-footer .logo {
    border: 0;
  }
}
.main-footer .info {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}
.main-footer .info li {
  display: flex;
  margin: 10px 0;
  font-size: 16px;
  font-weight: 200;
}
.main-footer .info .label {
  width: 4em;
  text-align: justify;
  text-justify: distribute-all-lines;
  -moz-text-align-last: justify;
       text-align-last: justify;
}
.main-footer .info .details:before {
  content: ": ";
}

.copyrights-footer {
  margin-top: 50px;
  padding: 15px 0;
  text-align: center;
  font-size: 16px;
  background: #bfbfbf;
}

.go-top {
  position: fixed;
  z-index: 1000;
  right: 3.5%;
  bottom: 100px;
  width: 66px;
  height: 66px;
  border: 0;
  border-radius: 33px;
  background: #d1af66 url("../images/common/go-top.svg") 50% 46%/36px no-repeat;
}

.swiper {
  position: relative;
  z-index: 1;
}
.swiper .swiper-button,
.swiper .swiper-button {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 6px;
}
.swiper .swiper-button:after,
.swiper .swiper-button:after {
  color: #231815;
  font-size: 16px;
}

.about {
  position: relative;
  padding: 200px 0 130px;
}
.about .container {
  margin: 0 auto;
  width: 92%;
  max-width: 1280px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 100px 100px;
}
@media screen and (max-width: 640px) {
  .about .container {
    width: 94%;
  }
}
@media screen and (min-width: 640px) {
  .about .container {
    width: 90%;
  }
}
@media screen and (min-width: 1024px) {
  .about .container {
    width: 86%;
  }
}
@media screen and (max-width: 768px) {
  .about .container {
    flex-direction: column;
  }
}
.about .left {
  flex: 1;
}
.about .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.about .title h2 {
  font-size: 21px;
  font-weight: 300;
  color: #949494;
}
.about .title h2 strong {
  letter-spacing: 6px;
  font-size: 30px;
  font-weight: bold;
  color: #000000;
}
.about .slogan {
  margin-top: 50px;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
  color: #bf161d;
}
.about .info {
  margin-top: 35px;
  text-align: center;
  font-size: 20px;
  font-weight: 200;
  line-height: 30px;
  color: #505050;
}
.about .img {
  width: 38%;
  background: url("../images/home/about.png") 50% 50%/cover;
}
.about .img:before {
  content: "";
  display: block;
  padding-bottom: 63.55%;
}
@media screen and (max-width: 768px) {
  .about .img {
    width: 100%;
  }
}
.about .deco-gear {
  position: absolute;
  background: url("../images/home/gear.svg") 50% 50%/contain;
}
.about .deco-gear:before {
  content: "";
  display: block;
  padding-bottom: 87%;
}
.about .deco-gear-1 {
  top: 140px;
  left: 8%;
  width: 150px;
}
.about .deco-gear-2 {
  right: 9%;
  bottom: 0;
  width: 100px;
}

.product-category-wrapper {
  padding: 80px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 40px 0;
  background: url("../images/home/product-bg.png") 50% 50%/cover no-repeat;
}
.product-category-wrapper .container {
  margin: 0 auto;
  width: 92%;
  max-width: 1560px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px 0;
}
@media screen and (max-width: 640px) {
  .product-category-wrapper .container {
    width: 94%;
  }
}
@media screen and (min-width: 640px) {
  .product-category-wrapper .container {
    width: 90%;
  }
}
@media screen and (min-width: 1024px) {
  .product-category-wrapper .container {
    width: 86%;
  }
}
.product-category-wrapper .img {
  flex: 7 400px;
}
.product-category-wrapper .img img {
  width: 100%;
}
.product-category-wrapper .right {
  flex: 2 300px;
  text-align: center;
}
.product-category-wrapper .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.product-category-wrapper .title h2 {
  font-size: 21px;
  font-weight: 300;
  color: #949494;
}
.product-category-wrapper .title h2 strong {
  letter-spacing: 6px;
  font-size: 30px;
  font-weight: bold;
  color: #000000;
}
.product-category-wrapper .category {
  padding: 50px 10% 0;
}
.product-category-wrapper .category ul {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 40px;
}
.product-category-wrapper .category li {
  padding: 14px 0;
  font-size: 25px;
  color: #fff;
  background: #d5b366;
  filter: drop-shadow(7px 7px 5px rgba(0, 0, 0, 0.75));
}
.product-category-wrapper .category li:nth-of-type(even) {
  background: #aeaeae;
}

.expert-wrapper {
  padding: 100px 0 120px;
}
.expert-wrapper .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
}
.expert-wrapper .left {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 40px;
  width: 600px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .expert-wrapper .left {
    width: 100%;
  }
}
.expert-wrapper h3 {
  letter-spacing: 3px;
  font-size: 43px;
  font-weight: 300;
  line-height: 56px;
  color: #000;
}
.expert-wrapper h3 strong {
  font-weight: 300;
  color: #c3161d;
}
.expert-wrapper h3 span {
  white-space: nowrap;
}
.expert-wrapper h4 {
  font-size: 20px;
  font-weight: 200;
  line-height: 30px;
  color: #505050;
}
.expert-wrapper .link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 270px;
  height: 63px;
  letter-spacing: 6px;
  font-size: 24px;
  font-weight: 300;
  border: 1px solid #666;
}
.expert-wrapper .link:hover {
  color: #fff;
  background: #b7b7b7;
  border-color: #b7b7b7;
}
.expert-wrapper .link:active {
  background: #b1b1b1;
}
.expert-wrapper .img {
  flex: 1;
  background: url("../images/home/expert.png") 50% 50%/contain no-repeat;
}
@media screen and (max-width: 1024px) {
  .expert-wrapper .img {
    width: 100%;
  }
}
.expert-wrapper .img:before {
  content: "";
  display: block;
  padding-bottom: 64%;
}

.aboutus-card-wrapper {
  margin: 200px auto;
}
.aboutus-card-wrapper .container {
  margin: 0 auto;
  width: 92%;
  max-width: 960px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
  box-sizing: border-box;
  padding: 60px;
  border: 1px solid #666;
  border-radius: 80px;
}
@media screen and (max-width: 640px) {
  .aboutus-card-wrapper .container {
    width: 94%;
  }
}
@media screen and (min-width: 640px) {
  .aboutus-card-wrapper .container {
    width: 90%;
  }
}
@media screen and (min-width: 1024px) {
  .aboutus-card-wrapper .container {
    width: 86%;
  }
}
@media screen and (max-width: 768px) {
  .aboutus-card-wrapper .container {
    padding: 20% 8%;
  }
}
.aboutus-card-wrapper .title .english {
  margin-bottom: 10px;
  font-size: 21px;
  font-weight: 300;
  color: #949494;
}
.aboutus-card-wrapper .title .mandarin {
  letter-spacing: 6px;
  font-size: 30px;
  font-weight: bold;
  color: #000000;
}
.aboutus-card-wrapper .slogan {
  margin-top: 50px;
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
  color: #bf161d;
}
.aboutus-card-wrapper .info {
  margin-top: 35px;
  font-size: 20px;
  font-weight: 200;
  line-height: 30px;
  color: #505050;
}
.aboutus-card-wrapper li {
  display: flex;
  font-size: 16px;
  font-weight: 200;
}
.aboutus-card-wrapper .label {
  width: 4em;
  text-align: justify;
  text-justify: distribute-all-lines;
  -moz-text-align-last: justify;
       text-align-last: justify;
  white-space: nowrap;
}
.aboutus-card-wrapper .details:before {
  content: ": ";
}
.aboutus-card-wrapper .qrcodes {
  margin-top: 30px;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .aboutus-card-wrapper .qrcodes {
    justify-content: center;
  }
}
.aboutus-card-wrapper .qr {
  width: 90px;
  text-align: center;
  font-weight: 300;
}
.aboutus-card-wrapper .qr:before {
  content: "";
  display: block;
  margin-bottom: 20px;
  padding-bottom: 100%;
  background: 50% 50%/contain no-repeat;
}
.aboutus-card-wrapper .qr-line:before {
  background-image: url("../images/aboutus/line.png");
}
.aboutus-card-wrapper .qr-whatsapp:before {
  background-image: url("../images/aboutus/whatsapp.png");
}
.aboutus-card-wrapper .qr-wechat:before {
  background-image: url("../images/aboutus/wechat.png");
}
.aboutus-card-wrapper .img {
  position: absolute;
  width: 55%;
  border-radius: 40px;
  box-shadow: 6px 6px 8px #000;
}
@media screen and (max-width: 768px) {
  .aboutus-card-wrapper .img {
    position: relative;
    top: initial !important;
    right: initial !important;
    bottom: initial !important;
    left: initial !important;
    width: 100%;
  }
}
.aboutus-card-wrapper .img:before {
  content: "";
  display: block;
  padding-bottom: 61.8%;
}
.aboutus-card-wrapper .img:after {
  content: "";
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  width: 50%;
  padding-bottom: 50%;
  background: url("../images/aboutus/dots.png") 50% 50%/contain no-repeat;
  transform: translate(25%, 25%);
}
.aboutus-card-wrapper.aboutus-card-wrapper-aboutus .img {
  bottom: 45%;
  right: -9%;
  background: url("../images/aboutus/aboutus.png") 50% 50%/cover no-repeat;
}
.aboutus-card-wrapper.aboutus-card-wrapper-philosophy .text {
  padding-left: 52%;
}
@media screen and (max-width: 768px) {
  .aboutus-card-wrapper.aboutus-card-wrapper-philosophy .text {
    padding-left: 0;
  }
}
.aboutus-card-wrapper.aboutus-card-wrapper-philosophy .img {
  bottom: 30%;
  right: 57%;
  background: url("../images/aboutus/philosophy.png") 50% 50%/cover no-repeat;
}
.aboutus-card-wrapper.aboutus-card-wrapper-contact .img {
  bottom: 20%;
  right: -9%;
  background: url("../images/aboutus/contact.png") 85% 20%/150% no-repeat;
}

.series-wrapper {
  margin-bottom: 130px;
}
.series-wrapper .container {
  margin: 0 auto;
  width: 92%;
  max-width: 1280px;
}
@media screen and (max-width: 640px) {
  .series-wrapper .container {
    width: 94%;
  }
}
@media screen and (min-width: 640px) {
  .series-wrapper .container {
    width: 90%;
  }
}
@media screen and (min-width: 1024px) {
  .series-wrapper .container {
    width: 86%;
  }
}
.series-wrapper .container:after {
  content: "";
  display: block;
  clear: both;
}
.series-wrapper .series {
  float: left;
  margin-bottom: 2%;
  text-align: center;
  font-size: 20px;
  color: #505050;
}
.series-wrapper .series:hover {
  color: #d0ae66;
}
.series-wrapper .series:hover h3:after {
  opacity: 1;
  transform: translateX(0);
}
@media screen and (min-width: 1280px) {
  .series-wrapper .series {
    width: 32%;
  }
  .series-wrapper .series:nth-of-type(3n + 1), .series-wrapper .series:nth-of-type(3n + 2) {
    margin-right: 2%;
  }
}
@media screen and (max-width: 1280px) {
  .series-wrapper .series {
    width: 49%;
  }
  .series-wrapper .series:nth-of-type(2n + 1) {
    margin-right: 2%;
  }
}
@media screen and (max-width: 720px) {
  .series-wrapper .series {
    width: 100%;
  }
}
.series-wrapper .series img {
  width: 100%;
}
.series-wrapper .series h3 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.series-wrapper .series h3:before {
  content: "\a";
  display: inline-flex;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent currentColor;
  transform: rotate(0deg);
}
.series-wrapper .series h3:after {
  content: "";
  display: inline-flex;
  width: 37px;
  height: 8px;
  background: url("../images/series/arrow.svg") 50% 50%/100% no-repeat;
  opacity: 0;
  transform: translateX(-20px);
  transition: transform 0.2s, opacity 0.2s;
}

.product-wrapper .container {
  margin: 0 auto;
  width: 92%;
  max-width: 1480px;
  display: flex;
  flex-wrap: wrap;
  gap: 100px;
}
@media screen and (max-width: 640px) {
  .product-wrapper .container {
    width: 94%;
  }
}
@media screen and (min-width: 640px) {
  .product-wrapper .container {
    width: 90%;
  }
}
@media screen and (min-width: 1024px) {
  .product-wrapper .container {
    width: 86%;
  }
}
.product-wrapper .carousel {
  width: 50%;
}
@media screen and (max-width: 960px) {
  .product-wrapper .carousel {
    width: 100%;
  }
}
.product-wrapper .swiper {
  position: relative;
  z-index: 1;
  box-shadow: 7px 7px 5px rgba(0, 0, 0, 0.75);
}
.product-wrapper .swiper .swiper-button,
.product-wrapper .swiper .swiper-button {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 6px;
}
.product-wrapper .swiper .swiper-button:after,
.product-wrapper .swiper .swiper-button:after {
  color: #231815;
  font-size: 16px;
}
.product-wrapper .swiper-pagination {
  position: relative;
  bottom: -20px !important;
}
.product-wrapper .swiper-pagination .swiper-pagination-bullet-active {
  background: rgba(0, 0, 0, 0.38);
}
.product-wrapper .information {
  flex: 1;
}
.product-wrapper .information .title {
  padding-bottom: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 16px;
  border-bottom: 1px solid #000;
}
.product-wrapper .information .title h3 {
  font-size: 48px;
}
.product-wrapper .information .title h4 {
  font-size: 31px;
  color: #636363;
}
.product-wrapper .information .intro {
  margin-top: 45px;
}
.product-wrapper .information .intro .category {
  padding-left: 10px;
  font-size: 27px;
  font-weight: 700;
  color: #d1af66;
  border-left: 3px solid #d1af66;
}
.product-wrapper .information .intro ul {
  padding-left: 15px;
  margin-top: 35px;
  line-height: 20px;
  font-weight: 300;
  color: #505050;
  list-style-type: square;
}
.product-wrapper .information .intro ul li {
  margin: 10px 0;
}
.product-wrapper .information .link {
  margin: 80px auto 0;
  padding: 20px 0;
  display: block;
  width: 268px;
  letter-spacing: 6px;
  text-align: center;
  font-size: 24px;
  color: #373536;
  background: #fff;
  border: 1px solid #666;
}
.product-wrapper .information .link:hover {
  color: #fff;
  background: #b7b7b7;
  border-color: #b7b7b7;
}
.product-wrapper .information .link:active {
  background: #b1b1b1;
}

.product-details-wrapper {
  padding: 120px 0 150px;
}
.product-details-wrapper .container {
  margin: 0 auto;
  width: 92%;
  max-width: 1280px;
}
@media screen and (max-width: 640px) {
  .product-details-wrapper .container {
    width: 94%;
  }
}
@media screen and (min-width: 640px) {
  .product-details-wrapper .container {
    width: 90%;
  }
}
@media screen and (min-width: 1024px) {
  .product-details-wrapper .container {
    width: 86%;
  }
}
.product-details-wrapper nav {
  padding-bottom: 13px;
  color: #000;
  font-size: 27px;
  font-weight: 700;
  border-bottom: 1px solid #727272;
}
.product-details-wrapper nav ul {
  display: flex;
  gap: 24px;
}
.product-details-wrapper nav li {
  position: relative;
  border: 1px solid transparent;
  cursor: pointer;
  transition: border-color 0.3s;
}
.product-details-wrapper nav li:hover, .product-details-wrapper nav li.active {
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}
.product-details-wrapper nav li:hover:before, .product-details-wrapper nav li.active:before {
  content: "";
  position: absolute;
  right: -5%;
  height: 45%;
  bottom: -3px;
  z-index: -1;
  width: 90%;
  background: #d5b366;
  transform: skew(-30deg, 0);
}
.product-details-wrapper .details {
  display: none;
}
.product-details-wrapper .details.active {
  display: block;
}
.product-details-wrapper .details ul {
  padding-left: 20px;
  margin-top: 35px;
  font-weight: 300;
  line-height: 20px;
  color: #505050;
  list-style-type: square;
}
.product-details-wrapper .details ul li {
  margin: 10px 0;
}
.product-details-wrapper .details table {
  margin-top: 35px;
  width: 100%;
  color: #505050;
  border-radius: 2px;
}
.product-details-wrapper .details table th,
.product-details-wrapper .details table td {
  padding: 14px 6px;
  text-align: left;
}
.product-details-wrapper .details table th {
  font-weight: 500;
  color: #000;
  background: #d5b366;
  border: 1px solid #999;
}
.product-details-wrapper .details table td {
  border: 1px solid #ccc;
}
.product-details-wrapper .details table tbody tr:hover {
  background: #f2f2f2;
}

.form-wrapper {
  margin-bottom: 180px;
}
.form-wrapper .container {
  margin: 0 auto;
  width: 92%;
  max-width: 900px;
}
@media screen and (max-width: 640px) {
  .form-wrapper .container {
    width: 94%;
  }
}
@media screen and (min-width: 640px) {
  .form-wrapper .container {
    width: 90%;
  }
}
@media screen and (min-width: 1024px) {
  .form-wrapper .container {
    width: 86%;
  }
}
.form-wrapper .remind {
  margin: 140px 0 120px;
  text-align: center;
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
  color: #505050;
}
.form-wrapper .form form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.form-wrapper .form label {
  display: flex;
  width: 100%;
}
.form-wrapper .form .label {
  position: relative;
  padding: 10px 20px 0 0;
  width: 4em;
  text-align: justify;
  text-justify: distribute-all-lines;
  -moz-text-align-last: justify;
       text-align-last: justify;
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
}
.form-wrapper .form .label:after {
  content: "*";
  position: absolute;
  right: 8px;
  color: #f90000;
}
.form-wrapper .form input,
.form-wrapper .form textarea {
  box-sizing: border-box;
  padding: 10px;
  flex: 1;
  min-height: 50px;
  font-size: 20px;
  background: rgba(224, 224, 224, 0.5);
  border: 0;
  border-radius: 6px;
}
.form-wrapper .form textarea {
  min-height: 380px;
}
.form-wrapper .form .actions {
  display: flex;
  justify-content: space-between;
  padding-left: 100px;
}
@media screen and (max-width: 512px) {
  .form-wrapper .form .actions {
    padding-left: 0;
  }
}
.form-wrapper .form .actions .code {
  display: flex;
  align-items: center;
  gap: 20px;
}
.form-wrapper .form .actions .code a {
  cursor: pointer;
}
.form-wrapper .form .actions .submit {
  padding: 10px 20px;
  font-size: 20px;
  color: #fff;
  background: #b7b7b7;
  border: 0;
}
.form-wrapper .form .actions .submit:hover {
  opacity: 0.8;
}
.form-wrapper .form .actions .submit:active {
  opacity: 0.9;
}

.contact-wrapper {
  margin: 180px auto;
}
.contact-wrapper .container {
  margin: 0 auto;
  width: 92%;
  max-width: 960px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 100px;
  box-sizing: border-box;
  padding: 60px;
  border-radius: 80px;
}
@media screen and (max-width: 640px) {
  .contact-wrapper .container {
    width: 94%;
  }
}
@media screen and (min-width: 640px) {
  .contact-wrapper .container {
    width: 90%;
  }
}
@media screen and (min-width: 1024px) {
  .contact-wrapper .container {
    width: 86%;
  }
}
@media screen and (max-width: 768px) {
  .contact-wrapper .container {
    padding: 20% 8%;
  }
}
.contact-wrapper .title .english {
  margin-bottom: 10px;
  font-size: 21px;
  font-weight: 300;
  color: #949494;
}
.contact-wrapper .title .mandarin {
  letter-spacing: 6px;
  font-size: 30px;
  font-weight: bold;
  color: #000000;
}
.contact-wrapper .slogan {
  margin-top: 50px;
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
  color: #bf161d;
}
.contact-wrapper .info {
  margin-top: 35px;
  font-size: 20px;
  font-weight: 200;
  line-height: 30px;
  color: #505050;
}
.contact-wrapper li {
  display: flex;
  font-size: 16px;
  font-weight: 200;
}
.contact-wrapper .label {
  width: 4em;
  text-align: justify;
  text-justify: distribute-all-lines;
  -moz-text-align-last: justify;
       text-align-last: justify;
  white-space: nowrap;
}
.contact-wrapper .details:before {
  content: ": ";
}
.contact-wrapper .qrcodes {
  margin-top: 30px;
  display: flex;
  gap: 20px;
}
.contact-wrapper .qr {
  width: 90px;
  text-align: center;
  font-weight: 300;
}
.contact-wrapper .qr:before {
  content: "";
  display: block;
  margin-bottom: 20px;
  padding-bottom: 100%;
  background: 50% 50%/contain no-repeat;
}
.contact-wrapper .qr-line:before {
  background-image: url("../images/aboutus/line.png");
}
.contact-wrapper .qr-whatsapp:before {
  background-image: url("../images/aboutus/whatsapp.png");
}
.contact-wrapper .qr-wechat:before {
  background-image: url("../images/aboutus/wechat.png");
}
.contact-wrapper .img {
  position: relative;
  flex: 1 340px;
  background: url("../images/aboutus/contact.png") 85% 20%/150% no-repeat;
  border-radius: 40px;
  box-shadow: 6px 6px 8px #000;
}
@media screen and (max-width: 768px) {
  .contact-wrapper .img {
    position: relative;
    top: initial !important;
    right: initial !important;
    bottom: initial !important;
    left: initial !important;
    width: 100%;
  }
}
.contact-wrapper .img:before {
  content: "";
  display: block;
  padding-bottom: 61.8%;
}
.contact-wrapper .img:after {
  content: "";
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  width: 50%;
  padding-bottom: 50%;
  background: url("../images/aboutus/dots.png") 50% 50%/contain no-repeat;
  transform: translate(25%, 25%);
}

.modal-wrapper {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(47, 47, 47, 0.3);
}
.modal-wrapper:not(.active) {
  display: none;
}
.modal-wrapper .modal-container {
  position: relative;
  box-sizing: border-box;
  margin: 0 10%;
  padding: 20px;
  max-width: 1440px;
  max-height: 90vh;
  text-align: center;
  background-color: #fff;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  overflow: auto;
}
.modal-wrapper .modal-container img {
  max-width: 100%;
}
.modal-wrapper .modal-x-full {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.modal-wrapper .modal-x {
  position: absolute;
  top: 0;
  right: 0;
  border: 0;
  padding: 1rem;
  color: #d5b366;
  background: transparent;
  border-radius: 0 10px 0 3px;
}
.modal-wrapper .modal-x:hover {
  opacity: 0.8;
  color: #383838;
}
.modal-wrapper .modal-x:active {
  opacity: 0.9;
}

.dropmenu {
  position: relative;
  display: inline-block;
}
.dropmenu_trigger {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0rem 1.75rem;
  cursor: pointer;
}
.dropmenu_trigger.active .icon {
  transform: rotate(180deg);
}
.dropmenu_menu {
  position: absolute;
  top: 100%;
  left: 0;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease-in-out;
  overflow: hidden;
}
.dropmenu_menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropmenu_item {
  padding: 0.75rem 1.5rem;
  white-space: nowrap;
  transition: background-color 0.2s ease-in-out;
}
.dropmenu_item a {
  color: inherit;
  text-decoration: none;
  display: block;
  width: 100%;
}

.arrow-down {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 5px;
  vertical-align: middle;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid black;
}

@media screen and (max-width: 768px) {
  .main-header .main-nav li ol li {
    width: initial;
  }
  .dropmenu_menu {
    background-color: #f8f8f8;
    width: 100%;
  }
  .dropmenu_menu .dropmenu_item {
    padding: 0;
  }
  .dropmenu_menu .dropmenu_item a {
    border-top: 1px solid #ddd;
  }
  .main-header .main-nav a.active {
    min-width: 100%;
  }
}
.en .dropmenu_trigger {
  padding: 0 2.5rem;
}

.search-results .container .search-products {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 4.5%;
}
.search-results .container .search-products .search-products-card {
  display: block;
  max-width: 28%;
  border: #ccc 1px solid;
  margin-bottom: 3rem;
  padding: 1rem;
  border-radius: 0.5rem;
}
.search-results .container .search-products .search-products-card .img-block {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 310px;
}
.search-results .container .search-products .search-products-card .img-block img {
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .search-results .container .search-products {
    justify-content: space-around;
  }
  .search-results .container .search-products .search-products-card {
    max-width: 26%;
  }
  .search-results .container .search-products .search-products-card .img-block {
    height: auto;
    padding-bottom: 1rem;
  }
  .search-results .container .search-products .search-products-card h2, .search-results .container .search-products .search-products-card p {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .search-results .container .search-products {
    justify-content: space-around;
  }
  .search-results .container .search-products .search-products-card {
    max-width: 80%;
  }
  .search-results .container .search-products .search-products-card .img-block {
    height: auto;
    padding-bottom: 1rem;
  }
  .search-results .container .search-products .search-products-card h2, .search-results .container .search-products .search-products-card p {
    font-size: 1rem;
  }
}

main {
  overflow: hidden;
}

.container {
  margin: 0 auto;
  width: 92%;
  max-width: 1460px;
}
@media screen and (max-width: 640px) {
  .container {
    width: 94%;
  }
}
@media screen and (min-width: 640px) {
  .container {
    width: 90%;
  }
}
@media screen and (min-width: 1024px) {
  .container {
    width: 86%;
  }
}

.main-banner {
  padding: 8% 0;
  letter-spacing: 2px;
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  background: 50% 50%/cover;
}
.main-banner-aboutus {
  background-image: url("../images/main-banner/aboutus.png");
}
.main-banner-product {
  background-image: url("../images/main-banner/product.png");
}
.main-banner-series {
  background-image: url("../images/main-banner/series.png");
}
.main-banner-contact {
  background-image: url("../images/main-banner/contact.png");
}

.breadcrumbs {
  margin: 0 auto;
  width: 92%;
  max-width: 1480px;
  margin: 60px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  flex-wrap: wrap;
  color: #d1af66;
}
@media screen and (max-width: 640px) {
  .breadcrumbs {
    width: 94%;
  }
}
@media screen and (min-width: 640px) {
  .breadcrumbs {
    width: 90%;
  }
}
@media screen and (min-width: 1024px) {
  .breadcrumbs {
    width: 86%;
  }
}
.breadcrumbs:before {
  content: "";
  display: block;
  height: 1px;
  flex: 1;
  background: #d1af66;
}
.breadcrumbs a {
  padding: 2px;
}
.breadcrumbs a:hover {
  color: #b7944a;
}

.en .about .title h2 strong,
.en .product-category-wrapper .title h2 strong,
.en .expert-wrapper h3,
.en .expert-wrapper .link,
.en .aboutus-card-wrapper .title .mandarin,
.en .contact-wrapper .title .mandarin {
  letter-spacing: normal;
}
@media screen and (max-width: 768px) {
  .en .main-header .main-nav li ol li {
    width: initial;
  }
}/*# sourceMappingURL=index.css.map */