/* 基础重置与全局样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

body {
  line-height: 1.6;
  color: #000;
  background-color: #fff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3,
h4 {
  margin-bottom: 1rem;
  line-height: 1.2;
  color: #000; /* 确保所有标题为黑色 */
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
  color: #333;
  font-size: 16px;
}

/* 通用工具类 */
.flex-row {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* 顶部导航 - 使用base.html的导航样式 */
.navbar {
  background-color: #fff;
  border-bottom: 1px solid #e7e7e7;
  margin-bottom: 0;
  min-height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

#head .container-fluid {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  justify-content: space-between;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

#head .navbar-collapse {
  width: 100%;
  font-size: 18px;
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between;
  align-items: center;
}

#head .navbar-nav {
  font-family: 'Arial', sans-serif;
  font-weight: 700;
  display: flex !important;
  flex-direction: row !important;
  list-style: none;
  margin: 0;
  padding: 0;
  float: left;
}

#head .navbar-nav > li {
  display: flex;
  float: left;
  list-style: none;
}

#head .navbar-nav > li > a {
  display: block;
  padding: 15px 20px;
  text-decoration: none;
  color: #333;
  transition: color 0.3s ease;
  white-space: nowrap;
}

#head .navbar-nav > li > a:hover {
  text-decoration: none;
  color: #acb674;
}

#head .navbar-nav>.active>a,
#head .navbar-nav>.active>a:hover,
#head .navbar-nav>.active>a:focus {
  background-color: transparent !important;
  color: #acb674 !important;
}

#head .navbar-default .navbar-nav>li>a:focus,
#head .navbar-default .navbar-nav>li>a:hover {
  color: #acb674 !important;
}

#head .navbar-form {
  flex: 1;
  text-align: center;
}

#head .navbar-form .form-control {
  border-radius: 20px;
  padding-right: 60px;
}

#head .headForm {
  position: relative;
  display: flex;
}

#head .headForm .btn {
  position: absolute;
  right: 0;
  border-radius: 20px;
  width: 40px;
  height: 40px;
  padding: 0;
  background-color: transparent;
  border: none;
  color: #acb674;
  top: -16px;
}

#head .headForm .btn:focus {
  outline: none;
}

#head .iconBox {
  width: 40px;
  height: 40px;
  font-size: 17px;
  border-radius: 50%;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: color .5s ease;
  position: relative;
}

#head .iconBox:hover {
  color: #fff !important;
  background-color: #acb674;
}

#head .iconBox span {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #e94b35;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#head .iconBox .bi {
  display: flex;
  justify-content: center;
  align-items: baseline;
}

#head .navbar-right {
  padding-right: 16px;
}

#head .navbar-right {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  float: right;
  margin-left: auto;
}

#head .navbar-right li {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 40px;
  height: 40px;
  margin-left: 10px;
  list-style: none;
  float: left;
}

#head .navbar-right li a {
  display: block;
  padding: 0;
  color: inherit;
  text-decoration: none;
}

#head .navbar-right li .form-group {
  margin-bottom: 0;
  height: 40px;
  min-width: 40px;
}

#head .navbar-right li .form-group input {
  border-radius: 20px;
  display: none;
  height: 40px;
}

#head .navbar-right .headForm.on input {
  display: block;
}

#head .navbar-right .headForm.on .btn {
  background-color: #acb674;
  color: #fff;
}

#head .navbar-right .headForm .btn:hover {
  background-color: #acb674;
  color: #fff;
}

.navbar-default {
  background-color: #fff;
  border: 1px solid #e7e7e7;
}

.navbar-brand {
  width: 127px;
  height: auto;
  padding: 10px 15px;
  display: block;
}

.navbar-header {
  display: flex;
  align-items: center;
}

.navbar-toggle {
  position: relative;
  float: right;
  padding: 9px 10px;
  margin-top: 8px;
  margin-right: 15px;
  margin-bottom: 8px;
  background-color: transparent;
  border: 1px solid #ddd;
  border-radius: 4px;
  display: none;
}

.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #888;
  border-radius: 1px;
  margin: 4px 0;
}

.navbar-right {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: auto;
}

/* Bootstrap 基本样式补充 */
.collapse {
  display: none;
}

.collapse.in {
  display: flex !important;
  flex-direction: row !important;
}

.navbar-collapse {
  max-height: none;
  border-top: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
  overflow-x: visible;
  -webkit-overflow-scrolling: touch;
}

.navbar-collapse.in {
  overflow-y: visible;
}

.navbar-nav {
  margin: 0;
  display: flex;
  flex-direction: row;
}

.navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 20px;
}

/* 响应式设计 */
@media (min-width: 768px) {
  .navbar-collapse.collapse {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between;
    align-items: center;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
    width: 100%;
  }
  
  .navbar-collapse.in {
    overflow-y: visible;
  }
  
  #head .navbar-nav {
    float: left;
    margin: 0;
    display: flex !important;
    flex-direction: row !important;
  }
  
  #head .navbar-nav > li {
    float: left;
    display: flex;
  }
  
  #head .navbar-nav > li > a {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  
  #head .navbar-right {
    float: right !important;
    margin-right: 0;
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
  }
}

@media (max-width: 767px) {
  .navbar-toggle {
    display: block;
  }
  
  .navbar-collapse {
    border-top: 1px solid transparent;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
  }
  
  .navbar-collapse.collapse {
    display: none !important;
  }
  
  .navbar-collapse.collapse.in {
    display: block !important;
  }
  
  .navbar-nav {
    float: none !important;
    margin: 7.5px -15px;
  }
  
  .navbar-nav > li {
    float: none;
  }
  
  .navbar-nav > li > a {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  
  .navbar-right {
    float: none !important;
    clear: both;
    margin-right: -15px;
  }
}

/* 英雄区 */
.hero {
  /* Updated hero background to use meditation image */
  background: url("images/image_26.png") center / cover
    no-repeat;
  color: #fff;
  padding: 200px 0 120px 0;
  text-align: center;
  margin-top: 0;
}

.hero-content h1 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #000; /* 保持白色以对比深色背景 */
}

.hero-content p {
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto 30px;
  color: #000; /* 保持白色以对比深色背景 */
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin: 1rem 0;
}

.btn:hover {
  background-color: #333;
}

/* 产品介绍 */
.product-intro {
  padding: 80px 0;
}

body {
  padding-top: 80px; /* 为固定导航栏预留空间 */
}

/* 强制横向布局 */
#head .navbar-header {
  float: left;
}

#head .navbar-collapse {
  clear: none !important;
  float: none !important;
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between;
  align-items: center;
  width: calc(100% - 210px); /* 除去logo的宽度 */
}

#head .navbar-nav,
#head .navbar-right {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
}

/* 确保没有垂直堆叠 */
#head .navbar-nav > li,
#head .navbar-right > li {
  display: inline-block;
  float: left;
  vertical-align: middle;
}

/* 防止折行 */
#head .container-fluid {
  white-space: nowrap;
  flex-wrap: nowrap;
}

.intro-text {
  flex: 1;
}

.intro-text h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.intro-img {
  flex: 1;
}

.intro-img img {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: auto; /* Changed from fixed 450px to auto for natural proportions */
  object-fit: cover;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  background-color: #f9f9f9;
  border-radius: 8px;
}

.benefit-item img {
  width: 64px; /* Increased icon size from 48px to 64px for better visibility */
  height: 64px;
}

/* 作用机制 */
.how-it-works {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.how-it-works h2 {
  font-size: 28px;
  margin-bottom: 40px;
  text-align: center;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.work-item {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.work-item img {
  margin-bottom: 15px;
  width: 100%;
  height: auto; /* Changed from fixed 200px to auto for natural proportions */
  object-fit: cover;
}

.work-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

/* 成分展示 */
.ingredients {
  padding: 80px 0;
  text-align: center;
}

.ingredients h2 {
  font-size: 28px;
  margin-bottom: 30px;
}

.ingredients p {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 16px;
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin: 50px 0;
}

.ingredient-item {
  text-align: left;
  background-color: #fff;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.ingredient-item img {
  width: 100%;
  height: auto; /* Changed from fixed 350px to auto for natural proportions */
  object-fit: cover;
  margin-bottom: 20px;
}

.ingredient-item h3 {
  padding: 0 20px;
}

.ingredient-item p {
  padding: 0 20px 20px;
  margin-bottom: 0;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin: 40px 0;
}

.badges span {
  background-color: #f0f0f0;
  color: #000; /* 改为黑色 */
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 14px;
  border: 1px solid #ddd;
}

/* 临床研究 */
.clinical-study {
  padding: 80px 0;
  background-color: #f0f0f0;
}

.study-text {
  flex: 1;
}

.study-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.study-stat {
  flex: 1;
  text-align: center;
  padding: 30px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.stat-badge {
  background-color: #e0e0e0;
  color: #000; /* 改为黑色 */
  padding: 5px 10px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 500;
}

.study-stat span {
  font-size: 48px;
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
  color: #000; /* 改为黑色 */
}

.disclaimer {
  font-size: 12px;
  color: #666;
  margin-top: 20px;
}

/* 健康益处 */
.health-benefits {
  padding: 80px 0;
}

.benefits-text {
  flex: 1;
}

.benefits-text h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.benefit-point {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
}

.benefit-point h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.benefits-img {
  flex: 1;
}

.benefits-img img {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: auto; /* Changed from fixed 450px to auto for natural proportions */
  object-fit: cover;
}

/* 全人群适用 */
.all-ages {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.all-ages .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.group-img {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: auto; /* Changed from fixed 500px to auto for natural proportions */
  object-fit: cover;
}

.ages-content h2 {
  font-size: 28px;
  margin-bottom: 30px;
}

.ages-content p {
  font-size: 16px;
}

/* 行动号召与FAQ */
.cta-faq {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.cta {
  text-align: center;
  margin-bottom: 60px;
}

.cta h2 {
  font-size: 28px;
  margin-bottom: 20px;
  text-align: center;
}

.cta p {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
}

.cta-images {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 0;
}

.cta-images img {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  width: 300px;
  height: auto; /* Changed from fixed 250px to auto for natural proportions */
  object-fit: cover;
}

.faqs {
  margin-top: 60px;
}

.faqs h2 {
  font-size: 28px;
  margin-bottom: 30px;
  text-align: center;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 15px;
}

.faq-item:nth-child(n + 5) {
  display: none;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 15px 0;
  font-size: 16px;
  font-weight: 500;
  color: #000; /* 改为黑色 */
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:after {
  content: "+";
  font-size: 20px;
  color: #000; /* 改为黑色 */
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding-bottom: 15px;
  color: #333;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-question:after {
  content: "-";
}

/* 底部内容 */
.bottom-content {
  padding: 80px 0;
  text-align: center;
}

.bottom-content h2 {
  font-size: 28px;
  margin-bottom: 40px;
}

.bottom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.bottom-item {
  text-align: left;
  background-color: #fff;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.bottom-item img {
  width: 100%;
  height: auto; /* Changed from fixed 200px to auto for natural proportions */
  object-fit: cover;
  margin-bottom: 20px;
}

.bottom-item h3 {
  padding: 0 20px;
}

.bottom-item p {
  padding: 0 20px;
  margin-bottom: 20px;
}

.bottom-item a {
  display: inline-block;
  margin: 0 20px 20px;
  color: #000; /* 改为黑色 */
  font-weight: bold;
  text-decoration: none;
  border-bottom: 2px solid #000;
  padding-bottom: 2px;
}

.social {
  margin-top: 30px;
}

.social a {
  display: inline-block;
  font-size: 20px;
  color: #000; /* 改为黑色 */
  font-weight: bold;
  text-decoration: none;
}

/* 页脚 */
.footer {
  background-color: #0a2a29; 
  color: #fff;
  padding: 60px 0;
}

.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social {
  margin-bottom: 20px;
}

.social a {
  color: #7a6958; 
  text-decoration: none;
  font-size: 18px;
}

.footer-links {
  display: flex;
  justify-content: space-around; /* 让三个link-group均匀分布在水平方向 */
  margin-bottom: 40px; /* 取消底部外边距，因为底部要加边框线 */
  width: 100%;
  padding: 20px 0; /* 增加上下内边距，让区域更饱满 */
}
.footer-line{
  width: 100%;
  border-bottom: 1px solid #fff;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-weight: normal; 
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  width: 100%;
  justify-content: space-between; 
  align-items: flex-start; 
  padding: 0 50px; 
}

.left-column {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.left-column img {
  max-width: 166px; 
  margin-bottom: 10px;
}

.left-column p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  color: #fff;
  text-align: center;
}

.right-column {
  text-align: left; 
  max-width: 835px;
  margin-top: 109px; /* 重置上边距，避免影响对齐 */
}

.right-column p {
  font-size: 12px;
  line-height: 1.6;
  margin: 0 0 10px 0;
  color: #fff;
}

.legal-links {
  display: flex;
  gap: 20px;
  margin-top: 27px; 
}

.legal-links a {
  color: #fff; 
  text-decoration: none;
  font-size: 14px;
}

.link-group {
  text-align: left; /* 文字左对齐 */
}

.link-group h3 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 18px;
}

/* 响应式调整 */
@media (max-width: 768px) {
  .flex-row {
    flex-direction: column;
    gap: 20px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .all-ages .container,
  .works-grid,
  .ingredients-grid,
  .bottom-grid,
  .benefits-list,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  h2 {
    font-size: 24px !important;
  }

  .clinical-study h2 {
    font-size: 24px !important;
  }

  .stat span {
    font-size: 40px;
  }

  .cta-images {
    flex-direction: column;
    align-items: center;
  }

  /* Limited-Time Offer 响应式 */
  #laxMore .title {
    font-size: 2rem;
  }
  
  #laxMore .items {
    padding: 20px;
  }
  
  #laxMore .price {
    flex-direction: column;
    gap: 15px;
  }
  
  #laxMore .b {
    width: 100%;
    justify-content: center;
  }
  
  .reviewsSwiper5 {
    slidesPerView: 2 !important;
  }
  
  #laxMore .reviewsSwiper5 {
    height: 400px !important;
  }
  
  #laxMore .imgs {
    gap: 5px;
  }
  
  #laxMore .img {
    min-height: 120px;
    max-height: 125px;
  }
  
  #laxMore .prevBtn,
  #laxMore .nextBtn {
    width: 40px;
    height: 40px;
  }
  
  #laxMore .prevBtn {
    left: -20px;
  }
  
  #laxMore .nextBtn {
    right: -20px;
  }
}

/* Limited-Time Offer Section - laxMore Styles */
#laxMore {
  background: #fef8f4;
  padding: 60px 0;
}

#laxMore .cont {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

#laxMore .title {
  width: 100%;
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  color: #acb674;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

#laxMore .left {
  flex: 1;
  max-width: 500px;
  min-width: 350px;
}

#laxMore .right {
  flex: 2;
  min-width: 600px;
}

/* Product item styles */
#laxMore .items .item {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

#laxMore .item .infobox {
  position: relative;
  text-align: center;
  margin-bottom: 20px;
}

#laxMore .sale {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
  z-index: 5;
  box-shadow: 0 4px 10px rgba(255, 107, 53, 0.3);
}

#laxMore .imgBox {
  margin-bottom: 20px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  position: relative;
}

#laxMore .imgBox img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

#laxMore .imgBox:hover img {
  transform: scale(1.05);
}

#laxMore .name {
  font-size: 22px;
  font-weight: 700;
  margin: 20px 0 10px;
  color: #333;
}

#laxMore .name a {
  color: #acb674;
  text-decoration: none;
  transition: color 0.3s ease;
}

#laxMore .name a:hover {
  color: #626640;
}

#laxMore .des {
  color: #666;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
}

#laxMore .price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

#laxMore .span1 {
  font-size: 28px;
  font-weight: 700;
  color: #acb674;
}

#laxMore .del {
  color: #999;
  font-size: 20px;
  margin-left: 10px;
  text-decoration: line-through;
}

#laxMore .b {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(45deg, #acb674, #626640);
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 15px rgba(172, 182, 116, 0.3);
}

#laxMore .b:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(172, 182, 116, 0.4);
}

#laxMore .tit {
  font-size: 32px;
  font-weight: 700;
  color: #acb674;
  margin: 30px 0 20px;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

#laxMore .items .des {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-bottom: 20px;
}

#laxMore .items .des img {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 2px 4px rgba(255, 193, 7, 0.3));
}

/* Swiper styles for right side */
#laxMore .swiperBox {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

#laxMore .prevBtn,
#laxMore .nextBtn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(45deg, #acb674, #626640);
  color: white;
  border: none;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  transition: all 0.3s ease;
  font-size: 20px;
  box-shadow: 0 6px 15px rgba(172, 182, 116, 0.3);
  user-select: none;
  outline: none;
}

#laxMore .prevBtn:hover,
#laxMore .nextBtn:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 20px rgba(172, 182, 116, 0.4);
}

#laxMore .prevBtn {
  left: -27px;
}

#laxMore .nextBtn {
  right: -27px;
}

#laxMore .reviewsSwiper5 {
  width: 100%;
  height: 520px;
  overflow: hidden;
  border-radius: 15px;
}

#laxMore .swiper-wrapper {
  height: 100%;
}

#laxMore .swiper-slide {
  height: 100%;
  box-sizing: border-box;
}

#laxMore .item.swiper-slide {
  height: 100%;
  padding: 10px;
  box-sizing: border-box;
}

#laxMore .imgs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
  justify-content: space-between;
  padding: 5px;
}

#laxMore .img {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  flex: 1;
  height: calc(33.333% - 5px);
}

#laxMore .img:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

#laxMore .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}

#laxMore .img:hover img {
  transform: scale(1.05);
}

/* Fallback styling when Swiper is not initialized */
.reviewsSwiper5:not(.swiper-initialized) .swiper-wrapper {
  display: flex !important;
  width: 500% !important;
  height: 100%;
}

.reviewsSwiper5:not(.swiper-initialized) .swiper-slide {
  width: 20% !important;
  flex-shrink: 0;
}

/* Ensure visibility of navigation buttons */
#laxMore .prevBtn,
#laxMore .nextBtn {
  z-index: 1000;
  pointer-events: all;
}

/* 确保 Swiper 正常工作的基本样式 */
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* laxMore 特定样式 */
#laxMore .swiper-slide {
  background: transparent;
}

#laxMore .swiper-slide:hover {
  transform: scale(1.02);
  transition: transform 0.3s ease;
}

/* 响应式设计 - laxMore */
@media (max-width: 1200px) {
  #laxMore .title {
    font-size: 40px;
  }
  
  #laxMore .cont {
    gap: 30px;
  }
  
  #laxMore .right {
    min-width: 500px;
  }
}

@media (max-width: 1024px) {
  #laxMore .cont {
    flex-direction: column;
    align-items: center;
  }
  
  #laxMore .left,
  #laxMore .right {
    max-width: 100%;
    min-width: auto;
    width: 100%;
  }
  
  #laxMore .title {
    font-size: 36px;
  }
  
  #laxMore .prevBtn,
  #laxMore .nextBtn {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }
  
  #laxMore .prevBtn {
    left: -25px;
  }
  
  #laxMore .nextBtn {
    right: -25px;
  }
}

@media (max-width: 768px) {
  #laxMore {
    padding: 40px 0;
  }
  
  #laxMore .title {
    font-size: 32px;
    letter-spacing: 2px;
  }
  
  #laxMore .swiperBox {
    padding: 30px 20px;
  }
  
  #laxMore .prevBtn,
  #laxMore .nextBtn {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }
  
  #laxMore .prevBtn {
    left: -22px;
  }
  
  #laxMore .nextBtn {
    right: -22px;
  }
  
  #laxMore .img img {
    height: 140px;
  }
  
  #laxMore .imgBox img {
    height: 250px;
  }
  
  #laxMore .price {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
  }
  
  #laxMore .b {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  #laxMore .title {
    font-size: 28px;
    letter-spacing: 1px;
  }
  
  #laxMore .items .item {
    padding: 20px;
  }
  
  #laxMore .swiperBox {
    padding: 20px 15px;
  }
  
  #laxMore .img img {
    height: 120px;
  }
  
  #laxMore .imgBox img {
    height: 220px;
  }
  
  #laxMore .tit {
    font-size: 28px;
  }
  
  #laxMore .name {
    font-size: 20px;
  }
  
  #laxMore .span1 {
    font-size: 24px;
  }
}

/* 跨境商品频道样式 */
.cross-border-nav {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 20px 0;
}

.channel-tabs {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.tab-item {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 15px 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
  min-width: 120px;
}

.tab-item:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.tab-item.active {
  background: rgba(255, 255, 255, 0.9);
  border-color: #ff6b6b;
}

.tab-item .tab-label {
  display: block;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  margin-bottom: 4px;
}

.tab-item.active .tab-label {
  color: #333;
}

.tab-item small {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.tab-item.active small {
  color: #666;
}

/* 跨境产品标识样式 */
.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(255, 107, 107, 0.3);
}

.cross-border-badge .badge-text {
  position: relative;
}

.cross-border-badge .badge-text::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
}

.origin-country {
  font-size: 12px;
  opacity: 0.9;
}

/* 跨境信息展示 */
.cross-border-info {
  display: flex;
  gap: 30px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #27ae60;
  font-weight: 500;
}

.info-item i {
  font-size: 18px;
}

/* 产品分类标签 */
.product-category-tags {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.category-tag {
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
}

.category-tag.cross-border {
  background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
  color: white;
}

.category-tag.origin {
  background: linear-gradient(45deg, #4facfe, #00f2fe);
  color: white;
}

.category-tag.certified {
  background: linear-gradient(45deg, #43e97b, #38f9d7);
  color: white;
}

/* 跨境前缀标题样式 */
.cross-border-prefix {
  color: #ff6b6b;
  font-weight: 700;
  margin-right: 8px;
  background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* 跨境商品提示 */
.cross-border-notice {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 8px;
  padding: 12px 16px;
  margin-top: 20px;
}

.cross-border-notice i {
  color: #f39c12;
  margin-top: 2px;
  flex-shrink: 0;
}

.cross-border-notice span {
  font-size: 14px;
  color: #856404;
  line-height: 1.4;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .channel-tabs {
    gap: 15px;
  }
  
  .tab-item {
    min-width: 100px;
    padding: 12px 20px;
  }
  
  .cross-border-info {
    gap: 20px;
    justify-content: center;
  }
  
  .product-category-tags {
    justify-content: center;
  }
}
