.fliter::-webkit-scrollbar {
  width: 2px;
}
body::-webkit-scrollbar-thumb {
  border-radius: 12px;
  -webkit-box-shadow: inset 0 0 5px rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.3);
}
body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 5px rgba(255, 255, 255, 0.2);
  border-radius: 0;
  background: transparent;
  position: absolute;
}
html {
  scroll-behavior: smooth;
}
body {
  text-rendering: optimizeLegibility;
  background-color: #f7f7f7;
  position: relative;
  font-family: Noto Sans SC, sans-serif;
  width: 100%;
}
body button {
  cursor: pointer;
}
body.overflow-y-h {
  overflow-y: hidden;
  padding-right: 7px;
}
@media screen and (min-width: 1px) and (max-width: 768px) {
  body.overflow-y-h {
    padding-right: 0;
  }
}
body a {
  color: #333;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-user-select: none;
  -moz-user-focus: none;
  -moz-user-select: none;
}
body a,
body a:hover,
body a:active,
body a:visited,
body a:link,
body a:focus {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
  outline: none;
  text-decoration: none;
}
@media screen and (min-width: 769px) {
  .pc-hide {
    display: none!important;
  }
}
.main-header {
  width: 100%;
  position: sticky;
  z-index: 98;
  top: 0;
  left: 0;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #e5e5e5;
  padding: 12px 30px;
  gap: 30px;
  height: 72px;
}
@media screen and (max-width: 1024px) {
  .main-header {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px 0;
    padding: 12px 12px 6px;
    height: 96px;
  }
}
.main-header .logo {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
.main-header .logo img {
  width: auto;
  height: 32px;
}
@media screen and (max-width: 1024px) {
  .main-header .logo img {
    height: 28px;
  }
}
.main-header .logo .slogan {
  font-size: 12px;
  color: #000;
  font-weight: 500;
  letter-spacing: 0;
}
.main-header .base {
  position: relative;
  width: 100%;
}
.main-header .base .base-box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  transition: all 0.3s;
}
@media screen and (min-width: 1025px) {
  .main-header .base .base-box {
    justify-content: end;
    gap: 0 60px;
  }
}
.main-header .base .base-box .base-item {
  position: relative;
}
.main-header .base .base-box .base-item .base-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  line-height: 1.2;
  text-decoration: none;
}
@media screen and (min-width: 1025px) {
  .main-header .base .base-box .base-item .base-link {
    font-size: 16px;
  }
}
.main-header .base .base-box .base-item .base-link.is-active {
  font-weight: 700;
}
.main-header .base .base-box .base-item .base-link--toggle .base-chevron {
  width: 10px;
  height: 10px;
  transform: rotate(90deg);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
@media screen and (min-width: 1025px) {
  .main-header .base .base-box .base-item .base-link--toggle .base-chevron {
    width: 12px;
    height: 12px;
  }
}
.main-header .base .base-box .base-item.is-open .base-link--toggle .base-chevron {
  transform: rotate(-90deg);
}
.main-header .base .base-box .base-item.is-active > .base-link--toggle {
  color: #ee2d2e;
  font-weight: 700;
}
.main-header .base .base-box .base-item .base-submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 148px;
  max-width: min(220px, 90vw);
  max-height: min(60vh, 320px);
  overflow-y: auto;
  padding: 8px 0;
  margin: 0;
  list-style: none;
  background-color: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  z-index: 120;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.main-header .base .base-box .base-item .base-sublink {
  display: block;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  color: #000;
  white-space: nowrap;
  text-decoration: none;
}
.main-header .base .base-box .base-item .base-sublink:hover,
.main-header .base .base-box .base-item .base-sublink.is-active {
  background-color: #f5f5f5;
  color: #ee2d2e;
}
.main-header .base .base-box .base-item .base-sublink.is-active {
  font-weight: 700;
}
.main-header .base .base-box .base-item.is-open .base-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
@media screen and (max-width: 1024px) {
  .main-header .base .base-box .base-item .base-submenu {
    left: 0;
    transform: translateY(6px);
  }
  .main-header .base .base-box .base-item.is-open .base-submenu {
    transform: translateY(0);
  }
}
@media screen and (min-width: 1025px) {
  .main-header .base .base-box .base-item.base-item--dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 12px;
  }
  .main-header .base .base-box .base-item.base-item--dropdown:hover .base-submenu,
  .main-header .base .base-box .base-item.base-item--dropdown:focus-within .base-submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
  .main-header .base .base-box .base-item.base-item--dropdown:hover .base-link--toggle .base-chevron,
  .main-header .base .base-box .base-item.base-item--dropdown:focus-within .base-link--toggle .base-chevron {
    transform: rotate(-90deg);
  }
}
.main-header .base .base-box .base-item:hover {
  color: #000;
}
.main-header .base .base-box .base-item.activate {
  color: #000;
}
.main-header .contect {
  position: relative;
  height: 48px;
  width: fit-content;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  place-content: center;
  gap: 0 6px;
  background-color: #000;
  border-radius: 99px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.75, -1.62, 0.47, 2.27);
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  color: #ffcb00;
  z-index: 1;
  flex-shrink: 0;
  padding: 0 30px;
}
@media screen and (max-width: 1024px) {
  .main-header .contect {
    height: 40px;
    padding: 0 16px;
  }
}
.main-header .contect .lineicon {
  width: 28px;
  height: 28px;
  fill: #ffcb00;
  grid-row: 1 / span 2;
}
@media screen and (max-width: 768px) {
  .main-header .contect .lineicon {
    width: 24px;
    height: 24px;
  }
}
.main-header .contect .line-text-box {
  display: flex;
  flex-direction: column;
  gap: 2px;
  height: 12px;
  overflow: hidden;
}
.main-header .contect .line-text-box .line-text {
  font-size: 0.7em;
  line-height: 1;
  height: 12px;
  animation: line-text-box 5s linear infinite;
}
@keyframes line-text-box {
  0% {
    transform: translateY(0);
  }
  5% {
    transform: translateY(-12px);
  }
  55% {
    transform: translateY(-12px);
  }
  60% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
.main-header .contect:hover {
  transform: scale(1.1);
}
.main-header .contect:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(-75deg, #000000, #979797, #000000);
  animation: shinning 5s linear infinite;
  z-index: -1;
}
@keyframes shinning {
  0% {
    transform: translateX(-100%);
  }
  75% {
    transform: translateX(-100%);
  }
  90% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.main-header2 {
  --site-head-accent: #ee2d2e;
  --site-head-bar: #141414;
  --site-head-surface: #fff;
  position: fixed;
  z-index: 98;
  top: 0;
  left: 0;
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto;
  grid-template-areas: "brand . line" "nav nav nav";
  align-items: center;
  gap: 0 16px;
  padding: 10px 16px 0;
  background: linear-gradient(180deg, var(--site-head-bar) 0%, var(--site-head-bar) 52%, var(--site-head-surface) 52%, var(--site-head-surface) 100%);
  border-bottom: 3px solid var(--site-head-accent);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
@media screen and (min-width: 1025px) {
  .main-header2 {
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto;
    grid-template-areas: "brand nav line";
    gap: 0 32px;
    padding: 0 24px;
    min-height: 76px;
    background: var(--site-head-surface);
    border-bottom: 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  }
  .main-header2::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--site-head-accent), #ffcb00, var(--site-head-accent));
  }
}
.main-header2 .logo {
  grid-area: brand;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  min-width: 0;
  padding: 4px 0 10px;
}
.main-header2 .logo img {
  width: auto;
  height: 32px;
}
@media screen and (max-width: 1024px) {
  .main-header2 .logo img {
    height: 28px;
  }
}
.main-header2 .logo .slogan {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  letter-spacing: 0;
  white-space: nowrap;
}
@media screen and (min-width: 1025px) {
  .main-header2 .logo {
    padding: 12px 0;
  }
  .main-header2 .logo .slogan {
    color: #000;
  }
}
.main-header2 .contect {
  grid-area: line;
  position: relative;
  height: 48px;
  width: fit-content;
  max-width: min(100%, 280px);
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  place-content: center;
  gap: 0 6px;
  margin-bottom: 10px;
  background-color: #000;
  border-radius: 99px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.75, -1.62, 0.47, 2.27);
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  color: #ffcb00;
  z-index: 1;
  flex-shrink: 0;
  padding: 0 30px;
  text-decoration: none;
}
@media screen and (max-width: 1024px) {
  .main-header2 .contect {
    height: 40px;
    padding: 0 16px;
  }
}
@media screen and (min-width: 1025px) {
  .main-header2 .contect {
    margin-bottom: 0;
  }
}
.main-header2 .contect .lineicon {
  width: 28px;
  height: 28px;
  fill: #ffcb00;
  grid-row: 1 / span 2;
}
@media screen and (max-width: 768px) {
  .main-header2 .contect .lineicon {
    width: 24px;
    height: 24px;
  }
}
.main-header2 .contect .line-text-box {
  display: flex;
  flex-direction: column;
  gap: 2px;
  height: 12px;
  overflow: hidden;
}
.main-header2 .contect .line-text-box .line-text {
  font-size: 0.7em;
  line-height: 1;
  height: 12px;
  animation: line-text-box 5s linear infinite;
}
.main-header2 .contect:hover {
  transform: scale(1.05);
}
.main-header2 .contect:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(-75deg, #000000, #979797, #000000);
  animation: shinning 5s linear infinite;
  z-index: -1;
}
.main-header2 .site-head__nav {
  grid-area: nav;
  width: 100%;
  border-top: 1px solid #ececec;
  background-color: var(--site-head-surface);
}
@media screen and (min-width: 1025px) {
  .main-header2 .site-head__nav {
    border-top: 0;
    justify-self: center;
    max-width: 720px;
  }
}
.main-header2 .site-head__menu {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.main-header2 .site-head__menu::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width: 1025px) {
  .main-header2 .site-head__menu {
    justify-content: center;
    overflow: visible;
  }
}
.main-header2 .site-head__item {
  position: relative;
  flex-shrink: 0;
}
.main-header2 .site-head__item.is-active > .site-head__link,
.main-header2 .site-head__item.is-active > .site-head__trigger {
  color: var(--site-head-accent);
}
.main-header2 .site-head__link,
.main-header2 .site-head__trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #222;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}
@media screen and (min-width: 1025px) {
  .main-header2 .site-head__link,
  .main-header2 .site-head__trigger {
    padding: 22px 20px;
    font-size: 15px;
  }
}
.main-header2 .site-head__link.is-active,
.main-header2 .site-head__trigger.is-active {
  color: var(--site-head-accent);
  border-bottom-color: var(--site-head-accent);
}
.main-header2 .site-head__trigger .site-head__caret {
  width: 10px;
  height: 10px;
  transform: rotate(90deg);
  transition: transform 0.2s ease;
}
.main-header2 .site-head__item.is-open .site-head__trigger .site-head__caret {
  transform: rotate(-90deg);
}
.main-header2 .site-head__panel {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 130;
  margin: 0;
  padding: 14px 16px 18px;
  background-color: #fafafa;
  border: 1px solid #e8e8e8;
  border-top: 2px solid var(--site-head-accent);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}
.main-header2 .site-head__panel .site-head__panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 480px) {
  .main-header2 .site-head__panel .site-head__panel-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.main-header2 .site-head__panel .site-head__panel-link {
  display: block;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #222;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #eee;
  text-align: center;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.main-header2 .site-head__panel .site-head__panel-link:hover,
.main-header2 .site-head__panel .site-head__panel-link.is-active {
  border-color: var(--site-head-accent);
  color: var(--site-head-accent);
}
.main-header2 .site-head__panel .site-head__panel-link.is-active {
  font-weight: 700;
  background-color: #fff5f5;
}
@media screen and (max-width: 1024px) {
  .main-header2 .site-head__item--panel.is-open .site-head__panel {
    display: block;
    position: relative;
    left: auto;
    right: auto;
    box-shadow: none;
    border-left: 0;
    border-right: 0;
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (min-width: 1025px) {
  .main-header2 .site-head__item--panel {
    position: static;
  }
  .main-header2 .site-head__panel {
    position: fixed;
    left: 0;
    right: 0;
    top: 76px;
    padding: 20px 24px 24px;
    background-color: #fff;
    border: 0;
    border-top: 1px solid #eee;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
  }
  .main-header2 .site-head__panel .site-head__panel-grid {
    max-width: 960px;
    margin: 0 auto;
    grid-template-columns: repeat(auto-fill, minmax(108px, 1fr));
    gap: 8px;
  }
  .main-header2 .site-head__panel .site-head__panel-link {
    text-align: left;
  }
  .main-header2 .site-head__item--panel:hover .site-head__panel,
  .main-header2 .site-head__item--panel:focus-within .site-head__panel {
    display: block;
  }
  .main-header2 .site-head__item--panel:hover .site-head__trigger,
  .main-header2 .site-head__item--panel:focus-within .site-head__trigger {
    color: var(--site-head-accent);
    border-bottom-color: var(--site-head-accent);
  }
  .main-header2 .site-head__item--panel:hover .site-head__trigger .site-head__caret,
  .main-header2 .site-head__item--panel:focus-within .site-head__trigger .site-head__caret {
    transform: rotate(-90deg);
  }
}
@media screen and (max-width: 1024px) {
  body:has(.main-header2) .container {
    margin-top: 108px;
  }
}
@media screen and (min-width: 1025px) {
  body:has(.main-header2) .container {
    margin-top: 80px;
  }
}
@media screen and (max-width: 1024px) {
  body:has(.main-header2) main.blog-page {
    margin-top: 108px;
  }
}
@media screen and (min-width: 1025px) {
  body:has(.main-header2) main.blog-page {
    margin-top: 80px;
  }
}
.container .intro {
  width: 80vw;
  margin: 0 auto;
  color: #fff;
  position: relative;
  z-index: 2;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .container .intro {
    width: 100%;
  }
}
.container .intro .text {
  text-align: left;
  font-size: 16px;
  line-height: 2;
  font-weight: 500;
}
.container .intro .title {
  font-size: 42px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .container .intro .title {
    font-size: 22px;
  }
}
.container .intro .sub {
  opacity: 0.15;
}
@media screen and (max-width: 768px) {
  .container .intro .sub {
    font-size: 14px;
  }
}
.container .main {
  position: relative;
  z-index: 2;
  width: 100%;
}
.container .main .wrap {
  width: 100%;
  margin: 0 auto;
  /*background-color: #fff;*/
  /*padding: 80px 15% 100px;*/
}
.quicklink-section {
  width: 100%;
  max-width: 1280px;
  margin: 0 0 20px;
}
@media screen and (min-width: 1025px) {
  .quicklink-section {
    display: none;
  }
}
.quicklink-section .quick {
  position: relative;
  display: flex;
  overflow-x: auto;
  padding-left: 18px;
  mask-image: linear-gradient(to right, transparent 0, black 20px, black calc(100% - 20px), transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 20px, black calc(100% - 20px), transparent 100%);
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.quicklink-section .quick::-webkit-scrollbar {
  display: none;
}
.quicklink-section .quick .quicklink {
  display: flex;
  width: 100px;
  flex-direction: column;
  text-align: center;
  flex-shrink: 0;
}
.quicklink-section .quick .quicklink.active .quicktitle {
  background-color: #ffcb00;
}
@media screen and (max-width: 1024px) {
  .quicklink-section .quick .quicklink {
    width: 72px;
    margin-right: 10px;
    min-height: 95px;
  }
}
.quicklink-section .quick .quicklink a {
  position: relative;
}
.quicklink-section .quick .quicklink a img {
  aspect-ratio: 16 / 21;
  object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .quicklink-section .quick .quicklink .quicktitle {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    font-size: 13px;
    font-weight: 500;
    color: #000000;
    border: 2px solid #ffcb00;
    border-radius: 19px;
    background-color: #fff2c3;
  }
}
.area {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 10px;
  position: relative;
  grid-column: 1 / -1;
  mask-image: linear-gradient(to right, transparent 0, black 20px, black calc(100% - 20px), transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 20px, black calc(100% - 20px), transparent 100%);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.area::-webkit-scrollbar {
  display: none;
}
.area .area-box {
  display: flex;
  flex-wrap: nowrap;
  gap: 2px;
  padding: 10px 0;
}
@media screen and (min-width: 1025px) {
  .area .area-box {
    gap: 8px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
  }
}
.area .area-item {
  flex: 0 0 auto;
  min-width: 100px;
  padding: 4px 10px;
  background-color: #fff2c3;
  border: 1px solid #ffcb00;
  border-radius: 99px;
  text-align: center;
  white-space: nowrap;
}
.area .area-item.active {
  order: -1;
  background-color: #ffcb00;
}
.area .area-item .area-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-size: 13px;
  font-weight: 500;
}
.area .area-item .area-link .count {
  font-size: 11px;
  font-weight: 700;
  background-color: #e42525;
  color: #fff;
  padding: 0 4px;
  border-radius: 99px;
}
.goods-sec {
  width: 100%;
  padding: 0 30px;
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-auto-columns: auto 400px;
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  .goods-sec {
    grid-auto-columns: 1fr;
    padding: 0 10px;
    gap: 16px;
  }
}
.goods-sec .hero {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0 20px;
  grid-column: 1 / -1;
}
.goods-sec .hero .heroname {
  font-size: 20px;
  color: #000;
  font-weight: 500;
  grid-column: 1;
  grid-row: 1;
}
.goods-sec .hero .herosub {
  font-size: 14px;
  color: #000;
  font-weight: 500;
  grid-column: 1;
  grid-row: 2;
}
@media screen and (max-width: 768px) {
  .goods-sec .hero .herosub {
    font-size: 12px;
  }
}
.goods-sec .hero .searchopen {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: fit-content;
  background-color: #ffcb00;
  display: flex;
  align-items: center;
  height: 36px;
  transition: all 0.5s;
  font-weight: 500;
  font-size: 13px;
  padding: 0 12px;
  border-radius: 99px;
}
.goods-sec .hero .searchopen .search-icon {
  width: 20px;
  height: 20px;
  position: relative;
}
.goods-sec .hero .searchopen .search-icon .i-search {
  width: 100%;
  height: 100%;
  color: #e42525;
}
.goods-sec .hero .searchopen .search-icon .item-count {
  position: absolute;
  top: 47%;
  left: 45%;
  transform: translate(-50%, -50%);
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}
.goods-sec .hero .searchopen .searchtext {
  font-size: 13px;
  font-weight: 500;
  color: #000;
}
@media screen and (min-width: 1025px) {
  .goods-sec .hero .searchopen {
    display: none;
  }
}
.goods-sec .goods-list {
  grid-column: 1;
}
.goods-sec .filter {
  grid-column: 2;
}
.goods-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  .goods-list {
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
  }
}
.goods-list.hide {
  opacity: 0;
}
.goods-list .goods {
  position: relative;
  width: 100%;
  opacity: 1;
  transition: all 0.3s ease-in-out;
  will-change: transform;
}
.goods-list .goods:before {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 10px;
  background-color: #818181;
  top: 14px;
  left: -4px;
  border-radius: 0 0 0 4px;
}
@media screen and (min-width: 1025px) {
  .goods-list .goods:before {
    top: 20px;
  }
}
.goods-list .goods .label {
  width: fit-content;
  font-size: 12px;
  font-style: italic;
  color: #ffcb00;
  padding: 2px 11px;
  border-radius: 12px 2px 12px 0;
  background: linear-gradient(-45deg, black, #4d4d4d);
  font-weight: 700;
  position: absolute;
  z-index: 1;
  top: -4px;
  left: -4px;
  display: flex;
  align-items: center;
  gap: 2px;
}
.goods-list .goods .label .i-type {
  width: 12px;
  height: 12px;
  transform: skewX(-20deg);
}
@media screen and (min-width: 1025px) {
  .goods-list .goods .label .i-type {
    width: 16px;
    height: 16px;
  }
}
@media screen and (min-width: 1025px) {
  .goods-list .goods .label {
    font-size: 14px;
    padding: 2px 12px;
  }
}
.goods-list .goods .cover {
  position: relative;
  width: 100%;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}
.goods-list .goods .cover .codebox {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: center;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
  padding-top: 6px;
}
@media screen and (min-width: 1025px) {
  .goods-list .goods .cover .codebox {
    padding-top: 10px;
  }
}
.goods-list .goods .cover .codebox .codeitem {
  display: flex;
  align-items: baseline;
  font-size: clamp(10px, 1.6vw, 12px);
  color: #FFF;
  letter-spacing: 0;
  font-weight: 700;
}
.goods-list .goods .cover .codebox .codeitem:not(:last-child)::after {
  content: "";
  display: inline-block;
  height: 14px;
  position: relative;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  margin: 0 4px;
  top: 2px;
  left: 0;
}
@media screen and (min-width: 1025px) {
  .goods-list .goods .cover .codebox .codeitem:not(:last-child)::after {
    margin: 0 8px;
  }
}
.goods-list .goods .cover .codebox .codeitem .num {
  font-size: clamp(15px, 1.6vw, 20px);
  color: #ffcb00;
  font-style: italic;
  margin-right: 4px;
}
@media screen and (max-width: 1024px) {
  .goods-list .goods .cover .codebox .codeitem .num {
    margin-right: 2px;
  }
}
.goods-list .goods .cover .flag {
  position: absolute;
  top: 6px;
  right: 6px;
  border-radius: 3px;
  width: clamp(18px, 1.6vw, 22px);
  overflow: hidden;
  z-index: 1;
}
.goods-list .goods .cover .goods-img {
  transition: all 0.3s ease-in-out;
  width: 100%;
  position: relative;
  z-index: 0;
  aspect-ratio: 15 / 16;
}
.goods-list .goods .cover .goods-img.blur {
  filter: blur(5px);
}
.goods-list .goods .cover video {
  transition: all 0.3s ease-in-out;
  height: 100%;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 15 / 16;
}
.goods-list .goods .message {
  position: relative;
  padding: 8px;
  background-color: #FFF;
  border-radius: 0 0 12px 12px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .goods-list .goods .message {
    padding: 14px;
  }
}
.goods-list .goods .message .goodname {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: clamp(15px, 1.6vw, 20px);
  font-weight: 700;
  color: #000;
  letter-spacing: 0;
}
.goods-list .goods .message .price {
  font-size: clamp(14px, 1.6vw, 18px);
  color: #ee2d2e;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 6px;
}
.goods-list .goods .message .price .twd {
  font-size: 0.7em;
  margin-right: 2px;
}
.goods-list .goods .message .serve {
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
  max-width: 200px;
  width: 100%;
  gap: 3px;
  mask-image: linear-gradient(to right, #000 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, #000 0%, transparent 100%);
}
@media screen and (max-width: 1024px) {
  .goods-list .goods .message .serve {
    max-width: 140px;
  }
}
.goods-list .goods .message .serve::before {
  content: '';
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  background: url('/static/img/i-tick.svg') no-repeat center / contain;
}
@media screen and (min-width: 1024px) {
  .goods-list .goods .message .serve::before {
    width: 18px;
    height: 18px;
  }
}
.goods-list .goods .message .serve .item {
  font-size: 11px;
  color: #000;
  font-weight: 500;
  letter-spacing: 0;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .goods-list .goods .message .serve .item {
    font-size: 13px;
  }
}
.goods-list .goods .message .i-right-arrow {
  position: absolute;
  right: 6px;
  bottom: 6px;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
}
@media screen and (min-width: 768px) {
  .goods-list .goods .message .i-right-arrow {
    width: 14px;
    height: 14px;
    bottom: 9px;
  }
}
.goods-list .goods:hover .cover img {
  transform: scale(1.1);
}
.goods-list .goods:hover .cover video {
  transform: scale(1.1);
}
.breadcrumb {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  font-size: clamp(12px, 1.5vw, 14px);
  padding: 10px 20px;
}
@media screen and (max-width: 1024px) {
  .breadcrumb {
    padding: 10px;
  }
}
.breadcrumb .breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb li {
  white-space: nowrap;
}
.breadcrumb li a {
  color: #000;
}
.breadcrumb li:after {
  content: ">";
  padding: 0 8px;
  color: #000;
}
.breadcrumb li:last-child {
  text-overflow: ellipsis;
  overflow: hidden;
}
.breadcrumb li:last-child:after {
  content: "";
}
.breadcrumb li.active {
  color: #000;
}
.breadcrumb li.active a {
  color: #000;
}
.goods-loading {
  position: relative;
  bottom: 0;
  left: 0;
  z-index: 90;
  margin-top: 140px;
}
.goods-loading .loader {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  margin: 0 auto;
}
.goods-loading .loader .loader-bar {
  width: 8%;
  height: 24%;
  background: #808080;
  position: absolute;
  left: 50%;
  top: 30%;
  opacity: 0;
  border-radius: 50px;
  animation: fade458 1s linear infinite;
}
.goods-loading .loader .loader-bar.bar1 {
  transform: rotate(0deg) translate(0, -130%);
  animation-delay: 0s;
}
.goods-loading .loader .loader-bar.bar2 {
  transform: rotate(30deg) translate(0, -130%);
  animation-delay: -1.1s;
}
.goods-loading .loader .loader-bar.bar3 {
  transform: rotate(60deg) translate(0, -130%);
  animation-delay: -1s;
}
.goods-loading .loader .loader-bar.bar4 {
  transform: rotate(90deg) translate(0, -130%);
  animation-delay: -0.9s;
}
.goods-loading .loader .loader-bar.bar5 {
  transform: rotate(120deg) translate(0, -130%);
  animation-delay: -0.8s;
}
.goods-loading .loader .loader-bar.bar6 {
  transform: rotate(150deg) translate(0, -130%);
  animation-delay: -0.7s;
}
.goods-loading .loader .loader-bar.bar7 {
  transform: rotate(180deg) translate(0, -130%);
  animation-delay: -0.6s;
}
.goods-loading .loader .loader-bar.bar8 {
  transform: rotate(210deg) translate(0, -130%);
  animation-delay: -0.5s;
}
.goods-loading .loader .loader-bar.bar9 {
  transform: rotate(240deg) translate(0, -130%);
  animation-delay: -0.4s;
}
.goods-loading .loader .loader-bar.bar10 {
  transform: rotate(270deg) translate(0, -130%);
  animation-delay: -0.3s;
}
.goods-loading .loader .loader-bar.bar11 {
  transform: rotate(300deg) translate(0, -130%);
  animation-delay: -0.2s;
}
.goods-loading .loader .loader-bar.bar12 {
  transform: rotate(330deg) translate(0, -130%);
  animation-delay: -0.1s;
}
@keyframes fade458 {
  from {
    opacity: 1;
  }
  to {
    opacity: 0.25;
  }
}
.goods-loading .loadtext {
  font-size: 14px;
  font-weight: 500;
  color: #999;
  text-align: center;
}
.goods-loading .spin {
  width: 32px;
  height: 32px;
  display: block;
  margin: 0 auto;
}
.goods-loading .arc {
  stroke: rgba(128, 128, 128, 0.9);
  stroke-width: 4;
  stroke-linecap: round;
  /* 不做 dash 動畫，弧長固定 */
  transform-origin: 50% 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .goods-loading .arc {
    animation: none;
  }
}
.goods-complete {
  display: none;
  position: relative;
  bottom: 0;
  left: 0;
}
.goods-complete .spinner {
  height: 50px;
  width: max-content;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1em;
  color: #999;
  filter: drop-shadow(0 0 10px);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
.goods-complete .spinner span {
  animation: loading6454 1.75s ease infinite;
}
.goods-complete .spinner span:nth-child(2) {
  animation-delay: 0.25s;
}
.goods-complete .spinner span:nth-child(3) {
  animation-delay: 0.5s;
}
.goods-complete .spinner span:nth-child(4) {
  animation-delay: 0.75s;
}
.goods-complete .spinner span:nth-child(5) {
  animation-delay: 1s;
}
.goods-complete .spinner span:nth-child(6) {
  animation-delay: 1.25s;
}
@keyframes loading6454 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.goods-complete .completetext {
  font-size: 14px;
  font-weight: 500;
  color: #999;
}
.faq-section {
  width: 100%;
  margin: 60px auto 20px;
  padding: 0 20px;
  grid-column: 1 / -1;
}
.faq-section .heroname {
  font-size: 20px;
  font-weight: 500;
  color: #000;
  margin-bottom: 10px;
  text-align: center;
}
.faq-section .faq-item {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto 10px;
  border-radius: 12px;
  border: 1.5px solid rgba(0, 0, 0, 0.3);
  overflow: hidden;
}
.faq-section .faq-item[open] .faq-question {
  color: #000;
}
.faq-section .faq-item[open] .faq-question .i-right {
  transform: rotate(270deg);
}
.faq-section .faq-item .faq-question {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}
@media screen and (max-width: 1024px) {
  .faq-section .faq-item .faq-question {
    padding: 10px 14px;
  }
}
.faq-section .faq-item .faq-question::-webkit-details-marker {
  display: none;
}
.faq-section .faq-item .faq-question .question-text {
  font-size: 16px;
  font-weight: 700;
  color: #000;
}
@media screen and (max-width: 1024px) {
  .faq-section .faq-item .faq-question .question-text {
    font-size: 13px;
  }
}
.faq-section .faq-item .faq-question .i-right {
  transition: transform 0.3s ease;
  color: #000;
  font-weight: 700;
  transform: rotate(90deg);
  width: 12px;
  height: 12px;
}
@media screen and (max-width: 1024px) {
  .faq-section .faq-item .faq-question .i-right {
    width: 10px;
    height: 10px;
  }
}
.faq-section .faq-item .faq-answer {
  padding: 0 60px 15px;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1.6;
  background-color: rgba(255, 255, 255, 0.1);
  text-align: justify;
  color: #000;
}
@media screen and (max-width: 1024px) {
  .faq-section .faq-item .faq-answer {
    padding: 0 20px 14px;
    font-size: 12px;
  }
}
.shade {
  width: 100%;
  height: 100%;
  position: fixed;
  right: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0);
  transition: all 0.5s;
  z-index: 98;
  -webkit-backdrop-filter: blur(0px);
  backdrop-filter: blur(0px);
  pointer-events: none;
}
@media screen and (min-width: 1025px) {
  .shade {
    display: none;
  }
}
.shade.shade-on {
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  pointer-events: auto;
}
.editor {
  width: 100%;
  max-width: 1200px;
  margin: 60px auto 20px;
  padding: 0 20px;
  grid-column: 1 / -1;
}
.news {
  width: 100%;
  margin: 60px auto 20px;
  padding: 0 20px;
  grid-column: 1 / -1;
}
.news .heroname {
  font-size: 20px;
  font-weight: 500;
  color: #000;
  margin-bottom: 10px;
  text-align: center;
}
.news .news-list {
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .news .news-list {
    max-width: 800px;
    grid-template-columns: repeat(1, 1fr);
  }
}
.news .news-list .news-item {
  display: block;
  position: relative;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  border-radius: 12px;
  background-color: #FFF;
  overflow: hidden;
}
.news .news-list .news-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.news .news-list .news-item .news-link {
  position: relative;
}
.news .news-list .news-item .news-link .img-wrap {
  position: relative;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .news .news-list .news-item .news-link .img-wrap {
    margin-bottom: 6px;
  }
}
.news .news-list .news-item .news-link .img-wrap .contact-wrap {
  position: absolute;
  bottom: 4px;
  left: 6px;
}
.news .news-list .news-item .news-link .img-wrap .contact-wrap .qrcode-box {
  width: 60px;
  height: 60px;
  padding: 4px;
  border-radius: 6px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .news .news-list .news-item .news-link .img-wrap .contact-wrap .qrcode-box {
    width: 50px;
    height: 50px;
    padding: 2px;
    border-radius: 4px;
  }
}
.news .news-list .news-item .news-link .img-wrap .contact-wrap .line {
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  font-style: italic;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}
@media screen and (max-width: 768px) {
  .news .news-list .news-item .news-link .img-wrap .contact-wrap .line {
    font-size: 16px;
  }
}
.news .news-list .news-item .news-link .news-title {
  font-weight: 700;
  font-size: 20px;
  color: #000000;
  padding: 10px 20px;
}
@media screen and (max-width: 768px) {
  .news .news-list .news-item .news-link .news-title {
    font-size: 16px;
    padding: 10px 16px;
  }
}
.news .news-list .news-item .news-link .desc {
  font-size: 14px;
  font-weight: 500;
  color: #999;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .news .news-list .news-item .news-link .desc {
    font-size: 12px;
    padding: 0 16px;
  }
}
.news .news-list .news-item .news-link .labelbox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #999;
  font-weight: 700;
  font-style: italic;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .news .news-list .news-item .news-link .labelbox {
    padding: 10px 16px;
  }
}
.news .news-list .news-item .news-link .labelbox .editor {
  margin-right: 20px;
}
.news .news-list .news-item .news-link .labelbox .views {
  display: flex;
  align-items: center;
}
.news .news-list .news-item .news-link .labelbox .views svg {
  width: 14px;
  height: 14px;
}
.news .news-list .news-item .news-link .labelbox .views svg path {
  fill: #999;
}
.news .news-list .news-item .news-link .labelbox .views .num {
  margin-left: 4px;
}
