@charset "UTF-8";
/* 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;
  z-index: 9;
}

.main-header {
  margin: 0 auto;
  width: 92%;
  max-width: 1760px;
}
@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: 94%;
  }
}
.main-header {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.main-header .logo {
  display: flex;
  align-items: center;
}
.main-header .logo img {
  width: 100%;
}
@media screen and (min-width: 1366px) {
  .main-header .main-nav {
    width: 80%;
  }
}
@media screen and (min-width: 1366px) {
  .main-header .main-nav {
    width: 84%;
  }
}
@media screen and (min-width: 1920px) {
  .main-header .main-nav {
    width: 60%;
  }
}
.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: flex-end;
  gap: 1rem;
  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);
  white-space: nowrap;
}
@media screen and (min-width: 769px) {
  .main-header .main-nav a {
    position: relative;
    z-index: 1;
    padding: 0 2px 0 1vw;
  }
  .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 {
  background-color: #333;
  color: white;
  padding: 48px 0;
}
.main-footer .container {
  display: flex;
  gap: 20px 0;
}
@media screen and (max-width: 768px) {
  .main-footer .container {
    box-sizing: border-box;
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    flex-direction: column;
  }
}
.main-footer .logo {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  padding-right: 3rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.main-footer .logo img {
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .main-footer .logo {
    border: 0;
    padding-right: 0;
    justify-content: center;
  }
}
.main-footer .info {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
  padding-left: 3rem;
}
@media screen and (max-width: 768px) {
  .main-footer .info {
    width: 100%;
    padding-left: 0;
    justify-content: flex-start;
  }
}
.main-footer .info li {
  display: flex;
  margin: 10px 0;
  font-size: 16px;
  font-weight: 200;
}
@media screen and (max-width: 768px) {
  .main-footer .info li {
    align-items: flex-start;
    line-height: 1.65;
  }
}
.main-footer .info .label {
  width: 4em;
  text-align: justify;
  text-justify: distribute-all-lines;
  -moz-text-align-last: justify;
       text-align-last: justify;
  font-weight: 900;
}
.main-footer .info .details {
  min-width: 0;
  overflow-wrap: anywhere;
}
.main-footer .info .details:before {
  content: ": ";
}

.copyrights-footer {
  padding: 15px 0;
  text-align: center;
  font-size: 16px;
  background: #333;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: white;
}
@media screen and (max-width: 768px) {
  .copyrights-footer {
    box-sizing: border-box;
    padding-right: 20px;
    padding-left: 20px;
    line-height: 1.6;
  }
}

.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;
}

.cta {
  position: relative;
  isolation: isolate;
  height: clamp(150px, 10.5vw, 188px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, rgba(35, 24, 21, 0.98), rgba(64, 58, 50, 0.94) 52%, rgba(27, 27, 27, 0.98));
  border-top: 1px solid rgba(213, 179, 102, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(213, 179, 102, 0.18), transparent 28%, transparent 72%, rgba(255, 255, 255, 0.08)), repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 108px);
  opacity: 0.7;
}
.cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 5vw, 88px);
  width: 100%;
}
.cta .cta-content {
  max-width: 880px;
  font-size: clamp(18px, 1.35vw, 24px);
  font-weight: 300;
  line-height: 1.55;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.88);
}
.cta .cta-content::first-line {
  color: #fff;
  font-weight: 500;
}
.cta .more-btn {
  flex: 0 0 auto;
  min-width: 180px;
  border: 1px solid rgba(213, 179, 102, 0.56);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  transition: border-color 0.3s ease-in-out, color 0.3s ease-in-out, box-shadow 0.3s ease-in-out, background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.cta .more-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  white-space: nowrap;
}
.cta .more-btn:hover {
  border-color: #d5b366;
  background-color: #d5b366;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
  color: #231815;
  transform: translateY(-4px);
}

@media screen and (max-width: 768px) {
  .cta {
    height: auto;
    min-height: 0;
    padding: 42px 0;
  }
  .cta .container {
    box-sizing: border-box;
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .cta .cta-content {
    max-width: none;
    font-size: 17px;
    line-height: 1.7;
  }
  .cta .more-btn {
    width: 100%;
  }
  .cta .more-btn a {
    min-height: 52px;
  }
}
.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;
}

.deco-gear {
  position: absolute;
  background: url("../images/home/gear.svg") 50% 50%/contain;
}
.deco-gear:before {
  content: "";
  display: block;
  padding-bottom: 87%;
}
.deco-gear-1 {
  top: 140px;
  left: 8%;
  width: 150px;
}
.deco-gear-2 {
  right: 9%;
  bottom: 60px;
  width: 100px;
}
@media screen and (max-width: 576px) {
  .deco-gear {
    display: none;
  }
}

.about {
  background: url("../images/home/product-bg.png") 50% 50%/cover no-repeat;
  padding: 200px 0 130px;
}
.about .container {
  margin: 0 auto;
  width: 92%;
  max-width: 1280px;
}
@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: 94%;
  }
}
.about .container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 100px 100px;
}
@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:before {
  content: "";
  display: block;
  padding-bottom: 63.55%;
}
.about .img {
  width: 38%;
  background: url("../images/home/about.png") 50% 50%/cover;
}
@media screen and (max-width: 768px) {
  .about .img {
    width: 100%;
  }
}

.product-category-wrapper {
  position: relative;
  padding: 80px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 40px 0;
}
.product-category-wrapper .container {
  margin: 0 auto;
  width: 92%;
  max-width: 1560px;
}
@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: 94%;
  }
}
.product-category-wrapper .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px 0;
}
.product-category-wrapper .img {
  flex: 2 1 400px;
  min-width: 0;
}
.product-category-wrapper .img img {
  width: 100%;
  height: auto;
  display: block;
}
.product-category-wrapper {
  /* 右側：縮放主體 */
}
.product-category-wrapper .right {
  flex: 1 1 auto;
  text-align: center;
  box-sizing: border-box;
}
@media screen and (max-width: 576px) {
  .product-category-wrapper .right {
    padding: 0 1rem;
  }
}
.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 a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-category-wrapper .category .btn-wrapper:nth-of-type(even) li {
  background: #aeaeae;
}
.product-category-wrapper .category li {
  height: 54px;
  font-size: 25px;
  color: #fff;
  background: #d5b366;
  filter: drop-shadow(7px 7px 5px rgba(0, 0, 0, 0.75));
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
}
@media screen and (max-width: 1599px) {
  .product-category-wrapper .category li {
    font-size: 21px;
  }
}
.product-category-wrapper .category li:hover {
  transform: translateY(-0.5rem);
}

.en .product-category-wrapper .category {
  padding: 50px 0;
}
.en .product-category-wrapper .category li {
  height: -moz-fit-content;
  height: fit-content;
  line-height: 1.5;
  padding: 1rem;
  font-size: 21px;
  min-width: -moz-fit-content;
  min-width: fit-content;
  min-height: -moz-fit-content;
  min-height: fit-content;
}

.expert-wrapper {
  padding: 100px 0 120px;
  background-image: url("../images/home/product-bg.png"), linear-gradient(to bottom, transparent 80%, #333 80%);
  /* 統一設定背景屬性 */
  background-position: center center, center center;
  background-size: cover, 100% 100%;
  background-repeat: no-repeat, no-repeat;
}
.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%;
}

.home .video-wrapper {
  position: relative;
  padding: 150px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 40px 0;
}
.home .video-wrapper .container {
  margin: 0 auto;
  width: 92%;
  max-width: 1560px;
}
@media screen and (max-width: 640px) {
  .home .video-wrapper .container {
    width: 94%;
  }
}
@media screen and (min-width: 640px) {
  .home .video-wrapper .container {
    width: 90%;
  }
}
@media screen and (min-width: 1024px) {
  .home .video-wrapper .container {
    width: 94%;
  }
}
.home .video-wrapper .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px 0;
}
.home .video-wrapper .img {
  flex: 7 400px;
  min-width: 0;
  /* ⭐ 柔順滑動效果 */
}
.home .video-wrapper .img .home-video-swiper .swiper-wrapper {
  transition-timing-function: ease-in-out;
}
.home .video-wrapper .img .video-overlay {
  position: absolute;
  inset: 0;
  cursor: pointer;
  z-index: 2;
}
.home .video-wrapper .img .home-video-swiper {
  width: 80%;
  height: auto;
  padding-bottom: 3rem;
}
@media screen and (max-width: 576px) {
  .home .video-wrapper .img .home-video-swiper {
    margin-top: 0;
    margin-bottom: 0;
    width: 100%;
  }
}
.home .video-wrapper .img .home-video-swiper .video-embed {
  justify-self: center;
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
@media screen and (max-width: 576px) {
  .home .video-wrapper .img .home-video-swiper .video-embed {
    width: 90%;
    height: auto;
  }
}
.home .video-wrapper .img .home-video-swiper .video-embed iframe {
  position: absolute;
  pointer-events: none;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
}
.home .video-wrapper .img .home-video-swiper .swiper-pagination-bullet {
  width: 1rem;
  height: 1rem;
  background: #ccc;
  opacity: 1;
}
.home .video-wrapper .img .home-video-swiper .swiper-pagination-bullet-active {
  background: #d1af66;
}
.home .video-wrapper .right {
  flex: 2 300px;
  text-align: center;
}
.home .video-wrapper .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.home .video-wrapper .title h2 {
  font-size: 21px;
  font-weight: 300;
  color: #949494;
}
.home .video-wrapper .title h2 strong {
  letter-spacing: 6px;
  font-size: 30px;
  font-weight: bold;
  color: #000000;
}
.home .video-wrapper .slogan {
  margin-top: 50px;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
  color: #bf161d;
}
@media screen and (max-width: 576px) {
  .home .video-wrapper .slogan {
    width: 80%;
    height: auto;
    margin: 50px auto 0;
    font-size: 21px;
  }
}
.home .video-wrapper .info {
  margin-top: 35px;
  text-align: center;
  font-size: 20px;
  font-weight: 200;
  line-height: 30px;
  color: #505050;
}
.home .video-wrapper .deco-gear-2 {
  bottom: 10%;
}
@media screen and (max-width: 576px) {
  .home .video-wrapper .deco-gear {
    display: none;
  }
}
.home .video-wrapper .more-btn {
  border: #dddddd 1px solid;
  width: 80%;
  margin: 3rem auto 0 auto;
  border-radius: 0.5rem;
  transition: border 0.3s ease-in-out, color 0.3s ease-in-out, box-shadow 0.3s ease-in-out, background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.home .video-wrapper .more-btn a {
  display: block;
  padding: 14px 0;
}
.home .video-wrapper .more-btn:hover {
  border: #d5b366 1px solid;
  background-color: #d5b366;
  box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.15);
  color: white;
  transform: translateY(-0.25rem);
}

.en .home .video-wrapper .title h2 strong {
  letter-spacing: inherit;
}

.aboutus-card-wrapper {
  margin: 200px auto;
}
.aboutus-card-wrapper .container {
  margin: 0 auto;
  width: 92%;
  max-width: 960px;
}
@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: 94%;
  }
}
.aboutus-card-wrapper .container {
  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: 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: 94%;
  }
}
.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;
}
@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: 94%;
  }
}
.product-wrapper .container {
  display: flex;
  flex-wrap: wrap;
  gap: 100px;
}
.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.35);
}
.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;
  line-height: 56px;
}
.product-wrapper .information .title h4 {
  font-size: 31px;
  color: #636363;
}
.product-wrapper .information .csf-highlight-bar {
  display: none;
  max-width: 100%;
  box-sizing: border-box;
  margin-top: 32px;
  padding: 9px 18px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  background: #16345d;
  border-radius: 999px;
}
.product-wrapper .information .csf-highlight-bar strong {
  font-weight: 700;
  color: #d1af66;
  padding: 0 4px;
}
.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 .gasket-emphasis {
  margin-top: 22px;
  color: #231815;
}
.product-wrapper .information .gasket-emphasis__headline {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.35;
}
.product-wrapper .information .gasket-emphasis__slogan {
  margin-top: 6px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  color: #d1af66;
}
.product-wrapper .information .gasket-emphasis__badge {
  display: inline-flex;
  max-width: 100%;
  box-sizing: border-box;
  margin-top: 16px;
  padding: 9px 18px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  background: #16345d;
  border-radius: 999px;
}
.product-wrapper .information .gasket-emphasis__description {
  margin-top: 14px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.65;
  color: #373536;
}
.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-wrapper.product-detail--filler-csf .container {
  gap: 64px;
}
.product-wrapper.product-detail--filler-csf .information {
  min-width: 0;
}
.product-wrapper.product-detail--filler-csf .information .title h3 {
  font-size: 44px;
  line-height: 1.18;
}
.product-wrapper.product-detail--filler-csf .information .intro {
  margin-top: 28px;
}
.product-wrapper.product-detail--filler-csf .information .intro .category {
  font-size: 24px;
  line-height: 1.3;
}
.product-wrapper.product-detail--filler-csf .information .intro ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px 10px;
  padding-left: 0;
  margin-top: 18px;
  line-height: 1.45;
  list-style: none;
}
.product-wrapper.product-detail--filler-csf .information .intro li {
  box-sizing: border-box;
  min-width: 0;
  margin: 0;
  padding: 9px 10px;
  color: #505050;
  background: #f7f8fa;
  border-radius: 6px;
}
.product-wrapper.product-detail--filler-csf .information .intro li strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  color: #231815;
}
.product-wrapper.product-detail--filler-csf .information .intro li span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
  color: #505050;
}
.product-wrapper.product-detail--filler-csf .information .link {
  margin-top: 28px;
  padding: 14px 0;
  width: 220px;
  font-size: 20px;
}
.product-wrapper.gasket-product-wrapper .container {
  gap: 64px 100px;
}
.product-wrapper.gasket-product-wrapper .information .intro {
  margin-top: 22px;
}
.product-wrapper.gasket-product-wrapper .information .intro ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px 20px;
  margin-top: 16px;
  line-height: 1.35;
}
@media screen and (max-width: 1320px) {
  .product-wrapper.gasket-product-wrapper .information .intro ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 960px) {
  .product-wrapper.gasket-product-wrapper .information .intro ul {
    grid-template-columns: 1fr;
  }
}
.product-wrapper.gasket-product-wrapper .information .intro ul li {
  margin: 0;
}
.product-wrapper.gasket-product-wrapper .information .link {
  margin: 34px auto 0;
  padding: 14px 0;
  width: 220px;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .product-wrapper .container {
    width: 100%;
    box-sizing: border-box;
    gap: 36px;
    padding-right: 20px;
    padding-left: 20px;
  }
  .product-wrapper .swiper {
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  }
  .product-wrapper .information {
    flex: 0 0 100%;
    min-width: 0;
  }
  .product-wrapper .information .title {
    gap: 8px 12px;
  }
  .product-wrapper .information .title h3 {
    font-size: 32px;
    line-height: 1.25;
  }
  .product-wrapper .information .title h4 {
    font-size: 22px;
    line-height: 1.35;
  }
  .product-wrapper .information .intro {
    margin-top: 28px;
  }
  .product-wrapper .information .intro .category {
    font-size: 22px;
    line-height: 1.35;
  }
  .product-wrapper .information .intro ul {
    margin-top: 20px;
    line-height: 1.6;
  }
  .product-wrapper .information .csf-highlight-bar {
    display: none;
  }
  .product-wrapper .information .gasket-emphasis__headline {
    font-size: 22px;
  }
  .product-wrapper .information .gasket-emphasis__slogan,
  .product-wrapper .information .gasket-emphasis__badge {
    font-size: 18px;
  }
  .product-wrapper .information .gasket-emphasis__description {
    font-size: 17px;
    line-height: 1.7;
  }
  .product-wrapper .information .link {
    margin-top: 44px;
    padding: 16px 0;
    width: 100%;
    max-width: 260px;
    font-size: 20px;
  }
  .product-wrapper.product-detail--filler-csf .container {
    gap: 32px;
  }
  .product-wrapper.product-detail--filler-csf .carousel {
    width: 100%;
  }
  .product-wrapper.product-detail--filler-csf .information .title h3 {
    font-size: 30px;
  }
  .product-wrapper.product-detail--filler-csf .information .intro {
    margin-top: 24px;
  }
  .product-wrapper.product-detail--filler-csf .information .intro ul {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 18px;
  }
  .product-wrapper.product-detail--filler-csf .information .intro li {
    min-height: 0;
    padding: 12px 14px;
  }
  .product-wrapper.gasket-product-wrapper .container {
    gap: 32px;
  }
  .product-wrapper.gasket-product-wrapper .information .intro {
    margin-top: 24px;
  }
  .product-wrapper.gasket-product-wrapper .information .link {
    margin-top: 34px;
  }
}

.series-wrapper .products-series-info {
  margin-bottom: 80px;
  padding: 0 3rem;
}
.series-wrapper .products-series-info p {
  font-size: 18px;
  line-height: 28px;
  color: #505050;
  position: relative;
}
.series-wrapper .products-series-info p:before {
  content: "";
  position: absolute;
  left: -20px;
  top: 9px;
  z-index: -1;
  width: 12px;
  height: 12px;
  background: #d5b366;
}
.series-wrapper .products-series-info.gasket-series-info {
  clear: both;
  max-width: 100%;
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  padding-right: 3rem;
  border-radius: 8px;
  background: #fff;
}
.series-wrapper .products-series-info.gasket-series-info h3 {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.35;
  color: #231815;
}
.series-wrapper .products-series-info.gasket-series-info p {
  position: relative;
}
.series-wrapper .products-series-info.gasket-series-info p:before {
  content: none;
}
.series-wrapper .products-series-info.gasket-series-info .gasket-series-info__slogan {
  margin-top: 8px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.45;
  color: #d1af66;
}
.series-wrapper .products-series-info.gasket-series-info .gasket-series-info__badge {
  display: inline-flex;
  max-width: 100%;
  box-sizing: border-box;
  margin-top: 18px;
  padding: 9px 18px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
  color: #fff;
  background: #16345d;
  border-radius: 999px;
}
.series-wrapper .products-series-info.gasket-series-info .gasket-series-info__text {
  margin-top: 18px;
  font-size: 18px;
  line-height: 1.75;
  color: #505050;
  padding-left: 1.5rem;
}
.series-wrapper .products-series-info.gasket-series-info .gasket-series-info__text:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 10px;
  z-index: 0;
  width: 12px;
  height: 12px;
  background: #d5b366;
}
@media screen and (max-width: 768px) {
  .series-wrapper .products-series-info.gasket-series-info {
    margin-bottom: 52px;
    padding: 26px 24px 30px;
  }
  .series-wrapper .products-series-info.gasket-series-info h3 {
    font-size: 24px;
    line-height: 1.35;
  }
  .series-wrapper .products-series-info.gasket-series-info .gasket-series-info__slogan {
    font-size: 19px;
    line-height: 1.45;
  }
  .series-wrapper .products-series-info.gasket-series-info .gasket-series-info__badge {
    display: flex;
    border-radius: 14px;
    font-size: 17px;
    line-height: 1.55;
  }
  .series-wrapper .products-series-info.gasket-series-info .gasket-series-info__text {
    padding-left: 16px;
    font-size: 17px;
    line-height: 1.75;
  }
  .series-wrapper .products-series-info.gasket-series-info .gasket-series-info__text:before {
    left: 0;
    top: 10px;
    z-index: 0;
    width: 8px;
    height: 8px;
  }
}

.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: 94%;
  }
}
.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 .title {
  padding-bottom: 13px;
  color: #000;
  font-size: 27px;
  font-weight: 700;
  position: relative;
  max-width: 110px;
  margin-bottom: 6px;
  white-space: nowrap;
}
.product-details-wrapper .title:before {
  content: "";
  position: absolute;
  right: -5%;
  height: 45%;
  bottom: 3px;
  z-index: -1;
  width: 90%;
  background: #d5b366;
  transform: skew(-30deg, 0);
}
.product-details-wrapper .title-marketing {
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.product-details-wrapper .text {
  margin-bottom: 5rem;
  font-size: 18px;
  line-height: 28px;
  color: #505050;
}
.product-details-wrapper .gasket-industries-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 35px;
}
@media screen and (max-width: 960px) {
  .product-details-wrapper .gasket-industries-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.product-details-wrapper .gasket-industry {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 168px;
  padding: 24px 16px;
  text-align: center;
  color: #231815;
  border: 1px solid #c9c9c9;
  border-radius: 6px;
  background: #fff;
}
.product-details-wrapper .gasket-industry__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  font-size: 42px;
  color: #16345d;
  border: 1px solid #a8a8a8;
  border-radius: 50%;
}
.product-details-wrapper .gasket-industry__label {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
}
.product-details-wrapper .nsf-certification {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: 36px 44px;
  align-items: center;
  margin-top: 35px;
}
@media screen and (max-width: 960px) {
  .product-details-wrapper .nsf-certification {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
.product-details-wrapper .nsf-certification__certificate {
  padding: 18px;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  background: #fffff8;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
}
.product-details-wrapper .nsf-certification__certificate img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 3px;
}
.product-details-wrapper .nsf-certification__content {
  min-width: 0;
}
.product-details-wrapper .nsf-certification__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  box-sizing: border-box;
  padding: 10px 18px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
  color: #fff;
  background: #16345d;
  border-radius: 999px;
}
.product-details-wrapper .nsf-certification__badge i {
  flex: 0 0 auto;
  font-size: 22px;
}
.product-details-wrapper .nsf-certification__lead {
  margin-top: 24px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  color: #231815;
}
@media screen and (max-width: 768px) {
  .product-details-wrapper .nsf-certification__lead {
    font-size: 18px;
  }
}
.product-details-wrapper .nsf-certification__description {
  margin-top: 18px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  color: #505050;
}
.product-details-wrapper .nsf-certification__points {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 8px;
}
@media screen and (max-width: 960px) {
  .product-details-wrapper .nsf-certification__points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.product-details-wrapper .nsf-certification__point {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 168px;
  padding: 20px 12px;
  text-align: center;
  color: #231815;
}
.product-details-wrapper .nsf-certification__point .nsf-certification__point-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  margin-bottom: 16px;
  color: #16345d;
  border: 1px solid #c7c7c7;
  border-radius: 50%;
}
.product-details-wrapper .nsf-certification__point i {
  font-size: 40px;
}
.product-details-wrapper .nsf-certification__point strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  color: #231815;
}
.product-details-wrapper .nsf-certification__point span {
  display: block;
  font-size: 18px;
  line-height: 1.55;
  color: #505050;
}
.product-details-wrapper .gasket-why-text {
  max-width: 100%;
  margin-top: 35px;
  margin-bottom: 35px;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: #505050;
}
@media screen and (max-width: 768px) {
  .product-details-wrapper .gasket-why-text {
    margin-bottom: 30px;
  }
}
.product-details-wrapper .gasket-why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
@media screen and (max-width: 960px) {
  .product-details-wrapper .gasket-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.product-details-wrapper .gasket-why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 168px;
  padding: 20px 12px;
  text-align: center;
  color: #231815;
}
.product-details-wrapper .gasket-why-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  margin-bottom: 16px;
  font-size: 40px;
  color: #16345d;
  border: 1px solid #a8a8a8;
  border-radius: 50%;
}
.product-details-wrapper .gasket-why-item__title {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
}
.product-details-wrapper .gasket-why-item__line {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
  color: #505050;
}
.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: 16px;
  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;
}
@media screen and (max-width: 768px) {
  .product-details-wrapper {
    padding: 70px 0 90px;
  }
  .product-details-wrapper .container {
    width: 100%;
    box-sizing: border-box;
    padding-right: 20px;
    padding-left: 20px;
  }
  .product-details-wrapper .title {
    max-width: -moz-fit-content;
    max-width: fit-content;
    font-size: 24px;
    line-height: 1.35;
    white-space: normal;
  }
  .product-details-wrapper .text {
    margin-bottom: 3.75rem;
    font-size: 17px;
    line-height: 1.7;
  }
  .product-details-wrapper .gasket-industries-grid,
  .product-details-wrapper .gasket-why-grid,
  .product-details-wrapper .nsf-certification__points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .product-details-wrapper .gasket-industry,
  .product-details-wrapper .gasket-why-item,
  .product-details-wrapper .nsf-certification__point {
    min-height: 150px;
    padding: 18px 10px;
  }
  .product-details-wrapper .gasket-industry__icon,
  .product-details-wrapper .gasket-why-item__icon,
  .product-details-wrapper .nsf-certification__point .nsf-certification__point-icon {
    width: 66px;
    height: 66px;
    margin-bottom: 12px;
    font-size: 34px;
  }
  .product-details-wrapper .nsf-certification__point i {
    font-size: 34px;
  }
  .product-details-wrapper .gasket-industry__label,
  .product-details-wrapper .gasket-why-item__title,
  .product-details-wrapper .nsf-certification__point strong {
    font-size: 18px;
  }
  .product-details-wrapper .gasket-why-item__line,
  .product-details-wrapper .nsf-certification__point span {
    font-size: 16px;
    line-height: 1.55;
  }
  .product-details-wrapper .nsf-certification {
    margin-top: 30px;
  }
  .product-details-wrapper .nsf-certification__certificate {
    padding: 12px;
  }
  .product-details-wrapper .nsf-certification__badge {
    align-items: flex-start;
    border-radius: 14px;
    font-size: 17px;
  }
  .product-details-wrapper .nsf-certification__lead {
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.65;
  }
  .product-details-wrapper .nsf-certification__description,
  .product-details-wrapper .gasket-why-text {
    font-size: 17px;
    line-height: 1.7;
  }
  .product-details-wrapper .details ul {
    margin-top: 24px;
    line-height: 1.7;
  }
  .product-details-wrapper .details table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.video-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 1rem;
  /* ≥ 992px：2 欄 */
}
@media (min-width: 992px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
.video-grid {
  /* ≥ 1440px：3 欄 */
}
@media (min-width: 1440px) {
  .video-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
  }
}
.video-grid .video-item, .video-grid .video-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.video-grid .video-item:hover, .video-grid .video-card:hover {
  transform: translateY(-4px);
}
.video-grid .video-item .video-title, .video-grid .video-card .video-title {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 500;
}
.video-grid .video-item .video-embed, .video-grid .video-card .video-embed {
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

/* 主網格容器：桌機版 1 列 2 欄 (1 Row 2 Columns) */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  max-width: 100%;
  margin-top: 35px;
}

/* 卡片內部布局：桌機版 圖左字右 */
.card-content {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

/* 圖片容器與佔位圖樣式 */
.card-image-wrapper {
  flex: 0 0 240px; /* 桌機固定圖片寬度 */
  width: 240px;
  height: 240px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #f1f5f9;
  border: 1px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* 右側文字內容區 */
.card-text {
  flex: 1;
  min-width: 0;
}

/* 標題樣式 */
.feature-title {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 14px 0;
  padding-bottom: 8px;
  border-bottom: 2px solid #d5b366;
}

/* 清單樣式 */
.feature-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.5;
  color: #505050;
}

.feature-list li:last-child {
  margin-bottom: 0;
}

/* 自訂清單項目圖示 */
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background-color: #d5b366;
  border-radius: 50%;
}

/* ===================================================
  響應式斷點 (RWD)：手機模式 (平板與手機 768px 以下)
  =================================================== */
@media (max-width: 768px) {
  /* 整體變為 1 欄直排 (上下兩個區塊) */
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  /* 卡片內部轉為：圖上字下 */
  .card-content {
    flex-direction: column;
    align-items: stretch;
  }
  /* 手機版圖片滿寬展示 */
  .card-image-wrapper {
    flex: none;
    width: 100%;
    height: 280px;
  }
  .feature-title {
    font-size: 18px;
    margin-top: 4px;
  }
}
/* 網格布局：預設欄位自動自適應（最小 200px 寬度） */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 7px;
}

/* 優勢卡片 */
.advantage-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.25s ease;
}

/* Icon 圓圈包覆層 */
.icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 18px;
  border-radius: 50%;
  color: #16345d;
  border: 1px solid #DDDDDD;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  transition: background-color 0.25s ease, color 0.25s ease;
}

/* 文案描述 */
.advantage-text {
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  line-height: 1.6;
  margin: 0;
}

.advantage-subtext {
  display: block;
  font-size: 18px;
  font-weight: 400;
  color: #505050;
  margin-top: 4px;
}

/* RWD 手機版細微調整 */
@media (max-width: 640px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr); /* 手機版雙欄顯示 */
    gap: 12px;
  }
  .advantage-card {
    padding: 20px 12px;
  }
  .icon-wrapper {
    margin-bottom: 12px;
  }
  .advantage-text {
    font-size: 18px;
  }
}
@media (max-width: 400px) {
  .advantages-grid {
    grid-template-columns: 1fr; /* 極小螢幕單欄 */
  }
}
.product-details-wrapper.product-detail--filler-csf .csf-application-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 35px;
}
.product-details-wrapper.product-detail--filler-csf .csf-application-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 168px;
  padding: 24px 16px;
  text-align: center;
  color: #231815;
  background: #fff;
  border-radius: 8px;
}
.product-details-wrapper.product-detail--filler-csf .csf-application-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 18px;
  border-radius: 50%;
  color: #16345d;
  border: 1px solid #dddddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}
.product-details-wrapper.product-detail--filler-csf .csf-application-icon svg {
  display: block;
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.product-details-wrapper.product-detail--filler-csf .csf-application-icon img {
  display: block;
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-details-wrapper.product-detail--filler-csf .csf-application-card p {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 58px;
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.45;
  color: #000;
}
.product-details-wrapper.product-detail--filler-csf .csf-media-grid {
  display: grid;
  gap: 16px;
  margin-top: 35px;
}
.product-details-wrapper.product-detail--filler-csf .csf-media-grid--examples {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}
.product-details-wrapper.product-detail--filler-csf .csf-media-grid--examples .csf-media-card:nth-child(1) .csf-media-card__image {
  background: url("/dist/images/products/img-examples/img-examples-juice.png") center/cover no-repeat;
}
.product-details-wrapper.product-detail--filler-csf .csf-media-grid--examples .csf-media-card:nth-child(2) .csf-media-card__image {
  background: url("/dist/images/products/img-examples/img-examples-soysaucepaste.png") center/cover no-repeat;
}
.product-details-wrapper.product-detail--filler-csf .csf-media-grid--examples .csf-media-card:nth-child(3) .csf-media-card__image {
  background: url("/dist/images/products/img-examples/img-examples-liquid%20eggs.png") center/cover no-repeat;
}
.product-details-wrapper.product-detail--filler-csf .csf-media-grid--examples .csf-media-card:nth-child(4) .csf-media-card__image {
  background: url("/dist/images/products/img-examples/img-examples-cookingoil.png") center/cover no-repeat;
}
.product-details-wrapper.product-detail--filler-csf .csf-media-grid--examples .csf-media-card:nth-child(5) .csf-media-card__image {
  background: url("/dist/images/products/img-examples/img-examples-Honey.png") center/cover no-repeat;
}
.product-details-wrapper.product-detail--filler-csf .csf-media-grid--examples .csf-media-card:nth-child(6) .csf-media-card__image {
  background: url("/dist/images/products/img-examples/img-examples-soup.png") center/cover no-repeat;
}
.product-details-wrapper.product-detail--filler-csf .csf-media-grid--examples .csf-media-card:nth-child(7) .csf-media-card__image {
  background: url("/dist/images/products/img-examples/img-examples-Syrup.png") center/cover no-repeat;
}
.product-details-wrapper.product-detail--filler-csf .csf-media-grid--examples .csf-media-card:nth-child(8) .csf-media-card__image {
  background: url("/dist/images/products/img-examples/img-examples-jam.png") center/cover no-repeat;
}
.product-details-wrapper.product-detail--filler-csf .csf-media-grid--examples .csf-media-card:nth-child(9) .csf-media-card__image {
  background: url("/dist/images/products/img-examples/img-examples-tomatoketchup.png") center/cover no-repeat;
}
.product-details-wrapper.product-detail--filler-csf .csf-media-grid--examples .csf-media-card:nth-child(10) .csf-media-card__image {
  background: url("/dist/images/products/img-examples/img-examples-chilisauce.png") center/cover no-repeat;
}
.product-details-wrapper.product-detail--filler-csf .csf-media-grid--examples .csf-media-card:nth-child(11) .csf-media-card__image {
  background: url("/dist/images/products/img-examples/img-examples-mayonnaise.png") center/cover no-repeat;
}
.product-details-wrapper.product-detail--filler-csf .csf-media-grid--examples .csf-media-card:nth-child(12) .csf-media-card__image {
  background: url("/dist/images/products/img-examples/img-examples-lotion.png") center/cover no-repeat;
}
.product-details-wrapper.product-detail--filler-csf .csf-media-grid--examples .csf-media-card:nth-child(13) .csf-media-card__image {
  background: url("/dist/images/products/img-examples/img-examples-shampoo.png") center/cover no-repeat;
}
.product-details-wrapper.product-detail--filler-csf .csf-media-grid--examples .csf-media-card:nth-child(14) .csf-media-card__image {
  background: url("/dist/images/products/img-examples/img-examples-high-viscosity-cosmetics.png") center/cover no-repeat;
}
.product-details-wrapper.product-detail--filler-csf .csf-media-grid--examples .csf-media-card:nth-child(15) .csf-media-card__image {
  background: url("/dist/images/products/img-examples/img-examples-high-viscosity-creams.png") center/cover no-repeat;
}
.product-details-wrapper.product-detail--filler-csf .csf-media-grid--applications {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.product-details-wrapper.product-detail--filler-csf .csf-media-grid--applications .csf-media-card__image {
  aspect-ratio: 1.35/1;
}
.product-details-wrapper.product-detail--filler-csf .csf-media-grid--applications .csf-media-card figcaption {
  min-height: 64px;
  padding: 10px 12px;
  font-size: 15px;
  line-height: 1.35;
  word-break: normal;
  overflow-wrap: break-word;
}
.product-details-wrapper.product-detail--filler-csf .csf-media-grid--industries {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.product-details-wrapper.product-detail--filler-csf .csf-media-grid--industries .csf-media-card:nth-child(1) .csf-media-card__image {
  background: url("/dist/images/products/img-industries/img-industries-foodprocessing.png") center/cover no-repeat;
}
.product-details-wrapper.product-detail--filler-csf .csf-media-grid--industries .csf-media-card:nth-child(2) .csf-media-card__image {
  background: url("/dist/images/products/img-industries/img-industries-beveragemanufacturing.png") center/cover no-repeat;
}
.product-details-wrapper.product-detail--filler-csf .csf-media-grid--industries .csf-media-card:nth-child(3) .csf-media-card__image {
  background: url("/dist/images/products/img-industries/img-industries-dairyindustry.png") center/cover no-repeat;
}
.product-details-wrapper.product-detail--filler-csf .csf-media-grid--industries .csf-media-card:nth-child(4) .csf-media-card__image {
  background: url("/dist/images/products/img-industries/img-industries-pharmaceutical-industry.png") center/cover no-repeat;
}
.product-details-wrapper.product-detail--filler-csf .csf-media-grid--industries .csf-media-card:nth-child(5) .csf-media-card__image {
  background: url("/dist/images/products/img-industries/img-industries-packaging-equipment.png") center/cover no-repeat;
}
.product-details-wrapper.product-detail--filler-csf .csf-media-grid--industries .csf-media-card:nth-child(6) .csf-media-card__image {
  background: url("/dist/images/products/img-industries/img-industries-pure-water-systems.png") center/cover no-repeat;
}
.product-details-wrapper.product-detail--filler-csf .csf-media-card {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  text-align: center;
  color: #231815;
  background: #fff;
  border: 1px solid #dddddd;
  border-radius: 8px;
}
.product-details-wrapper.product-detail--filler-csf .csf-media-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, transparent calc(50% - 1px), #d9d9d9 calc(50% - 1px), #d9d9d9 calc(50% + 1px), transparent calc(50% + 1px)), linear-gradient(45deg, transparent calc(50% - 1px), #d9d9d9 calc(50% - 1px), #d9d9d9 calc(50% + 1px), transparent calc(50% + 1px)), #f6f7f8;
}
.product-details-wrapper.product-detail--filler-csf .csf-media-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-details-wrapper.product-detail--filler-csf .csf-media-card figcaption {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 10px 8px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  color: #231815;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
@media (max-width: 1536px) {
  .product-details-wrapper.product-detail--filler-csf .csf-media-grid--examples {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}
@media (max-width: 1024px) {
  .product-details-wrapper.product-detail--filler-csf .csf-media-grid--examples {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .product-details-wrapper.product-detail--filler-csf .csf-media-grid--applications {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .product-details-wrapper.product-detail--filler-csf .csf-application-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .product-details-wrapper.product-detail--filler-csf .csf-application-card {
    min-height: 168px;
    padding: 20px 12px;
  }
  .product-details-wrapper.product-detail--filler-csf .csf-application-icon {
    width: 66px;
    height: 66px;
    margin-bottom: 12px;
    font-size: 34px;
  }
  .product-details-wrapper.product-detail--filler-csf .csf-application-card p {
    min-height: 52px;
    font-size: 18px;
  }
  .product-details-wrapper.product-detail--filler-csf .csf-media-grid--examples {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }
  .product-details-wrapper.product-detail--filler-csf .csf-media-grid--applications {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .product-details-wrapper.product-detail--filler-csf .csf-media-grid--applications .csf-media-card__image {
    aspect-ratio: 1.2/1;
  }
  .product-details-wrapper.product-detail--filler-csf .csf-media-grid--applications .csf-media-card figcaption {
    min-height: 56px;
    padding: 8px 8px;
    font-size: 13px;
  }
  .product-details-wrapper.product-detail--filler-csf .csf-media-grid--industries {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .product-details-wrapper.product-detail--filler-csf .csf-media-card figcaption {
    min-height: 54px;
    padding: 8px 6px;
    font-size: 14px;
  }
}

.videos .video-wrapper .container {
  padding: 0 0 150px 0;
}
.videos .video-wrapper .container .video-series {
  margin-bottom: 5rem;
}
.videos .video-wrapper .container .video-series:last-child {
  margin-bottom: 0;
}
.videos .video-wrapper .container .series-title {
  font-size: 27px;
  font-weight: 700;
  color: #d5b366;
  margin-bottom: 0.5rem;
}
.videos .video-wrapper .container .product-title {
  padding-bottom: 13px;
  color: #000;
  font-size: 27px;
  font-weight: 700;
  position: relative;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin-bottom: 6px;
}
.videos .video-wrapper .container .product-title:before {
  content: "";
  position: absolute;
  right: -5%;
  height: 45%;
  bottom: 3px;
  z-index: -1;
  width: 90%;
  background: #d5b366;
  transform: skew(-30deg, 0);
}
.videos .video-wrapper .video-empty {
  text-align: center;
  padding: 80px 20px;
  font-size: 1.25rem;
  color: #777;
}

.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: 94%;
  }
}
.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;
}
@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: 94%;
  }
}
.contact-wrapper .container {
  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: 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;
}

.main-nav .dropmenu {
  position: relative;
  display: inline-block;
}
.main-nav .dropmenu_trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0rem 1.75rem;
  cursor: pointer;
}
.main-nav .dropmenu_trigger.active .icon {
  transform: rotate(180deg);
}
.main-nav .dropmenu_menu {
  position: absolute;
  top: 100%;
  padding: 0;
  width: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease-in-out;
  overflow: hidden;
  padding: 0 1vw;
  background-color: #fff;
}
.main-nav .dropmenu_menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.main-nav .dropmenu_item {
  padding: 0.75rem 0;
  white-space: nowrap;
  transition: background-color 0.2s ease-in-out;
}
.main-nav .dropmenu_item a {
  color: inherit;
  text-decoration: none;
  display: block;
  width: 100%;
  background-color: white;
  padding-left: 0;
}
@media screen and (min-width: 769px) {
  .main-nav .dropmenu_item a:hover, .main-nav .dropmenu_item a.active {
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.4);
  }
  .main-nav .dropmenu_item a:hover:before, .main-nav .dropmenu_item a.active:before {
    content: "";
    position: absolute;
    right: 0;
    height: 45%;
    bottom: 0;
    z-index: -1;
    width: 100%;
    background: #d5b366;
    transform: skew(-30deg, 0);
  }
}
.main-nav .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-nav .main-header .main-nav li ol li {
    width: initial;
  }
  .main-nav .dropmenu_menu {
    background-color: #f8f8f8;
    width: 100%;
  }
  .main-nav .dropmenu_menu .dropmenu_item {
    padding: 0;
  }
  .main-nav .dropmenu_menu .dropmenu_item a {
    border-top: 1px solid #ddd;
  }
  .main-nav .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: 94%;
  }
}

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

.breadcrumbs {
  margin: 0 auto;
  width: 92%;
  max-width: 1480px;
}
@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: 94%;
  }
}
.breadcrumbs {
  margin: 60px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  flex-wrap: wrap;
  color: #d1af66;
}
.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 */