body,
p {
  margin: 0;
}
body {
  background: var(--white);
}
* {
  box-sizing: border-box;
}
img,
a {
  display: block;
}
a,
a:hover,
a:link {
  text-decoration: none;
}
video {
  object-fit: fill !important;
  display: block;
  border: none;
}
input {
  outline: none;
}
.display {
  display: none !important;
}
.ma {
  margin: auto;
}
.main {
  width: 1400px;
}
:root {
  --white: #fff;
  --font: #333;
  --color: #272727;
}
.re {
  position: relative;
}
.text-center {
  text-align: center;
}
.overflow {
  overflow: hidden;
}
#translate {
  display: none;
}
/* ios适配底部距离 */
.safe-area-bottom {
  padding-bottom: constant(safe-area-inset-bottom);
  padding-bottom: env(safe-area-inset-bottom);
}
/* Header 公共样式 */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  z-index: 999;
  background: transparent;
  border-bottom: 1px solid #85868b;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  /* 增加过渡动画使样式切换更平滑 */
  /* 移动端汉堡按钮：默认隐藏，由底部响应式区在 <=768px 显示 */
}
.header.header-scrolled {
  background: rgba(0, 0, 0, 0.85);
  /* 滚动后的背景色，可自行调整 */
  border-bottom-color: transparent;
}
.header .header-inner {
  width: 1400px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .header-right {
  display: flex;
  align-items: center;
  height: 100%;
}
.header .nav {
  height: 100%;
  margin-right: 50px;
}
.header .nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  height: 100%;
  gap: 50px;
  margin: 0;
  padding: 0;
}
.header .nav li {
  position: relative;
  height: 100%;
}
.header .nav li > a {
  color: #fff;
  font-size: 14px;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  text-decoration: none;
}
.header .nav li > a::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 3px;
  background: transparent;
}
.header .nav li > a:hover::after {
  background: #fff;
}
.header .nav li.active > a::after {
  background: #fff;
}
.header .nav li:hover .dropdown {
  display: block;
}
.header .nav .dropdown {
  display: none;
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 5px 10px;
  min-width: 110px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.header .nav .dropdown a {
  color: #333;
  font-size: 14px;
  line-height: 36px;
  display: block;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
  white-space: nowrap;
}
.header .nav .dropdown a:hover {
  background: #f5f5f5;
  color: #000;
}
.header .nav .dropdown a:hover .hot-tag {
  color: #e2231a;
}
.header .nav .dropdown a .hot-tag {
  margin-left: 6px;
  font-size: 12px;
  font-weight: bold;
  color: #e2231a;
}
.header .nav.nav-mega li.has-drop {
  position: static;
}
.header .nav.nav-mega li.has-drop > a {
  height: 50px;
  padding: 0 2px;
  transition: color 0.3s ease;
}
.header .nav.nav-mega li.has-drop:hover > a,
.header .nav.nav-mega li.has-drop.is-open > a {
  color: #fff;
}
.header .nav.nav-mega li.has-drop:hover > a::after,
.header .nav.nav-mega li.has-drop.active > a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0px;
  width: auto;
  transform: none;
  height: 3px;
  background: #fff;
}
.header .nav.nav-mega .dropdown {
  display: none;
  position: fixed;
  top: 50px;
  left: 0;
  right: 0;
  width: 100%;
  min-width: 0;
  transform: none;
  background: rgba(0, 0, 0, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
  padding: 12px 30px;
  text-align: center;
  box-sizing: border-box;
  white-space: nowrap;
  z-index: 998;
}
.header .nav.nav-mega .dropdown a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.86);
  line-height: 46px;
  margin: 0 28px;
  padding: 0;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.header .nav.nav-mega .dropdown a:hover {
  background: transparent;
  color: #fff;
}
.header .nav.nav-mega .dropdown a .hot-tag {
  color: #ff564f;
}
.header .nav.nav-mega li.has-drop:hover .dropdown {
  display: block;
}
.header .lang-wrap {
  position: relative;
  margin-right: 50px;
}
.header .lang-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 16px;
}
.header .lang-wrap:hover .lang-dropdown {
  display: block;
}
.header .lang {
  color: #fff;
  font-size: 13px;
  display: flex;
  align-items: center;
  cursor: pointer;
  border-radius: 20px;
  padding: 4px 12px;
  background: #504f55;
  text-decoration: none;
}
.header .lang img {
  margin-right: 5px;
}
.header .lang-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  margin-top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  min-width: 100px;
  padding: 4px 14px;
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.header .lang-dropdown a {
  display: block;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 36px;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.header .lang-dropdown a:hover {
  color: #fff;
}
.header .lang-dropdown a.is-active {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.75);
}
.header .tools {
  display: flex;
  align-items: center;
  height: 100%;
}
.header .tools > a,
.header .tools .user-wrap {
  color: #fff;
  font-size: 18px;
  margin: 0 15px;
  display: flex;
  align-items: center;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
}
.header .tools .user-wrap {
  position: relative;
}
.header .tools .user-wrap .user-btn {
  color: var(--white);
}
.header .tools .user-wrap:hover .user-dropdown {
  display: block;
}
.header .tools .user-dropdown {
  display: none;
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 4px 14px;
  min-width: 110px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  border-radius: 6px;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.header .tools .user-dropdown a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 36px;
  display: block;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.header .tools .user-dropdown a:hover {
  background: transparent;
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.75);
}
.header .vip-member {
  margin-left: 50px;
  padding: 8px 18px;
  width: 100px;
  height: 35px;
}
.header .vip-member img {
  width: 100%;
}
.header .nav-toggle {
  display: none;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  color: #fff;
  line-height: 1;
  cursor: pointer;
}
.header .nav-toggle .fa {
  font-size: 22px;
}
/* Header 移动端侧边抽屉导航：结构由 public.js 依据页面已有导航生成，默认隐藏 */
.mobile-nav-mask {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-nav-mask.is-open {
  opacity: 1;
  visibility: visible;
}
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1001;
  width: 78%;
  max-width: 320px;
  -webkit-flex-direction: column;
  flex-direction: column;
  background: #1f1f21;
  box-shadow: -6px 0 24px rgba(0, 0, 0, 0.35);
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
}
.mobile-nav.is-open {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.mobile-nav .mobile-nav-head {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  height: 50px;
  padding: 0 16px;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.mobile-nav .mobile-nav-logo img {
  display: block;
  width: auto;
  height: 24px;
}
.mobile-nav .mobile-nav-close {
  width: 34px;
  height: 34px;
  padding: 0;
  margin-right: -8px;
  border: none;
  background: transparent;
  color: #fff;
  line-height: 1;
  cursor: pointer;
}
.mobile-nav .mobile-nav-close .fa {
  font-size: 22px;
}
.mobile-nav .mobile-nav-body {
  -webkit-flex: 1;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav .mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-nav .mobile-nav-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-nav .mobile-nav-row {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.mobile-nav .mobile-nav-link {
  -webkit-flex: 1;
  flex: 1;
  min-width: 0;
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.4;
  text-decoration: none;
}
.mobile-nav .mobile-nav-arrow {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 18px;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
}
.mobile-nav .mobile-nav-sub {
  display: none;
  padding: 4px 0 10px;
  background: rgba(0, 0, 0, 0.28);
}
.mobile-nav .mobile-nav-sub a {
  padding: 10px 16px 10px 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.4;
  text-decoration: none;
}
.mobile-nav .mobile-nav-sub a .hot-tag {
  margin-left: 6px;
  font-size: 12px;
  font-weight: bold;
  color: #ff564f;
}
.mobile-nav .mobile-nav-item.active > .mobile-nav-row .mobile-nav-link {
  color: #fff;
  font-weight: bold;
}
.mobile-nav .mobile-nav-item.is-open .mobile-nav-arrow {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.mobile-nav .mobile-nav-item.is-open .mobile-nav-sub {
  display: block;
}
.mobile-nav .mobile-nav-foot {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  padding: 14px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.mobile-nav .mobile-nav-lang {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 14px;
  color: #fff;
}
.mobile-nav .mobile-nav-lang img {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  object-fit: contain;
}
.mobile-nav .mobile-nav-lang-switch {
  display: -webkit-flex;
  display: flex;
  -webkit-flex: 1;
  flex: 1;
  min-width: 0;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.28);
}
.mobile-nav .mobile-nav-lang-switch a {
  -webkit-flex: 1;
  flex: 1;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  min-width: 0;
  height: 30px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1;
  text-decoration: none;
  border-radius: 16px;
  -webkit-transition: color 0.2s ease, background 0.2s ease;
  transition: color 0.2s ease, background 0.2s ease;
}
.mobile-nav .mobile-nav-lang-switch a.is-active {
  color: #fff;
  font-weight: bold;
  background: rgba(255, 255, 255, 0.18);
}
.mobile-nav .mobile-nav-user {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px 18px;
}
.mobile-nav .mobile-nav-user a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  text-decoration: none;
}
body.mobile-nav-open {
  overflow: hidden;
}
/* Banner 轮播区域样式 */
.banner {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  background: #000;
}
.banner .banner-swiper {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.banner .banner-swiper .swiper-slide {
  position: relative;
  overflow: hidden;
}
.banner .banner-swiper-btn {
  width: 56px;
  height: 56px;
  margin-top: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 15;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: background 0.3s, border-color 0.3s, box-shadow 0.3s, -webkit-transform 0.3s;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.banner .banner-swiper-btn::after {
  display: none;
}
.banner .banner-swiper-btn i {
  font-size: 22px;
  line-height: 1;
  font-weight: bold;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}
.banner .banner-swiper-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.28);
  -webkit-transform: translateY(-50%) scale(1.06);
  transform: translateY(-50%) scale(1.06);
}
.banner .banner-swiper-btn.swiper-button-disabled {
  opacity: 0.28;
  cursor: default;
  pointer-events: none;
}
.banner .banner-swiper-btn-prev {
  left: max(24px, 3.2vw);
}
.banner .banner-swiper-btn-next {
  right: max(24px, 3.2vw);
}
.banner .banner-swiper-pagination {
  bottom: 48px;
  z-index: 15;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0;
  padding: 8px 14px;
  width: auto !important;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-sizing: border-box;
}
.banner .banner-swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  margin: 0 5px !important;
  opacity: 1;
  background: rgba(255, 255, 255, 0.45);
  -webkit-transition: width 0.35s ease, background 0.35s ease, -webkit-transform 0.35s ease;
  transition: width 0.35s ease, background 0.35s ease, transform 0.35s ease;
}
.banner .banner-swiper-pagination .swiper-pagination-bullet-active {
  width: 28px;
  background: #fff;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.45);
}
.banner > .swiper-slide,
.banner .banner-slide {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.banner .banner-img,
.banner .banner-video,
.banner .banner-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.banner .banner-media--mobile {
  display: none;
}
.banner .banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1200px;
  max-width: 100%;
  color: #fff;
  z-index: 12;
  padding: 0 20px;
}
.banner .banner-text h2 {
  font-size: 32px;
  font-weight: normal;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.banner .banner-text h1 {
  font-size: 64px;
  font-weight: bold;
  margin-bottom: 10px;
  letter-spacing: 2px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.banner .banner-text h3 {
  font-size: 24px;
  font-weight: normal;
  margin-bottom: 40px;
  letter-spacing: 2px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.banner .banner-text .more-btn {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  padding: 10px 30px;
  font-size: 16px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s;
}
.banner .banner-text .more-btn i {
  margin-left: 8px;
}
.banner .banner-text .more-btn:hover {
  background: #fff;
  color: #000;
}
/* Footer 公共底部样式 */
.footer {
  background: #272727;
  color: #fff;
  padding: 50px 0 80px;
  text-align: center;
}
.footer .back-to-top {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  color: #999;
  margin-bottom: 60px;
  transition: color 0.3s;
}
.footer .back-to-top i {
  font-size: 24px;
  margin-bottom: 5px;
}
.footer .back-to-top span {
  font-size: 12px;
  letter-spacing: 2px;
}
.footer .back-to-top:hover {
  color: #fff;
}
.footer .footer-content {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}
.footer .footer-content h2 {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.footer .footer-content .subtitle {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.footer .footer-content .vision {
  font-size: 12px;
  color: #999;
  margin-bottom: 40px;
}
.footer .footer-bar {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 40px;
  text-align: left;
}
.footer .footer-brand {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none;
  color: #fff;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.footer .footer-brand img {
  display: block;
  margin-bottom: 10px;
}
.footer .footer-sns {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  gap: 36px;
}
.footer .footer-sns-item {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  width: 56px;
}
.footer .footer-sns-item .footer-sns-icon {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  line-height: 0;
}
.footer .footer-sns-item .footer-sns-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer .footer-sns-item p {
  margin: 10px 0 0;
  font-size: 13px;
  color: #fff;
  line-height: 1.2;
  white-space: nowrap;
}
.footer .footer-sns-item .footer-sns-qr {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  z-index: 5;
  width: 120px;
  padding: 8px;
  background: #fff;
  border-radius: 6px;
  box-sizing: border-box;
  -webkit-transform: translateX(-50%) translateY(6px);
  transform: translateX(-50%) translateY(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.2s ease, visibility 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.footer .footer-sns-item .footer-sns-qr:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 100%;
  margin-left: -6px;
  border: 6px solid transparent;
  border-top-color: #fff;
}
.footer .footer-sns-item .footer-sns-qr img {
  display: block;
  width: 100%;
  height: auto;
}
.footer .footer-sns-item:hover .footer-sns-qr {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(-50%) translateY(0);
  transform: translateX(-50%) translateY(0);
}
.footer .footer-copy {
  margin-top: 40px;
  font-size: 12px;
  line-height: 1.8;
  color: #fff;
}
.footer .footer-copy p,
.footer .footer-copy a {
  color: #fff;
  text-decoration: none;
}
.footer .footer-copy a:hover {
  color: #fff;
  text-decoration: underline;
}
/* 首页 - 新品活动 */
.section-new-arrival {
  width: 100%;
  position: relative;
  margin: 20px auto;
}
.section-new-arrival .new-arrival-img {
  width: 100%;
  height: auto;
  display: block;
  min-height: 300px;
  object-fit: cover;
}
.section-new-arrival .new-arrival-text {
  width: 1200px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}
.section-new-arrival .new-arrival-text h3 {
  font-size: 20px;
  font-weight: normal;
  margin-bottom: 10px;
}
.section-new-arrival .new-arrival-text h2 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 15px;
}
.section-new-arrival .new-arrival-text p {
  font-size: 16px;
  margin-bottom: 20px;
  opacity: 0.8;
}
.section-new-arrival .new-arrival-text .view-more {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 6px 20px;
  border-radius: 20px;
  transition: all 0.3s;
  color: var(--white);
}
.section-new-arrival .new-arrival-text .view-more i {
  margin-left: 5px;
}
.section-new-arrival .new-arrival-text .view-more:hover {
  background: #fff;
  color: #000;
}
/* 首页 - 产品卡片 */
.section-product-grid {
  margin: 0 auto;
}
.section-product-grid .product-grid-inner {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 20px;
}
.section-product-grid .product-grid-inner .product-item {
  width: calc(50% - 10px);
  position: relative;
  overflow: hidden;
  display: block;
}
.section-product-grid .product-grid-inner .product-item .img-box {
  width: 100%;
  background: #f9f9f9;
}
.section-product-grid .product-grid-inner .product-item .img-box img {
  width: 100%;
  height: auto;
  display: block;
  min-height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.section-product-grid .product-grid-inner .product-item .text-box {
  position: absolute;
  z-index: 2;
  bottom: 72px;
  left: 48px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.section-product-grid .product-grid-inner .product-item .text-box h3 {
  font-size: 40px;
  font-weight: normal;
  text-align: center;
  margin-top: 28px;
  margin-bottom: 96px;
  line-height: 1;
}
.section-product-grid .product-grid-inner .product-item .text-box span {
  font-size: 30px;
  line-height: 1;
  display: flex;
  align-items: center;
}
.section-product-grid .product-grid-inner .product-item .text-box a {
  color: var(--white);
  display: flex;
  align-items: center;
  border: 1px solid var(--white);
  padding: 6px 24px;
  border-radius: 6px;
  font-size: 16px;
  opacity: 0.7;
}
.section-product-grid .product-grid-inner .product-item .text-box a img {
  margin-left: 10px;
}
.section-product-grid .product-grid-inner .product-item:nth-child(even) .text-box {
  color: #fff;
  /* Some have dark bg */
}
.section-product-grid .product-grid-inner .product-item:hover .img-box img {
  transform: scale(1.05);
}
/* 首页 - 探索发现（视频轮播：中间约 60% 主区域，两侧露边约各 15%） */
.section-discover {
  width: 100%;
  overflow: hidden;
  background: var(--white);
  padding: 56px 0 72px;
}
.section-discover .discover-inner {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}
.section-discover .discover-swiper {
  width: 100%;
  position: relative;
  overflow: hidden;
  /* 单张约 70% 宽 + centeredSlides → 左右各约 15% 被裁切露出 */
  /* 箭头：叠在轮播区域内，大致落在中间主图左右内侧 */
  /* 底部分页：横向短条 */
}
.section-discover .discover-swiper .swiper-wrapper {
  align-items: stretch;
}
.section-discover .discover-swiper .swiper-slide {
  width: 70%;
  max-width: 1200px;
  flex-shrink: 0;
  height: auto;
  opacity: 1;
  transition: opacity 0.4s ease;
  box-sizing: border-box;
}
.section-discover .discover-swiper .swiper-slide-active {
  opacity: 1;
}
.section-discover .discover-swiper .discover-slide {
  position: relative;
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  background: #222;
  min-height: 420px;
  aspect-ratio: 16 / 9;
}
.section-discover .discover-swiper .discover-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #333;
}
.section-discover .discover-swiper .discover-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: top;
  background: #333;
}
.section-discover .discover-swiper .discover-overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 80px;
  padding: 28px 32px 0;
  text-align: center;
  color: #fff;
  z-index: 2;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}
.section-discover .discover-swiper .discover-overlay .discover-tag {
  display: block;
  font-size: 20px;
  opacity: 0.95;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.section-discover .discover-swiper .discover-overlay .discover-title {
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 2px;
  line-height: 1.35;
  margin: 0;
}
.section-discover .discover-swiper .discover-overlay .more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 32px;
  font-size: 14px;
  color: #fff;
}
.section-discover .discover-swiper .discover-overlay .more-btn .fa {
  margin-left: 8px;
  font-size: 16px;
  line-height: 1;
  margin-bottom: 2px;
}
.section-discover .discover-swiper .discover-overlay .play-icon {
  width: 64px;
  height: 64px;
  margin: auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  background-color: rgba(0, 0, 0, 0.5);
  margin-top: 40px;
  cursor: pointer;
  transition: opacity 0.3s ease, background-color 0.3s ease;
}
.section-discover .discover-swiper .discover-overlay .play-icon:hover {
  background-color: rgba(0, 0, 0, 0.65);
}
.section-discover .discover-swiper .discover-overlay .play-icon i {
  font-size: 24px;
  margin-left: 3px;
}
.section-discover .discover-swiper .discover-slide.is-playing .play-icon i.fa-pause {
  margin-left: 0;
}
.section-discover .discover-swiper .discover-slide.is-playing .play-icon {
  opacity: 0;
  pointer-events: none;
}
.section-discover .discover-swiper .discover-slide.is-playing:hover .play-icon {
  opacity: 1;
  pointer-events: auto;
}
.section-discover .discover-swiper .discover-swiper-btn {
  width: 48px;
  height: 48px;
  margin-top: 0;
  top: 42%;
  transform: translateY(-50%);
  z-index: 5;
  color: #fff;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.25s;
}
.section-discover .discover-swiper .discover-swiper-btn::after {
  display: none;
}
.section-discover .discover-swiper .discover-swiper-btn i {
  font-size: 42px;
  line-height: 1;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.5));
}
.section-discover .discover-swiper .discover-swiper-btn:hover {
  opacity: 0.85;
}
.section-discover .discover-swiper .discover-swiper-btn.swiper-button-disabled {
  opacity: 0.25;
  cursor: default;
}
.section-discover .discover-swiper .discover-swiper-btn-prev {
  left: 50%;
  margin-left: -30%;
}
.section-discover .discover-swiper .discover-swiper-btn-next {
  right: 50%;
  margin-right: -30%;
}
.section-discover .discover-swiper .discover-swiper-pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.section-discover .discover-swiper .discover-swiper-pagination .swiper-pagination-bullet {
  width: 36px;
  height: 3px;
  border-radius: 0;
  margin: 0 !important;
  opacity: 1;
  background: rgba(255, 255, 255, 0.35);
  transition: background 0.25s, transform 0.25s;
}
.section-discover .discover-swiper .discover-swiper-pagination .swiper-pagination-bullet-active {
  background: #fff;
  transform: scaleY(1.25);
}
/* 首页 - 粉丝俱乐部精选 */
.section-fan-club-index {
  margin: 80px auto;
}
.section-fan-club-index .fan-club-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-fan-club-index .fan-club-header .fan-club-logo {
  display: block;
  height: 48px;
  margin: 0 auto 16px;
}
.section-fan-club-index .fan-club-header .fan-club-title-row {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
}
.section-fan-club-index .fan-club-header h2 {
  font-size: 42px;
  font-weight: bold;
  margin: 0;
}
.section-fan-club-index .fan-club-header .fan-club-join-btn {
  display: inline-block;
  padding: 8px 28px;
  font-size: 16px;
  color: #333;
  text-decoration: none;
  border: 1px solid #333;
  border-radius: 24px;
  white-space: nowrap;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.section-fan-club-index .fan-club-header .fan-club-join-btn:hover {
  background: #333;
  color: #fff;
}
.section-fan-club-index .fan-club-header p {
  font-size: 20px;
}
.section-fan-club-index .fan-club-content {
  display: flex;
  padding-right: 37px;
  background-color: #E6E6E6;
  /* 仅右侧：三列文案 + 链接右对齐 + 金色「了解更多」 */
}
.section-fan-club-index .fan-club-content .fan-club-left {
  width: 50%;
  background-color: #E6E6E6;
  padding: 90px 10% 0 90px;
}
.section-fan-club-index .fan-club-content .fan-club-left .title {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin-bottom: 30px;
}
.section-fan-club-index .fan-club-content .fan-club-left .text {
  font-size: 20px;
  color: #333;
  text-align: justify;
}
.section-fan-club-index .fan-club-content .fan-club-right {
  width: 50%;
  flex-shrink: 0;
}
.section-fan-club-index .fan-flex-content {
  display: flex;
  padding: 0 37px;
  gap: 30px;
  margin-top: 37px;
}
.section-fan-club-index .fan-flex-content .item {
  flex: 1;
  position: relative;
}
.section-fan-club-index .fan-flex-content .item img {
  width: 100%;
}
.section-fan-club-index .fan-flex-content .item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  text-align: center;
  padding: 20px;
}
.section-fan-club-index .fan-flex-content .item h3 {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
}
.section-fan-club-index .fan-flex-content .item p {
  font-size: 12px;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 10px;
  opacity: 0.79;
}
.section-fan-club-index .fan-flex-content .item .more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #e0a70d;
}
.section-fan-club-index .fan-flex-content .item .more-btn i {
  font-size: 14px;
  margin-left: 5px;
  margin-bottom: 3px;
}
.section-brand-story .brand-story-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-brand-story .brand-story-header h2 {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 20px;
}
.section-brand-story .brand-story-header p {
  font-size: 20px;
}
.section-brand-story .brand-story-content {
  display: flex;
}
.section-brand-story .brand-story-content .brand-story-left {
  width: 50%;
  flex-shrink: 0;
}
.section-brand-story .brand-story-content .brand-story-right {
  width: 50%;
  flex-shrink: 0;
}
.section-brand-story .brand-story-content img {
  width: 100%;
}
.section-factory {
  margin-top: 80px;
}
.section-factory .factory-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-factory .factory-header h2 {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 20px;
}
.section-factory .factory-header p {
  font-size: 20px;
}
.section-factory .factory-content img {
  width: 100%;
}
/* 首页 - 特色服务 */
.section-features {
  width: 100%;
  border-top: 1px solid #eee;
  padding: 50px 0;
}
.section-features .features-inner {
  width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 150px;
}
.section-features .features-inner .feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #333;
}
.section-features .features-inner .feature-item img {
  height: 40px;
}
.section-features .features-inner .feature-item p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--font);
  margin-top: 10px;
}
.section-features .features-inner .feature-item a {
  color: #666;
  font-size: 12px;
}
.section-features .features-inner .feature-item a i {
  font-size: 14px;
}
/* 登录/注册 页面 */
.auth-container {
  width: 100%;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 15%;
}
.auth-container .auth-box {
  width: 440px;
  background: #fff;
  padding: 60px 50px 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.auth-container .auth-box .auth-tabs {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}
.auth-container .auth-box .auth-tabs a {
  font-size: 24px;
  color: #999;
  padding-bottom: 10px;
  cursor: pointer;
  position: relative;
}
.auth-container .auth-box .auth-tabs a.active {
  color: #333;
  font-weight: bold;
}
.auth-container .auth-box .auth-tabs a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #333;
}
.auth-container .auth-box .auth-form-wrap {
  min-height: 250px;
}
.auth-container .auth-box .auth-form-wrap .auth-forget-bar {
  margin-top: 0;
  margin-bottom: 24px;
}
.auth-container .auth-box .auth-form-wrap .auth-forget-bar .auth-forget-title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}
.auth-container .auth-box .auth-form-wrap .layui-form-item {
  margin-bottom: 20px;
  position: relative;
}
.auth-container .auth-box .auth-form-wrap .layui-form-item .layui-input {
  height: 40px;
  border-bottom: 1px solid #eee;
  border-radius: 0;
  padding-left: 10px;
  font-size: 14px;
  background: transparent;
}
.auth-container .auth-box .auth-form-wrap .layui-form-item .layui-input:focus {
  border-color: #333 !important;
}
.auth-container .auth-box .auth-form-wrap .layui-form-item .layui-input:focus,
.auth-container .auth-box .auth-form-wrap .layui-form-item .layui-textarea:focus {
  border-color: #333 !important;
  box-shadow: none;
}
.auth-container .auth-box .auth-form-wrap .layui-form-item .layui-form-danger + .layui-form-select .layui-input,
.auth-container .auth-box .auth-form-wrap .layui-form-item .layui-form-danger:focus {
  border-color: none;
  box-shadow: none;
}
.auth-container .auth-box .auth-form-wrap .layui-form-item.code-wrap {
  display: flex;
  gap: 15px;
  align-items: flex-end;
}
.auth-container .auth-box .auth-form-wrap .layui-form-item.code-wrap .layui-input {
  flex: 1;
}
.auth-container .auth-box .auth-form-wrap .layui-form-item.code-wrap .get-code-btn {
  width: 120px;
  height: 40px;
  line-height: 40px;
  border-radius: 4px;
  border: 1px solid #eee;
  color: #666;
  background: #f9f9f9;
  cursor: pointer;
}
.auth-container .auth-box .auth-form-wrap .layui-form-item.code-wrap .get-code-btn:disabled {
  cursor: not-allowed;
  opacity: 0.65;
  color: #999;
  background: #f0f0f0;
}
.auth-container .auth-box .auth-form-wrap .layui-form-item.select-group {
  display: flex;
  gap: 10px;
}
.auth-container .auth-box .auth-form-wrap .layui-form-item.select-group .layui-input-inline {
  flex: 1;
  margin: 0;
}
.auth-container .auth-box .auth-form-wrap .layui-form-item.select-group .layui-input-inline:first-child {
  flex: 1.5;
}
.auth-container .auth-box .auth-form-wrap .layui-form-item.select-group .layui-input-inline .layui-select-title input {
  text-align: center;
  padding: 0;
}
.auth-container .auth-box .auth-form-wrap .layui-form-item.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.auth-container .auth-box .auth-form-wrap .layui-form-item.flex-between a {
  color: #333;
  font-weight: bold;
}
.auth-container .auth-box .auth-form-wrap .layui-form-item.flex-between a:hover {
  text-decoration: underline;
}
.auth-container .auth-box .auth-form-wrap .layui-form-item.flex-between .switch-login-type {
  color: #333;
  font-weight: bold;
  cursor: pointer;
}
.auth-container .auth-box .auth-form-wrap .layui-form-item .auth-submit-btn {
  height: 50px;
  background: #f5f5f5;
  border: 1px solid #eee;
  color: #999;
  border-radius: 4px;
  font-size: 16px;
  margin-top: 20px;
  transition: all 0.3s;
  box-shadow: none;
}
.auth-container .auth-box .auth-form-wrap .layui-form-item .auth-submit-btn.active-btn {
  background: #333;
  color: #fff;
  border-color: #333;
}
.auth-container .auth-box .auth-form-wrap .layui-form-item::after {
  display: none;
}
.auth-container .auth-box .auth-form-wrap .auth-agreement {
  font-size: 12px;
  color: #666;
  display: flex;
  align-items: center;
  margin-top: 15px;
}
.auth-container .auth-box .auth-form-wrap .auth-agreement .layui-form-checkbox[lay-skin=primary] {
  margin-top: 0;
  padding-left: 20px;
  padding-right: 0;
}
.auth-container .auth-box .auth-form-wrap .auth-agreement .layui-form-checkbox[lay-skin=primary] > div {
  padding-right: 0;
  font-size: 12px;
}
.auth-container .auth-box .auth-form-wrap .auth-agreement .layui-form-checkbox[lay-skin=primary] span {
  color: #666;
  font-size: 12px;
}
.auth-container .auth-box .auth-form-wrap .auth-agreement .layui-form-checkbox[lay-skin=primary] > i {
  font-size: 12px;
  width: 14px;
  height: 14px;
}
.auth-container .auth-box .auth-form-wrap .auth-agreement .layui-form-checkbox[lay-skin=primary]:hover > i {
  border-color: #666 !important;
  color: #fff;
}
.auth-container .auth-box .auth-form-wrap .auth-agreement .layui-form-checked[lay-skin=primary] > i {
  border-color: #666 !important;
  background-color: #666;
  color: #fff;
}
.auth-container .auth-box .auth-form-wrap .auth-agreement a {
  display: inline;
  color: #333;
  font-weight: bold;
  cursor: pointer;
}
.auth-agreement-layer .layui-layer-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  border-bottom: 1px solid #eee;
}
.auth-agreement-layer .layui-layer-content {
  overflow: auto;
  padding: 0;
}
.auth-agreement-body {
  padding: 20px 24px 28px;
  font-size: 14px;
  line-height: 1.8;
  color: #333;
}
.auth-agreement-body img {
  max-width: 100%;
  height: auto;
}
.auth-agreement-body p {
  margin: 0 0 12px;
}
.auth-agreement-body table {
  width: 100%;
  border-collapse: collapse;
}
.auth-container .auth-box .auth-form-wrap .wechat-qrcode {
  text-align: center;
  padding: 10px 0;
}
.auth-container .auth-box .auth-form-wrap .wechat-qrcode .qr-img {
  width: 180px;
  height: 180px;
  background: #f0f0f0;
  margin-bottom: 20px;
  display: inline-block;
}
.auth-container .auth-box .auth-form-wrap .wechat-qrcode .qr-placeholder {
  width: 180px;
  height: 180px;
  margin: 0 auto 20px;
  background: #f5f5f5;
  border: 1px dashed #ddd;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}
.auth-container .auth-box .auth-form-wrap .wechat-qrcode p {
  font-size: 14px;
  color: #333;
}
.auth-container .auth-box .auth-form-wrap .wechat-qrcode .switch-login-type {
  display: inline-block;
  margin-top: 12px;
  color: #999;
  cursor: pointer;
  font-size: 13px;
}
.auth-container .auth-box .auth-form-wrap .wechat-qrcode .wechat-qr-frame {
  width: 240px;
  height: 240px;
  margin: 0 auto 16px;
  overflow: hidden;
}
.auth-container .auth-box .auth-form-wrap .wechat-qrcode .wechat-qr-frame iframe {
  max-width: 100%;
}
.auth-container .auth-box .auth-form-wrap .wechat-qrcode .wechat-open-btn {
  display: block;
  width: 100%;
  height: 44px;
  line-height: 44px;
  margin: 0 auto 16px;
  background: #07c160;
  color: #fff;
  border-radius: 4px;
  font-size: 16px;
  text-align: center;
}
.auth-container .auth-box .auth-form-wrap .wechat-qrcode .wechat-open-btn:hover {
  color: #fff;
  opacity: .92;
}
.auth-container .auth-box .auth-form-wrap .wechat-qrcode .wechat-qr-note {
  margin-top: 6px;
  font-size: 12px;
  color: #999;
}
.auth-container .auth-box .auth-form-wrap .wechat-bind-tip {
  margin: 0 0 18px;
  font-size: 13px;
  line-height: 1.7;
  color: #666;
}
.auth-container .auth-box .other-login-methods {
  margin-top: 40px;
  text-align: center;
  border-top: 1px solid #eee;
  position: relative;
}
.auth-container .auth-box .other-login-methods span {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 0 15px;
  font-size: 12px;
  color: #999;
}
.auth-container .auth-box .other-login-methods .methods-icons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.auth-container .auth-box .other-login-methods .methods-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 20px;
  transition: all 0.3s;
}
.auth-container .auth-box .other-login-methods .methods-icons a:hover {
  background: #eee;
}
/* 子页面通用占位及样式 */
.page-placeholder {
  width: 100%;
  min-height: 80vh;
  padding-top: 50px;
  background: #fff;
}
.page-placeholder .placeholder-banner {
  width: 100%;
  height: 300px;
  background: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 5px;
}
.page-placeholder .placeholder-content {
  width: 1400px;
  margin: 50px auto;
  text-align: center;
}
.page-placeholder .placeholder-content img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
  min-height: 500px;
  background: #f9f9f9;
}
/* 关于我们 - 通用部分 */
.about-banner {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.about-banner img,
.about-banner video {
  width: 100%;
  object-fit: cover;
}
.about-banner .banner-media {
  width: 100%;
  display: block;
  object-fit: cover;
}
.about-banner .banner-media--mobile {
  display: none;
}
@media (max-width: 768px) {
  .about-banner .banner-media--pc {
    display: none;
  }
  .about-banner .banner-media--mobile {
    display: block;
  }
}
.about-banner .banner-text {
  width: 1000px;
  position: absolute;
  z-index: 2;
  top: 40%;
  left: 40%;
  transform: translate(-50%, -50%);
}
.about-banner .banner-text h1 {
  font-size: 48px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.about-banner .banner-text p {
  font-size: 36px;
  text-transform: uppercase;
  text-align: center;
}
/* 加入我们 - banner 中部双卡片 */
.join-banner .join-banner-text {
  left: 50%!important;
  top: 50%!;
  width: 100%;
  max-width: 900px;
  padding: 0 20px;
  box-sizing: border-box;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.join-banner .join-banner-text h1 {
  margin: 0 0 12px;
  font-size: 48px;
  font-weight: bold;
  letter-spacing: 4px;
  line-height: 1.2;
  text-align: center;
}
.join-banner .join-banner-text .join-banner-en {
  margin: 0 0 40px;
  font-size: 18px;
  letter-spacing: 4px;
  line-height: 1.4;
  color: #fff;
  text-transform: none;
}
.join-banner .join-banner-cards {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 28px;
}
.join-banner .join-banner-card {
  width: 220px;
  height: 140px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 12px;
  background: rgba(20, 20, 20, 0.55);
  box-sizing: border-box;
  text-decoration: none;
  color: #fff;
  -webkit-transition: background 0.25s ease, border-color 0.25s ease;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.join-banner .join-banner-card img {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.join-banner .join-banner-card span {
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 2px;
}
.join-banner .join-banner-card:hover {
  background: rgba(40, 40, 40, 0.75);
  border-color: #fff;
}
/* 定制页 / 新设计页 banner：左对齐标题（共用） */
.custom-banner,
.design-banner {
  width: 100%;
  position: relative;
  color: #fff;
}
.custom-banner img,
.custom-banner video,
.custom-banner .banner-media,
.design-banner img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.custom-banner .banner-media--mobile {
  display: none;
}
.custom-banner .banner-text,
.design-banner .banner-text {
  width: 1400px;
  position: absolute;
  max-width: 100%;
  top: 42%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  padding: 0 40px;
  box-sizing: border-box;
  text-align: left;
}
.custom-banner .banner-text h1,
.design-banner .banner-text h1 {
  margin: 0 0 22px;
  font-size: 56px;
  font-weight: bold;
  letter-spacing: 4px;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
.custom-banner .banner-text p,
.design-banner .banner-text p {
  display: inline-block;
  margin: 0;
  font-size: 20px;
  letter-spacing: 4px;
  line-height: 1.4;
  color: #fff;
  text-transform: none;
  text-align: left;
  box-sizing: border-box;
}
.design-banner .banner-text {
  top: 35%;
}
/* 定制页 banner：小字胶囊边框 */
.custom-banner .banner-text p {
  padding: 10px 28px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 999px;
}
/* 新设计页 - 产品展示条 */
.design-products {
  width: 100%;
  padding: 50px 40px;
  box-sizing: border-box;
  background: #f5f5f5;
}
.design-products .design-products-list {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 24px;
}
.design-products .design-products-item {
  -webkit-flex: 1;
  flex: 1;
  min-width: 0;
  max-width: 160px;
  height: 160px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  box-sizing: border-box;
}
.design-products .design-products-item img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
/* 新设计页 - 研发 / 专利 / 荣誉 */
.design-feature {
  width: 100%;
  padding: 60px;
  box-sizing: border-box;
  background: #F8F9FB;
}
.design-feature .design-feature-list {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
  display: -webkit-flex;
  display: flex;
  gap: 28px;
}
.design-feature .design-feature-item {
  position: relative;
  -webkit-flex: 1;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  background: #f0f0f0;
}
.design-feature .design-feature-item > img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 520px;
  object-fit: cover;
}
.design-feature .design-feature-text {
  position: absolute;
  top: 36px;
  left: 50%;
  z-index: 2;
  width: 90%;
  max-width: 360px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  text-align: center;
  color: #111;
  box-sizing: border-box;
}
.design-feature .design-feature-text h3 {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.3;
}
.design-feature .design-feature-text p {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.6;
  color: #444;
}
.design-feature .design-feature-text a {
  display: inline-block;
  font-size: 14px;
  color: #333;
  line-height: 1.4;
}
.design-feature .design-feature-text a i {
  margin-left: 4px;
}
.design-feature .design-feature-text a:hover {
  opacity: 0.75;
}
.design-feature .design-feature-item.is-dark .design-feature-text {
  color: #fff;
}
.design-feature .design-feature-item.is-dark .design-feature-text p,
.design-feature .design-feature-item.is-dark .design-feature-text a {
  color: rgba(255, 255, 255, 0.92);
}
/* 定制页 - 工厂实力数据条 */
.custom-stats {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.custom-stats .custom-stats-item {
  -webkit-flex: 1;
  flex: 1;
  min-width: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 14px;
  padding: 28px 16px;
  box-sizing: border-box;
  background: #0a4f4f;
  color: #fff;
}
.custom-stats .custom-stats-item:nth-child(even) {
  background: #000;
}
.custom-stats .custom-stats-item img {
  display: block;
  width: 52px;
  height: 52px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  object-fit: contain;
}
.custom-stats .custom-stats-text {
  min-width: 0;
}
.custom-stats .custom-stats-text h3 {
  margin: 0 0 6px;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.2;
  color: #fff;
  white-space: nowrap;
}
.custom-stats .custom-stats-text p {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  color: #fff;
  white-space: nowrap;
}
/* 定制页 - 公司简介（左文右图） */
.custom-about {
  width: 1200px;
  margin: 60px auto 100px;
  display: -webkit-flex;
  display: flex;
  background: #fff;
}
.custom-about .custom-about-text {
  -webkit-flex: 1;
  flex: 1;
  min-width: 0;
  padding: 56px 60px;
  box-sizing: border-box;
  background: #f7f7f7;
}
.custom-about .custom-about-text h2 {
  margin: 0;
  font-size: 32px;
  font-weight: bold;
  color: #111;
  line-height: 1.35;
  letter-spacing: 1px;
}
.custom-about .custom-about-text p {
  margin: 0 0 25px;
  font-size: 18px;
  line-height: 2;
  color: #333;
  text-align: justify;
}
.custom-about .custom-about-text p:last-child {
  margin-bottom: 0;
}
.custom-about .custom-about-line {
  display: block;
  position: relative;
  width: 100%;
  max-width: 520px;
  height: 2px;
  margin: 18px 0 28px;
  background: #ddd;
}
.custom-about .custom-about-line:before {
  content: '';
  position: absolute;
  left: 0;
  top: -1px;
  width: 56px;
  height: 3px;
  background: #00c4d6;
}
.custom-about .custom-about-media {
  -webkit-flex: 1;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  background: #e8e8e8;
}
.custom-about .custom-about-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}
/* 定制页 - 共用标题 / 小标题模块 */
.custom-mod-head {
  width: 100%;
  text-align: center;
  margin-bottom: 48px;
}
.custom-mod-head .custom-mod-title {
  margin: 0 0 16px;
  font-size: 36px;
  font-weight: bold;
  color: #111;
  line-height: 1.35;
  letter-spacing: 1px;
}
.custom-mod-head .custom-mod-sub {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}
.custom-mod-head .custom-mod-hl {
  color: #e60012;
  font-weight: bold;
}
/* 定制页 - 专利证书荣誉 */
.custom-honor {
  width: 100%;
  padding: 70px 40px 80px;
  box-sizing: border-box;
  background: #fff;
}
.custom-honor .custom-honor-img {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.custom-honor .custom-honor-img img {
  display: block;
  width: 100%;
  height: auto;
}
/* 定制页 - 品类展示 */
.custom-category {
  width: 100%;
  padding: 20px 40px 90px;
  box-sizing: border-box;
  background: #F8F9FB;
}
.custom-category .custom-category-list {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 48px 36px;
}
.custom-category .custom-category-item {
  -webkit-flex: 0 0 calc((100% - 144px) / 5);
  flex: 0 0 calc((100% - 144px) / 5);
  max-width: calc((100% - 144px) / 5);
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  box-sizing: border-box;
}
.custom-category .custom-category-pic {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  box-sizing: border-box;
}
.custom-category .custom-category-pic img {
  display: block;
  width: 78%;
  height: 78%;
  object-fit: contain;
}
.custom-category .custom-category-name {
  display: inline-block;
  margin-top: 18px;
  padding: 8px 28px;
  min-width: 96px;
  text-align: center;
  font-size: 15px;
  line-height: 1.4;
  color: #fff;
  background: #1a4a44;
  border-radius: 999px;
  box-sizing: border-box;
  white-space: nowrap;
}
/* 定制页 - 全宽背景容器（路径用内联 background-image 填写） */
.custom-bg-wrap {
  width: 100%;
  padding: 150px 40px 60px;
  box-sizing: border-box;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
}
.title-wrap {
  font-size: 64px;
  margin-bottom: 150px;
  font-weight: bold;
  color: #00bebc;
  text-align: center;
}
.custom-bg-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 50px 56px;
  box-sizing: border-box;
  background: #F8F9FB;
}
/* 定制页 - 共用横线标题（中文 / 英文） */
.custom-mod-bar {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
  padding-bottom: 16px;
  border-bottom: 1px solid #d8d8d8;
}
.custom-mod-bar .custom-mod-bar-zh {
  margin: 0;
  font-size: 32px;
  font-weight: bold;
  color: #000;
  line-height: 1;
}
.custom-mod-bar .custom-mod-bar-sep {
  font-size: 22px;
  color: #999;
  line-height: 1;
  padding-bottom: 2px;
}
.custom-mod-bar .custom-mod-bar-en {
  font-size: 16px;
  font-weight: bold;
  color: #000;
  line-height: 1;
  text-transform: uppercase;
  padding-bottom: 2px;
}
/* 定制页 - 可复用图文卡片列表 */
.custom-gallery-list {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 28px 24px;
  margin-bottom: 64px;
}
.custom-gallery-item {
  -webkit-flex: 0 0 calc((100% - 48px) / 3);
  flex: 0 0 calc((100% - 48px) / 3);
  max-width: calc((100% - 48px) / 3);
  box-sizing: border-box;
}
.custom-gallery-pic {
  width: 100%;
  overflow: hidden;
  background: #e8e8e8;
}
.custom-gallery-pic img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.custom-gallery-cap {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  gap: 10px;
  margin-top: 14px;
}
.custom-gallery-arrows {
  display: block;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  width: 18px;
  height: 16px;
  margin-top: 4px;
  position: relative;
}
.custom-gallery-arrows:before,
.custom-gallery-arrows:after {
  content: '';
  position: absolute;
  top: 2px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #00c4d6;
}
.custom-gallery-arrows:before {
  left: 0;
}
.custom-gallery-arrows:after {
  left: 8px;
}
.custom-gallery-text {
  min-width: 0;
}
.custom-gallery-text h3 {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: bold;
  color: #111;
  line-height: 1.3;
}
.custom-gallery-text p {
  margin: 0;
  font-size: 12px;
  color: #999;
  line-height: 1.4;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
/* 定制页 - 战略合作伙伴 */
.custom-partner {
  width: 100%;
  padding: 70px 40px 90px;
  box-sizing: border-box;
  background: #fff;
}
.custom-partner .custom-partner-board {
  width: 100%;
  max-width: 1200px;
  margin: 60px auto 0;
  box-sizing: border-box;
}
.custom-partner .custom-partner-board img {
  display: block;
  width: 100%;
  height: auto;
}
/* 企业文化 - 公司简介 */
.company-intro {
  width: 100%;
  margin: 0 auto;
  padding: 60px 0 80px;
  background: #fff;
  box-sizing: border-box;
}
.company-intro .company-intro-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.company-intro .ci-row {
  display: flex;
  align-items: stretch;
  gap: 24px;
  margin-bottom: 24px;
}
.company-intro .ci-row:last-child {
  margin-bottom: 0;
}
.company-intro .ci-media {
  flex: 1;
  overflow: hidden;
  background: #e8e8e8;
}
.company-intro .ci-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.company-intro .ci-text {
  width: 300px;
  background: #f5f5f5;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}
.company-intro .ci-en {
  margin: 0 0 10px;
  font-size: 40px;
  letter-spacing: 6px;
  color: #d8d8d8;
  font-weight: 300;
  text-transform: uppercase;
  line-height: 1.05;
  font-family: inherit;
}
.company-intro .ci-zh {
  margin: 0 0 14px;
  font-size: 30px;
  font-weight: bold;
  color: #222;
  line-height: 1.25;
}
.company-intro .ci-line {
  display: block;
  width: 44px;
  height: 2px;
  background: #c0c0c0;
  margin-bottom: 22px;
}
.company-intro .ci-desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #444;
}
/* 品牌荣誉 */
.brand-honors {
  width: 100%;
  position: relative;
  padding: 70px 0 90px;
  box-sizing: border-box;
  background-color: #f2f2f2;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.brand-honors .bh-inner {
  width: 1400px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}
.brand-honors .bh-head {
  margin-bottom: 36px;
  text-align: left;
}
.brand-honors .bh-title {
  margin: 0 0 8px;
  font-size: 40px;
  font-weight: bold;
  color: #111;
  line-height: 1.2;
  letter-spacing: 1px;
}
.brand-honors .bh-en {
  margin: 0;
  font-size: 18px;
  color: #666;
  line-height: 1.4;
  letter-spacing: 1px;
}
.brand-honors .bh-num {
  position: absolute;
  left: 20px;
  top: 0;
  z-index: 0;
  font-size: 180px;
  font-weight: bold;
  line-height: 1;
  color: rgba(0, 0, 0, 0.06);
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
}
.brand-honors .bh-rows {
  position: relative;
  z-index: 1;
}
.brand-honors .bh-row {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 18px;
  margin-bottom: 18px;
}
.brand-honors .bh-row:last-child {
  margin-bottom: 0;
}
.brand-honors .bh-row.bh-row--center {
  -webkit-justify-content: center;
  justify-content: center;
}
.brand-honors .bh-item {
  -webkit-flex: 1;
  flex: 1;
  min-width: 0;
  max-width: calc((100% - 90px) / 6);
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #d8d8d8;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}
.brand-honors .bh-item img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: #eee;
}
.brand-honors .bh-row--center .bh-item {
  -webkit-flex: 0 0 calc((100% - 90px) / 6);
  flex: 0 0 calc((100% - 90px) / 6);
  max-width: calc((100% - 90px) / 6);
}
/* 加入我们 */
.join-us {
  width: 1400px;
  margin: 80px auto;
}
.join-us .job-list .job-item {
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
}
.join-us .job-list .job-item .job-header {
  padding: 20px 30px;
  background: #fcfcfc;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.join-us .job-list .job-item .job-header .job-info h3 {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
}
.join-us .job-list .job-item .job-header .job-info span {
  font-size: 14px;
  color: #666;
  margin-right: 20px;
}
.join-us .job-list .job-item .job-header i {
  font-size: 20px;
  color: #999;
  transition: transform 0.3s;
}
.join-us .job-list .job-item .job-body {
  padding: 30px;
  background: #fff;
  display: none;
  border-top: 1px solid #eee;
}
.join-us .job-list .job-item .job-body .req-block {
  margin-bottom: 20px;
}
.join-us .job-list .job-item .job-body .req-block h4 {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}
.join-us .job-list .job-item .job-body .req-block p {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 5px;
}
.join-us .job-list .job-item .job-body .apply-wrap {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.join-us .job-list .job-item .job-body .apply-btn {
  display: block;
  padding: 0;
  background: transparent;
  border-radius: 0;
  text-decoration: none;
  margin-top: 0;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  line-height: 0;
}
.join-us .job-list .job-item .job-body .apply-btn img {
  display: block;
  height: 40px;
  width: auto;
}
.join-us .job-list .job-item .job-body .apply-btn:hover {
  background: transparent;
  opacity: 0.85;
}
.join-us .job-list .job-item .job-body .apply-tip {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #666;
}
.join-us .job-list .job-item.active .job-header i {
  transform: rotate(180deg);
}
.join-us .job-list .job-item.active .job-body {
  display: block;
}
/* 加入我们 - 申请表单弹框 */
.join-apply-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1200;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  box-sizing: border-box;
}
.join-apply-modal.is-open {
  display: flex;
}
.join-apply-modal__mask {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.join-apply-modal__box {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
.join-apply-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: #fcfcfc;
  border-bottom: 1px solid #eee;
}
.join-apply-modal__head h2 {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
  color: #333;
}
.join-apply-modal__close {
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  background: transparent;
  color: #999;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.join-apply-modal__close i {
  font-size: 18px;
}
.join-apply-modal__close:hover {
  background: #eee;
  color: #333;
}
.join-apply-modal__body {
  padding: 24px 24px 28px;
}
.join-apply-modal .join-apply-form__row {
  margin-bottom: 18px;
}
.join-apply-modal .join-apply-form__row label {
  display: block;
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}
.join-apply-modal .join-apply-form__row input[type="text"],
.join-apply-modal .join-apply-form__row input[type="tel"],
.join-apply-modal .join-apply-form__row input[type="email"],
.join-apply-modal .join-apply-form__row textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 14px;
  font-size: 14px;
  color: #333;
  border: 1px solid #eee;
  border-radius: 4px;
  background: #fff;
  transition: border-color 0.2s;
}
.join-apply-modal .join-apply-form__row input[type="text"]::placeholder,
.join-apply-modal .join-apply-form__row input[type="tel"]::placeholder,
.join-apply-modal .join-apply-form__row input[type="email"]::placeholder,
.join-apply-modal .join-apply-form__row textarea::placeholder {
  color: #aaa;
}
.join-apply-modal .join-apply-form__row input[type="text"]:focus,
.join-apply-modal .join-apply-form__row input[type="tel"]:focus,
.join-apply-modal .join-apply-form__row input[type="email"]:focus,
.join-apply-modal .join-apply-form__row textarea:focus {
  outline: none;
  border-color: #333;
}
.join-apply-modal .join-apply-form__row textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
}
.join-apply-modal .join-apply-form__actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 8px;
  padding-top: 8px;
}
.join-apply-modal .join-apply-form__cancel {
  padding: 10px 22px;
  font-size: 14px;
  color: #666;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.join-apply-modal .join-apply-form__cancel:hover {
  background: #fcfcfc;
  border-color: #ddd;
  color: #333;
}
.join-apply-modal .join-apply-form__submit {
  padding: 10px 28px;
  font-size: 14px;
  color: #fff;
  background: #333;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}
.join-apply-modal .join-apply-form__submit:hover {
  background: #555;
}
body.join-apply-modal-open {
  overflow: hidden;
}
/* 新闻资讯 */
.news-info {
  width: 1400px;
  margin: 0 auto 80px;
}
.news-info .news-list {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 40px;
}
.news-info .news-list .item {
  width: calc((100% - 75px)/3);
}
.news-info .news-list .item img {
  width: 100%;
}
.news-info .news-list .item .text {
  text-align: center;
  font-size: 16px;
  padding: 6px 0;
}
/* 粉丝俱乐部 - 光野俱乐部首页（fanClub.html） */
.fanclub-hub-page {
  background: #fff;
}
.fanclub-hub-page .fv-hero {
  position: relative;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: cover;
  background-size: cover;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  color: #fff;
}
.fanclub-hub-page .fv-hero img,
.fanclub-hub-page .fv-hero video {
  width: 100%;
  object-fit: cover;
}
.fanclub-hub-page .fv-hero .banner-media {
  width: 100%;
  display: block;
  object-fit: cover;
}
.fanclub-hub-page .fv-hero .banner-media--mobile {
  display: none;
}
@media (max-width: 768px) {
  .fanclub-hub-page .fv-hero .banner-media--pc {
    display: none;
  }
  .fanclub-hub-page .fv-hero .banner-media--mobile {
    display: block;
  }
}
.fanclub-hub-page .fv-hero .fv-hero-inner {
  position: absolute;
  top: 40%;
  left: 20%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.fanclub-hub-page .fv-hero .text {
  font-size: 72px;
  font-weight: bold;
  color: #fff;
}
.fanclub-hub-page .fv-hero .fc-btn {
  border: 1px solid var(--white);
  font-size: 18px;
  padding: 3px 20px;
  color: var(--white);
  opacity: 0.75;
}
.fanclub-hub-page .fc-nav-card {
  -webkit-flex: 1;
  flex: 1;
  position: relative;
  display: block;
  overflow: hidden;
  min-width: 0;
  text-decoration: none;
}
.fanclub-hub-page .fc-nav-card img {
  display: block;
  width: 100%;
  min-height: 280px;
  object-fit: cover;
  background: #2a2a2a;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
}
.fanclub-hub-page .fc-nav-card .fc-nav-title {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  white-space: nowrap;
  pointer-events: none;
}
.fanclub-hub-page .fc-nav-card:hover img {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}
.fanclub-hub-page .fc-top-nav {
  display: -webkit-flex;
  display: flex;
  gap: 28px;
  padding: 28px;
}
.fanclub-hub-page .fc-intro-bar {
  padding: 80px 40px;
  box-sizing: border-box;
  background-color: #F8F9FB;
}
.fanclub-hub-page .fc-intro-bar .fc-intro-inner {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-justify-content: center;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto 56px;
}
.fanclub-hub-page .fc-intro-bar .fc-intro-left {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.fanclub-hub-page .fc-intro-bar .fc-intro-left img {
  width: auto;
  height: 48px;
  margin-right: 24px;
}
.fanclub-hub-page .fc-intro-bar .fc-intro-left h2 {
  margin: 0;
  font-size: 36px;
  font-weight: bold;
  color: #333;
  line-height: 1;
}
.fanclub-hub-page .fc-intro-bar .fc-intro-right {
  max-width: 520px;
  padding-left: 28px;
}
.fanclub-hub-page .fc-intro-bar .fc-intro-right .fc-intro-desc {
  margin: 0 0 8px;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}
.fanclub-hub-page .fc-intro-bar .fc-intro-right .fc-intro-tip {
  margin: 0;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  display: flex;
  align-items: center;
}
.fanclub-hub-page .fc-intro-bar .fc-more-link {
  color: #e0a70d;
  text-decoration: none;
}
.fanclub-hub-page .fc-intro-bar .fc-more-link i {
  margin-left: 2px;
}
.fanclub-hub-page .fc-intro-bar .fc-more-link:hover {
  opacity: 0.85;
}
.fanclub-hub-page .fc-intro-bar .fc-intro-btns {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 20px;
}
.fanclub-hub-page .fc-intro-bar .fc-btn {
  display: inline-block;
  min-width: 100px;
  padding: 8px 36px;
  font-size: 16px;
  color: #333;
  text-align: center;
  text-decoration: none;
  border: 1px solid #333;
  border-radius: 24px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.fanclub-hub-page .fc-intro-bar .fc-btn:hover {
  background: #333;
  color: #fff;
}
.fanclub-hub-page .fc-bottom-nav {
  display: -webkit-flex;
  display: flex;
  gap: 28px;
  background-color: var(--white);
  padding: 28px;
}
.fanclub-hub-page .fc-bottom-nav .fc-nav-card img {
  min-height: 240px;
}
/* 粉丝俱乐部 - 会员等级页（level.html，与测评/学院页的 .fanclub-banner 独立） */
.fanclub-vip-page {
  background: #f5f5f5;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center bottom;
  padding-bottom: 50vh;
}
.fanclub-vip-page .fv-hero {
  position: relative;
  width: 100%;
  background-color: #1a1a1a;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: cover;
  background-size: cover;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  color: #fff;
}
.fanclub-vip-page .fv-hero img,
.fanclub-vip-page .fv-hero video {
  width: 100%;
  object-fit: cover;
}
.fanclub-vip-page .fv-hero .banner-media {
  width: 100%;
  display: block;
  object-fit: cover;
}
.fanclub-vip-page .fv-hero .banner-media--mobile {
  display: none;
}
@media (max-width: 768px) {
  .fanclub-vip-page .fv-hero .banner-media--pc {
    display: none;
  }
  .fanclub-vip-page .fv-hero .banner-media--mobile {
    display: block;
  }
}
.fanclub-vip-page .fv-hero .fv-hero-inner {
  position: absolute;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}
.fanclub-vip-page .fv-hero .fv-hero-en {
  margin: 0 0 16px;
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 6px;
  text-transform: uppercase;
}
.fanclub-vip-page .fv-hero .fv-hero-cn {
  margin: 0;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 4px;
}
.fanclub-vip-page .fv-block {
  padding: 64px 0 56px;
}
.fanclub-vip-page .fv-sec-head {
  text-align: center;
  margin-bottom: 44px;
}
.fanclub-vip-page .fv-sec-title {
  margin: 0 0 8px;
  font-size: 32px;
  font-weight: bold;
  color: #1a1a1a;
}
.fanclub-vip-page .fv-sec-en {
  margin: 0 0 8px;
  font-size: 16px;
  color: #888;
  text-transform: uppercase;
}
.fanclub-vip-page .fv-sec-tip {
  margin: 0;
  font-size: 13px;
  color: #999;
}
.fanclub-vip-page .fv-level-chart {
  width: 1600px;
  margin: auto;
}
.fanclub-vip-page .fv-level-chart .fv-chart {
  margin: auto;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
}
.fanclub-vip-page .fv-level-chart .fv-chart-cols {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  padding: 25px 0;
}
.fanclub-vip-page .fv-level-chart .fv-chart-col {
  -webkit-flex: 1;
  flex: 1;
  min-width: 0;
  display: -webkit-flex;
  display: flex;
  justify-content: flex-end;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
}
.fanclub-vip-page .fv-level-chart .fv-chart-bubble {
  display: inline-block;
  text-align: center;
  padding: 6px 14px;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: bold;
  color: #4a3f35;
  background: #f6d8b4;
  border-radius: 6px;
  max-width: 120px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
.fanclub-vip-page .fv-level-chart .fv-chart-bars {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-align-items: stretch;
  align-items: stretch;
  gap: 10px;
  width: 100%;
  max-width: 120px;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.fanclub-vip-page .fv-level-chart .fv-bar {
  display: block;
  height: 10px;
  background: #707070;
  border-radius: 6px;
}
.fanclub-vip-page .fv-level-chart .fv-bar:nth-child(-n+3) {
  background: #000;
}
.fanclub-vip-page .fv-level-chart .fv-bar:nth-of-type(4) {
  background: #434343;
}
.fanclub-vip-page .fv-level-chart .fv-bar:nth-of-type(5) {
  background: #535353;
}
.fanclub-vip-page .fv-level-chart .fv-chart-label-bar {
  display: -webkit-flex;
  display: flex;
  background: #3a3a3a;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  border-radius: 0 0 7px 7px;
  overflow: hidden;
}
.fanclub-vip-page .fv-level-chart .fv-chart-label-cell {
  -webkit-flex: 1;
  flex: 1;
  padding: 14px 6px;
  text-align: center;
  box-sizing: border-box;
}
.fanclub-vip-page .fv-level-chart .fv-chart-label-cell img {
  height: 24px;
  margin: auto;
  object-fit: cover;
}
.fanclub-vip-page .fv-level-chart .fv-chart-v {
  color: #d4b595;
  margin-right: 2px;
}
.fanclub-vip-page .fv-level-intro {
  width: 1200px;
  margin: auto;
  padding-bottom: 72px;
}
.fanclub-vip-page .fv-level-intro .fv-intro-list {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}
.fanclub-vip-page .fv-level-intro .fv-intro-card {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  min-height: 200px;
}
.fanclub-vip-page .fv-level-intro .fv-intro-media {
  position: relative;
  width: 50%;
  min-width: 280px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  background: #ddd;
}
.fanclub-vip-page .fv-level-intro .fv-intro-media img {
  width: 100%;
  object-fit: cover;
  -webkit-object-fit: cover;
  display: block;
  min-height: 200px;
}
.fanclub-vip-page .fv-level-intro .fv-intro-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  padding: 8px 0;
  font-size: 12px;
  color: #fff;
  text-align: center;
  background: rgba(0, 0, 0, 0.75);
}
.fanclub-vip-page .fv-level-intro .fv-intro-v {
  color: #d4b595;
}
.fanclub-vip-page .fv-level-intro .fv-intro-body {
  -webkit-flex: 1;
  flex: 1;
  padding: 0 170px;
  box-sizing: border-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
}
.fanclub-vip-page .fv-level-intro .fv-intro-hd {
  margin: 0 0 10px;
  font-size: 28px;
  color: #1a1a1a;
  display: flex;
  align-items: flex-end;
  line-height: 1;
}
.fanclub-vip-page .fv-level-intro .fv-intro-hd img {
  width: 36px;
  margin-left: 10px;
}
.fanclub-vip-page .fv-level-intro .fv-intro-range {
  font-size: 13px;
  color: #888;
}
.fanclub-vip-page .fv-level-intro .fv-intro-perk {
  display: flex;
  align-items: center;
  line-height: 1;
  gap: 8px;
  margin: 16px 0;
  font-size: 30px;
  font-weight: bold;
  color: #1a1a1a;
}
.fanclub-vip-page .fv-level-intro .fv-intro-perk img {
  width: 32px;
  margin-top: -5px;
}
.fanclub-vip-page .fv-level-intro .fv-intro-desc {
  margin: 0;
  font-size: 13px;
  color: #666;
  line-height: 1.7;
}
.fanclub-vip-page .fv-notice {
  width: 1200px;
  margin: auto;
  padding: 0 0 56px;
}
.fanclub-vip-page .fv-notice .fv-notice-box {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.fanclub-vip-page .fv-notice .fv-notice-body {
  position: absolute;
  z-index: 2;
  padding: 0 100px;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.fanclub-vip-page .fv-notice .fv-notice-title {
  margin: 0 0 20px;
  font-size: 32px;
  font-weight: normal;
  color: #d6b28a;
  display: flex;
  align-items: center;
}
.fanclub-vip-page .fv-notice .fv-notice-title img {
  width: 36px;
  margin-right: 10px;
}
.fanclub-vip-page .fv-notice .fv-notice-v {
  margin-right: 4px;
}
.fanclub-vip-page .fv-notice .fv-notice-list {
  margin: 0;
  color: #fff;
  font-size: 20px;
  line-height: 2;
}
.fanclub-vip-page .fv-notice .fv-notice-list li {
  margin-bottom: 10px;
}
.fanclub-vip-page .back {
  display: block;
  width: 120px;
  margin: auto;
  border: 1px solid var(--font);
  padding: 3px 20px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.3);
  margin-top: 120px;
}
/* 粉丝俱乐部 - 测评招募 */
.test-banner {
  position: relative;
}
.test-banner img,
.test-banner video {
  width: 100%;
  object-fit: cover;
}
.test-banner .banner-media {
  width: 100%;
  display: block;
  object-fit: cover;
}
.test-banner .banner-media--mobile {
  display: none;
}
@media (max-width: 768px) {
  .test-banner .banner-media--pc {
    display: none;
  }
  .test-banner .banner-media--mobile {
    display: block;
  }
}
.test-banner .banner-text {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 10;
  padding: 0 20px;
}
.test-banner .banner-text p {
  font-size: 28px;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px #000, 0 0 2px #000;
  text-transform: uppercase;
}
.test-banner .banner-text h1 {
  font-size: 64px;
  letter-spacing: 2px;
  text-shadow: 2px 2px 6px #000, 0 0 2px #000;
}
.test-content {
  background: #f7f7f7;
  padding: 56px 0;
}
.test-content .recruit-inner {
  max-width: 1580px;
  margin: 0 auto;
}
.test-content .recruit-header {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}
.test-content .recruit-header h2 {
  margin: 0;
  font-size: 42px;
  font-weight: bold;
  color: #111;
  letter-spacing: 1px;
  line-height: 1;
}
.test-content .recruit-header img {
  width: 64px;
}
.test-content .recruit-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.test-content .recruit-card {
  flex: 1 1 0;
  min-width: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  padding: 30px 40px;
  box-sizing: border-box;
}
.test-content .recruit-card h3 {
  margin: 0 0 18px;
  font-size: 42px;
  font-weight: bold;
  color: #111;
}
.test-content .recruit-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.test-content .recruit-card li {
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.75;
  color: #333;
}
.test-content .recruit-card li:last-child {
  margin-bottom: 0;
}
.test-content .recruit-card-apply .apply-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.test-content .recruit-card-apply .apply-text {
  flex: 1;
  min-width: 0;
}
.test-content .recruit-card-apply .apply-text p {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.65;
  color: #333;
}
.test-content .recruit-card-apply .apply-text p:last-child {
  margin-bottom: 0;
}
.test-content .recruit-card-apply .apply-qrcode {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border: 1px solid #eee;
}
.test-content .recruit-card-apply .apply-qrcode img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* 面包屑导航（多页共用：学院、服务支持等使用 .academy-breadcrumb） */
.academy-breadcrumb {
  font-size: 14px;
  line-height: 1.6;
  color: #999;
}
.academy-breadcrumb a {
  display: inline;
  color: #999;
  text-decoration: none;
}
.academy-breadcrumb a:hover {
  color: #333;
}
.academy-breadcrumb .sep {
  display: inline;
  margin: 0 10px;
  color: #ccc;
}
.academy-breadcrumb .current {
  display: inline;
  color: #666;
}
/* 粉丝俱乐部 - HIKEGUYS学院 */
.academy-content {
  width: 100%;
  padding: 180px 170px;
  background: #F8F9FC;
  box-sizing: border-box;
  /* 服务与支持侧栏：扁平一级链接（常见问题 / 售后政策等页共用） */
}
.academy-content .academy-breadcrumb {
  max-width: 1600px;
  margin: 0 auto 16px;
}
.academy-content .academy-container {
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  border-radius: 8px;
  overflow: hidden;
}
.academy-content .academy-sidebar {
  width: 265px;
  flex-shrink: 0;
  padding: 40px 30px 30px;
  display: flex;
  flex-direction: column;
  border-right: none;
  margin-right: 36px;
  background: #fff;
}
.academy-content .academy-sidebar-title {
  margin: 0 0 32px;
  font-size: 24px;
  font-weight: normal;
  color: #111;
  line-height: 1.25;
}
.academy-content .academy-nav-group {
  margin-bottom: 26px;
}
.academy-content .academy-nav-group:last-child {
  margin-bottom: 0;
}
.academy-content .academy-nav-group:not(.is-open) .academy-nav-l2-panel {
  display: none;
}
.academy-content .academy-nav-l1 {
  display: block;
  width: 100%;
  padding: 0 8px 6px 0;
  margin: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 16px;
  font-weight: bold;
  color: #111;
  line-height: 1.45;
  transition: color 0.2s;
}
.academy-content .academy-nav-l1:hover {
  color: #000;
}
.academy-content .academy-nav-l1--intro {
  color: #333;
}
.academy-content .academy-nav-divider {
  height: 1px;
  margin: 0 0 14px;
  background: #e8e8e8;
}
.academy-content .academy-nav-l2-panel {
  padding: 0 0 4px;
}
.academy-content .academy-nav-l2-list {
  margin: 0;
  padding: 0 0 0 24px;
  list-style: none;
}
.academy-content .academy-nav-l2-list li {
  margin-bottom: 12px;
}
.academy-content .academy-nav-l2-list li:last-child {
  margin-bottom: 0;
}
.academy-content .academy-nav-l2 {
  display: block;
  padding: 4px 8px 4px 0;
  font-size: 14px;
  line-height: 1.55;
  color: #666;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.academy-content .academy-nav-l2:hover {
  color: #111;
  background: #fafafa;
}
.academy-content .academy-nav-l2.active {
  font-weight: bold;
  color: #111;
  background: transparent;
}
.academy-content .academy-promo {
  display: block;
  margin-top: 32px;
  border-radius: 12px;
}
.academy-content span.academy-promo {
  cursor: default;
}
.academy-content .academy-promo-line {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  font-size: 15px;
  line-height: 1.55;
  color: #fff;
  text-align: center;
  margin-bottom: 10px;
}
.academy-content .academy-promo-link {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-size: 15px;
  line-height: 1.4;
  color: #fff;
  text-decoration: underline;
  text-align: center;
}
.academy-content .academy-main {
  background-color: var(--white);
  flex: 1;
  min-width: 0;
  padding: 48px 30px 56px;
  line-height: 2;
}
.academy-content .academy-section-label {
  margin: 0 0 28px;
  font-size: 18px;
  font-weight: bold;
  color: #111;
  padding-bottom: 28px;
  border-bottom: 1px solid #eee;
}
.academy-content .academy-article-title {
  margin: 0 0 32px;
  font-size: 32px;
  font-weight: bold;
  color: #111;
  text-align: center;
  letter-spacing: 1px;
}
.academy-content .academy-articles {
  position: relative;
}
.academy-content .academy-article-panel {
  display: none;
}
.academy-content .academy-article-panel.is-active {
  display: block;
}
.academy-content .academy-article-body {
  margin-bottom: 36px;
}
.academy-content .academy-article-body p {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.9;
  color: #333;
  text-align: justify;
}
.academy-content .academy-article-body p:last-child {
  margin-bottom: 0;
}
.academy-content .dc-side-link {
  display: block;
  width: 100%;
  padding: 0 8px 6px 0;
  font-size: 16px;
  font-weight: bold;
  color: #111;
  line-height: 1.45;
  transition: color 0.2s;
}
.academy-content .dc-side-link:hover {
  color: #000;
}
.academy-content .dc-side-link.is-active {
  color: #111;
  cursor: default;
}
/* 序列号查询 */
.serial-query {
  width: 100%;
  padding: 120px 0 80px;
  background: #f5f6f8;
  box-sizing: border-box;
  /* 查询结果 */
  /* 查询无结果 */
}
.serial-query .sq-inner {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}
.serial-query .sq-breadcrumb {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.6;
  color: #999;
}
.serial-query .sq-breadcrumb a {
  display: inline;
  color: #999;
}
.serial-query .sq-breadcrumb a:hover {
  color: #333;
}
.serial-query .sq-breadcrumb .sep {
  display: inline;
  margin: 0 10px;
  color: #ccc;
}
.serial-query .sq-breadcrumb .current {
  display: inline;
  color: #666;
}
.serial-query .sq-card {
  width: 100%;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  padding: 52px 56px 56px;
  box-sizing: border-box;
}
.serial-query .sq-title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: bold;
  color: #111;
  line-height: 1.45;
}
.serial-query .sq-desc {
  margin: 0 0 32px;
  max-width: 100%;
  font-size: 13px;
  line-height: 1.75;
  color: #999;
}
.serial-query .sq-login-tip {
  margin: 0 0 20px;
  font-size: 13px;
  line-height: 1.7;
  color: #c45c26;
}
.serial-query .sq-form {
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}
.serial-query .sq-input {
  flex: 1;
  min-width: 0;
  width: 1%;
  height: 48px;
  padding: 0 16px;
  border: none;
  border-radius: 0;
  font-size: 15px;
  color: #333;
  background: #fff;
  box-sizing: border-box;
  outline: none;
}
.serial-query .sq-input:focus {
  box-shadow: inset 0 0 0 1px #d0d0d0;
}
.serial-query .sq-input::placeholder {
  color: #bbb;
}
.serial-query .sq-btn {
  flex-shrink: 0;
  min-width: 100px;
  height: 48px;
  padding: 0 32px;
  border: none;
  border-radius: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  background: #808080;
  color: #fff;
  font-size: 16px;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s;
}
.serial-query .sq-btn:hover {
  background: #737373;
}
.serial-query .sq-btn:active {
  background: #666;
}
.serial-query .sq-help {
  display: inline-block;
  margin-top: 20px;
  font-size: 14px;
  color: #888;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}
.serial-query .sq-help:hover {
  color: #333;
  text-decoration: underline;
}
.serial-query .sq-result {
  width: 100%;
  margin: 24px 0 0;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  padding: 32px 36px;
  box-sizing: border-box;
}
.serial-query .sq-result-head {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}
.serial-query .sq-result-title {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
  color: #111;
}
.serial-query .sq-result-status {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  padding: 5px 16px;
  font-size: 13px;
  border-radius: 20px;
  white-space: nowrap;
}
.serial-query .sq-result-status--ok {
  color: #2d8a4e;
  background: #eaf6ee;
}
.serial-query .sq-result-status--expired {
  color: #c0392b;
  background: #fdeceb;
}
.serial-query .sq-result-body {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 32px;
}
.serial-query .sq-result-thumb {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: #f7f7f8;
  border-radius: 8px;
  overflow: hidden;
  box-sizing: border-box;
}
.serial-query .sq-result-thumb img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.serial-query .sq-result-info {
  -webkit-flex: 1;
  flex: 1;
  min-width: 0;
}
.serial-query .sq-result-name {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: bold;
  color: #111;
}
.serial-query .sq-result-list {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}
.serial-query .sq-result-list li {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 14px;
  border-bottom: 1px dashed #eee;
}
.serial-query .sq-result-list li:last-child {
  border-bottom: none;
}
.serial-query .sq-result-list li span {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  width: 108px;
  color: #999;
}
.serial-query .sq-result-list li strong {
  font-weight: normal;
  color: #333;
}
.serial-query .sq-result-link {
  display: inline-block;
  font-size: 14px;
  color: #333;
  text-decoration: none;
}
.serial-query .sq-result-link i {
  margin-left: 4px;
}
.serial-query .sq-result-link:hover {
  opacity: 0.75;
}
.serial-query .sq-empty {
  width: 100%;
  margin: 24px 0 0;
  padding: 48px 20px;
  text-align: center;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  box-sizing: border-box;
}
.serial-query .sq-empty img {
  display: block;
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  object-fit: contain;
  opacity: 0.6;
}
.serial-query .sq-empty p {
  margin: 0;
  font-size: 14px;
  color: #999;
}
.serial-query .sq-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.sq-help-layer .layui-layer-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  border-bottom: 1px solid #eee;
}
.sq-help-layer .layui-layer-content {
  overflow: auto;
  padding: 0;
}
.sq-help-body {
  padding: 20px 24px 28px;
  font-size: 14px;
  line-height: 1.8;
  color: #333;
}
.sq-help-body img {
  max-width: 100%;
  height: auto;
}
.sq-help-body p {
  margin: 0 0 12px;
}
.sq-help-body ul,
.sq-help-body ol {
  margin: 0 0 12px;
  padding-left: 1.4em;
}
/* 产品中心页：场景推荐 Swiper + 手电筒区块（product.html） */
.product-mid-wrap {
  width: 100%;
  background: #F0F1F2;
  padding-bottom: 60px;
}
.scenario-section {
  padding-top: 60px;
  padding-bottom: 50px;
}
.scenario-section .scenario-head {
  width: 1400px;
  max-width: 100%;
  margin: 0 auto 40px;
  padding: 0 20px;
  text-align: center;
}
.scenario-section .scenario-head .scenario-title {
  font-size: 28px;
  font-weight: bold;
  color: #222;
  margin: 0 0 12px;
  letter-spacing: 2px;
}
.scenario-section .scenario-head .scenario-subtitle {
  font-size: 13px;
  color: #999;
  letter-spacing: 3px;
  margin: 0;
  text-transform: uppercase;
}
.scenario-section .scenario-swiper-outer {
  width: 100%;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
}
.scenario-section .scenario-swiper {
  width: 100%;
  padding-bottom: 10px;
}
.scenario-section .scenario-swiper .swiper-slide {
  width: 1280px;
  height: auto;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.scenario-section .scenario-swiper .scenario-slide {
  position: relative;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  background: #e8e8e8;
  min-height: 320px;
}
.scenario-section .scenario-swiper .scenario-slide .scenario-slide-img {
  width: 100%;
  height: 420px;
  display: block;
  object-fit: cover;
  -webkit-object-fit: cover;
}
.scenario-section .scenario-swiper .scenario-slide .scenario-slide-img--mobile {
  display: none;
}
@media (max-width: 768px) {
  .scenario-section .scenario-swiper .scenario-slide .scenario-slide-img--pc {
    display: none;
  }
  .scenario-section .scenario-swiper .scenario-slide .scenario-slide-img--mobile {
    display: block;
  }
}
.scenario-section .scenario-swiper .scenario-slide .scenario-slide-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 55%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
  pointer-events: none;
}
.scenario-section .scenario-swiper .scenario-slide .scenario-slide-text {
  position: absolute;
  left: 32px;
  bottom: 36px;
  right: 24px;
  color: #fff;
  z-index: 2;
}
.scenario-section .scenario-swiper .scenario-slide .scenario-slide-text h3 {
  font-size: 20px;
  font-weight: normal;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.scenario-section .scenario-swiper .scenario-slide .scenario-slide-text p {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 10px;
}
.scenario-section .scenario-swiper .scenario-slide .scenario-slide-text .scenario-more-btn {
  display: inline-block;
  padding: 3px 10px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  color: #fff;
  font-size: 12px;
  -webkit-transition: background 0.3s, color 0.3s;
  transition: background 0.3s, color 0.3s;
}
.scenario-section .scenario-swiper .scenario-slide .scenario-slide-text .scenario-more-btn:hover {
  background: #fff;
  color: #222;
}
.flashlight-section {
  padding-top: 20px;
}
.flashlight-section + .flashlight-section {
  padding-top: 48px;
}
.flashlight-section .flashlight-inner {
  width: 1280px;
  max-width: 100%;
  margin: 0 auto;
}
.flashlight-section .flashlight-section-title {
  font-size: 22px;
  font-weight: bold;
  color: #222;
  margin: 0 0 24px;
  text-align: left;
  letter-spacing: 1px;
}
.flashlight-section .flashlight-feature {
  position: relative;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 20px;
  background: #ddd;
}
.flashlight-section .flashlight-feature .flashlight-feature-img {
  width: 100%;
  height: auto;
  min-height: 280px;
  display: block;
  object-fit: cover;
  -webkit-object-fit: cover;
}
.flashlight-section .flashlight-feature .flashlight-feature-img--mobile {
  display: none;
}
@media (max-width: 768px) {
  .flashlight-section .flashlight-feature .flashlight-feature-img--pc {
    display: none;
  }
  .flashlight-section .flashlight-feature .flashlight-feature-img--mobile {
    display: block;
  }
}
.flashlight-section .flashlight-feature .flashlight-feature-overlay {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  padding: 36px 40px;
  color: #fff;
  z-index: 2;
  max-width: 55%;
}
.flashlight-section .flashlight-feature .flashlight-feature-overlay .flashlight-tag {
  font-size: 12px;
  padding-left: 2px;
}
.flashlight-section .flashlight-feature .flashlight-feature-overlay .flashlight-feature-name {
  font-size: 32px;
  line-height: 1;
  font-weight: normal;
  margin: 10px 0 15px;
}
.flashlight-section .flashlight-feature .flashlight-feature-overlay .flashlight-feature-desc {
  font-size: 16px;
  margin: 0 0 90px;
  padding-left: 2px;
}
.flashlight-section .flashlight-feature .flashlight-feature-overlay .flashlight-buy-btn {
  display: inline-block;
  padding: 10px 32px;
  background: #fff;
  color: #222;
  font-size: 14px;
  border-radius: 24px;
  font-weight: bold;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.flashlight-section .flashlight-feature .flashlight-feature-overlay .flashlight-buy-btn:hover {
  opacity: 0.9;
}
.flashlight-section .flashlight-grid {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  /* 「查看所有配件」：粗黑字 + 黑圆白箭头（与产品卡同列宽） */
}
.flashlight-section .flashlight-grid .flashlight-card {
  -webkit-flex: 1 1 calc(20% - 10px);
  flex: 1 1 calc(20% - 10px);
  min-width: 0;
  border: 1px solid #eee;
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  -webkit-transition: box-shadow 0.3s;
  transition: box-shadow 0.3s;
}
.flashlight-section .flashlight-grid .flashlight-card .flashlight-card-img {
  position: relative;
  width: 100%;
  background: #fff;
  overflow: hidden;
  aspect-ratio: 600 / 800;
}
.flashlight-section .flashlight-grid .flashlight-card .flashlight-card-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-object-fit: cover;
}
.flashlight-section .flashlight-grid .flashlight-card .flashlight-card-name {
  display: block;
  padding: 12px 14px;
  font-weight: bold;
  font-size: 14px;
  color: #333;
  text-align: left;
  background-color: var(--white);
}
.flashlight-section .flashlight-grid .flashlight-card:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}
.flashlight-section .flashlight-grid .flashlight-accessories-link {
  -webkit-flex: 1 1 calc(20% - 10px);
  flex: 1 1 calc(20% - 10px);
  min-width: 0;
  box-sizing: border-box;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 16px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 4px;
  text-decoration: none;
  color: #000;
  -webkit-transition: box-shadow 0.3s;
  transition: box-shadow 0.3s;
}
.flashlight-section .flashlight-grid .flashlight-accessories-link .flashlight-accessories-link-text {
  font-size: 15px;
  font-weight: bold;
  color: #000;
  line-height: 1.2;
}
.flashlight-section .flashlight-grid .flashlight-accessories-link .flashlight-accessories-link-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #000;
  position: relative;
  margin-left: 2px;
}
.flashlight-section .flashlight-grid .flashlight-accessories-link .flashlight-accessories-link-icon::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5px;
  height: 5px;
  margin-left: -1px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
  box-sizing: border-box;
}
.flashlight-section .flashlight-grid .flashlight-accessories-link:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}
.flashlight-section .flashlight-grid .flashlight-card-more {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.flashlight-section .flashlight-grid .flashlight-card-more .flashlight-card-img {
  min-height: 100px;
  padding: 12px;
}
.flashlight-section .flashlight-grid .flashlight-card-more .flashlight-more-text {
  padding: 12px 14px 16px;
  font-size: 14px;
  color: #333;
  text-align: center;
}
.flashlight-section .flashlight-grid .flashlight-card-more .flashlight-more-text i {
  margin-left: 4px;
}
/* 产品列表页 - 手电筒系列（1280 容器 · 一行四卡） */
.product_list {
  max-width: 100%;
  padding: 48px 0 64px;
  box-sizing: border-box;
  background: #F0F1F2;
}
.product_list .product_list-title {
  width: 1280px;
  margin: 0 auto 28px;
  font-size: 32px;
  font-weight: bold;
  color: #111;
  text-align: left;
  letter-spacing: 1px;
}
.product_list .product_list-grid {
  width: 1280px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: start;
}
.product_list .pl-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.product_list .pl-card-visual {
  position: relative;
  background: #fff;
  border: 1px solid #e5e5e5;
  overflow: hidden;
  aspect-ratio: 600 / 800;
}
.product_list .pl-card-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product_list .pl-card-info {
  padding: 18px 8px 8px;
  text-align: center;
}
.product_list .pl-card-name {
  margin: 0 0 4px;
  font-size: 20px;
  font-weight: bold;
  color: #111;
}
.product_list .pl-card-slogan {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: bold;
  color: #111;
  line-height: 1.35;
}
.product_list .pl-card-desc {
  margin: 0 auto 14px;
  max-width: 240px;
  font-size: 16px;
  color: #333;
  line-height: 1.55;
  min-height: 2.8em;
}
.product_list .pl-card-price-wrap {
  margin-bottom: 14px;
}
.product_list .pl-card-price {
  display: inline-block;
  font-size: 14px;
  color: #111;
  font-weight: bold;
  padding-bottom: 4px;
  border-bottom: 2px solid #c41230;
}
.product_list .pl-card-price strong {
  font-size: 18px;
  font-weight: bold;
}
.product_list .pl-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 140px;
  padding: 8px 20px;
  font-size: 13px;
  color: #fff;
  background: #8a8a8a;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.25s, opacity 0.25s;
}
.product_list .pl-card-btn i {
  font-size: 14px;
}
.product_list .pl-card-btn:hover {
  background: #6f6f6f;
  color: #fff;
}
.banner_container {
  position: relative;
}
.banner_container img,
.banner_container video {
  width: 100%;
  object-fit: cover;
  display: block;
}
.banner_container .banner-media--mobile {
  display: none;
}
.banner_container .video-btn {
  display: inline-block;
  padding: 10px 32px;
  background: #fff;
  color: #222;
  font-size: 14px;
  border-radius: 24px;
  margin-top: 20px;
}
.banner_container .text {
  width: 1200px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}
.banner_container .text h3 {
  font-size: 28px;
  font-weight: normal;
}
.banner_container .text h2 {
  font-size: 36px;
  font-weight: bold;
  margin: 10px 0;
  line-height: 1;
}
.banner_container .text p {
  font-size: 24px;
  font-weight: bold;
}
.pd_container img {
  width: 100%;
  display: block;
}
.pd_container--mobile {
  display: none;
}
.video_mask {
  display: none;
  position: fixed;
  z-index: 10050;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #232526;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 72px 24px 24px;
}
.video_mask.is-open {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
}
.video_mask .video-container {
  position: relative;
  width: 72%;
  max-width: 1080px;
  background: #000;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}
.video_mask .video-container::before {
  content: '';
  display: block;
  padding-bottom: 56.25%;
}
.video_mask .video-container video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  vertical-align: top;
}
.video_mask .video-container.is-playing .video-play-btn {
  display: none;
}
.video_mask .video-play-btn {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: 80px;
  height: 80px;
  padding: 0;
  margin: 0;
  color: #fff;
  font-size: 80px;
  line-height: 1;
  background: transparent;
  border: none;
  cursor: pointer;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
  transition: opacity 0.2s, transform 0.2s;
}
.video_mask .video-play-btn .fa {
  display: block;
  font-size: 80px;
  line-height: 1;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}
.video_mask .video-play-btn:hover {
  opacity: 0.85;
  -webkit-transform: translate(-50%, -50%) scale(1.06);
  transform: translate(-50%, -50%) scale(1.06);
}
.video_mask .video-close {
  position: fixed;
  z-index: 10051;
  top: 24px;
  right: 28px;
  width: 44px;
  height: 44px;
  padding: 0;
  -webkit-text-stroke: 2px #232526;
  margin: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  background: transparent;
  border: none;
  cursor: pointer;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.video_mask .video-close .fa {
  font-size: 28px;
}
.video_mask .video-close:hover {
  opacity: 0.75;
}
/* 个人仓库（personalWarehouse.html） */
.personal-warehouse {
  box-sizing: border-box;
  min-height: calc(100vh - 0px);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  background-color: #050a14;
  padding: 160px 24px 80px;
  color: #fff;
}
.personal-warehouse .pw-page {
  max-width: 1400px;
  margin: 0 auto;
}
.personal-warehouse .academy-breadcrumb {
  max-width: 1400px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.72);
}
.personal-warehouse .academy-breadcrumb a {
  color: rgba(255, 255, 255, 0.72);
}
.personal-warehouse .academy-breadcrumb a:hover {
  color: #fff;
}
.personal-warehouse .academy-breadcrumb .sep {
  color: rgba(255, 255, 255, 0.4);
}
.personal-warehouse .academy-breadcrumb .current {
  color: #fff;
}
.personal-warehouse .pw-layout {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  max-width: 1400px;
  margin: 0 auto;
}
.personal-warehouse .pw-sidebar {
  flex: 0 0 220px;
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  box-sizing: border-box;
}
.personal-warehouse .pw-cat-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.personal-warehouse .pw-cat-item {
  margin: 0 0 4px;
}
.personal-warehouse .pw-cat-item a {
  display: block;
  padding: 12px 16px;
  font-size: 15px;
  color: #fff;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}
.personal-warehouse .pw-cat-item.is-active a {
  background: #fff;
  color: #000;
  font-weight: bold;
}
.personal-warehouse .pw-cat-item:not(.is-active) a:hover {
  background: rgba(255, 255, 255, 0.08);
}
.personal-warehouse .pw-main {
  flex: 1;
  min-width: 0;
}
.personal-warehouse .pw-toolbar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.personal-warehouse .pw-filter-select {
  appearance: none;
  -webkit-appearance: none;
  min-width: 120px;
  padding: 8px 32px 8px 12px;
  font-size: 14px;
  color: #111;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23000' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E") no-repeat right 10px center;
  background-size: 10px 6px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.personal-warehouse .pw-sort-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  color: #111;
  background: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.personal-warehouse .pw-sort-btn i {
  font-size: 14px;
}
.personal-warehouse .pw-sort-btn:hover {
  opacity: 0.88;
}
.personal-warehouse .pw-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.personal-warehouse .pw-card {
  position: relative;
  flex: 0 0 auto;
  width: calc((100% - 72px) / 5);
  box-sizing: border-box;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.personal-warehouse .pw-card.is_have {
  opacity: 1;
}
.personal-warehouse .pw-card-inner {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  border-radius: 4px;
  overflow: hidden;
  background: linear-gradient(180deg, #e8eaee 0%, #cfd3da 100%);
}
.personal-warehouse .pw-card--empty .pw-card-inner {
  background: #6a6f78;
}
.personal-warehouse .pw-card-thumb {
  position: absolute;
  inset: 0;
}
.personal-warehouse .pw-card-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.personal-warehouse .pw-card-model {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
  background: rgba(0, 0, 0, 0.55);
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.personal-warehouse .pw-empty {
  margin: 48px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
}
.personal-warehouse .pw-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 6px;
  margin-top: 40px;
  padding-bottom: 8px;
}
.personal-warehouse .pw-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  height: 36px;
  padding: 0 16px;
  font-size: 14px;
  color: #111;
  background: #fff;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s;
}
.personal-warehouse .pw-page-btn:hover {
  opacity: 0.9;
}
.personal-warehouse .pw-page-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  margin: 0 2px;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}
.personal-warehouse .pw-page-num:hover:not(.is-active) {
  background: rgba(255, 255, 255, 0.12);
}
.personal-warehouse .pw-page-num.is-active {
  color: #111;
  background: #fff;
  font-weight: 600;
}
/* 积分周边商城（storePage.html） */
.storePage .sp-banner {
  position: relative;
  min-height: 280px;
  background: #dcdcdc;
}
.storePage .sp-banner .banner-img {
  width: 100%;
  object-fit: cover;
}
.storePage .sp-banner-inner {
  width: 1400px;
  margin: 0 auto;
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.storePage .sp-user-card {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 500px;
  padding: 22px 26px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
  pointer-events: auto;
}
.storePage .sp-user-avatar-wrap {
  position: relative;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 18px;
}
.storePage .sp-user-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  background: #eee;
}
.storePage .sp-user-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.storePage .sp-user-badge {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 12px 4px;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.35;
  color: #fff;
  white-space: nowrap;
  background: #7a7a7a;
  border-radius: 999px;
}
.storePage .sp-user-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 2px;
}
.storePage .sp-user-meta {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid #e0e0e0;
}
.storePage .sp-user-name {
  flex-shrink: 0;
  font-size: 17px;
  font-weight: bold;
  color: #000;
  line-height: 1.3;
}
.storePage .sp-user-level {
  margin-left: 8px;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  color: #888;
}
.storePage .sp-user-expire {
  flex-shrink: 1;
  text-align: right;
  font-size: 12px;
  font-weight: normal;
  color: #999;
  line-height: 1.4;
}
.storePage .sp-user-points {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 10px;
}
.storePage .sp-user-points strong {
  font-size: 36px;
  font-weight: bold;
  color: #000;
  line-height: 1;
}
.storePage .sp-user-points-label {
  font-size: 15px;
  font-weight: normal;
  color: #666;
  line-height: 1.2;
}
.storePage .sp-main {
  background: #F5F5F5;
  padding: 40px 24px 56px;
  box-sizing: border-box;
}
.storePage .sp-main-inner {
  max-width: 1400px;
  background-color: #E3E4E6;
  margin: 0 auto;
  padding: 40px 45px;
}
.storePage .sp-section-title {
  margin: 0 0 24px;
  font-size: 22px;
  font-weight: bold;
  color: #111;
}
.storePage .sp-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.storePage .sp-card {
  flex: 0 0 auto;
  width: calc((100% - 60px) / 4);
  box-sizing: border-box;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.storePage .sp-card-img {
  position: relative;
  width: 100%;
  padding-bottom: 72%;
  background: linear-gradient(180deg, #f5f6f8 0%, #e8eaee 100%);
}
.storePage .sp-card-img img {
  position: absolute;
  max-width: 70%;
  max-height: 70%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.storePage .sp-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
}
.storePage .sp-card-prices {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.storePage .sp-card-price-old {
  font-size: 13px;
  color: #aaa;
}
.storePage .sp-card-points {
  font-size: 17px;
  font-weight: 600;
  color: #222;
}
.storePage .sp-card-redeem {
  flex-shrink: 0;
  padding: 8px 22px;
  font-size: 14px;
  color: #333;
  background: #e8eaed;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.storePage .sp-card-redeem:hover {
  background: #dde1e8;
}
.storePage .sp-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 6px;
  margin-top: 40px;
}
.storePage .sp-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  height: 36px;
  padding: 0 16px;
  font-size: 14px;
  color: #333;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.storePage .sp-page-btn:hover {
  background: #f5f5f5;
  border-color: #bbb;
}
.storePage .sp-page-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  margin: 0 2px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  border-radius: 50%;
  transition: background 0.2s;
}
.storePage .sp-page-num:hover:not(.is-active) {
  background: rgba(0, 0, 0, 0.06);
}
.storePage .sp-page-num.is-active {
  color: #fff;
  background: #888;
  font-weight: 600;
}
.storePage .sp-banner .banner-media {
  width: 100%;
  display: block;
  object-fit: cover;
}
.storePage .sp-banner .banner-media--mobile {
  display: none;
}
.storePage .sp-banner .banner-img {
  width: 100%;
  object-fit: cover;
}
.storePage .sp-card-name {
  margin: 0;
  padding: 12px 18px 0;
  font-size: 14px;
  font-weight: 600;
  color: #222;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.storePage .sp-card-redeem.is-disabled,
.storePage .sp-card-redeem:disabled {
  cursor: not-allowed;
  color: #999;
  background: #f0f0f0;
}
.storePage .sp-page-btn.is-disabled {
  cursor: default;
  opacity: 0.45;
}
.storePage .sp-empty {
  padding: 80px 20px;
  text-align: center;
  color: #888;
  font-size: 15px;
}
.user-center-page .uc-redeem-status.is-cancel {
  color: #888;
  background: #f5f5f5;
}
@media (max-width: 768px) {
  .storePage .sp-banner .banner-media--pc {
    display: none;
  }
  .storePage .sp-banner .banner-media--mobile {
    display: block;
  }
}
/* 积分商城 — 兑换收货弹窗（storePage.html） */
.sp-redeem-modal {
  display: none;
  position: fixed;
  z-index: 10050;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 24px 16px;
  box-sizing: border-box;
}
.sp-redeem-modal.is-open {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
}
.sp-redeem-modal .sp-redeem-mask {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.45);
}
.sp-redeem-modal .sp-redeem-dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 460px;
  max-height: 90vh;
  overflow: visible;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.18);
  box-sizing: border-box;
}
.sp-redeem-modal .sp-redeem-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid #e8eaed;
  background: #fafafa;
}
.sp-redeem-modal .sp-redeem-head h3 {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
  color: #111;
}
.sp-redeem-modal .sp-redeem-close {
  width: 36px;
  height: 36px;
  padding: 0;
  font-size: 22px;
  line-height: 34px;
  color: #888;
  background: transparent;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}
.sp-redeem-modal .sp-redeem-close:hover {
  color: #111;
  background: #eee;
}
.sp-redeem-modal .sp-redeem-tip {
  margin: 0;
  padding: 14px 22px 0;
  font-size: 13px;
  color: #666;
}
.sp-redeem-modal .sp-redeem-tip strong {
  color: #111;
  font-weight: 600;
}
.sp-redeem-modal .sp-redeem-body {
  padding: 20px 22px 24px;
  max-height: calc(90vh - 70px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.sp-redeem-modal .sp-redeem-form .layui-form-item {
  margin-bottom: 18px;
}
.sp-redeem-modal .sp-redeem-form .layui-form-item:last-child {
  margin-bottom: 0;
}
.sp-redeem-modal .sp-redeem-label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
}
.sp-redeem-modal .layui-input,
.sp-redeem-modal .layui-textarea {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  background: #fff;
}
.sp-redeem-modal .layui-input:focus,
.sp-redeem-modal .layui-textarea:focus {
  border-color: #333 !important;
  box-shadow: none;
}
.sp-redeem-modal .layui-form-select dl dd.layui-this {
  color: #333;
}
.sp-redeem-modal .sp-redeem-textarea {
  min-height: 88px;
  resize: vertical;
}
.sp-redeem-modal .sp-redeem-region {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sp-redeem-modal .sp-redeem-region .layui-input-inline {
  flex: 1 1 28%;
  min-width: 0;
  width: auto;
  margin: 0;
}
.sp-redeem-modal .sp-redeem-region select {
  display: block;
  width: 100%;
  height: 38px;
  padding: 0 10px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  background: #fff;
  box-sizing: border-box;
}
.sp-redeem-modal .sp-redeem-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 8px;
  padding-top: 8px;
}
.sp-redeem-modal .sp-redeem-btn-cancel {
  min-width: 100px;
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  color: #333;
  background: #e8eaed;
  border: none;
  border-radius: 999px;
}
.sp-redeem-modal .sp-redeem-btn-cancel:hover {
  background: #dde1e8;
}
.sp-redeem-modal .sp-redeem-btn-submit {
  min-width: 120px;
  height: 40px;
  line-height: 40px;
  padding: 0 22px;
  color: #fff;
  background: #222;
  border: none;
  border-radius: 999px;
}
.sp-redeem-modal .sp-redeem-btn-submit:hover {
  background: #000;
}
/* 常见问题（faq.html）— 服务支持子页 */
.academy-content.faq-page .faq-main-inner {
  max-width: 100%;
}
.academy-content.faq-page .faq-page-title {
  margin: 0 0 10px;
  font-size: 26px;
  font-weight: bold;
  color: #111;
  line-height: 1.3;
}
.academy-content.faq-page .faq-page-lead {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.75;
  color: #666;
}
.academy-content.faq-page .faq-toolbar-line {
  height: 1px;
  background: #e8e8e8;
  margin: 0 0 28px;
}
.academy-content.faq-page .faq-section {
  margin-bottom: 40px;
}
.academy-content.faq-page .faq-section:last-child {
  margin-bottom: 0;
}
.academy-content.faq-page .faq-section-title {
  margin: 0 0 18px;
  padding-bottom: 10px;
  font-size: 20px;
  font-weight: bold;
  color: #111;
  border-bottom: 1px solid #eee;
}
.academy-content.faq-page .faq-list {
  margin: 0;
  padding: 0;
}
.academy-content.faq-page .faq-item {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid #f0f0f0;
}
.academy-content.faq-page .faq-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.academy-content.faq-page .faq-q {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: bold;
  color: #222;
  line-height: 1.55;
}
.academy-content.faq-page .faq-a {
  font-size: 15px;
  line-height: 1.85;
  color: #444;
}
.academy-content.faq-page .faq-a p {
  margin: 0 0 12px;
}
.academy-content.faq-page .faq-a p:last-child {
  margin-bottom: 0;
}
.academy-content.faq-page .faq-a strong {
  color: #111;
}
.academy-content.faq-page .faq-a ol,
.academy-content.faq-page .faq-a ul {
  margin: 0 0 12px;
  padding-left: 1.25em;
}
.academy-content.faq-page .faq-a li {
  margin-bottom: 6px;
}
/* 联系我们（contact.html）— 服务支持子页 */
.academy-content.contact-page .contact-main-inner {
  max-width: 100%;
}
.academy-content.contact-page .contact-page-title {
  margin: 0 0 20px;
  font-size: 26px;
  font-weight: bold;
  color: #111;
  line-height: 1.3;
}
.academy-content.contact-page .contact-toolbar-line {
  height: 1px;
  background: #e8e8e8;
  margin: 0 0 32px;
}
.academy-content.contact-page .contact-layout {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}
.academy-content.contact-page .contact-visual {
  flex: 0 0 260px;
  max-width: 100%;
}
.academy-content.contact-page .contact-visual-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  padding: 24px;
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 8px;
}
.academy-content.contact-page .contact-visual-inner img {
  max-width: 100%;
  height: auto;
  max-height: 120px;
  object-fit: contain;
}
.academy-content.contact-page .contact-visual-caption {
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.65;
  color: #888;
}
.academy-content.contact-page .contact-body {
  flex: 1;
  min-width: 240px;
}
.academy-content.contact-page .contact-block {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid #eee;
}
.academy-content.contact-page .contact-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.academy-content.contact-page .contact-block--note {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.academy-content.contact-page .contact-block-title {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: bold;
  color: #111;
  display: flex;
  align-items: center;
  gap: 8px;
}
.academy-content.contact-page .contact-block-title .fa {
  font-size: 16px;
  color: #555;
}
.academy-content.contact-page .contact-block-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.85;
  color: #444;
}
.academy-content.contact-page .contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.academy-content.contact-page .contact-list li {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding: 10px 0;
  border-bottom: 1px solid #f4f4f4;
  font-size: 15px;
  line-height: 1.65;
}
.academy-content.contact-page .contact-list li:last-child {
  border-bottom: none;
}
.academy-content.contact-page .contact-label {
  flex: 0 0 100px;
  color: #888;
  font-weight: normal;
}
.academy-content.contact-page .contact-value {
  flex: 1;
  min-width: 0;
  color: #222;
}
.academy-content.contact-page .contact-value a {
  color: #1a6fb5;
  display: inline;
}
.academy-content.contact-page .contact-value a:hover {
  text-decoration: underline;
}
.academy-content.contact-page .contact-note {
  margin: 0;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.75;
  color: #666;
  background: #f9f9f9;
  border-radius: 6px;
  border: 1px solid #eee;
}
.academy-content.contact-page .contact-note a {
  color: #111;
  text-decoration: underline;
}
.academy-content.contact-page .contact-note a:hover {
  color: #000;
}
/* 购买渠道（buyChannel.html）— 布局参考傲雷购买渠道页，UI 与站内一致 */
.buy-channel-page .bc-strip {
  background: #fff;
  border-bottom: 1px solid #eee;
}
.buy-channel-page .bc-strip .bc-strip-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 24px 20px;
  box-sizing: border-box;
}
.buy-channel-page .bc-strip .academy-breadcrumb {
  margin: 0;
}
.buy-channel-page .bc-main {
  background: #f8f9fc;
  padding: 48px 24px 72px;
  box-sizing: border-box;
}
.buy-channel-page .bc-main .bc-main-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.buy-channel-page .bc-lead {
  margin: 0 auto 36px;
  max-width: 880px;
  font-size: 15px;
  line-height: 1.85;
  color: #666;
  text-align: center;
}
.buy-channel-page .bc-top-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 56px;
}
.buy-channel-page .bc-top-card {
  flex: 0 0 auto;
  width: calc((100% - 60px) / 4);
  max-width: 100%;
  box-sizing: border-box;
  padding: 22px 18px 24px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.25s, border-color 0.25s;
}
.buy-channel-page .bc-top-card:hover {
  border-color: #ddd;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}
.buy-channel-page .bc-top-card-img {
  height: 120px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  border-radius: 6px;
  overflow: hidden;
}
.buy-channel-page .bc-top-card-img img {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
}
.buy-channel-page .bc-top-card-img--placeholder {
  font-size: 22px;
  font-weight: bold;
  color: #999;
  letter-spacing: 2px;
}
.buy-channel-page .bc-top-card-title {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: bold;
  color: #333;
}
.buy-channel-page .bc-top-card-desc {
  margin: 0 0 18px;
  font-size: 13px;
  line-height: 1.55;
  color: #888;
  min-height: 40px;
}
.buy-channel-page .bc-top-card-btn {
  display: inline-block;
  padding: 8px 28px;
  font-size: 14px;
  color: #fff;
  background: #333;
  border-radius: 4px;
  transition: background 0.25s;
}
.buy-channel-page .bc-top-card:hover .bc-top-card-btn {
  background: #555;
}
.buy-channel-page .bc-qr-section {
  padding-top: 8px;
}
.buy-channel-page .bc-section-title {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: bold;
  color: #111;
  text-align: center;
}
.buy-channel-page .bc-section-sub {
  margin: 0 auto 36px;
  max-width: 720px;
  font-size: 14px;
  line-height: 1.7;
  color: #999;
  text-align: center;
}
.buy-channel-page .bc-qr-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.buy-channel-page .bc-qr-item {
  flex: 0 0 auto;
  width: calc((100% - 72px) / 4);
  max-width: 100%;
  box-sizing: border-box;
  padding: 24px 20px 28px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  text-align: center;
}
.buy-channel-page .bc-qr-title {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: bold;
  color: #333;
}
.buy-channel-page .bc-qr-desc {
  margin: 0 0 18px;
  font-size: 13px;
  line-height: 1.65;
  color: #888;
  min-height: 44px;
}
.buy-channel-page .bc-qr-box {
  width: 140px;
  height: 140px;
  margin: 0 auto;
  background: #fafafa;
  border: 1px dashed #ddd;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.buy-channel-page .bc-qr-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* 展会分享社区（community.html）— 布局参考纳丽德创意社区，含多级评论 */
.community-page {
  /* 评论区 — 朋友圈式灰底 */
}
.community-page .cm-hero .banner-text h1 {
  font-size: 48px;
}
.community-page .cm-hero .banner-text p {
  font-size: 28px;
}
.community-page .cm-intro {
  background: #fff;
  padding: 48px 24px 40px;
  border-bottom: 1px solid #eee;
}
.community-page .cm-intro .cm-intro-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.community-page .cm-intro .cm-intro-title {
  margin: 0 0 28px;
  font-size: 26px;
  font-weight: bold;
  color: #111;
  text-align: center;
}
.community-page .cm-intro .cm-intro-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.community-page .cm-intro .cm-intro-block {
  flex: 1;
  min-width: 260px;
  padding: 22px 24px;
  background: #f8f9fc;
  border: 1px solid #eee;
  border-radius: 8px;
  box-sizing: border-box;
}
.community-page .cm-intro .cm-intro-block h3 {
  margin: 0 0 12px;
  font-size: 17px;
  font-weight: bold;
  color: #333;
}
.community-page .cm-intro .cm-intro-block p {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.75;
  color: #666;
}
.community-page .cm-intro .cm-intro-block p:last-child {
  margin-bottom: 0;
}
.community-page .cm-intro .cm-intro-block p strong {
  color: #333;
}
.community-page .cm-main {
  background: #f0f2f5;
  padding: 40px 24px 64px;
  box-sizing: border-box;
}
.community-page .cm-main .cm-main-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.community-page .cm-main .academy-breadcrumb {
  margin-bottom: 24px;
}
.community-page .cm-board-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}
.community-page .cm-board-title {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: bold;
  color: #111;
}
.community-page .cm-board-sub {
  margin: 0;
  font-size: 14px;
  color: #888;
}
.community-page .cm-publish-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  font-size: 14px;
  color: #fff;
  background: #333;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.25s;
}
.community-page .cm-publish-btn:hover {
  background: #555;
}
.community-page .cm-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e0e0e0;
}
.community-page .cm-tab {
  padding: 8px 18px;
  font-size: 14px;
  color: #666;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.community-page .cm-tab:hover {
  color: #333;
  border-color: #bbb;
}
.community-page .cm-tab.is-active {
  color: #fff;
  background: #333;
  border-color: #333;
}
.community-page .cm-feed {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.community-page .cm-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 22px 24px 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.community-page .cm-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.community-page .cm-card-user {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.community-page .cm-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: #eee;
  flex-shrink: 0;
}
.community-page .cm-card-name {
  display: block;
  font-size: 15px;
  font-weight: bold;
  color: #333;
}
.community-page .cm-card-time {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: #999;
}
.community-page .cm-status {
  flex-shrink: 0;
  padding: 4px 12px;
  font-size: 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.community-page .cm-status--pending {
  color: #666;
  background: #f0f0f0;
}
.community-page .cm-status--approved {
  color: #1a5fb4;
  background: #e8f2fc;
}
.community-page .cm-status--dev {
  color: #b45309;
  background: #fef3e2;
}
.community-page .cm-status--done {
  color: #2d6a4f;
  background: #e8f5ee;
}
.community-page .cm-status--new {
  color: #1a6fb5;
  background: #e8f4fc;
}
.community-page .cm-status--onsale {
  color: #8a5a00;
  background: #fff4e0;
}
.community-page .cm-card--reward {
  padding: 18px 22px;
}
.community-page .cm-reward-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.community-page .cm-reward-rank {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  border-radius: 50%;
  background: #888;
}
.community-page .cm-reward-rank.is-gold {
  background: #d4a017;
}
.community-page .cm-reward-rank.is-silver {
  background: #9aa3ad;
}
.community-page .cm-reward-rank.is-bronze {
  background: #b87333;
}
.community-page .cm-reward-info {
  flex: 1;
  min-width: 0;
}
.community-page .cm-reward-desc {
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: #666;
}
.community-page .cm-reward-badge {
  flex-shrink: 0;
  padding: 4px 12px;
  font-size: 12px;
  color: #333;
  background: #f3f3f3;
  border-radius: 999px;
  white-space: nowrap;
}
.community-page .cm-feed-empty {
  margin: 0;
  padding: 48px 20px;
  text-align: center;
  font-size: 14px;
  color: #999;
  background: #fff;
  border: 1px dashed #ddd;
  border-radius: 8px;
}
.community-page .cm-card-body {
  margin-bottom: 14px;
}
.community-page .cm-card-title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: bold;
  color: #222;
  line-height: 1.4;
}
.community-page .cm-card-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: #555;
}
.community-page .cm-card-official {
  margin-bottom: 14px;
  padding: 12px 14px;
  background: #f9f9f9;
  border-left: 3px solid #333;
  border-radius: 0 4px 4px 0;
}
.community-page .cm-card-official p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #666;
}
.community-page .cm-card-official-tag {
  display: inline-block;
  margin-bottom: 6px;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  background: #333;
  border-radius: 2px;
}
.community-page .cm-card-meta {
  margin-bottom: 14px;
  font-size: 13px;
  color: #999;
}
.community-page .cm-card-meta .fa {
  margin-right: 4px;
}
.community-page .cm-like {
  cursor: pointer;
  user-select: none;
}
.community-page .cm-like em {
  font-style: normal;
}
.community-page .cm-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.community-page .cm-reward-points {
  color: #b25b00;
  font-weight: 600;
}
.community-page .cm-like:hover,
.community-page .cm-like.is-on {
  color: #c45c26;
}
.community-page .cm-page-btn[disabled] {
  opacity: 0.45;
  cursor: default;
}
.cm-publish-layer .layui-layer-content {
  padding: 8px 20px 0;
  overflow: visible;
}
.cm-publish-form .cm-publish-label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: #333;
}
.cm-publish-form .layui-textarea {
  min-height: 140px;
  resize: vertical;
}
.community-page .cm-comments {
  border-top: 1px solid #f0f0f0;
  padding-top: 14px;
}
.community-page .cm-comment-list {
  margin-bottom: 12px;
  padding: 12px 14px;
  background: #f5f6f8;
  border-radius: 6px;
}
.community-page .cm-comment-empty {
  margin: 0;
  font-size: 13px;
  color: #aaa;
  text-align: center;
}
.community-page .cm-comment {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.65;
}
.community-page .cm-comment:last-child {
  margin-bottom: 0;
}
.community-page .cm-comment--reply {
  margin-top: 8px;
  padding-left: 12px;
  border-left: 2px solid #e0e0e0;
}
.community-page .cm-comment-bd {
  display: inline;
  word-break: break-word;
}
.community-page .cm-comment-user {
  font-weight: bold;
  color: #576b95;
  margin-right: 4px;
}
.community-page .cm-comment-reply-label {
  color: #999;
  margin: 0 4px;
}
.community-page .cm-comment-at {
  font-weight: bold;
  color: #576b95;
  margin-right: 4px;
}
.community-page .cm-comment-text {
  color: #333;
}
.community-page .cm-comment-reply-btn {
  display: inline;
  margin-left: 8px;
  font-size: 12px;
  color: #576b95;
  text-decoration: none;
}
.community-page .cm-comment-reply-btn:hover {
  text-decoration: underline;
}
.community-page .cm-reply-list {
  margin-top: 6px;
}
.community-page .cm-reply-form {
  display: none;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
.community-page .cm-reply-form.is-open {
  display: flex;
}
.community-page .cm-reply-input,
.community-page .cm-compose-input {
  flex: 1;
  min-width: 0;
  height: 34px;
  padding: 0 12px;
  font-size: 13px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
  box-sizing: border-box;
}
.community-page .cm-reply-input:focus,
.community-page .cm-compose-input:focus {
  outline: none;
  border-color: #333;
}
.community-page .cm-reply-submit,
.community-page .cm-compose-submit {
  flex-shrink: 0;
  padding: 0 14px;
  height: 34px;
  font-size: 13px;
  color: #fff;
  background: #333;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}
.community-page .cm-reply-submit:hover,
.community-page .cm-compose-submit:hover {
  background: #555;
}
.community-page .cm-comment-compose {
  display: flex;
  align-items: center;
  gap: 10px;
}
.community-page .cm-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 6px;
  margin-top: 36px;
}
.community-page .cm-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  height: 36px;
  padding: 0 16px;
  font-size: 14px;
  color: #333;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.community-page .cm-page-btn:hover {
  background: #f5f5f5;
  border-color: #bbb;
}
.community-page .cm-page-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  margin: 0 2px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  border-radius: 50%;
  transition: background 0.2s;
}
.community-page .cm-page-num:hover:not(.is-active) {
  background: rgba(0, 0, 0, 0.06);
}
.community-page .cm-page-num.is-active {
  color: #fff;
  background: #888;
  font-weight: 600;
}
.community-page .cm-page-total {
  margin-left: 10px;
  font-size: 13px;
  color: #888;
}
/* 新闻详情（news-details.html） */
.news-detail-page {
  margin-top: 100px;
}
.news-detail-page .nd-strip {
  background: #fff;
  border-bottom: 1px solid #eee;
}
.news-detail-page .nd-strip .nd-strip-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 24px 18px;
  box-sizing: border-box;
}
.news-detail-page .nd-strip .academy-breadcrumb {
  margin: 0;
}
.news-detail-page .nd-main {
  background: #f8f9fc;
  padding: 40px 24px 64px;
  box-sizing: border-box;
}
.news-detail-page .nd-main .nd-inner {
  max-width: 900px;
  margin: 0 auto;
}
.news-detail-page .nd-article {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 40px 48px 36px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  box-sizing: border-box;
}
.news-detail-page .nd-article-head {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid #eee;
}
.news-detail-page .nd-title {
  margin: 0 0 16px;
  font-size: 28px;
  font-weight: bold;
  color: #111;
  line-height: 1.45;
}
.news-detail-page .nd-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  font-size: 13px;
  color: #999;
}
.news-detail-page .nd-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.news-detail-page .nd-meta-item .fa {
  font-size: 14px;
  color: #bbb;
}
.news-detail-page .nd-cover {
  margin: 0 0 28px;
}
.news-detail-page .nd-cover img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
  background: #f5f5f5;
}
.news-detail-page .nd-body {
  font-size: 16px;
  line-height: 1.9;
  color: #444;
}
.news-detail-page .nd-body p {
  margin: 0 0 18px;
}
.news-detail-page .nd-body p:last-child {
  margin-bottom: 0;
}
.news-detail-page .nd-body h2 {
  margin: 28px 0 14px;
  font-size: 20px;
  font-weight: bold;
  color: #222;
}
.news-detail-page .nd-body h2:first-child {
  margin-top: 0;
}
.news-detail-page .nd-footer {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid #eee;
}
.news-detail-page .nd-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  transition: color 0.2s;
}
.news-detail-page .nd-back .fa {
  font-size: 16px;
}
.news-detail-page .nd-back:hover {
  color: #000;
}
/* 个人中心（user.html） */
.user-center-page .uc-banner {
  box-sizing: border-box;
  min-height: 320px;
  padding: 120px 24px 48px;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  background-color: #050a14;
  color: #fff;
}
.user-center-page .uc-banner-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.user-center-page .uc-breadcrumb {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.72);
}
.user-center-page .uc-breadcrumb a {
  color: rgba(255, 255, 255, 0.72);
}
.user-center-page .uc-breadcrumb a:hover {
  color: #fff;
}
.user-center-page .uc-breadcrumb .sep {
  color: rgba(255, 255, 255, 0.4);
}
.user-center-page .uc-breadcrumb .current {
  color: #fff;
}
.user-center-page .uc-user-card {
  display: flex;
  align-items: center;
  gap: 28px;
  max-width: 720px;
  padding: 24px 28px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
  color: #111;
}
.user-center-page .uc-user-avatar-wrap {
  position: relative;
  flex-shrink: 0;
  padding-bottom: 18px;
}
.user-center-page .uc-user-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  background: #eee;
}
.user-center-page .uc-user-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.user-center-page .uc-user-badge {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 12px 4px;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.35;
  color: #fff;
  white-space: nowrap;
  background: #7a7a7a;
  border-radius: 999px;
}
.user-center-page .uc-user-info {
  flex: 1;
  min-width: 0;
}
.user-center-page .uc-user-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 16px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid #e8e8e8;
}
.user-center-page .uc-user-name {
  font-size: 20px;
  font-weight: bold;
  color: #000;
  line-height: 1.3;
}
.user-center-page .uc-user-expire {
  font-size: 13px;
  color: #888;
  text-decoration: none;
}
.user-center-page .uc-user-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 32px;
}
.user-center-page .uc-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.user-center-page .uc-stat strong {
  font-size: 22px;
  font-weight: bold;
  color: #111;
  line-height: 1.2;
}
.user-center-page .uc-stat span {
  font-size: 12px;
  color: #999;
}
.user-center-page .uc-stat-link {
  margin-left: auto;
  font-size: 13px;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
}
.user-center-page .uc-stat-link .fa {
  margin-left: 2px;
}
.user-center-page .uc-stat-link:hover {
  color: #000;
}
.user-center-page .uc-main {
  background: #f8f9fc;
  padding: 40px 24px 72px;
  box-sizing: border-box;
}
.user-center-page .uc-layout {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
}
.user-center-page .uc-sidebar {
  flex: 0 0 220px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 12px 0;
  box-sizing: border-box;
}
.user-center-page .uc-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
.user-center-page .uc-nav-item {
  margin: 0;
}
.user-center-page .uc-nav-item a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-size: 15px;
  color: #333;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.user-center-page .uc-nav-item a .fa {
  width: 18px;
  text-align: center;
  font-size: 16px;
  color: #999;
}
.user-center-page .uc-nav-item.is-active a,
.user-center-page .uc-nav-item:hover a {
  background: #f5f5f5;
  color: #000;
}
.user-center-page .uc-nav-item.is-active a .fa,
.user-center-page .uc-nav-item:hover a .fa {
  color: #333;
}
.user-center-page .uc-nav-item.is-active a {
  font-weight: bold;
  border-left: 3px solid #111;
  padding-left: 19px;
}
.user-center-page .uc-content {
  flex: 1;
  min-width: 0;
}
.user-center-page .uc-panel {
  display: none;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 32px 36px 36px;
  box-sizing: border-box;
}
.user-center-page .uc-panel.is-show {
  display: block;
}
.user-center-page .uc-panel-title {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: bold;
  color: #111;
}
.user-center-page .uc-panel-desc {
  margin: 0 0 28px;
  font-size: 13px;
  color: #999;
}
.user-center-page .uc-panel-head-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.user-center-page .uc-panel-head-row .uc-panel-desc {
  margin-bottom: 0;
}
.user-center-page .uc-store-link {
  font-size: 14px;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
}
.user-center-page .uc-store-link:hover {
  color: #000;
}
.user-center-page .uc-form {
  max-width: 560px;
}
.user-center-page .uc-form .layui-form-item {
  margin-bottom: 22px;
}
.user-center-page .uc-form .uc-label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: #333;
  font-weight: 500;
}
.user-center-page .uc-form .layui-input {
  height: 42px;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  padding: 0 12px;
  font-size: 14px;
  background: #fff;
}
.user-center-page .uc-form .layui-input:focus {
  border-color: #333;
}
.user-center-page .uc-form .layui-input.is-readonly {
  background: #f7f7f7;
  color: #888;
  cursor: not-allowed;
}
.user-center-page .uc-form .layui-input:focus,
.user-center-page .uc-form .layui-textarea:focus {
  border-color: #333 !important;
  box-shadow: none;
}
.user-center-page .uc-form .layui-form-radio:hover > *,
.user-center-page .uc-form .layui-form-radioed,
.user-center-page .uc-form .layui-form-radioed > i {
  color: #333;
}
.user-center-page .uc-form .layui-form-select dl dd.layui-this {
  color: #333;
}
.user-center-page .uc-form .uc-field-tip {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #aaa;
}
.user-center-page .uc-form .uc-inline-link,
.user-center-page .uc-inline-link {
  color: #333;
  text-decoration: underline;
}
.user-center-page .uc-account-block {
  padding: 8px 0 28px;
  margin-bottom: 8px;
  border-bottom: 1px solid #eee;
}
.user-center-page .uc-account-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.user-center-page .uc-account-block .uc-field-tip {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: #aaa;
}
.user-center-page .uc-account-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.user-center-page .uc-wx-status {
  font-size: 14px;
  color: #888;
}
.user-center-page .uc-wx-status.is-bound {
  color: #2d8a4e;
}
.user-center-page .uc-account-current {
  margin: 0 0 16px;
  font-size: 14px;
  color: #666;
}
.user-center-page .uc-account-current strong {
  color: #111;
  font-weight: 600;
}
.user-center-page .uc-form .uc-code-wrap {
  display: flex;
  gap: 12px;
  align-items: stretch;
}
.user-center-page .uc-form .uc-code-wrap .layui-input {
  flex: 1;
}
.user-center-page .uc-get-code {
  width: 120px;
  height: 42px;
  padding: 0 8px;
  font-size: 13px;
  color: #333;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  flex-shrink: 0;
}
.user-center-page .uc-get-code:hover {
  border-color: #333;
}
.user-center-page .uc-get-code:disabled {
  cursor: not-allowed;
  opacity: 0.65;
  color: #999;
  background: #f5f5f5;
}
.user-center-page .uc-btn-danger {
  min-width: 96px;
  height: 36px;
  padding: 0 16px;
  font-size: 13px;
  color: #c0392b;
  background: #fff;
  border: 1px solid #e8b4ae;
  border-radius: 4px;
  cursor: pointer;
}
.user-center-page .uc-btn-danger:hover {
  color: #fff;
  background: #c0392b;
  border-color: #c0392b;
}
.user-center-page .uc-btn-wx {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 120px;
  height: 40px;
  padding: 0 18px;
  font-size: 14px;
  line-height: 1;
  color: #fff;
  background: #07c160;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease, opacity 0.2s ease;
}
.user-center-page .uc-btn-wx .fa {
  font-size: 16px;
}
.user-center-page .uc-btn-wx:hover {
  color: #fff;
  background: #06ad56;
}
.uc-wechat-bind-pop {
  padding: 16px 20px 24px;
  text-align: center;
}
.uc-wechat-bind-pop .wechat-qr-frame {
  width: 240px;
  height: 240px;
  margin: 0 auto 12px;
  overflow: hidden;
}
.uc-wechat-bind-pop .uc-wechat-bind-tip {
  margin: 0;
  font-size: 13px;
  color: #666;
}
.user-center-page .uc-form .uc-select-row .uc-select-group {
  display: flex;
  gap: 10px;
}
.user-center-page .uc-form .uc-select-row .uc-select-group .layui-input-inline {
  flex: 1;
  margin: 0;
  width: auto;
}
.user-center-page .uc-avatar-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid #eee;
}
.user-center-page .uc-form-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  background: #eee;
  flex-shrink: 0;
}
.user-center-page .uc-form-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.user-center-page .uc-avatar-btn {
  padding: 8px 18px;
  font-size: 13px;
  color: #333;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.user-center-page .uc-avatar-btn:hover {
  border-color: #333;
  color: #000;
}
.user-center-page .uc-form-actions {
  margin-top: 8px;
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.user-center-page .uc-btn-primary {
  min-width: 140px;
  height: 44px;
  line-height: 44px;
  padding: 0 28px;
  font-size: 15px;
  color: #fff;
  background: #222;
  border: none;
  border-radius: 4px;
}
.user-center-page .uc-btn-primary:hover {
  background: #000;
}
.user-center-page .uc-forget-link {
  font-size: 13px;
  color: #666;
  text-decoration: none;
}
.user-center-page .uc-forget-link:hover {
  color: #111;
  text-decoration: underline;
}
.user-center-page .uc-redeem-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.user-center-page .uc-redeem-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 20px;
  border: 1px solid #eee;
  border-radius: 8px;
  box-sizing: border-box;
  transition: box-shadow 0.2s;
}
.user-center-page .uc-redeem-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.user-center-page .uc-redeem-thumb {
  flex: 0 0 80px;
  width: 80px;
  height: 80px;
  border-radius: 6px;
  overflow: hidden;
  background: #f5f5f5;
}
.user-center-page .uc-redeem-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.user-center-page .uc-redeem-body {
  flex: 1;
  min-width: 0;
}
.user-center-page .uc-redeem-name {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: bold;
  color: #111;
}
.user-center-page .uc-redeem-meta {
  margin: 0 0 6px;
  font-size: 13px;
  color: #888;
}
.user-center-page .uc-redeem-meta span {
  margin-right: 20px;
}
.user-center-page .uc-redeem-meta span strong {
  color: #333;
  font-weight: 600;
}
.user-center-page .uc-redeem-address {
  margin: 0 0 6px;
  font-size: 13px;
  line-height: 1.55;
  color: #666;
}
.user-center-page .uc-redeem-address .fa {
  margin-right: 6px;
  color: #999;
}
.user-center-page .uc-redeem-order {
  margin: 0;
  font-size: 12px;
  color: #bbb;
}
.user-center-page .uc-redeem-status {
  flex-shrink: 0;
  padding: 4px 12px;
  font-size: 12px;
  border-radius: 4px;
  white-space: nowrap;
}
.user-center-page .uc-redeem-status.is-pending {
  color: #c87b00;
  background: #fff8e6;
}
.user-center-page .uc-redeem-status.is-shipped {
  color: #1a6fb5;
  background: #e8f4fc;
}
.user-center-page .uc-redeem-status.is-done {
  color: #2d8a4e;
  background: #eaf6ee;
}
.user-center-page .uc-redeem-empty {
  padding: 48px 20px;
  text-align: center;
  color: #999;
}
.user-center-page .uc-redeem-empty .fa {
  font-size: 48px;
  color: #ddd;
  margin-bottom: 12px;
}
.user-center-page .uc-redeem-empty p {
  margin: 0 0 20px;
  font-size: 14px;
}
.user-center-page .uc-btn-outline {
  display: inline-block;
  padding: 10px 24px;
  font-size: 14px;
  color: #333;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-decoration: none;
}
.user-center-page .uc-btn-outline:hover {
  border-color: #333;
  color: #000;
}
.first_banner {
  position: relative;
}
.first_banner img,
.first_banner video {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.first_banner .banner_text {
  position: absolute;
  width: 1200px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
}
.first_banner .banner_text .subtitle {
  font-size: 32px;
}
.first_banner .banner_text .title {
  font-size: 64px;
}
.first_banner .banner_text .text {
  font-size: 32px;
  display: flex;
  align-items: center;
  margin-top: 200px;
}
.first_banner .banner_text .text img {
  width: auto;
  height: 32px;
}
/* 精彩活动（activity.html） */
.activity-page {
  background: #fff;
}
.activity-page .act-hero {
  position: relative;
  width: 100%;
}
.activity-page .act-hero img,
.activity-page .act-hero video {
  display: block;
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  background: #1a1a1a;
}
.activity-page .act-hero .banner-media--mobile {
  display: none;
}
@media (max-width: 768px) {
  .activity-page .act-hero .banner-media--pc {
    display: none;
  }
  .activity-page .act-hero .banner-media--mobile {
    display: block;
  }
}
.activity-page .act-hero .act-hero-text {
  position: absolute;
  left: 170px;
  bottom: 72px;
  z-index: 2;
  max-width: 560px;
  color: #fff;
}
.activity-page .act-hero .act-hero-text h1 {
  margin: 0 0 18px;
  font-size: 48px;
  font-weight: bold;
  letter-spacing: 2px;
}
.activity-page .act-hero .act-hero-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  opacity: 0.92;
}
.activity-page .act-content {
  padding: 56px 170px 100px;
  box-sizing: border-box;
}
.activity-page .act-inner {
  width: 100%;
  max-width: 1580px;
  margin: 0 auto;
}
.activity-page .act-sec-head {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  margin-bottom: 40px;
  font-weight: bold;
  border-bottom: 1px solid #aaaaaa;
  padding-bottom: 20px;
}
.activity-page .act-sec-title {
  margin: 0;
  font-size: 32px;
  font-weight: bold;
  color: #000;
  white-space: nowrap;
  line-height: 1;
}
.activity-page .act-sec-en {
  margin-left: 5px;
  font-size: 17px;
  color: #000;
  line-height: 1;
  white-space: nowrap;
}
.activity-page .act-list {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 25px;
}
.activity-page .act-item {
  display: block;
  width: calc((100% - 50px) / 3);
  overflow: hidden;
  text-decoration: none;
}
.activity-page .act-item img {
  display: block;
  width: 100%;
  min-height: 280px;
  object-fit: cover;
  background: #e8e8e8;
  -webkit-transition: -webkit-transform 0.35s ease;
  transition: transform 0.35s ease;
}
.activity-page .act-item:hover img {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}
/* ==========================================================================
   响应式适配统一维护区
   1.本文件中所有 @media 查询集中放在此处，按断点从大到小排列，禁止在上方样式中夹写；
   2.断点顺序：1600px / 1400px / 1200px / 992px / 768px / 576px / 480px / 375px；
   3.同一断点内按「公用模块 → 首页 → 子页面」的顺序书写，与上方样式顺序保持一致。
   ========================================================================== */
/* ============================== <= 1600px ============================== */
@media (max-width: 1600px) {
  /* 会员等级 - 等级图表 */
  .fanclub-vip-page .fv-level-chart {
    width: 100%;
    padding: 0 24px;
    box-sizing: border-box;
  }
  /* 学院 / 服务支持 通用内容页 */
  .academy-content {
    padding: 150px 80px;
  }
  /* 测评招募 */
  .test-content .recruit-inner {
    padding: 0 24px;
    box-sizing: border-box;
  }
  /* 精彩活动 */
  .activity-page .act-hero .act-hero-text {
    left: 80px;
  }
  .activity-page .act-content {
    padding: 56px 80px 80px;
  }
}
/* ============================== <= 1400px ============================== */
@media (max-width: 1400px) {
  /* 公用容器 */
  .main {
    width: 100%;
  }
  /* Header */
  .header .header-inner {
    width: 100%;
    padding: 0 24px;
    box-sizing: border-box;
  }
  /* Banner */
  .banner .banner-text {
    width: 100%;
    padding: 0 40px;
  }
  /* 首页 - 新品活动 */
  .section-new-arrival .new-arrival-text {
    width: 100%;
    padding: 0 40px;
    box-sizing: border-box;
  }
  /* 首页 - 粉丝俱乐部精选 */
  .section-fan-club-index .fan-club-content .fan-club-left {
    padding: 60px 6% 0 48px;
  }
  /* 首页 - 特色服务 */
  .section-features .features-inner {
    width: 100%;
    padding: 0 40px;
    gap: 100px;
    box-sizing: border-box;
  }
  /* 子页面通用占位 */
  .page-placeholder .placeholder-content {
    width: 100%;
    padding: 0 24px;
    box-sizing: border-box;
  }
  /* 关于我们 - 通用 banner */
  .about-banner .banner-text {
    width: 100%;
    left: 50%;
    padding: 0 40px;
    box-sizing: border-box;
    text-align: center;
  }
  /* 定制页 / 新设计页 banner */
  .custom-banner .banner-text,
  .design-banner .banner-text {
    width: 100%;
    padding: 0 40px;
  }
  /* 定制页 - 数据条 */
  .custom-stats .custom-stats-item {
    gap: 10px;
    padding: 24px 10px;
  }
  .custom-stats .custom-stats-item img {
    width: 44px;
    height: 44px;
  }
  .custom-stats .custom-stats-text h3 {
    font-size: 22px;
  }
  .custom-stats .custom-stats-text p {
    font-size: 12px;
  }
  /* 定制页 - 公司简介 */
  .custom-about {
    width: 100%;
    max-width: 1200px;
    padding: 0 24px;
    box-sizing: border-box;
  }
  /* 定制页 - 全宽背景容器 */
  .custom-bg-wrap {
    padding: 110px 32px 56px;
  }
  .title-wrap {
    font-size: 52px;
    margin-bottom: 100px;
  }
  /* 加入我们 */
  .join-us {
    width: 100%;
    max-width: 1400px;
    padding: 0 24px;
    box-sizing: border-box;
  }
  /* 新闻资讯 */
  .news-info {
    width: 100%;
    max-width: 1400px;
    padding: 0 24px;
    box-sizing: border-box;
  }
  /* 会员等级页 */
  .fanclub-vip-page .fv-level-intro,
  .fanclub-vip-page .fv-notice {
    width: 100%;
    max-width: 1200px;
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
  }
  .fanclub-vip-page .fv-level-intro .fv-intro-body {
    padding: 0 60px;
  }
  .fanclub-vip-page .fv-notice .fv-notice-body {
    padding: 0 60px;
  }
  /* 学院 / 服务支持 通用内容页 */
  .academy-content {
    padding: 130px 40px;
  }
  /* 产品中心 - 场景推荐 */
  .scenario-section .scenario-swiper .swiper-slide {
    width: 92%;
  }
  /* 产品中心 - 手电筒区块 */
  .flashlight-section .flashlight-inner {
    padding: 0 24px;
    box-sizing: border-box;
  }
  /* 产品列表页 */
  .product_list .product_list-title,
  .product_list .product_list-grid {
    width: 100%;
    max-width: 1280px;
    padding: 0 24px;
    box-sizing: border-box;
  }
  .product_list .product_list-title {
    margin: 0 auto 28px;
  }
  .product_list .product_list-grid {
    margin: 0 auto;
  }
  /* 通用图文 banner */
  .banner_container .text {
    width: 100%;
    padding: 0 40px;
    box-sizing: border-box;
  }
  /* 积分商城 */
  .storePage .sp-banner-inner {
    width: 100%;
    padding: 0 24px;
    box-sizing: border-box;
  }
  /* 新品先体验 banner */
  .first_banner .banner_text {
    width: 100%;
    padding: 0 40px;
    box-sizing: border-box;
  }
  .first_banner .banner_text .text {
    margin-top: 120px;
  }
  /* 精彩活动 */
  .activity-page .act-hero .act-hero-text {
    left: 40px;
  }
  .activity-page .act-content {
    padding: 48px 40px 72px;
  }
}
/* ============================== <= 1200px ============================== */
@media (max-width: 1200px) {
  /* Header */
  .header .nav {
    margin-right: 32px;
  }
  .header .nav ul {
    gap: 32px;
  }
  .header .nav.nav-mega .dropdown {
    padding: 12px 20px;
  }
  .header .nav.nav-mega .dropdown a {
    margin: 0 16px;
    font-size: 13px;
  }
  .header .lang-wrap {
    margin-right: 24px;
  }
  .header .vip-member {
    margin-left: 24px;
  }
  /* Banner */
  .banner {
    min-height: 520px;
  }
  /* 首页 - 新品活动 */
  .section-new-arrival .new-arrival-text h3 {
    font-size: 18px;
  }
  .section-new-arrival .new-arrival-text h2 {
    font-size: 32px;
  }
  .section-new-arrival .new-arrival-text p {
    font-size: 15px;
  }
  /* 首页 - 产品卡片 */
  .section-product-grid .product-grid-inner .product-item .text-box {
    bottom: 48px;
    left: 32px;
  }
  .section-product-grid .product-grid-inner .product-item .text-box h3 {
    font-size: 32px;
    margin-top: 20px;
    margin-bottom: 64px;
  }
  .section-product-grid .product-grid-inner .product-item .text-box span {
    font-size: 24px;
  }
  /* 首页 - 探索发现 */
  .section-discover .discover-swiper .swiper-slide {
    width: 80%;
  }
  .section-discover .discover-swiper .discover-slide {
    min-height: 340px;
  }
  .section-discover .discover-swiper .discover-overlay {
    top: 48px;
  }
  .section-discover .discover-swiper .discover-overlay .discover-tag {
    font-size: 16px;
  }
  .section-discover .discover-swiper .discover-overlay .discover-title {
    font-size: 26px;
  }
  .section-discover .discover-swiper .discover-swiper-btn-prev {
    margin-left: -36%;
  }
  .section-discover .discover-swiper .discover-swiper-btn-next {
    margin-right: -36%;
  }
  /* 首页 - 粉丝俱乐部精选 */
  .section-fan-club-index .fan-club-header h2 {
    font-size: 34px;
  }
  .section-fan-club-index .fan-club-header p {
    font-size: 18px;
  }
  /* 首页 - 品牌故事 */
  .section-brand-story .brand-story-header h2 {
    font-size: 34px;
  }
  .section-brand-story .brand-story-header p {
    font-size: 18px;
  }
  /* 首页 - 工厂实力 */
  .section-factory .factory-header h2 {
    font-size: 34px;
  }
  .section-factory .factory-header p {
    font-size: 18px;
  }
  /* 首页 - 特色服务 */
  .section-features .features-inner {
    justify-content: space-around;
    gap: 60px;
  }
  /* 登录 / 注册 */
  .auth-container {
    padding-right: 8%;
  }
  /* 关于我们 - 通用 banner */
  .about-banner .banner-text h1 {
    font-size: 40px;
  }
  .about-banner .banner-text p {
    font-size: 28px;
  }
  /* 新设计页 - 研发 / 专利 / 荣誉 */
  .design-feature .design-feature-list {
    padding: 0 24px;
  }
  .design-feature .design-feature-item > img {
    min-height: 440px;
  }
  .design-feature .design-feature-text {
    top: 28px;
  }
  .design-feature .design-feature-text h3 {
    font-size: 24px;
  }
  /* 定制页 - 公司简介 */
  .custom-about .custom-about-text {
    padding: 40px 32px;
  }
  .custom-about .custom-about-text h2 {
    font-size: 24px;
  }
  .custom-about .custom-about-text p {
    font-size: 13px;
    margin-bottom: 14px;
  }
  .custom-about .custom-about-media img {
    min-height: 360px;
  }
  /* 定制页 - 品类展示 */
  .custom-category .custom-category-list {
    gap: 36px 24px;
  }
  .custom-category .custom-category-item {
    -webkit-flex: 0 0 calc((100% - 96px) / 5);
    flex: 0 0 calc((100% - 96px) / 5);
    max-width: calc((100% - 96px) / 5);
  }
  .custom-category .custom-category-name {
    padding: 7px 18px;
    font-size: 13px;
    min-width: 0;
  }
  /* 定制页 - 全宽背景容器 */
  .custom-bg-wrap {
    padding: 90px 24px 48px;
  }
  .custom-bg-inner {
    padding: 60px 28px 44px;
  }
  .title-wrap {
    font-size: 42px;
    margin-bottom: 80px;
  }
  /* 企业文化 - 公司简介 */
  .company-intro .ci-text {
    width: 260px;
  }
  .company-intro .ci-en {
    font-size: 32px;
  }
  .company-intro .ci-zh {
    font-size: 26px;
  }
  /* 品牌荣誉 */
  .brand-honors .bh-inner {
    padding: 0 24px;
  }
  .brand-honors .bh-title {
    font-size: 32px;
  }
  .brand-honors .bh-en {
    font-size: 16px;
  }
  .brand-honors .bh-num {
    font-size: 140px;
    left: 10px;
  }
  .brand-honors .bh-row {
    gap: 14px;
    margin-bottom: 14px;
  }
  .brand-honors .bh-item,
  .brand-honors .bh-row--center .bh-item {
    max-width: calc((100% - 70px) / 6);
  }
  .brand-honors .bh-row--center .bh-item {
    -webkit-flex: 0 0 calc((100% - 70px) / 6);
    flex: 0 0 calc((100% - 70px) / 6);
  }
  /* 光野俱乐部首页 */
  .fanclub-hub-page .fv-hero .fv-hero-inner {
    left: 12%;
  }
  .fanclub-hub-page .fv-hero .text {
    font-size: 52px;
  }
  .fanclub-hub-page .fc-top-nav,
  .fanclub-hub-page .fc-bottom-nav {
    gap: 18px;
    padding: 18px;
  }
  .fanclub-hub-page .fc-nav-card img {
    min-height: 220px;
  }
  .fanclub-hub-page .fc-nav-card .fc-nav-title {
    font-size: 20px;
  }
  .fanclub-hub-page .fc-bottom-nav .fc-nav-card img {
    min-height: 200px;
  }
  /* 会员等级页 */
  .fanclub-vip-page .fv-hero .fv-hero-en {
    font-size: 30px;
  }
  .fanclub-vip-page .fv-hero .fv-hero-cn {
    font-size: 24px;
  }
  .fanclub-vip-page .fv-level-intro .fv-intro-body {
    padding: 0 32px;
  }
  .fanclub-vip-page .fv-notice .fv-notice-body {
    padding: 0 40px;
  }
  .fanclub-vip-page .fv-notice .fv-notice-title {
    font-size: 26px;
  }
  .fanclub-vip-page .fv-notice .fv-notice-list {
    font-size: 17px;
  }
  /* 测评招募 */
  .test-banner .banner-text h1 {
    font-size: 48px;
  }
  .test-banner .banner-text p {
    font-size: 22px;
  }
  .test-content .recruit-header h2 {
    font-size: 34px;
  }
  .test-content .recruit-card {
    padding: 26px 28px;
  }
  .test-content .recruit-card h3 {
    font-size: 34px;
  }
  /* 学院 / 服务支持 通用内容页 */
  .academy-content {
    padding: 120px 24px;
  }
  .academy-content .academy-sidebar {
    width: 230px;
    margin-right: 24px;
    padding: 32px 22px 24px;
  }
  /* 产品中心 - 场景推荐 */
  .scenario-section .scenario-swiper .swiper-slide {
    width: 94%;
  }
  .scenario-section .scenario-swiper .scenario-slide .scenario-slide-img {
    height: 360px;
  }
  /* 产品中心 - 手电筒区块 */
  .flashlight-section .flashlight-feature .flashlight-feature-overlay {
    padding: 28px 28px;
    max-width: 65%;
  }
  .flashlight-section .flashlight-feature .flashlight-feature-overlay .flashlight-feature-name {
    font-size: 26px;
  }
  .flashlight-section .flashlight-feature .flashlight-feature-overlay .flashlight-feature-desc {
    margin-bottom: 48px;
  }
  .flashlight-section .flashlight-grid .flashlight-card,
  .flashlight-section .flashlight-grid .flashlight-accessories-link {
    -webkit-flex: 0 0 calc((100% - 36px) / 4);
    flex: 0 0 calc((100% - 36px) / 4);
    max-width: calc((100% - 36px) / 4);
  }
  /* 产品列表页 */
  .product_list .product_list-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  /* 通用图文 banner */
  .banner_container .text h3 {
    font-size: 22px;
  }
  .banner_container .text h2 {
    font-size: 30px;
  }
  .banner_container .text p {
    font-size: 20px;
  }
  /* 个人仓库 */
  .personal-warehouse .pw-layout {
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 32px;
  }
  .personal-warehouse .pw-sidebar {
    -webkit-flex: none;
    flex: none;
    width: 100%;
    border-left: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0 0 20px;
  }
  .personal-warehouse .pw-cat-list {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 8px;
  }
  .personal-warehouse .pw-cat-item {
    margin: 0;
  }
  .personal-warehouse .pw-card {
    width: calc((100% - 36px) / 3);
  }
  /* 积分商城 */
  .storePage .sp-card {
    width: calc((100% - 40px) / 3);
  }
  /* 购买渠道 */
  .buy-channel-page .bc-top-card {
    width: calc((100% - 40px) / 3);
  }
  .buy-channel-page .bc-qr-item {
    width: calc((100% - 48px) / 3);
  }
  /* 新闻详情 */
  .news-detail-page .nd-article {
    padding: 32px 36px 30px;
  }
  /* 新品先体验 banner */
  .first_banner .banner_text .subtitle {
    font-size: 26px;
  }
  .first_banner .banner_text .title {
    font-size: 52px;
  }
  .first_banner .banner_text .text {
    font-size: 26px;
    margin-top: 100px;
  }
  /* 精彩活动 */
  .activity-page .act-hero img,
  .activity-page .act-hero video {
    min-height: 420px;
  }
  .activity-page .act-hero .act-hero-text {
    left: 24px;
    bottom: 48px;
  }
  .activity-page .act-hero .act-hero-text h1 {
    font-size: 38px;
  }
  .activity-page .act-content {
    padding: 44px 24px 64px;
  }
  .activity-page .act-sec-title {
    font-size: 26px;
  }
}
/* ============================== <= 992px ============================== */
@media (max-width: 992px) {
  /* Header */
  .header .nav {
    margin-right: 20px;
  }
  .header .nav ul {
    gap: 20px;
  }
  .header .nav li > a {
    font-size: 13px;
  }
  .header .lang-wrap {
    margin-right: 16px;
  }
  .header .lang {
    padding: 3px 10px;
    font-size: 12px;
  }
  .header .tools > a,
  .header .tools .user-wrap {
    margin: 0 10px;
    font-size: 16px;
  }
  .header .vip-member {
    margin-left: 16px;
    width: 84px;
    height: 30px;
    padding: 6px 12px;
  }
  /* Banner */
  .banner {
    min-height: 460px;
  }
  .banner .banner-text h2 {
    font-size: 26px;
  }
  .banner .banner-text h1 {
    font-size: 48px;
  }
  .banner .banner-text h3 {
    font-size: 20px;
  }
  /* Footer */
  .footer .footer-content {
    padding: 0 24px;
  }
  .footer .footer-sns {
    gap: 24px;
  }
  /* 首页 - 产品卡片 */
  .section-product-grid .product-grid-inner {
    gap: 14px;
  }
  .section-product-grid .product-grid-inner .product-item {
    width: calc(50% - 7px);
  }
  .section-product-grid .product-grid-inner .product-item .text-box {
    bottom: 32px;
    left: 20px;
  }
  .section-product-grid .product-grid-inner .product-item .text-box h3 {
    font-size: 24px;
    margin-top: 16px;
    margin-bottom: 40px;
  }
  .section-product-grid .product-grid-inner .product-item .text-box span {
    font-size: 18px;
  }
  .section-product-grid .product-grid-inner .product-item .text-box a {
    font-size: 14px;
    padding: 5px 16px;
  }
  /* 首页 - 探索发现 */
  .section-discover {
    padding: 40px 0 52px;
  }
  .section-discover .discover-swiper .swiper-slide {
    width: 88%;
  }
  .section-discover .discover-swiper .discover-slide {
    min-height: 280px;
  }
  .section-discover .discover-swiper .discover-overlay {
    top: 32px;
    padding: 20px 20px 0;
  }
  .section-discover .discover-swiper .discover-overlay .discover-tag {
    font-size: 15px;
    margin-bottom: 8px;
  }
  .section-discover .discover-swiper .discover-overlay .discover-title {
    font-size: 22px;
  }
  .section-discover .discover-swiper .discover-overlay .play-icon {
    width: 52px;
    height: 52px;
    margin-top: 24px;
  }
  .section-discover .discover-swiper .discover-overlay .play-icon i {
    font-size: 20px;
  }
  .section-discover .discover-swiper .discover-swiper-btn {
    width: 36px;
    height: 36px;
  }
  .section-discover .discover-swiper .discover-swiper-btn i {
    font-size: 30px;
  }
  .section-discover .discover-swiper .discover-swiper-btn-prev {
    margin-left: -44%;
  }
  .section-discover .discover-swiper .discover-swiper-btn-next {
    margin-right: -44%;
  }
  .section-discover .discover-swiper .discover-swiper-pagination .swiper-pagination-bullet {
    width: 24px;
  }
  /* 首页 - 粉丝俱乐部精选 */
  .section-fan-club-index {
    margin: 48px auto;
  }
  .section-fan-club-index .fan-club-header {
    margin-bottom: 32px;
  }
  .section-fan-club-index .fan-club-header .fan-club-logo {
    height: 38px;
  }
  .section-fan-club-index .fan-club-header .fan-club-title-row {
    gap: 16px;
  }
  .section-fan-club-index .fan-club-header h2 {
    font-size: 26px;
  }
  .section-fan-club-index .fan-club-header p {
    font-size: 16px;
  }
  .section-fan-club-index .fan-club-content {
    -webkit-flex-direction: column;
    flex-direction: column;
    padding-right: 0;
  }
  .section-fan-club-index .fan-club-content .fan-club-left {
    width: 100%;
    padding: 40px 24px;
  }
  .section-fan-club-index .fan-club-content .fan-club-left .title {
    font-size: 20px;
    margin-bottom: 18px;
  }
  .section-fan-club-index .fan-club-content .fan-club-left .text {
    font-size: 16px;
  }
  .section-fan-club-index .fan-club-content .fan-club-right {
    width: 100%;
  }
  .section-fan-club-index .fan-flex-content {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0 24px;
    gap: 18px;
    margin-top: 24px;
  }
  .section-fan-club-index .fan-flex-content .item {
    -webkit-flex: 0 0 calc((100% - 18px) / 2);
    flex: 0 0 calc((100% - 18px) / 2);
  }
  /* 首页 - 品牌故事 */
  .section-brand-story .brand-story-header {
    margin-bottom: 32px;
  }
  .section-brand-story .brand-story-header h2 {
    font-size: 26px;
  }
  .section-brand-story .brand-story-header p {
    font-size: 16px;
  }
  .section-brand-story .brand-story-content {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .section-brand-story .brand-story-content .brand-story-left,
  .section-brand-story .brand-story-content .brand-story-right {
    width: 100%;
  }
  /* 首页 - 工厂实力 */
  .section-factory {
    margin-top: 48px;
  }
  .section-factory .factory-header {
    margin-bottom: 32px;
  }
  .section-factory .factory-header h2 {
    font-size: 26px;
  }
  .section-factory .factory-header p {
    font-size: 16px;
  }
  /* 首页 - 特色服务：始终保持一排三个，仅缩小间距与尺寸 */
  .section-features {
    padding: 36px 0;
  }
  .section-features .features-inner {
    gap: 32px;
    padding: 0 24px;
  }
  .section-features .features-inner .feature-item {
    min-width: 0;
  }
  .section-features .features-inner .feature-item img {
    height: 34px;
  }
  .section-features .features-inner .feature-item p {
    font-size: 14px;
  }
  /* 登录 / 注册 */
  .auth-container {
    -webkit-justify-content: center;
    justify-content: center;
    padding: 100px 24px 60px;
  }
  .auth-container .auth-box {
    width: 100%;
    max-width: 440px;
    padding: 40px 28px 32px;
  }
  .auth-container .auth-box .auth-tabs {
    gap: 28px;
    margin-bottom: 28px;
  }
  .auth-container .auth-box .auth-tabs a {
    font-size: 20px;
  }
  /* 子页面通用占位 */
  .page-placeholder .placeholder-banner {
    height: 220px;
    font-size: 26px;
    letter-spacing: 3px;
  }
  .page-placeholder .placeholder-content {
    margin: 32px auto;
  }
  .page-placeholder .placeholder-content img {
    min-height: 300px;
  }
  /* 关于我们 - 通用 banner */
  .about-banner .banner-text h1 {
    font-size: 32px;
  }
  .about-banner .banner-text p {
    font-size: 20px;
  }
  /* 定制页 / 新设计页 banner */
  .custom-banner .banner-text,
  .design-banner .banner-text {
    top: 40%;
    padding: 0 24px;
  }
  .custom-banner .banner-text h1,
  .design-banner .banner-text h1 {
    font-size: 36px;
    letter-spacing: 2px;
    margin-bottom: 16px;
  }
  .custom-banner .banner-text p,
  .design-banner .banner-text p {
    font-size: 15px;
    letter-spacing: 2px;
  }
  .custom-banner .banner-text p {
    padding: 8px 20px;
  }
  /* 新设计页 - 产品展示条 */
  .design-products {
    padding: 36px 24px;
  }
  .design-products .design-products-list {
    gap: 16px;
  }
  .design-products .design-products-item {
    max-width: 160px;
    height: 160px;
  }
  /* 新设计页 - 研发 / 专利 / 荣誉 */
  .design-feature {
    padding: 0 0 40px;
  }
  .design-feature .design-feature-list {
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    padding: 0 20px;
  }
  .design-feature .design-feature-item > img {
    min-height: 380px;
  }
  /* 定制页 - 数据条 */
  .custom-stats {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .custom-stats .custom-stats-item {
    -webkit-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    padding: 22px 14px 22px 24px;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .custom-stats .custom-stats-item:nth-child(5) {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  /* 定制页 - 公司简介 */
  .custom-about {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .custom-about .custom-about-text {
    padding: 36px 24px;
  }
  .custom-about .custom-about-text h2 {
    font-size: 22px;
  }
  .custom-about .custom-about-line {
    max-width: 100%;
    margin: 14px 0 22px;
  }
  .custom-about .custom-about-media img {
    min-height: 280px;
    height: auto;
    aspect-ratio: 16 / 10;
  }
  /* 定制页 - 共用标题 */
  .custom-mod-head {
    margin-bottom: 36px;
  }
  .custom-mod-head .custom-mod-title {
    font-size: 28px;
    margin-bottom: 12px;
  }
  .custom-mod-head .custom-mod-sub {
    font-size: 16px;
  }
  /* 定制页 - 专利证书荣誉 */
  .custom-honor {
    padding: 50px 24px 60px;
  }
  /* 定制页 - 品类展示 */
  .custom-category {
    padding: 10px 24px 70px;
  }
  .custom-category .custom-category-list {
    gap: 32px 20px;
  }
  .custom-category .custom-category-item {
    -webkit-flex: 0 0 calc((100% - 40px) / 3);
    flex: 0 0 calc((100% - 40px) / 3);
    max-width: calc((100% - 40px) / 3);
  }
  /* 定制页 - 全宽背景容器 / 共用横线标题 / 图文卡片 */
  .custom-bg-wrap {
    padding: 70px 24px 44px;
  }
  .custom-bg-inner {
    padding: 40px 24px 40px;
  }
  .title-wrap {
    font-size: 32px;
    margin-bottom: 56px;
  }
  .custom-mod-bar {
    margin-bottom: 30px;
  }
  .custom-mod-bar .custom-mod-bar-zh {
    font-size: 28px;
  }
  .custom-mod-bar .custom-mod-bar-sep {
    font-size: 18px;
  }
  .custom-mod-bar .custom-mod-bar-en {
    font-size: 14px;
  }
  .custom-gallery-item {
    -webkit-flex: 0 0 calc((100% - 24px) / 2);
    flex: 0 0 calc((100% - 24px) / 2);
    max-width: calc((100% - 24px) / 2);
  }
  /* 定制页 - 战略合作伙伴 */
  .custom-partner {
    padding: 50px 24px 70px;
  }
  /* 企业文化 - 公司简介 */
  .company-intro {
    padding: 40px 20px 60px;
  }
  .company-intro .ci-row {
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
  }
  .company-intro .ci-media {
    -webkit-flex: none;
    flex: none;
    max-width: 100%;
    width: 100%;
    min-height: 220px;
  }
  .company-intro .ci-media img {
    min-height: 220px;
  }
  .company-intro .ci-text {
    width: 100%;
    padding: 32px 24px;
  }
  .company-intro .ci-row--media-right .ci-media {
    -webkit-order: -1;
    order: -1;
  }
  /* 品牌荣誉 */
  .brand-honors {
    padding: 50px 0 60px;
  }
  .brand-honors .bh-row {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 12px;
  }
  .brand-honors .bh-item,
  .brand-honors .bh-row--center .bh-item {
    -webkit-flex: 0 0 calc((100% - 24px) / 3);
    flex: 0 0 calc((100% - 24px) / 3);
    max-width: calc((100% - 24px) / 3);
  }
  .brand-honors .bh-num {
    font-size: 110px;
  }
  /* 加入我们 */
  .join-us {
    margin: 48px auto;
  }
  .join-us .job-list .job-item .job-header {
    padding: 16px 20px;
  }
  .join-us .job-list .job-item .job-header .job-info h3 {
    font-size: 17px;
  }
  .join-us .job-list .job-item .job-header .job-info span {
    font-size: 13px;
    margin-right: 12px;
  }
  .join-us .job-list .job-item .job-body {
    padding: 22px 20px;
  }
  /* 新闻资讯 */
  .news-info {
    margin: 0 auto 48px;
  }
  .news-info .news-list {
    gap: 18px;
    margin-top: 28px;
  }
  .news-info .news-list .item {
    width: calc((100% - 18px) / 2);
  }
  /* 光野俱乐部首页 */
  .fanclub-hub-page .fv-hero .fv-hero-inner {
    top: 38%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .fanclub-hub-page .fv-hero .text {
    font-size: 36px;
  }
  .fanclub-hub-page .fv-hero .fc-btn {
    font-size: 15px;
  }
  .fanclub-hub-page .fc-top-nav,
  .fanclub-hub-page .fc-bottom-nav {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 14px;
    padding: 14px;
  }
  .fanclub-hub-page .fc-nav-card {
    -webkit-flex: 0 0 calc((100% - 14px) / 2);
    flex: 0 0 calc((100% - 14px) / 2);
  }
  .fanclub-hub-page .fc-nav-card img {
    min-height: 180px;
  }
  .fanclub-hub-page .fc-nav-card .fc-nav-title {
    font-size: 18px;
  }
  .fanclub-hub-page .fc-bottom-nav .fc-nav-card img {
    min-height: 170px;
  }
  .fanclub-hub-page .fc-intro-bar {
    padding: 48px 24px;
  }
  .fanclub-hub-page .fc-intro-bar .fc-intro-inner {
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
    margin-bottom: 32px;
  }
  .fanclub-hub-page .fc-intro-bar .fc-intro-left {
    margin-bottom: 20px;
  }
  .fanclub-hub-page .fc-intro-bar .fc-intro-left img {
    height: 38px;
    margin-right: 16px;
  }
  .fanclub-hub-page .fc-intro-bar .fc-intro-left h2 {
    font-size: 26px;
  }
  .fanclub-hub-page .fc-intro-bar .fc-intro-right {
    max-width: 100%;
    padding-left: 0;
    text-align: center;
  }
  .fanclub-hub-page .fc-intro-bar .fc-intro-right .fc-intro-tip {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .fanclub-hub-page .fc-intro-bar .fc-intro-btns {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 14px;
  }
  .fanclub-hub-page .fc-intro-bar .fc-btn {
    padding: 8px 26px;
    font-size: 15px;
  }
  /* 会员等级页 */
  .fanclub-vip-page {
    padding-bottom: 30vh;
  }
  .fanclub-vip-page .fv-hero .fv-hero-en {
    font-size: 24px;
    letter-spacing: 4px;
  }
  .fanclub-vip-page .fv-hero .fv-hero-cn {
    font-size: 20px;
  }
  .fanclub-vip-page .fv-block {
    padding: 44px 0 40px;
  }
  .fanclub-vip-page .fv-sec-head {
    margin-bottom: 32px;
  }
  .fanclub-vip-page .fv-sec-title {
    font-size: 24px;
  }
  .fanclub-vip-page .fv-sec-en {
    font-size: 14px;
  }
  .fanclub-vip-page .fv-level-chart .fv-chart-cols {
    padding: 18px 0;
  }
  .fanclub-vip-page .fv-level-chart .fv-chart-bubble {
    max-width: 96px;
    margin-bottom: 12px;
    padding: 5px 8px;
    font-size: 12px;
  }
  .fanclub-vip-page .fv-level-chart .fv-chart-bars {
    max-width: 96px;
    gap: 8px;
  }
  .fanclub-vip-page .fv-level-chart .fv-chart-label-cell {
    padding: 10px 4px;
  }
  .fanclub-vip-page .fv-level-chart .fv-chart-label-cell img {
    height: 20px;
  }
  .fanclub-vip-page .fv-level-intro {
    padding-bottom: 48px;
  }
  .fanclub-vip-page .fv-level-intro .fv-intro-card {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .fanclub-vip-page .fv-level-intro .fv-intro-media {
    width: 100%;
    min-width: 0;
  }
  .fanclub-vip-page .fv-level-intro .fv-intro-body {
    padding: 24px 24px 28px;
  }
  .fanclub-vip-page .fv-level-intro .fv-intro-hd {
    font-size: 22px;
  }
  .fanclub-vip-page .fv-level-intro .fv-intro-perk {
    font-size: 22px;
    margin: 12px 0;
  }
  .fanclub-vip-page .fv-notice {
    padding-bottom: 40px;
  }
  .fanclub-vip-page .fv-notice .fv-notice-body {
    padding: 0 24px;
  }
  .fanclub-vip-page .fv-notice .fv-notice-title {
    font-size: 20px;
  }
  .fanclub-vip-page .fv-notice .fv-notice-title img {
    width: 26px;
  }
  .fanclub-vip-page .fv-notice .fv-notice-list {
    font-size: 14px;
    line-height: 1.7;
  }
  .fanclub-vip-page .back {
    margin-top: 60px;
  }
  /* 测评招募 */
  .test-banner .banner-text h1 {
    font-size: 36px;
  }
  .test-banner .banner-text p {
    font-size: 18px;
  }
  .test-content {
    padding: 44px 0;
  }
  .test-content .recruit-header {
    margin-bottom: 32px;
  }
  .test-content .recruit-header h2 {
    font-size: 28px;
  }
  .test-content .recruit-header img {
    width: 48px;
  }
  .test-content .recruit-cards {
    gap: 18px;
  }
  .test-content .recruit-card {
    padding: 24px 22px;
  }
  .test-content .recruit-card h3 {
    font-size: 28px;
    margin-bottom: 14px;
  }
  .test-content .recruit-card li {
    font-size: 14px;
  }
  /* 学院 / 服务支持 通用内容页 */
  .academy-content {
    padding: 100px 20px;
  }
  .academy-content .academy-container {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .academy-content .academy-sidebar {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
    padding: 28px 20px 24px;
  }
  .academy-content .academy-main {
    width: 100%;
    padding: 32px 20px 40px;
  }
  .academy-content .academy-section-label {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .academy-content .academy-article-title {
    font-size: 24px;
    margin-bottom: 24px;
  }
  /* 联系我们 */
  .academy-content.contact-page .contact-layout {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .academy-content.contact-page .contact-visual {
    -webkit-flex: none;
    flex: none;
    width: 100%;
  }
  /* 序列号查询 */
  .serial-query {
    padding: 100px 16px 60px;
  }
  .serial-query .sq-card {
    padding: 36px 28px 40px;
  }
  .serial-query .sq-result {
    padding: 28px 24px;
  }
  .serial-query .sq-result-thumb {
    width: 120px;
    height: 120px;
  }
  /* 产品中心 - 场景推荐 */
  .scenario-section {
    padding-top: 40px;
    padding-bottom: 36px;
  }
  .scenario-section .scenario-head {
    margin-bottom: 28px;
  }
  .scenario-section .scenario-head .scenario-title {
    font-size: 22px;
  }
  .scenario-section .scenario-head .scenario-subtitle {
    font-size: 12px;
    letter-spacing: 2px;
  }
  .scenario-section .scenario-swiper .swiper-slide {
    width: 94%;
  }
  .scenario-section .scenario-swiper .scenario-slide {
    min-height: 240px;
  }
  .scenario-section .scenario-swiper .scenario-slide .scenario-slide-img {
    height: 280px;
  }
  .scenario-section .scenario-swiper .scenario-slide .scenario-slide-text {
    left: 20px;
    right: 16px;
    bottom: 24px;
  }
  .scenario-section .scenario-swiper .scenario-slide .scenario-slide-text h3 {
    font-size: 17px;
  }
  .scenario-section .scenario-swiper .scenario-slide .scenario-slide-text p {
    font-size: 13px;
  }
  /* 产品中心 - 手电筒区块 */
  .flashlight-section .flashlight-section-title {
    font-size: 19px;
    margin-bottom: 18px;
  }
  .flashlight-section .flashlight-feature .flashlight-feature-img {
    min-height: 220px;
  }
  .flashlight-section .flashlight-feature .flashlight-feature-overlay {
    padding: 20px 22px;
    max-width: 75%;
  }
  .flashlight-section .flashlight-feature .flashlight-feature-overlay .flashlight-feature-name {
    font-size: 22px;
  }
  .flashlight-section .flashlight-feature .flashlight-feature-overlay .flashlight-feature-desc {
    font-size: 14px;
    margin-bottom: 28px;
  }
  .flashlight-section .flashlight-feature .flashlight-feature-overlay .flashlight-buy-btn {
    padding: 8px 24px;
    font-size: 13px;
  }
  .flashlight-section .flashlight-grid .flashlight-card,
  .flashlight-section .flashlight-grid .flashlight-accessories-link {
    -webkit-flex: 0 0 calc((100% - 24px) / 3);
    flex: 0 0 calc((100% - 24px) / 3);
    max-width: calc((100% - 24px) / 3);
  }
  /* 产品列表页 */
  .product_list {
    padding: 36px 0 48px;
  }
  .product_list .product_list-title {
    font-size: 26px;
  }
  .product_list .product_list-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /* 通用图文 banner */
  .banner_container .text h3 {
    font-size: 19px;
  }
  .banner_container .text h2 {
    font-size: 26px;
  }
  .banner_container .text p {
    font-size: 17px;
  }
  .banner_container .video-btn {
    padding: 8px 24px;
  }
  /* 视频弹层 */
  .video_mask .video-container {
    width: 88%;
  }
  /* 积分商城 */
  .storePage .sp-banner-inner {
    top: 60%;
  }
  .storePage .sp-card {
    width: calc((100% - 20px) / 2);
  }
  .storePage .sp-user-card {
    max-width: none;
  }
  .storePage .sp-main {
    padding: 32px 16px 44px;
  }
  .storePage .sp-main-inner {
    padding: 28px 20px;
  }
  .storePage .sp-section-title {
    font-size: 19px;
  }
  .sp-redeem-modal .sp-redeem-region .layui-input-inline {
    -webkit-flex: 1 1 45%;
    flex: 1 1 45%;
  }
  /* 购买渠道 */
  .buy-channel-page .bc-main {
    padding: 36px 16px 56px;
  }
  .buy-channel-page .bc-lead {
    font-size: 14px;
    margin-bottom: 28px;
  }
  .buy-channel-page .bc-section-title {
    font-size: 19px;
  }
  .buy-channel-page .bc-top-card {
    width: calc((100% - 20px) / 2);
  }
  .buy-channel-page .bc-qr-item {
    width: calc((100% - 24px) / 2);
  }
  /* 展会分享社区 */
  .community-page .cm-hero .banner-text h1 {
    font-size: 34px;
  }
  .community-page .cm-hero .banner-text p {
    font-size: 20px;
  }
  .community-page .cm-intro {
    padding: 36px 16px 32px;
  }
  .community-page .cm-intro .cm-intro-title {
    font-size: 22px;
    margin-bottom: 22px;
  }
  .community-page .cm-main {
    padding: 32px 16px 48px;
  }
  .community-page .cm-board-title {
    font-size: 20px;
  }
  /* 新闻详情 */
  .news-detail-page {
    margin-top: 60px;
  }
  .news-detail-page .nd-main {
    padding: 32px 16px 48px;
  }
  .news-detail-page .nd-article {
    padding: 28px 24px 26px;
  }
  .news-detail-page .nd-title {
    font-size: 24px;
  }
  /* 个人中心 */
  .user-center-page .uc-layout {
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: stretch;
    align-items: stretch;
  }
  .user-center-page .uc-sidebar {
    -webkit-flex: none;
    flex: none;
    width: 100%;
    box-sizing: border-box;
  }
  .user-center-page .uc-content {
    width: 100%;
    box-sizing: border-box;
  }
  .user-center-page .uc-nav {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 4px 8px;
  }
  .user-center-page .uc-nav-item {
    -webkit-flex: 1 1 auto;
    flex: 1 1 auto;
  }
  .user-center-page .uc-nav-item.is-active a {
    border-left: none;
    padding-left: 22px;
    border-bottom: 2px solid #111;
  }
  /* 新品先体验 banner */
  .first_banner .banner_text .subtitle {
    font-size: 20px;
  }
  .first_banner .banner_text .title {
    font-size: 38px;
  }
  .first_banner .banner_text .text {
    font-size: 20px;
    margin-top: 60px;
  }
  .first_banner .banner_text .text img {
    height: 24px;
  }
  /* 精彩活动 */
  .activity-page .act-hero img,
  .activity-page .act-hero video {
    min-height: 340px;
  }
  .activity-page .act-hero .act-hero-text {
    left: 20px;
    bottom: 32px;
    max-width: 80%;
  }
  .activity-page .act-hero .act-hero-text h1 {
    font-size: 30px;
    margin-bottom: 12px;
  }
  .activity-page .act-hero .act-hero-text p {
    font-size: 13px;
  }
  .activity-page .act-content {
    padding: 36px 20px 56px;
  }
  .activity-page .act-sec-head {
    margin-bottom: 28px;
    padding-bottom: 14px;
  }
  .activity-page .act-sec-title {
    font-size: 22px;
  }
  .activity-page .act-sec-en {
    font-size: 14px;
  }
  .activity-page .act-list {
    gap: 18px;
  }
  .activity-page .act-item {
    width: calc((100% - 18px) / 2);
  }
  .activity-page .act-item img {
    min-height: 200px;
  }
}
/* ============================== <= 768px ============================== */
@media (max-width: 768px) {
  /* Header：仅保留 logo + 汉堡按钮，电脑端导航项收进侧边抽屉 */
  .header .header-inner {
    padding: 0 12px;
  }
  .header .logo img {
    height: 26px;
    width: auto;
  }
  .header .header-right {
    display: none;
  }
  .header .nav-toggle {
    display: -webkit-flex;
    display: flex;
  }
  .mobile-nav-mask {
    display: block;
  }
  .mobile-nav {
    display: -webkit-flex;
    display: flex;
  }
  /* Banner */
  .banner {
    min-height: 420px;
  }
  .banner .banner-swiper-btn {
    width: 44px;
    height: 44px;
  }
  .banner .banner-swiper-btn i {
    font-size: 18px;
  }
  .banner .banner-swiper-btn:hover {
    -webkit-transform: translateY(-50%) scale(1.04);
    transform: translateY(-50%) scale(1.04);
  }
  .banner .banner-swiper-btn-prev {
    left: 12px;
  }
  .banner .banner-swiper-btn-next {
    right: 12px;
  }
  .banner .banner-swiper-pagination {
    bottom: 28px;
    padding: 6px 12px;
  }
  .banner .banner-swiper-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    margin: 0 4px !important;
  }
  .banner .banner-swiper-pagination .swiper-pagination-bullet-active {
    width: 22px;
  }
  .banner .banner-text {
    padding: 0 20px;
  }
  .banner .banner-text h1 {
    font-size: 36px;
  }
  .banner .banner-text h2 {
    font-size: 22px;
  }
  .banner .banner-text h3 {
    font-size: 16px;
  }
  .banner .banner-media--pc {
    display: none;
  }
  .banner .banner-media--mobile {
    display: block;
  }
  .banner_container .banner-media--pc {
    display: none;
  }
  .banner_container .banner-media--mobile {
    display: block;
  }
  .custom-banner .banner-media--pc {
    display: none;
  }
  .custom-banner .banner-media--mobile {
    display: block;
  }
  .pd_container--pc {
    display: none;
  }
  .pd_container--mobile {
    display: block;
  }
  /* Footer */
  .footer {
    padding: 40px 0 60px;
  }
  .footer .footer-content {
    padding: 0 16px;
  }
  .footer .footer-content .vision {
    margin-bottom: 28px;
  }
  .footer .footer-bar {
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
    gap: 28px;
  }
  .footer .footer-brand img {
    height: 56px;
  }
  .footer .footer-sns {
    gap: 20px;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .footer .footer-sns-item {
    width: 52px;
  }
  .footer .footer-sns-item .footer-sns-icon {
    width: 44px;
    height: 44px;
  }
  .footer .footer-sns-item p {
    font-size: 12px;
  }
  .footer .footer-sns-item .footer-sns-qr {
    width: 108px;
  }
  /* 首页 - 新品活动 */
  .section-new-arrival {
    margin: 12px auto;
  }
  .section-new-arrival .new-arrival-img {
    min-height: 220px;
  }
  .section-new-arrival .new-arrival-text {
    padding: 0 20px;
  }
  .section-new-arrival .new-arrival-text h3 {
    font-size: 15px;
    margin-bottom: 6px;
  }
  .section-new-arrival .new-arrival-text h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .section-new-arrival .new-arrival-text p {
    font-size: 13px;
    margin-bottom: 14px;
  }
  .section-new-arrival .new-arrival-text .view-more {
    font-size: 13px;
    padding: 5px 16px;
  }
  /* 首页 - 产品卡片 */
  .section-product-grid .product-grid-inner {
    gap: 12px;
  }
  .section-product-grid .product-grid-inner .product-item {
    width: 100%;
  }
  .section-product-grid .product-grid-inner .product-item .img-box img {
    min-height: 200px;
  }
  .section-product-grid .product-grid-inner .product-item .text-box {
    bottom: 24px;
    left: 16px;
  }
  .section-product-grid .product-grid-inner .product-item .text-box h3 {
    font-size: 20px;
    margin-top: 12px;
    margin-bottom: 28px;
  }
  .section-product-grid .product-grid-inner .product-item .text-box span {
    font-size: 16px;
  }
  .section-product-grid .product-grid-inner .product-item .text-box a {
    font-size: 13px;
    padding: 4px 14px;
  }
  /* 首页 - 探索发现 */
  .section-discover .discover-swiper .swiper-slide {
    width: 94%;
  }
  .section-discover .discover-swiper .discover-slide {
    min-height: 220px;
  }
  .section-discover .discover-swiper .discover-overlay {
    top: 20px;
  }
  .section-discover .discover-swiper .discover-overlay .discover-tag {
    font-size: 13px;
  }
  .section-discover .discover-swiper .discover-overlay .discover-title {
    font-size: 18px;
  }
  .section-discover .discover-swiper .discover-overlay .play-icon {
    width: 44px;
    height: 44px;
    margin-top: 16px;
  }
  .section-discover .discover-swiper .discover-overlay .play-icon i {
    font-size: 18px;
  }
  .section-discover .discover-swiper .discover-swiper-btn {
    display: none;
  }
  .section-discover .discover-swiper .discover-swiper-pagination {
    bottom: 12px;
  }
  .section-discover .discover-swiper .discover-swiper-pagination .swiper-pagination-bullet {
    width: 18px;
    height: 2px;
  }
  /* 首页 - 粉丝俱乐部精选 */
  .section-fan-club-index {
    margin: 32px auto;
  }
  .section-fan-club-index .fan-club-header .fan-club-title-row {
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 12px;
  }
  .section-fan-club-index .fan-club-header h2 {
    font-size: 22px;
  }
  .section-fan-club-index .fan-club-header p {
    font-size: 14px;
  }
  .section-fan-club-index .fan-club-content .fan-club-left {
    padding: 28px 16px;
  }
  .section-fan-club-index .fan-club-content .fan-club-left .title {
    font-size: 18px;
  }
  .section-fan-club-index .fan-club-content .fan-club-left .text {
    font-size: 14px;
  }
  .section-fan-club-index .fan-flex-content {
    padding: 0 16px;
    gap: 14px;
  }
  .section-fan-club-index .fan-flex-content .item {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
  }
  /* 首页 - 品牌故事 */
  .section-brand-story .brand-story-header {
    margin-bottom: 24px;
  }
  .section-brand-story .brand-story-header h2 {
    font-size: 22px;
  }
  .section-brand-story .brand-story-header p {
    font-size: 14px;
  }
  /* 首页 - 工厂实力 */
  .section-factory {
    margin-top: 32px;
  }
  .section-factory .factory-header {
    margin-bottom: 24px;
  }
  .section-factory .factory-header h2 {
    font-size: 22px;
  }
  .section-factory .factory-header p {
    font-size: 14px;
  }
  /* 首页 - 特色服务 */
  .section-features {
    padding: 28px 0;
  }
  .section-features .features-inner {
    gap: 16px;
    padding: 0 16px;
  }
  .section-features .features-inner .feature-item {
    min-width: 0;
  }
  .section-features .features-inner .feature-item img {
    height: 30px;
  }
  .section-features .features-inner .feature-item p {
    font-size: 13px;
  }
  .section-features .features-inner .feature-item a {
    font-size: 12px;
  }
  /* 登录 / 注册 */
  .auth-container {
    padding: 80px 16px 48px;
  }
  .auth-container .auth-box {
    padding: 32px 20px 28px;
  }
  .auth-container .auth-box .auth-tabs {
    gap: 20px;
    margin-bottom: 24px;
  }
  .auth-container .auth-box .auth-tabs a {
    font-size: 18px;
  }
  .auth-container .auth-box .auth-form-wrap .layui-form-item.code-wrap {
    gap: 10px;
  }
  .auth-container .auth-box .auth-form-wrap .layui-form-item.code-wrap .get-code-btn {
    width: 104px;
  }
  .auth-container .auth-box .auth-form-wrap .wechat-qrcode .qr-img {
    width: 150px;
    height: 150px;
  }
  .auth-container .auth-box .auth-form-wrap .wechat-qrcode .wechat-qr-frame {
    width: 100%;
    max-width: 280px;
    height: 280px;
  }
  .auth-container .auth-box .other-login-methods {
    margin-top: 28px;
  }
  .auth-container .auth-box .other-login-methods .methods-icons {
    margin-top: 22px;
    gap: 16px;
  }
  /* 子页面通用占位 */
  .page-placeholder .placeholder-banner {
    height: 170px;
    font-size: 20px;
    letter-spacing: 2px;
  }
  .page-placeholder .placeholder-content {
    margin: 24px auto;
    padding: 0 16px;
  }
  .page-placeholder .placeholder-content img {
    min-height: 200px;
  }
  /* 关于我们 - 通用 banner */
  .about-banner .banner-text {
    padding: 0 20px;
  }
  .about-banner .banner-text h1 {
    font-size: 24px;
    margin-bottom: 6px;
  }
  .about-banner .banner-text p {
    font-size: 14px;
  }
  /* 加入我们 - banner 双卡片 */
  .join-banner .join-banner-text h1 {
    font-size: 32px;
    margin-bottom: 8px;
  }
  .join-banner .join-banner-text .join-banner-en {
    margin-bottom: 28px;
    font-size: 14px;
    letter-spacing: 2px;
  }
  .join-banner .join-banner-cards {
    gap: 16px;
  }
  .join-banner .join-banner-card {
    width: 150px;
    height: 110px;
    gap: 10px;
    border-radius: 10px;
  }
  .join-banner .join-banner-card img {
    width: 32px;
    height: 32px;
  }
  .join-banner .join-banner-card span {
    font-size: 14px;
    letter-spacing: 1px;
  }
  /* 定制页 / 新设计页 banner */
  .custom-banner .banner-text,
  .design-banner .banner-text {
    top: 45%;
    padding: 0 16px;
  }
  .custom-banner .banner-text h1,
  .design-banner .banner-text h1 {
    font-size: 24px;
    letter-spacing: 1px;
    margin-bottom: 12px;
  }
  .custom-banner .banner-text p,
  .design-banner .banner-text p {
    font-size: 12px;
    letter-spacing: 1px;
  }
  .custom-banner .banner-text p {
    padding: 6px 14px;
  }
  /* 新设计页 - 产品展示条：保持电脑端横向排列，缩小子元素尺寸 */
  .design-products {
    padding: 28px 16px;
  }
  .design-products .design-products-list {
    gap: 10px;
  }
  .design-products .design-products-item {
    max-width: 90px;
    height: 90px;
  }
  /* 定制页 - 共用横线标题 / 全宽背景容器 / 图文卡片 */
  .custom-mod-bar {
    margin-bottom: 28px;
    padding-bottom: 12px;
  }
  .custom-mod-bar .custom-mod-bar-zh {
    font-size: 24px;
  }
  .custom-mod-bar .custom-mod-bar-sep {
    font-size: 16px;
  }
  .custom-mod-bar .custom-mod-bar-en {
    font-size: 13px;
  }
  .custom-bg-wrap {
    padding: 36px 16px;
  }
  .custom-bg-inner {
    padding: 28px 16px 36px;
  }
  .title-wrap {
    font-size: 24px;
    margin-bottom: 36px;
  }
  .custom-gallery-list {
    gap: 22px 16px;
  }
  .custom-gallery-item {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .custom-gallery-text h3 {
    font-size: 16px;
  }
  .custom-gallery-text p {
    font-size: 11px;
  }
  /* 定制页 - 品类展示 */
  .custom-category .custom-category-item {
    -webkit-flex: 0 0 calc((100% - 20px) / 2);
    flex: 0 0 calc((100% - 20px) / 2);
    max-width: calc((100% - 20px) / 2);
  }
  .custom-category .custom-category-pic {
    border-radius: 14px;
  }
  .custom-category .custom-category-name {
    margin-top: 14px;
    padding: 6px 16px;
    font-size: 13px;
  }
  /* 定制页 - 战略合作伙伴 */
  .custom-partner {
    padding: 40px 16px 56px;
  }
  /* 企业文化 - 公司简介 */
  .company-intro {
    padding: 32px 16px 48px;
  }
  .company-intro .ci-text {
    padding: 24px 18px;
  }
  .company-intro .ci-en {
    font-size: 26px;
    letter-spacing: 3px;
  }
  .company-intro .ci-zh {
    font-size: 21px;
  }
  .company-intro .ci-line {
    margin-bottom: 16px;
  }
  .company-intro .ci-desc {
    font-size: 14px;
  }
  /* 加入我们 */
  .join-us {
    margin: 32px auto;
  }
  .join-us .job-list .job-item .job-header {
    padding: 14px 16px;
  }
  .join-us .job-list .job-item .job-header .job-info h3 {
    font-size: 16px;
  }
  .join-us .job-list .job-item .job-header .job-info span {
    display: inline-block;
    font-size: 12px;
    margin-right: 10px;
  }
  .join-us .job-list .job-item .job-body {
    padding: 18px 16px;
  }
  .join-us .job-list .job-item .job-body .req-block h4 {
    font-size: 15px;
  }
  .join-us .job-list .job-item .job-body .req-block p {
    font-size: 13px;
  }
  .join-us .job-list .job-item .job-body .apply-wrap {
    gap: 12px;
  }
  .join-us .job-list .job-item .job-body .apply-btn img {
    height: 34px;
  }
  .join-us .job-list .job-item .job-body .apply-tip {
    font-size: 12px;
  }
  /* 加入我们 - 申请弹框 */
  .join-apply-modal {
    padding: 16px 12px;
  }
  .join-apply-modal__head {
    padding: 14px 16px;
  }
  .join-apply-modal__head h2 {
    font-size: 17px;
  }
  .join-apply-modal__body {
    padding: 18px 16px 22px;
  }
  /* 新闻资讯 */
  .news-info {
    margin: 0 auto 32px;
  }
  .news-info .news-list {
    gap: 14px;
    margin-top: 22px;
  }
  .news-info .news-list .item {
    width: 100%;
  }
  .news-info .news-list .item .text {
    font-size: 14px;
  }
  /* 光野俱乐部首页 */
  .fanclub-hub-page .fv-hero .text {
    font-size: 26px;
  }
  .fanclub-hub-page .fv-hero .fc-btn {
    padding: 3px 14px;
    font-size: 13px;
  }
  .fanclub-hub-page .fc-nav-card {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
  }
  .fanclub-hub-page .fc-nav-card img {
    min-height: 150px;
  }
  .fanclub-hub-page .fc-nav-card .fc-nav-title {
    font-size: 16px;
  }
  .fanclub-hub-page .fc-bottom-nav .fc-nav-card img {
    min-height: 150px;
  }
  .fanclub-hub-page .fc-intro-bar {
    padding: 32px 16px;
  }
  .fanclub-hub-page .fc-intro-bar .fc-intro-left {
    -webkit-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
  .fanclub-hub-page .fc-intro-bar .fc-intro-left img {
    margin: 0 0 10px;
  }
  .fanclub-hub-page .fc-intro-bar .fc-intro-left h2 {
    font-size: 22px;
  }
  .fanclub-hub-page .fc-intro-bar .fc-intro-right .fc-intro-desc,
  .fanclub-hub-page .fc-intro-bar .fc-intro-right .fc-intro-tip {
    font-size: 14px;
  }
  .fanclub-hub-page .fc-intro-bar .fc-intro-btns {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .fanclub-hub-page .fc-intro-bar .fc-btn {
    width: 100%;
    box-sizing: border-box;
  }
  /* 会员等级页：等级图表随屏宽整体缩小，须知区域文字随内容自适应高度 */
  .fanclub-vip-page {
    padding-bottom: 20vh;
  }
  .fanclub-vip-page .fv-hero .fv-hero-en {
    font-size: 19px;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }
  .fanclub-vip-page .fv-hero .fv-hero-cn {
    font-size: 16px;
    letter-spacing: 2px;
  }
  .fanclub-vip-page .fv-block {
    padding: 32px 0;
  }
  .fanclub-vip-page .fv-sec-title {
    font-size: 20px;
  }
  .fanclub-vip-page .fv-level-chart {
    padding: 0 12px;
    box-sizing: border-box;
  }
  .fanclub-vip-page .fv-level-chart .fv-chart {
    padding: 16px 10px;
  }
  .fanclub-vip-page .fv-level-chart .fv-chart-cols {
    gap: 8px;
  }
  .fanclub-vip-page .fv-level-chart .fv-chart-bubble {
    max-width: 76px;
    padding: 4px 6px;
    margin-bottom: 14px;
    font-size: 11px;
  }
  .fanclub-vip-page .fv-level-chart .fv-chart-bars {
    max-width: 76px;
    gap: 6px;
  }
  .fanclub-vip-page .fv-level-chart .fv-chart-label-cell {
    padding: 8px 2px;
  }
  .fanclub-vip-page .fv-level-chart .fv-chart-label-cell img {
    height: 16px;
  }
  .fanclub-vip-page .fv-level-intro {
    padding-bottom: 36px;
  }
  .fanclub-vip-page .fv-level-intro .fv-intro-list {
    gap: 16px;
  }
  .fanclub-vip-page .fv-level-intro .fv-intro-media img {
    min-height: 160px;
  }
  .fanclub-vip-page .fv-level-intro .fv-intro-body {
    padding: 20px 18px 22px;
  }
  .fanclub-vip-page .fv-level-intro .fv-intro-hd {
    font-size: 19px;
  }
  .fanclub-vip-page .fv-level-intro .fv-intro-hd img {
    width: 28px;
  }
  .fanclub-vip-page .fv-level-intro .fv-intro-perk {
    font-size: 19px;
  }
  .fanclub-vip-page .fv-level-intro .fv-intro-perk img {
    width: 24px;
  }
  .fanclub-vip-page .fv-level-intro .fv-intro-desc {
    font-size: 12px;
  }
  .fanclub-vip-page .fv-notice {
    padding-bottom: 32px;
  }
  .fanclub-vip-page .fv-notice .fv-notice-box > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }
  .fanclub-vip-page .fv-notice .fv-notice-body {
    position: relative;
    z-index: 2;
    top: auto;
    left: auto;
    -webkit-transform: none;
    transform: none;
    padding: 24px 16px;
    box-sizing: border-box;
  }
  .fanclub-vip-page .fv-notice .fv-notice-title {
    -webkit-align-items: center;
    align-items: center;
    font-size: 16px;
    margin-bottom: 10px;
  }
  .fanclub-vip-page .fv-notice .fv-notice-title img {
    width: 22px;
    height: auto;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    margin-right: 6px;
  }
  .fanclub-vip-page .fv-notice .fv-notice-list {
    font-size: 12px;
    line-height: 1.6;
  }
  .fanclub-vip-page .fv-notice .fv-notice-list li {
    margin-bottom: 4px;
  }
  .fanclub-vip-page .back {
    margin-top: 40px;
  }
  /* 测评招募 */
  .test-banner .banner-text {
    padding: 0 16px;
  }
  .test-banner .banner-text h1 {
    font-size: 26px;
  }
  .test-banner .banner-text p {
    font-size: 15px;
    margin-bottom: 6px;
  }
  .test-content {
    padding: 40px 16px 48px;
  }
  .test-content .recruit-header {
    margin-bottom: 28px;
  }
  .test-content .recruit-header .fa {
    font-size: 22px;
  }
  .test-content .recruit-header h2 {
    font-size: 22px;
  }
  .test-content .recruit-cards {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .test-content .recruit-card {
    -webkit-flex: none;
    flex: none;
    width: 100%;
  }
  .test-content .recruit-card-apply .apply-body {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  /* 面包屑 */
  .academy-breadcrumb {
    font-size: 13px;
  }
  .academy-breadcrumb .sep {
    margin: 0 6px;
  }
  /* 学院 / 服务支持 通用内容页 */
  .academy-content {
    padding: 80px 16px;
  }
  .academy-content .academy-sidebar {
    padding: 22px 16px 20px;
  }
  .academy-content .academy-sidebar-title {
    font-size: 20px;
    margin-bottom: 22px;
  }
  .academy-content .academy-nav-l2-list {
    padding-left: 14px;
  }
  .academy-content .academy-main {
    padding: 24px 16px 32px;
    line-height: 1.9;
  }
  .academy-content .academy-article-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .academy-content .academy-article-body p {
    font-size: 15px;
  }
  /* 常见问题 */
  .academy-content.faq-page .faq-page-title {
    font-size: 22px;
  }
  .academy-content.faq-page .faq-section-title {
    font-size: 18px;
  }
  /* 联系我们 */
  .academy-content.contact-page .contact-page-title {
    font-size: 22px;
  }
  .academy-content.contact-page .contact-list li {
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 4px;
  }
  .academy-content.contact-page .contact-label {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  /* 序列号查询 */
  .serial-query {
    padding: 32px 16px 56px;
  }
  .serial-query .sq-card {
    padding: 28px 20px 32px;
  }
  .serial-query .sq-form {
    -webkit-flex-direction: column;
    flex-direction: column;
    max-width: none;
    gap: 12px;
    border: none;
    border-radius: 0;
    overflow: visible;
    background: transparent;
  }
  .serial-query .sq-input {
    -webkit-flex: none;
    flex: none;
    width: 100%;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
  }
  .serial-query .sq-input:focus {
    box-shadow: none;
    border-color: #ccc;
  }
  .serial-query .sq-btn {
    width: 100%;
    border-radius: 6px;
    border-left: none;
  }
  .serial-query .sq-result {
    padding: 24px 20px;
  }
  .serial-query .sq-result-head {
    margin-bottom: 20px;
    padding-bottom: 16px;
  }
  .serial-query .sq-result-body {
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    gap: 20px;
  }
  .serial-query .sq-result-thumb {
    width: 96px;
    height: 96px;
  }
  .serial-query .sq-result-list li span {
    width: 96px;
  }
  .serial-query .sq-empty {
    padding: 40px 16px;
  }
  /* 产品中心 - 场景推荐 */
  .scenario-section {
    padding-top: 32px;
    padding-bottom: 28px;
  }
  .scenario-section .scenario-head {
    padding: 0 16px;
    margin-bottom: 22px;
  }
  .scenario-section .scenario-head .scenario-title {
    font-size: 19px;
    letter-spacing: 1px;
  }
  .scenario-section .scenario-swiper .swiper-slide {
    width: 92%;
  }
  .scenario-section .scenario-swiper .scenario-slide {
    min-height: 180px;
  }
  .scenario-section .scenario-swiper .scenario-slide .scenario-slide-img {
    height: 210px;
  }
  .scenario-section .scenario-swiper .scenario-slide .scenario-slide-text {
    left: 14px;
    right: 14px;
    bottom: 16px;
  }
  .scenario-section .scenario-swiper .scenario-slide .scenario-slide-text h3 {
    font-size: 15px;
  }
  .scenario-section .scenario-swiper .scenario-slide .scenario-slide-text p {
    font-size: 12px;
    margin-bottom: 8px;
  }
  /* 产品中心 - 手电筒区块：主图文案改为图下常规流 */
  .flashlight-section {
    padding-top: 12px;
  }
  .flashlight-section .flashlight-inner {
    padding: 0 16px;
  }
  .flashlight-section .flashlight-section-title {
    font-size: 17px;
  }
  .flashlight-section .flashlight-feature .flashlight-feature-img {
    min-height: 180px;
  }
  .flashlight-section .flashlight-feature .flashlight-feature-overlay {
    position: static;
    max-width: 100%;
    padding: 16px 16px 18px;
    background: rgba(0, 0, 0, 0.72);
    -webkit-transform: none;
    transform: none;
  }
  .flashlight-section .flashlight-feature .flashlight-feature-overlay .flashlight-feature-name {
    font-size: 20px;
    margin: 8px 0 10px;
  }
  .flashlight-section .flashlight-feature .flashlight-feature-overlay .flashlight-feature-desc {
    font-size: 13px;
    margin-bottom: 16px;
  }
  .flashlight-section .flashlight-grid {
    gap: 10px;
  }
  .flashlight-section .flashlight-grid .flashlight-card,
  .flashlight-section .flashlight-grid .flashlight-accessories-link {
    -webkit-flex: 0 0 calc((100% - 10px) / 2);
    flex: 0 0 calc((100% - 10px) / 2);
    max-width: calc((100% - 10px) / 2);
  }
  .flashlight-section .flashlight-grid .flashlight-card .flashlight-card-name {
    padding: 10px;
    font-size: 13px;
  }
  .flashlight-section .flashlight-grid .flashlight-accessories-link {
    padding: 16px 12px;
  }
  .flashlight-section .flashlight-grid .flashlight-accessories-link .flashlight-accessories-link-text {
    font-size: 14px;
  }
  /* 产品列表页 */
  .product_list {
    padding: 28px 0 40px;
  }
  .product_list .product_list-title {
    font-size: 22px;
    padding: 0 16px;
    margin-bottom: 20px;
  }
  .product_list .product_list-grid {
    padding: 0 16px;
    gap: 14px;
  }
  .product_list .pl-card-name,
  .product_list .pl-card-slogan {
    font-size: 17px;
  }
  .product_list .pl-card-desc {
    font-size: 14px;
  }
  .product_list .pl-card-btn {
    min-width: 120px;
    font-size: 12px;
  }
  /* 通用图文 banner */
  .banner_container .text {
    padding: 0 20px;
  }
  .banner_container .text h3 {
    font-size: 15px;
  }
  .banner_container .text h2 {
    font-size: 20px;
    margin: 6px 0;
  }
  .banner_container .text p {
    font-size: 14px;
  }
  .banner_container .video-btn {
    margin-top: 14px;
    padding: 7px 20px;
    font-size: 13px;
  }
  /* 视频弹层 */
  .video_mask {
    padding: 64px 12px 12px;
  }
  .video_mask .video-container {
    width: 100%;
  }
  .video_mask .video-close {
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
  .video_mask .video-close .fa {
    font-size: 24px;
  }
  .video_mask .video-play-btn {
    width: 64px;
    height: 64px;
    font-size: 64px;
  }
  .video_mask .video-play-btn .fa {
    font-size: 64px;
  }
  /* 个人仓库 */
  .personal-warehouse {
    padding: 120px 16px 48px;
  }
  .personal-warehouse .pw-card {
    width: calc((100% - 18px) / 2);
  }
  /* 积分商城 */
  .storePage .sp-user-card {
    gap: 16px;
    padding: 18px 16px;
  }
  .storePage .sp-user-avatar {
    width: 64px;
    height: 64px;
  }
  .storePage .sp-user-points strong {
    font-size: 28px;
  }
  .sp-redeem-modal {
    padding: 16px 12px;
  }
  .sp-redeem-modal .sp-redeem-head {
    padding: 14px 16px;
  }
  .sp-redeem-modal .sp-redeem-head h3 {
    font-size: 16px;
  }
  .sp-redeem-modal .sp-redeem-body {
    padding: 16px 16px 20px;
  }
  .sp-redeem-modal .sp-redeem-actions .sp-redeem-btn-cancel,
  .sp-redeem-modal .sp-redeem-actions .sp-redeem-btn-submit {
    -webkit-flex: 1 1 auto;
    flex: 1 1 auto;
  }
  /* 购买渠道 */
  .buy-channel-page .bc-strip .bc-strip-inner {
    padding: 14px 16px 16px;
  }
  .buy-channel-page .bc-main {
    padding: 28px 16px 44px;
  }
  .buy-channel-page .bc-top-card {
    width: 100%;
  }
  .buy-channel-page .bc-top-card-img {
    height: 100px;
  }
  .buy-channel-page .bc-qr-item {
    width: 100%;
  }
  .buy-channel-page .bc-qr-box {
    width: 120px;
    height: 120px;
  }
  /* 展会分享社区 */
  .community-page .cm-hero .banner-text h1 {
    font-size: 26px;
  }
  .community-page .cm-hero .banner-text p {
    font-size: 16px;
  }
  .community-page .cm-intro-grid {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .community-page .cm-board-head {
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: stretch;
    align-items: stretch;
  }
  .community-page .cm-publish-btn {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .community-page .cm-tab {
    padding: 6px 14px;
    font-size: 13px;
  }
  .community-page .cm-card {
    padding: 18px 16px;
  }
  .community-page .cm-card-title {
    font-size: 16px;
  }
  .community-page .cm-card-text {
    font-size: 14px;
  }
  .community-page .cm-reply-form.is-open,
  .community-page .cm-comment-compose {
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: stretch;
    align-items: stretch;
  }
  .community-page .cm-reply-input,
  .community-page .cm-compose-input {
    -webkit-flex: none;
    flex: none;
    width: 100%;
  }
  .community-page .cm-reply-submit,
  .community-page .cm-compose-submit {
    width: 100%;
  }
  /* 新闻详情 */
  .news-detail-page .nd-strip .nd-strip-inner {
    padding: 16px;
  }
  .news-detail-page .nd-article {
    padding: 24px 18px 22px;
  }
  .news-detail-page .nd-title {
    font-size: 22px;
  }
  /* 个人中心 */
  .user-center-page .uc-banner {
    min-height: auto;
    padding: 100px 16px 32px;
  }
  .user-center-page .uc-user-card {
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    padding: 20px;
  }
  .user-center-page .uc-stat-link {
    margin-left: 0;
  }
  .user-center-page .uc-main {
    padding: 24px 16px 48px;
  }
  .user-center-page .uc-panel {
    padding: 22px 16px 24px;
  }
  .user-center-page .uc-redeem-item {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .user-center-page .uc-redeem-status {
    width: 100%;
    text-align: center;
  }
  .user-center-page .uc-redeem-meta span {
    display: block;
    margin-right: 0;
    margin-bottom: 4px;
  }
  /* 新品先体验 banner */
  .first_banner .banner_text {
    padding: 0 20px;
  }
  .first_banner .banner_text .subtitle {
    font-size: 16px;
  }
  .first_banner .banner_text .title {
    font-size: 28px;
  }
  .first_banner .banner_text .text {
    font-size: 16px;
    margin-top: 36px;
  }
  .first_banner .banner_text .text img {
    height: 18px;
  }
  /* 精彩活动 */
  .activity-page .act-hero img,
  .activity-page .act-hero video {
    min-height: 260px;
  }
  .activity-page .act-hero .act-hero-text {
    left: 16px;
    right: 16px;
    bottom: 20px;
    max-width: none;
  }
  .activity-page .act-hero .act-hero-text h1 {
    font-size: 22px;
    margin-bottom: 10px;
    letter-spacing: 1px;
  }
  .activity-page .act-hero .act-hero-text p {
    font-size: 12px;
    line-height: 1.7;
  }
  .activity-page .act-content {
    padding: 28px 16px 44px;
  }
  .activity-page .act-sec-head {
    margin-bottom: 22px;
    padding-bottom: 12px;
  }
  .activity-page .act-sec-title {
    font-size: 19px;
  }
  .activity-page .act-sec-en {
    font-size: 12px;
  }
  .activity-page .act-list {
    gap: 14px;
  }
  .activity-page .act-item {
    width: 100%;
  }
  .activity-page .act-item img {
    min-height: 180px;
  }
}
/* ============================== <= 576px ============================== */
@media (max-width: 576px) {
  /* Banner */
  .banner {
    min-height: 360px;
  }
  .banner .banner-text h1 {
    font-size: 26px;
  }
  .banner .banner-text h2 {
    font-size: 18px;
  }
  .banner .banner-text h3 {
    font-size: 14px;
    margin-bottom: 24px;
  }
  .banner .banner-text .more-btn {
    padding: 8px 22px;
    font-size: 14px;
  }
  /* Footer */
  .footer .footer-sns {
    gap: 14px;
  }
  .footer .footer-sns-item {
    width: 46px;
  }
  .footer .footer-sns-item .footer-sns-icon {
    width: 40px;
    height: 40px;
  }
  .footer .footer-sns-item p {
    font-size: 11px;
  }
  /* 首页 - 产品卡片 */
  .section-product-grid .product-grid-inner .product-item .text-box h3 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  /* 首页 - 探索发现 */
  .section-discover .discover-swiper .swiper-slide {
    width: 100%;
  }
  /* 新设计页 - 研发 / 专利 / 荣誉 */
  .design-feature {
    padding-bottom: 40px;
  }
  .design-feature .design-feature-list {
    padding: 0 16px;
  }
  .design-feature .design-feature-item > img {
    min-height: 320px;
  }
  .design-feature .design-feature-text {
    top: 24px;
  }
  .design-feature .design-feature-text h3 {
    font-size: 20px;
    margin-bottom: 8px;
  }
  .design-feature .design-feature-text p {
    font-size: 13px;
    margin-bottom: 12px;
  }
  .design-feature .design-feature-text a {
    font-size: 13px;
  }
  /* 定制页 - 数据条 */
  .custom-stats .custom-stats-item {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    padding: 18px 20px;
    gap: 12px;
  }
  .custom-stats .custom-stats-item img {
    width: 40px;
    height: 40px;
  }
  .custom-stats .custom-stats-text h3 {
    font-size: 22px;
    margin-bottom: 4px;
  }
  .custom-stats .custom-stats-text p {
    font-size: 12px;
    white-space: normal;
  }
  /* 定制页 - 公司简介 */
  .custom-about .custom-about-text {
    padding: 28px 16px;
  }
  .custom-about .custom-about-text h2 {
    font-size: 18px;
  }
  .custom-about .custom-about-text p {
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 12px;
  }
  .custom-about .custom-about-line {
    margin: 12px 0 18px;
  }
  .custom-about .custom-about-line:before {
    width: 40px;
  }
  .custom-about .custom-about-media img {
    min-height: 200px;
  }
  /* 定制页 - 共用标题 */
  .custom-mod-head {
    margin-bottom: 28px;
  }
  .custom-mod-head .custom-mod-title {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .custom-mod-head .custom-mod-sub {
    font-size: 14px;
    padding: 0 12px;
  }
  /* 定制页 - 专利证书荣誉 */
  .custom-honor {
    padding: 36px 16px 48px;
  }
  /* 定制页 - 品类展示 */
  .custom-category {
    padding: 0 16px 56px;
  }
  .custom-category .custom-category-list {
    gap: 24px 14px;
  }
  .custom-category .custom-category-item {
    -webkit-flex: 0 0 calc((100% - 14px) / 2);
    flex: 0 0 calc((100% - 14px) / 2);
    max-width: calc((100% - 14px) / 2);
  }
  .custom-category .custom-category-name {
    white-space: normal;
    padding: 6px 12px;
    font-size: 12px;
  }
  /* 定制页 - 全宽背景容器 / 图文卡片 */
  .custom-bg-wrap {
    padding: 28px 12px;
  }
  .custom-bg-inner {
    padding: 22px 12px 28px;
  }
  .custom-gallery-text h3 {
    font-size: 15px;
  }
  /* 品牌荣誉 */
  .brand-honors {
    padding: 40px 0 48px;
  }
  .brand-honors .bh-inner {
    padding: 0 16px;
  }
  .brand-honors .bh-head {
    margin-bottom: 24px;
  }
  .brand-honors .bh-title {
    font-size: 26px;
  }
  .brand-honors .bh-en {
    font-size: 14px;
  }
  .brand-honors .bh-num {
    font-size: 80px;
    top: -10px;
  }
  .brand-honors .bh-item,
  .brand-honors .bh-row--center .bh-item {
    -webkit-flex: 0 0 calc((100% - 12px) / 2);
    flex: 0 0 calc((100% - 12px) / 2);
    max-width: calc((100% - 12px) / 2);
  }
  /* 加入我们 */
  .join-us .job-list .job-item .job-header {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 8px;
  }
  /* 会员等级页 */
  .fanclub-vip-page .fv-hero .fv-hero-en {
    font-size: 16px;
  }
  .fanclub-vip-page .fv-hero .fv-hero-cn {
    font-size: 14px;
  }
  /* 测评招募 */
  .test-content .recruit-card {
    padding: 20px 16px;
  }
  .test-content .recruit-card h3 {
    font-size: 24px;
  }
  .test-content .recruit-card-apply .apply-qrcode {
    width: 88px;
    height: 88px;
  }
  /* 学院 / 服务支持 通用内容页 */
  .academy-content {
    padding: 70px 12px;
  }
  /* 序列号查询 */
  .serial-query .sq-card {
    padding: 24px 16px 28px;
  }
  .serial-query .sq-result {
    padding: 20px 16px;
  }
  .serial-query .sq-result-title {
    font-size: 16px;
  }
  .serial-query .sq-result-status {
    padding: 4px 12px;
    font-size: 12px;
  }
  .serial-query .sq-result-name {
    font-size: 18px;
  }
  .serial-query .sq-result-list li {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 13px;
  }
  /* 产品列表页 */
  .product_list .product_list-grid {
    grid-template-columns: 1fr;
  }
  .product_list .pl-card-desc {
    max-width: none;
  }
  /* 积分商城 */
  .storePage .sp-banner {
    padding: 32px 16px 40px;
  }
  .storePage .sp-user-card {
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
    max-width: none;
    padding: 20px 18px;
  }
  .storePage .sp-user-info {
    width: 100%;
    padding-top: 8px;
  }
  .storePage .sp-user-meta {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    gap: 8px 12px;
  }
  .storePage .sp-user-expire {
    width: 100%;
    text-align: left;
  }
  .storePage .sp-card {
    width: 100%;
  }
  /* 精彩活动 */
  .activity-page .act-hero .act-hero-text h1 {
    font-size: 19px;
  }
}
/* ============================== <= 480px ============================== */
@media (max-width: 480px) {
  /* Header 移动端抽屉 */
  .mobile-nav {
    width: 84%;
  }
  /* Footer */
  .footer {
    padding: 32px 0 44px;
  }
  .footer .back-to-top {
    margin-bottom: 36px;
  }
  /* 首页 - 粉丝俱乐部精选 */
  .section-fan-club-index .fan-club-header h2 {
    font-size: 19px;
  }
  /* 登录 / 注册 */
  .auth-container .auth-box {
    padding: 28px 18px 24px;
  }
  /* 加入我们 - banner 双卡片：移动端保持横向排列，整体缩小 */
  .join-banner .join-banner-cards {
    gap: 10px;
  }
  .join-banner .join-banner-card {
    width: 130px;
    height: 90px;
    gap: 6px;
    border-radius: 8px;
  }
  .join-banner .join-banner-card img {
    width: 26px;
    height: 26px;
  }
  .join-banner .join-banner-card span {
    font-size: 13px;
    letter-spacing: 1px;
  }
  /* 新设计页 - 产品展示条：保持横向排列，进一步缩小 */
  .design-products .design-products-list {
    gap: 6px;
  }
  .design-products .design-products-item {
    max-width: 56px;
    height: 56px;
  }
  /* 品牌荣誉 */
  .brand-honors .bh-num {
    font-size: 60px;
  }
  /* 测评招募 */
  .test-content .recruit-card h3 {
    font-size: 20px;
  }
  /* 学院 / 服务支持 通用内容页 */
  .academy-content .academy-main {
    padding: 20px 12px 26px;
  }
  /* 产品中心 - 手电筒区块 */
  .flashlight-section .flashlight-grid .flashlight-card .flashlight-card-name {
    padding: 10px;
  }
  /* 积分商城 */
  .storePage .sp-user-points strong {
    font-size: 26px;
  }
  .sp-redeem-modal .sp-redeem-region .layui-input-inline {
    -webkit-flex: 1 1 100%;
    flex: 1 1 100%;
  }
  /* 新闻详情 */
  .news-detail-page .nd-article {
    padding: 20px 14px;
  }
  .news-detail-page .nd-title {
    font-size: 19px;
  }
  /* 个人中心 */
  .user-center-page .uc-user-stats {
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    gap: 12px;
  }
  /* 新品先体验 banner */
  .first_banner .banner_text .title {
    font-size: 22px;
  }
  /* 加入我们 - banner 双卡片：超小屏进一步缩小，仍保持横向排列 */
  .join-banner .join-banner-cards {
    gap: 8px;
  }
  .join-banner .join-banner-card {
    width: 110px;
    height: 80px;
    gap: 4px;
  }
  .join-banner .join-banner-card img {
    width: 22px;
    height: 22px;
  }
  .join-banner .join-banner-card span {
    font-size: 12px;
    letter-spacing: 0;
  }
  /* 精彩活动 */
  .activity-page .act-item img {
    min-height: 150px;
  }
}
/* ============================== <= 375px ============================== */
@media (max-width: 375px) {
  /* Header */
  .header .header-inner {
    padding: 0 8px;
  }
  .mobile-nav {
    width: 88%;
  }
  .mobile-nav .mobile-nav-link {
    padding: 12px 14px;
    font-size: 14px;
  }
  .mobile-nav .mobile-nav-sub a {
    padding: 9px 14px 9px 26px;
    font-size: 13px;
  }
  /* Banner */
  .banner {
    min-height: 300px;
  }
  .banner .banner-text h1 {
    font-size: 22px;
  }
  /* Footer */
  .footer .footer-sns {
    gap: 10px;
  }
  /* 首页 - 特色服务 */
  .section-features .features-inner {
    padding: 0 12px;
  }
  /* 新设计页 - 产品展示条：进一步缩小 */
  .design-products .design-products-item {
    max-width: 46px;
    height: 46px;
  }
  /* 定制页 - 数据条 */
  .custom-stats .custom-stats-item {
    padding: 14px;
  }
  .custom-stats .custom-stats-text h3 {
    font-size: 19px;
  }
  /* 定制页 - 品类展示 */
  .custom-category .custom-category-list {
    gap: 18px 10px;
  }
  .custom-category .custom-category-item {
    -webkit-flex: 0 0 calc((100% - 10px) / 2);
    flex: 0 0 calc((100% - 10px) / 2);
    max-width: calc((100% - 10px) / 2);
  }
  /* 定制页 - 全宽背景容器 */
  .title-wrap {
    font-size: 20px;
    margin-bottom: 28px;
  }
  /* 品牌荣誉 */
  .brand-honors .bh-title {
    font-size: 22px;
  }
  /* 登录 / 注册 */
  .auth-container .auth-box {
    padding: 26px 16px 22px;
  }
  /* 会员等级页 */
  .fanclub-vip-page .fv-level-chart {
    padding: 0 8px;
  }
  .fanclub-vip-page .fv-level-chart .fv-chart {
    padding: 12px 8px;
  }
  .fanclub-vip-page .fv-level-chart .fv-chart-cols {
    gap: 6px;
  }
  .fanclub-vip-page .fv-level-chart .fv-chart-bubble {
    max-width: 60px;
    padding: 3px 4px;
    margin-bottom: 10px;
    font-size: 10px;
  }
  .fanclub-vip-page .fv-level-chart .fv-chart-bars {
    max-width: 60px;
    gap: 4px;
  }
  .fanclub-vip-page .fv-level-chart .fv-chart-label-cell {
    padding: 6px 2px;
  }
  .fanclub-vip-page .fv-level-chart .fv-chart-label-cell img {
    height: 14px;
  }
  /* 精彩活动 */
  .activity-page .act-hero .act-hero-text h1 {
    font-size: 17px;
  }
}
