/* 全局加载动画 */
.spinner { 
  margin: 100px auto; 
  width: 80px; 
  height: 80px; 
  text-align: center; 
  font-size: 10px; 
} 

.spinner > div { 
  background-color: #8B8CBE; 
  height: 100%; 
  width: 6px; 
  display: inline-block; 
  margin: 0 2px;
  
  -webkit-animation: sk-stretchdelay 0.8s infinite ease-in-out; 
  animation: sk-stretchdelay 0.8s infinite ease-in-out; 
} 

.spinner .rect2 { 
  -webkit-animation-delay: -0.7s; 
  animation-delay: -0.7s; 
} 

.spinner .rect3 { 
  -webkit-animation-delay: -0.6s; 
  animation-delay: -0.6s; 
} 

.spinner .rect4 { 
  -webkit-animation-delay: -0.5s; 
  animation-delay: -0.5s; 
} 

.spinner .rect5 { 
  -webkit-animation-delay: -0.4s; 
  animation-delay: -0.4s; 
} 

@-webkit-keyframes sk-stretchdelay { 
  0%, 40%, 100% { -webkit-transform: scaleY(0.4) }  
  20% { -webkit-transform: scaleY(1.0) } 
} 

@keyframes sk-stretchdelay { 
  0%, 40%, 100% { 
    transform: scaleY(0.4); 
    -webkit-transform: scaleY(0.4); 
  }  20% { 
    transform: scaleY(1.0); 
    -webkit-transform: scaleY(1.0); 
  } 
}

/* 首页专用样式 */

/* iPad端防止横向溢出 */
@media (min-width: 769px) and (max-width: 1366px) {
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }
  
  .banner,
  .swiper,
  .section {
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }
}

/* 轮播图内的卡片模块样式 */
.banner-cards {
  position: relative;
  margin-top: -80px;
  z-index: 10;
  padding: 40px 0 80px;
  background: transparent;
  backdrop-filter: none;
}

.banner-cards .section-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  left: 21%; /* 与轮播图覆盖内容左对齐 */
  transform: translateX(-50%);
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.card-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.card-item:hover::before {
  transform: scaleX(1);
}

.card-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.2);
}

.card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.card-item:hover .card-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.card-icon i {
  font-size: 24px;
  color: #ffffff;
}

.card-title {
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 12px;
  font-family: 'AlimamaShuHeiTi-Bold', 'MiSans', sans-serif;
}

.card-desc {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 16px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
}

.card-link:hover {
  color: #764ba2;
  text-decoration: none;
}

.card-link i {
  transition: transform 0.3s ease;
}

.card-link:hover i {
  transform: translateX(3px);
}

/* 响应式设计 */
@media (max-width: 1200px) {
  .cards-container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
  }
  
  .banner-cards .section-content {
    padding: 0 15px;
  }
}

@media (max-width: 768px) {
  .banner-cards {
    margin-top: -60px;
    padding: 30px 0 60px;
  }
  
  .cards-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .card-item {
    padding: 20px 15px;
  }
  
  .card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 16px;
  }
  
  .card-icon i {
    font-size: 20px;
  }
  
  .card-title {
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  .card-desc {
    font-size: 12px;
    margin-bottom: 12px;
  }
  
  .card-link {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .banner-cards {
    margin-top: -40px;
    padding: 20px 0 40px;
  }
  
  .cards-container {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .banner-cards .section-content {
    padding: 0 10px;
  }
  
  .card-item {
    padding: 16px 12px;
  }
  
  .card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
  }
  
  .card-icon i {
    font-size: 16px;
  }
  
  .card-title {
    font-size: 14px;
  }
  
  .card-desc {
    font-size: 11px;
  }
}

/* 全局字体设置 */
* {
  font-family: 'MiSans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

body {
  font-family: 'MiSans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* 确保section没有顶部间距 */
.section {
  margin-top: 0;
  padding-top: 0;
}

/* Banner区域 */
.banner {
  position: relative;
  overflow: hidden;
  margin-top: 0; /* 删除上方空白 */
}

.swiper {
  width: 100%;
  height: 600px;
  overflow: hidden;
  min-height: 400px;
  margin-top: 0; /* 确保没有上边距 */
}

.swiper .swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper .section-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
  width: 100%;
  padding: 0 15px;
  max-width: 1200px;
}

.swiper h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 600;
}

.banner-desc {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* 重构后的卡片样式 - 参考Hui-quick布局 */
.banner-cards {
  position: relative;
  margin-top: 0;
  z-index: 10;
  padding: 0;
}

.banner-cards .section-content {
  width: 100%;
  margin: 0 auto;
  position: absolute;
  bottom: 0;
  z-index: 10;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 0 16px;
}

.banner-cards .cards-container {
  display: contents;
}

.banner-cards .card-item {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.6);
  flex: 1;
  min-width: 260px;
  min-height: 110px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.banner-cards .card-item:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.banner-cards .card-icon {
  width: 50px;
  height: 50px;
  background: #ffffff;
  border: 2px solid #f0f0f0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  font-size: 22px;
  color: #667eea;
}

.banner-cards .card-item:hover .card-icon {
  transform: scale(1.05);
  border-color: #667eea;
  color: #764ba2;
}

.banner-cards .card-content {
  flex: 1;
  min-width: 0;
}

.banner-cards .card-title {
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
  margin: 0 0 6px 0;
  font-family: 'AlimamaShuHeiTi-Bold', 'MiSans', sans-serif;
  line-height: 1.2;
}

.banner-cards .card-desc {
  font-size: 14px;
  color: #64748b;
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 响应式设计 */
@media (max-width: 1200px) {
  .banner-cards .section-content {
    gap: 16px;
    padding: 0 12px;
  }
  
  .banner-cards .card-item {
    min-width: 240px;
    padding: 24px 20px;
    min-height: 100px;
  }
}

@media (max-width: 768px) {
  .banner-cards {
    margin-top: 0;
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.95);
  }
  
  .banner-cards .section-content {
    position: relative;
    bottom: auto;
    justify-content: center;
    gap: 12px;
    padding: 0 16px;
  }
  
  .banner-cards .card-item {
    flex: 0 0 calc(50% - 6px);
    min-width: 160px;
    padding: 18px 14px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
  
  .banner-cards .card-icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
  
  .banner-cards .card-title {
    font-size: 13px;
  }
  
  .banner-cards .card-desc {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .banner-cards .section-content {
    gap: 10px;
  }
  
  .banner-cards .card-item {
    flex: 0 0 calc(50% - 5px);
    min-width: 140px;
    padding: 16px 12px;
    gap: 12px;
  }
  
  .banner-cards .card-icon {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
  
  .banner-cards .card-title {
    font-size: 12px;
  }
  
  .banner-cards .card-desc {
    font-size: 10px;
  }
}

/* 分页器 - 设置为隐藏 */
.swiper .swiper-pagination-bullet {
  display: none;
}

.swiper .swiper-pagination-bullet-active {
  display: none;
}

.swiper .swiper-pagination {
  display: none !important;
}

/* 轮播图遮罩 */
.swiper-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

/* 首页产品Tab */
.product-tabs {
  position: relative;
}

.product-tab-content {
  min-height: 400px;
}

/* 首页解决方案优化 - 添加图片和新布局 */
.solutions {
  padding: 60px 0;
  background-color: #f8fbff;
  position: relative;
}

.solutions::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#8B8CBE 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.05;
  pointer-events: none;
}

/* Solutions Module New Layout */
.solutions-container {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  margin-top: 40px;
  position: relative;
}

/* Left Side: Images */
.solutions-left {
  flex: 0 0 55%;
  position: relative;
  min-height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.solution-img-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.solution-img-card.active {
  opacity: 1;
  z-index: 2;
}

.solution-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.solutions-left:hover .solution-img-card.active img {
  transform: scale(1.05);
}

.img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 30px;
  transform: translateY(0);
}

.img-overlay h3 {
  font-size: 24px;
  color: #333;
  margin-bottom: 8px;
  font-weight: 600;
}

.img-overlay p {
  color: #666;
  font-size: 14px;
  margin: 0;
}

/* Right Side: Content */
.solutions-right {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Tabs Navigation */
.solution-tabs-nav {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
  flex-wrap: wrap;
}

.solution-nav-item {
  font-size: 16px;
  color: #666;
  cursor: pointer;
  padding: 10px 24px;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
  background: #f7f9fc;
  border: 1px solid transparent;
}

.solution-nav-item:hover {
  color: #8B8CBE;
  background: #fff;
  border-color: #8B8CBE;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 140, 190, 0.15);
}

.solution-nav-item.active {
  background: #8B8CBE;
  color: #fff;
  border-color: #8B8CBE;
  box-shadow: 0 6px 16px rgba(139, 140, 190, 0.35);
  transform: translateY(-2px);
}

/* Info Content */
.solution-info-wrapper {
  position: relative;
  min-height: 300px;
  max-height: 450px;
  overflow-y: auto;
}

/* 自定义滚动条样式 */
.solution-info-wrapper::-webkit-scrollbar,
.solutions-right-bottom::-webkit-scrollbar {
  width: 4px;
}

.solution-info-wrapper::-webkit-scrollbar-track,
.solutions-right-bottom::-webkit-scrollbar-track {
  background: transparent;
}

.solution-info-wrapper::-webkit-scrollbar-thumb,
.solutions-right-bottom::-webkit-scrollbar-thumb {
  background: #8B8CBE;
  border-radius: 4px;
}

.solution-info-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.solution-info-content.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.info-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 25px;
  text-align: justify;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 35px;
}

.feature-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 15px;
  color: #333;
}

.feature-list li i {
  margin-right: 10px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-list li i svg {
  width: 16px;
  height: 16px;
}

.solution-actions {
  display: flex;
  gap: 20px;
}

.btn-view, .btn-consult {
  padding: 10px 30px;
  border-radius: 6px;
  font-size: 15px;
  transition: all 0.3s;
  text-decoration: none;
  text-align: center;
  display: inline-block;
}

.btn-view {
  background: #8B8CBE;
  color: #fff;
  border: 1px solid #8B8CBE;
}

.btn-view:hover {
  background: #7a7bb5;
  border-color: #7a7bb5;
  transform: translateY(-2px);
  color: #fff;
}

.btn-consult {
  background: transparent;
  color: #8B8CBE;
  border: 1px solid #8B8CBE;
}

.btn-consult:hover {
  background: #f0f0ff;
  transform: translateY(-2px);
  color: #8B8CBE;
}

@media (max-width: 992px) {
  .solutions-container {
    flex-direction: column;
    gap: 30px;
  }
  .solutions-left {
    width: 100%;
    min-height: 250px;
    flex: 0 0 250px;
  }
  .solution-tabs-nav {
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 10px;
  }
}



/* 认证徽章 */
.cert-item {
  transition: all 0.3s;
}

.cert-item:hover {
  transform: translateY(-10px);
}

.cert-item img {
  filter: grayscale(50%);
  transition: all 0.3s;
}

.cert-item:hover img {
  filter: grayscale(0%);
}

/* 响应式样式 */
@media (max-width: 992px) {
  .swiper {
    height: 400px;
  }
  
  .swiper h1 {
    font-size: 36px;
  }
  
  .banner-desc {
    font-size: 16px;
  }
  
  .banner-cards {
    margin-top: -30px;
  }
  
  .banner-card-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .banner-card-item {
    padding: 12px 15px;
    height: auto; /* 小屏幕高度自适应 */
    min-height: 100px;
  }
  
  .product-item {
    width: 50%;
  }
  
  .solution-item {
    width: 50%;
  }
  
  .solution-img {
    height: 140px;
  }
  
  .news-container {
    flex-wrap: wrap;
  }
  
  .news-box {
    flex: 0 0 100%;
    margin-bottom: 30px;
  }
  
  .footer-nav {
    flex-wrap: wrap;
  }
  
  .footer-nav-left {
    flex: 0 0 100%;
    margin-bottom: 30px;
  }
  
  .footer-nav-right {
    flex: 0 0 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .swiper {
    height: 300px;
  }
  
  .swiper h1 {
    font-size: 28px;
  }
  
  .banner-desc {
    font-size: 14px;
    max-width: 90%;
  }
  
  .banner-cards {
    margin-top: -20px;
    padding: 0 15px;
  }
  
  .banner-card-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .banner-card-item {
    padding: 15px;
    margin-bottom: 0;
    height: auto;
    min-height: 100px;
  }
  
  .banner-card-item h3 {
    font-size: 13px;
    margin-bottom: 5px;
  }
  
  .banner-card-item p {
    font-size: 12px;
    margin-bottom: 6px;
    line-height: 1.3;
  }
  
  .banner-card-link {
    font-size: 12px;
  }
  
  .product-item {
    width: 100%;
  }
  
  .solution-item {
    width: 100%;
  }
  
  .solution-img {
    height: 180px;
  }
  
  .promise {
    flex-wrap: wrap;
  }
  
  .promise-box {
    width: 50%;
    justify-content: center;
    margin-bottom: 15px;
  }
  
  .footer-nav-box {
    flex: 0 0 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  
  .footer-contact {
    margin-right: 0;
    margin-bottom: 30px;
  }
  
  .footer-qrcode {
    width: 100%;
  }
  
  .solution-content p {
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .banner-card-item {
    padding: 12px;
    min-height: 90px;
  }
  
  .banner-card-item h3 {
    font-size: 12px;
    margin-bottom: 4px;
  }
  
  .banner-card-item p {
    font-size: 11px;
    -webkit-line-clamp: 2;
    margin-bottom: 5px;
    line-height: 1.2;
  }
  
  .banner-card-link {
    font-size: 11px;
  }
  
  .banner-card-link:after {
    margin-left: 3px;
  }
}

@media (max-width: 380px) {
  .products {
    display: none !important;
    visibility: hidden !important;
    padding: 25px 0;
  }
  
  .banner-card-item {
    padding: 10px;
  }
  
  .banner-card-item h3 {
    font-size: 11px;
    margin-bottom: 3px;
  }
  
  .banner-card-item p {
    font-size: 10px;
    margin-bottom: 4px;
    line-height: 1.1;
  }
  
  .banner-card-link {
    font-size: 10px;
  }
  
  .products {
    padding: 25px 0;
  }
  
  .products .section-header h2 {
    font-size: 20px;
    margin-bottom: 6px;
  }
  
  .products .section-header .section-desc {
    font-size: 12px;
    padding: 0 15px;
  }
  
  .product-list {
    gap: 10px;
    padding: 0 2px;
  }
  
  .product-card {
    border-radius: 8px;
  }
  
  .product-card-top {
    padding: 12px 10px 10px;
  }
  
  .product-card-bottom {
    padding: 0 10px 12px;
  }
  
  .product-card-icon {
    width: 34px;
    height: 34px;
    margin-bottom: 10px;
    border-radius: 6px;
  }
  
  .product-card-icon i {
    font-size: 14px;
  }
  
  .product-card h3 {
    font-size: 13px;
    margin-bottom: 5px;
    line-height: 1.1;
  }
  
  .product-card p {
    font-size: 10px;
    margin-bottom: 10px;
    min-height: 28px;
    line-height: 1.2;
  }
  
  .product-card-price {
    margin-bottom: 10px;
  }
  
  .product-card-price span {
    font-size: 14px;
  }
  
  .product-card-link {
    padding: 8px 12px;
    font-size: 10px;
    border-radius: 5px;
  }
  
  .more-link {
    margin-top: 25px;
  }
  
  .more-link a {
    padding: 8px 16px;
    font-size: 11px;
    border-radius: 5px;
  }
}

/* 产品服务 */
.products {
  display: none !important;
  visibility: hidden !important;
  padding: 40px 0;  /* 从60px减为40px */
  position: relative;
  background: #ffffff;
  overflow: hidden;
}

/* 移除复杂的背景效果 */
.products::before,
.products::after {
  display: none;
}

.products .section-content {
  position: relative;
  z-index: 2;
}

.products .section-header {
  text-align: center;
  margin-bottom: 35px;  /* 从50px减为35px */
  position: relative;
}

.products .section-header h2 {
  font-size: 28px;  /* 从32px减为28px */
  font-weight: 600;  /* 从700减为600 */
  color: #2c3e50;
  margin-bottom: 12px;  /* 从16px减为12px */
  letter-spacing: -0.3px;  /* 从-0.5px调整为-0.3px */
}

.products .section-header .section-desc {
  font-size: 14px;  /* 从16px减为14px */
  color: #718096;
  max-width: 500px;  /* 从600px减为500px */
  margin: 0 auto;
  font-weight: 400;
  line-height: 1.5;  /* 从1.6减为1.5 */
}

.product-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;  /* 从24px减为16px */
  margin-top: 30px;  /* 从40px减为30px */
}

.product-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #E8F4FD;
  border-radius: 8px;  /* 从12px减为8px */
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 4px rgba(221, 238, 255, 0.1);  /* 减小阴影 */
}

/* 移除复杂的伪元素效果 */
.product-card::before,
.product-card::after {
  display: none;
}

.product-card:hover {
  transform: translateY(-4px);  /* 从-8px减为-4px */
  box-shadow: 0 6px 20px rgba(221, 238, 255, 0.15);  /* 减小阴影 */
  border-color: #DDEEFF;
}

.product-card-top {
  padding: 20px 18px 16px;  /* 从32px 24px 24px减为20px 18px 16px */
  position: relative;
  z-index: 3;
  background: #ffffff;
  text-align: left;
}

.product-card-icon {
  width: 40px;  /* 从52px减为40px */
  height: 40px;
  border-radius: 8px;  /* 从12px减为8px */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;  /* 从20px减为14px */
  position: relative;
  background: #f8f9fa;
  color: #495057;
  transition: all 0.3s ease;
  overflow: hidden;
}

/* 移除复杂的图标效果 */
.product-card-icon::before {
  display: none;
}

.product-card:hover .product-card-icon {
  background: rgba(149, 165, 166, 0.1);
  transform: translateY(-1px);  /* 从-2px减为-1px */
}

.product-card-icon i {
  font-size: 18px;  /* 从22px减为18px */
  color: #495057;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.product-card:hover .product-card-icon i {
  color: #95a5a6;
}

.product-card h3 {
  font-size: 16px;  /* 从20px减为16px */
  font-weight: 600;
  margin-bottom: 6px;  /* 从8px减为6px */
  color: #2c3e50;
  text-align: left;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.product-card:hover h3 {
  color: #1a2b3d;
}

.product-card p {
  font-size: 12px;  /* 从14px减为12px */
  color: #718096;
  line-height: 1.5;  /* 从1.6减为1.5 */
  margin-bottom: 14px;  /* 从20px减为14px */
  min-height: 32px;  /* 从42px减为32px */
  text-align: left;
  transition: color 0.3s ease;
}

.product-card:hover p {
  color: #5a6c7d;
}

.product-card-price {
  font-size: 12px;  /* 从14px减为12px */
  color: #666666;
  text-align: left;
  display: flex;
  align-items: baseline;
  margin-bottom: 0;
  position: relative;
}

/* 移除价格下划线效果 */
.product-card-price::before {
  display: none;
}

.product-card-price span {
  font-size: 18px;  /* 从24px减为18px */
  font-weight: 700;
  color: #4A90E2;
  margin-right: 4px;  /* 从6px减为4px */
  position: relative;
}

.product-card-bottom {
  padding: 0 18px 20px;  /* 从0 24px 32px减为0 18px 20px */
  background: #ffffff;
  margin-top: auto;
  border-radius: 0 0 8px 8px;  /* 从12px减为8px */
  position: relative;
}

/* 移除分割线效果 */
.product-card-bottom::before {
  display: none;
}

.product-card-link {
  display: inline-block;
  width: 100%;
  padding: 10px 16px;  /* 从14px 24px减为10px 16px */
  background: #4A90E2;
  border: none;
  border-radius: 6px;  /* 从8px减为6px */
  color: #ffffff;
  font-size: 12px;  /* 从14px减为12px */
  font-weight: 500;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

/* 移除按钮复杂效果 */
.product-card-link::before,
.product-card-link::after {
  display: none;
}

.product-card-link:hover {
  background: #357ABD;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(74, 144, 226, 0.3);  /* 减小阴影 */
}

/* 统一左侧色块装饰为同一颜色 */
.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;  /* 从4px减为3px */
  height: 100%;
  background: #bdc3c7;
  transition: all 0.3s ease;
  z-index: 1;
}

.product-card:hover::before {
  width: 4px;  /* 从6px减为4px */
  background: #4A90E2;
}

/* 移除所有不同颜色的特殊样式 */
.product-card:nth-child(1)::before,
.product-card:nth-child(2)::before,
.product-card:nth-child(3)::before,
.product-card:nth-child(4)::before,
.product-card:nth-child(5)::before,
.product-card:nth-child(6)::before {
  background: #bdc3c7;
}

.product-card:nth-child(1):hover::before,
.product-card:nth-child(2):hover::before,
.product-card:nth-child(3):hover::before,
.product-card:nth-child(4):hover::before,
.product-card:nth-child(5):hover::before,
.product-card:nth-child(6):hover::before {
  background: #4A90E2;
}

/* 移除所有不同颜色的图标样式 */
.product-card:nth-child(1):hover .product-card-icon,
.product-card:nth-child(2):hover .product-card-icon,
.product-card:nth-child(3):hover .product-card-icon,
.product-card:nth-child(4):hover .product-card-icon,
.product-card:nth-child(5):hover .product-card-icon,
.product-card:nth-child(6):hover .product-card-icon {
  background: rgba(74, 144, 226, 0.1);
}

.product-card:nth-child(1):hover .product-card-icon i,
.product-card:nth-child(2):hover .product-card-icon i,
.product-card:nth-child(3):hover .product-card-icon i,
.product-card:nth-child(4):hover .product-card-icon i,
.product-card:nth-child(5):hover .product-card-icon i,
.product-card:nth-child(6):hover .product-card-icon i {
  color: #4A90E2;
}

.product-card:hover .product-card-icon {
  background: rgba(74, 144, 226, 0.1);
  transform: translateY(-1px);  /* 从-2px减为-1px */
}

.product-card:hover .product-card-icon i {
  color: #4A90E2;
}

.product-card-price span {
  font-size: 18px;  /* 从24px减为18px */
  font-weight: 700;
  color: #4A90E2;
  margin-right: 4px;  /* 从6px减为4px */
  position: relative;
}

.more-link {
  text-align: center;
  margin-top: 35px;  /* 从50px减为35px */
}

.more-link a::before {
  display: none;
}

.more-link a:after {
  content: '→';
  margin-left: 8px;  /* 从10px减为8px */
  transition: transform 0.3s ease;
  font-size: 14px;  /* 从16px减为14px */
}

.more-link a:hover:after {
  transform: translateX(3px);  /* 从4px减为3px */
}

/* 响应式设计 */
@media (max-width: 1200px) {
  .product-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;  /* 从20px减为14px */
  }
}

@media (max-width: 768px) {
  .products {
    display: none !important;
    visibility: hidden !important;
    padding: 30px 0;
  }
  
  .products .section-header h2 {
    font-size: 24px;
    margin-bottom: 8px;
  }
  
  .products .section-header .section-desc {
    font-size: 13px;
    margin-bottom: 0;
  }
  
  .product-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 25px;
    padding: 0 5px;
  }
  
  .product-card {
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(74, 144, 226, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
  }
  
  .product-card-top {
    padding: 8px 6px;
    position: relative;
  }
  
  .product-card-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 6px;
    border-radius: 4px;
  }
  
  .product-card-icon i {
    font-size: 12px;
  }
  
  .product-card h3 {
    font-size: 11px;
    margin-bottom: 6px;
    line-height: 1.2;
    color: #2c3e50;
    margin-right: 0;
  }
  
  .product-card-price {
    margin-bottom: 8px;
  }
  
  .product-card-price span {
    font-size: 12px;
    color: #4A90E2;
  }
  
  .product-card p {
    display: none;
  }
  
  .product-card-bottom {
    padding: 0 6px 8px;
    margin-top: 0;
  }
  
  .product-card-link {
    padding: 6px 8px;
    font-size: 9px;
    border-radius: 4px;
    margin: 0;
  }
  
  .more-link {
    margin-top: 25px;
  }
  
  .more-link a {
    padding: 10px 20px;
    font-size: 13px;
    border-radius: 6px;
  }
}

/* 业务迁移模块和企业资质模块通用背景 */
.section.migration,
.section.qualification {
  position: relative;
  background: #fff;
  z-index: 1;
  padding: 60px 0;
}

.section.migration {
  margin: 60px 0 0 0;
  padding-bottom: 0; /* Remove bottom padding to merge */
  overflow: hidden; /* 防止背景溢出 */
}

.section.qualification {
  padding-top: 40px; /* Add top padding to merge */
}

/* 业务迁移背景 - 移除渐变 */
.section.migration::before {
  display: none;
}

/* 企业资质背景 - 不同的异形光晕 */
.section.qualification::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-image: 
    radial-gradient(ellipse 50% 250px at 25% 45%, #ECEAFF 0%, rgba(255, 255, 255, 0) 70%),
    radial-gradient(ellipse 45% 280px at 75% 55%, #E9EFFF 0%, rgba(255, 255, 255, 0) 70%);
  background-color: #fff;
}

/* 企业资质模块内容样式 */
.qualification-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.qualification-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
  text-align: center;
  width: 320px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.qualification-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.1);
  border-color: #fff;
}

.qualification-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 8px;
  background: transparent; /* 去除背景 */
}

.qualification-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s;
}

.qualification-item:hover .qualification-img img {
  transform: scale(1.05);
}

.qualification-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.qualification-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .qualification-item {
    width: calc(100% - 30px);
    margin: 0 15px 20px;
  }
}

.migration-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.migration-left {
  flex: 1;
  position: relative;
  z-index: 1;
}

.migration-left::before {
  display: none;
}

.migration-left h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.migration-left p {
  font-size: 16px;
  margin-bottom: 25px;
  opacity: 0.9;
  max-width: 600px;
}

.migration-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.migration-features li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  font-size: 16px;
}

.migration-features li i {
  margin-right: 10px;
  color: #333;
  background-color: rgba(139, 140, 190, 0.2);
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.migration-btn {
  display: inline-block;
  background-color: #fff;
  color: #8b8cbe;
  padding: 12px 30px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.migration-btn:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.migration-right {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}

.migration-right::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  z-index: -1;
  background-image: 
    radial-gradient(ellipse 50% 250px at 25% 45%, #ECEAFF 0%, rgba(255, 255, 255, 0) 70%),
    radial-gradient(ellipse 45% 280px at 75% 55%, #E9EFFF 0%, rgba(255, 255, 255, 0) 70%);
  opacity: 0.8;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.migration-right img {
  max-width: 90%;
  max-height: 300px;
  object-fit: contain;
}

@media (max-width: 992px) {
  .migration-wrapper {
    flex-direction: column;
  }
  
  .migration-left, .migration-right {
    width: 100%;
    text-align: center;
  }
  
  .migration-features li {
    justify-content: center;
  }
  
  /* 移动端隐藏装饰背景，防止滑动 */
  .migration-right::before {
    display: none;
  }
  
  .migration-right img {
    margin-top: 20px;
    max-height: 200px; /* 减小图片高度 */
  }
  
  .section.migration {
    padding: 40px 0 0 0;
  }
}

/* 用户评价模块 */
.testimonials {
  padding: 90px 0;
  background: transparent;
  position: relative;
  overflow: visible;
}

.testimonials .section-content {
  position: relative;
  z-index: 2;
}

.testimonials-container {
  display: flex;
  gap: 60px;
  align-items: center;
}

.testimonials-left {
  flex: 0.9; /* 缩小左侧宽度 */
  padding-right: 20px;
  position: relative;
}

.testimonials-left::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  z-index: -1;
  background-image: radial-gradient(ellipse 70% 70% at 50% 50%, #ECEAFF 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.testimonials-right {
  flex: 0.8; /* 进一步缩小宽度比例 */
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-radius: 16px; /* 进一步减小圆角 */
  padding: 24px; /* 进一步减小内边距 */
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.03); /* 减小阴影 */
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.testimonials-right::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.2) 100%);
  z-index: -1;
  pointer-events: none;
}

.testimonial-card {
  background: transparent;
  border-radius: 0;
  padding: 0; /* 去除内边距 */
  box-shadow: none;
  margin-bottom: 10px; /* 减小底部间距 */
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: translateX(100%);
  height: auto;
  display: none;
  border-top: none;
}

.star-rating {
  display: flex;
  margin-bottom: 10px;
}

.star-rating svg,
.testimonial-rating svg {
  margin-right: 5px;
}

.rating-info {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}

.testimonials-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.testimonials-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 30px;
}

.client-avatars {
  display: flex;
  margin-bottom: 30px;
}

.client-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 500;
  font-size: 20px;
  flex-shrink: 0;
}

.view-more {
  display: inline-flex;
  align-items: center;
  color: #0066ff;
  font-weight: 500;
  text-decoration: none;
  font-size: 16px;
}

.view-more:hover {
  text-decoration: underline;
}

/* 评价轮播样式 */
.testimonial-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.testimonial-slider-container {
  position: relative;
  width: 100%;
  min-height: 200px; /* 进一步减小最小高度 */
}



.testimonial-card.active {
  position: relative;
  opacity: 1;
  transform: translateX(0);
  display: block;
}

.testimonial-pagination {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 8px;
}

.testimonial-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-pagination-bullet.active {
  background: #8b8cbe;
  transform: scale(1.3);
}

/* 移动端样式调整 */
@media (max-width: 768px) {
  .testimonial-nav {
    display: none !important;
  }
  
  .testimonial-slider {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  
  .testimonial-pagination {
    order: 1;
    margin-bottom: 15px;
    padding: 5px 0;
  }
}

/* 确保第一个卡片默认显示 */
.testimonial-card:first-child {
  opacity: 1;
  transform: translateX(0);
  position: relative;
  display: block;
}

/* 响应式调整 */
@media (max-width: 992px) {
  .testimonials-container {
    flex-direction: column;
  }
  
  .testimonials-left, 
  .testimonials-right {
    width: 100%;
    padding-right: 0;
  }
  
  .testimonial-card {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .testimonials-title {
    font-size: 28px;
  }
  
  .testimonial-content {
    font-size: 15px;
  }
}

.testimonial-rating {
  display: flex;
  margin-bottom: 15px; /* 减小间距 */
}

.testimonial-content {
  font-size: 14px; /* 进一步减小字体大小 */
  line-height: 1.6; /* 稍微减小行高 */
  color: #666;
  margin-bottom: 20px; /* 进一步减少底部间距 */
  position: relative;
  max-height: 140px; /* 减小最大高度 */
  overflow-y: auto; /* 内容过多时可滚动 */
}

.testimonial-content::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: -5px;
  font-size: 60px;
  line-height: 1;
  color: rgba(0, 102, 255, 0.1);
  font-family: serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 500;
  font-size: 20px;
  flex-shrink: 0;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

/* 新闻动态模块优化 */
.section.news {
    position: relative;
    overflow: visible;
    padding: 80px 0;
    background: transparent;
}

.section.news::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-image: 
        radial-gradient(ellipse 60% 500px at 15% 40%, #DCE0FF 0%, rgba(255, 255, 255, 0) 70%),
        radial-gradient(ellipse 50% 500px at 85% 60%, #D9E5FF 0%, rgba(255, 255, 255, 0) 70%);
    background-color: #fff;
    pointer-events: none;
}

.news-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.news-box {
    flex: 1;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 10px 20px;
    transition: transform 0.3s ease;
}

.news-container .news-box:hover {
    transform: translateY(-5px);
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 15px;
}

.news-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.more-link {
    font-size: 14px;
    color: #8b8cbe;
    text-decoration: none;
    transition: color 0.3s;
}

.more-link:hover {
    color: #7a7ba8;
}

.news-list {
    min-height: 200px;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .news-container {
        flex-direction: column;
    }
    
    .news-box {
        width: 100%;
        margin-bottom: 20px;
    }
}

.review-date {
  font-size: 14px;
  color: #999;
}

/* 视频模块 */
.video-section {
  padding: 80px 0;
  background-color: #EDF9F5; /* 默认背景色为第一个栏目的颜色 */
  overflow: visible;
  position: relative;
  transition: background-color 0.8s cubic-bezier(0.33, 1, 0.68, 1); /* 平滑过渡背景色 */
}

.video-container {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 15px;
}

/* PC端视频展示 */
.pc-video-box {
  display: flex;
  margin-top: 50px;
  position: relative;
}

.video-left {
  width: 68%;
  position: relative;
  height: 520px;
  z-index: 5;
  align-self: flex-start;
  transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1); /* 使用更高级的缓动函数 */
  will-change: transform; /* 提示浏览器优化变换 */
}

.pic-box {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  height: 100%;
  width: 100%;
  border-radius: 17px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
  z-index: 1; /* 确保层级 */
}

.pic-box::before {
    content: '';
    position: absolute;
    top: -15%; /* 缩小范围，只露出一点点 */
    left: -15%;
    right: -15%;
    bottom: -15%;
    z-index: -1;
    background-image: 
        radial-gradient(ellipse 50% 50% at 30% 40%, #d8cbfd 0%, rgba(255, 255, 255, 0) 70%),
        radial-gradient(ellipse 50% 50% at 70% 60%, #b0d0ff 0%, rgba(255, 255, 255, 0) 70%);
    filter: blur(40px); /* 减小模糊，使边缘更清晰一点 */
    opacity: 0.8;
    pointer-events: none;
    animation: pulseGlow 4s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    0% { transform: scale(0.95); opacity: 0.7; }
    100% { transform: scale(1.05); opacity: 0.9; }
}

.pic-box-item {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  opacity: 0;
  display: none;
  transition: opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1); /* 更丝滑的过渡 */
}

.pic-box-item.active {
  opacity: 1;
  display: block;
}

.pic-box-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.pic-box-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.video-right {
  width: 32%;
  padding-left: 30px;
  min-height: 2500px; /* 增加高度，扩大滚动范围 */
}

.video-info {
  padding: 30px;
  margin-bottom: 900px;
  opacity: 0.6;
  transition: all 0.6s cubic-bezier(0.33, 1, 0.68, 1); /* 更丝滑的过渡 */
  position: relative;
  cursor: pointer;
  width: 95%;
  transform: translateY(20px);
}

.video-info.active {
  opacity: 1;
  transform: translateY(0);
}

.video-op {
  display: inline-block;
  border-radius: 6px;
  background: #fff;
  padding: 10px 24px;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;;
  margin-bottom: 15px;
}

.video-title {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.3;
}

.video-desc {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

.highlight-text {
  color: #ff6b6b;
  font-weight: 700;
}

/* 响应式调整 */
@media (max-width: 1200px) {
  .video-left {
    left: 8%;
    max-width: 60%; /* 与上面的宽度保持一致 */
  }
  
  .video-right {
    padding-left: 15%;
  }
  
  .video-info {
    width: 100%;
  }

  .section {
    max-width: 1000px;
  }
}


/* 移动端视频展示 */
.mobile-video-box {
  display: none;
  margin-top: 40px;
}

.mobile-video-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-box-item {
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  background-color: #fff;
}

.mobile-box-item .video-info {
  padding: 20px;
  margin-bottom: 0;
  opacity: 1;
  transform: none;
  box-shadow: none;
  border-left: none;
  height: auto;
}

.mobile-box-item .video-title {
  font-size: 20px;
}

.mobile-box-item .video-desc {
  font-size: 15px;
}

.mobile-box-item video {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* 响应式调整 */
@media (max-width: 992px) {
  .pc-video-box {
    flex-direction: column;
  }
  
  .video-op{
    padding: 8px;
    border: 1px solid;
    margin-bottom: 5px;
    font-size: 13px;
  }

  .video-left {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    margin-bottom: 30px;
    opacity: 1;
    visibility: visible;
  }
  
  .video-right {
    width: 100%;
    padding-left: 0;
    min-height: auto;
  }
  
  .video-info {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .pc-video-box {
    display: none;
  }
  
  .mobile-video-box {
    display: block;
  }
}

@media (max-width: 1200px) {
  .video-left {
    left: 8%;
    max-width: 60%; /* 与上面的宽度保持一致 */
  }
}

.w-100 {
  width: 100% !important;
}

/* 企业资质模块样式 - 简约版 */
.qualification {
  padding: 80px 0;
  background-color: #fbfbfb;
}

.qualification-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
}

.qualification-item {
  background-color: #fff;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
  text-align: center;
  max-width: 300px;
  width: 100%;
  transition: all 0.3s ease;
}

.qualification-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.qualification-img {
  margin-bottom: 20px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qualification-img img {
  max-width: 100%;
  max-height: 160px;
  transition: all 0.3s ease;
}

.qualification-item:hover .qualification-img img {
  transform: scale(1.05);
}

.qualification-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.qualification-desc {
  font-size: 14px;
  color: #777;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .qualification-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .qualification-item {
    padding: 30px;
    max-width: 100%;
  }
  
  .qualification-img {
    height: 150px;
  }
  
  .qualification-img img {
    max-height: 130px;
  }
}

/* 全局滚动显示动画 */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
  animation-play-state: paused;
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  animation: fadeInLeft 0.8s ease forwards;
  animation-play-state: paused;
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  animation: fadeInRight 0.8s ease forwards;
  animation-play-state: paused;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}



/* 移动端适配优化 */
@media (max-width: 992px) {
  .section-header h2 {
    font-size: 28px;
  }
  
  .section-header .section-desc {
    font-size: 14px;
  }
  
  .fade-in-left, .fade-in-right {
    animation-name: fadeInUp;
  }
  
  .qualification-container {
    justify-content: space-around;
  }
  
  .qualification-item {
    width: 45%;
    margin: 10px;
  }
  
  .testimonials-container {
    flex-direction: column;
  }
  
  .testimonials-left,
  .testimonials-right {
    width: 100%;
    padding: 0;
  }
  
  .testimonials-left {
    margin-bottom: 40px;
    text-align: center;
  }
  
  .client-avatars {
    justify-content: center;
  }
  
  .testimonial-card {
    padding: 20px;
  }
  
  .btn-prev, 
  .btn-next {
    width: 45px;
    height: 45px;
  }
  
  .banner-cards {
    margin-top: -30px;
  }
  
  .banner-card-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .migration-wrapper {
    flex-direction: column;
  }
  
  .migration-left,
  .migration-right {
    width: 100%;
    padding: 0;
  }
  
  .migration-right {
    margin-top: 30px;
    text-align: center;
  }
  
  .news-container {
    flex-direction: column;
  }
  
  .news-box {
    width: 100%;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 40px 0;
  }
  
  .section-header h2 {
    font-size: 24px;
  }
  
  .section-header .section-desc {
    font-size: 13px;
  }
  
  .swiper h1 {
    font-size: 24px;
    padding: 0 20px;
  }
  
  .banner-desc {
    font-size: 14px;
    max-width: 90%;
    padding: 0 20px;
  }
  
  .banner-cards {
    margin-top: -20px;
    padding: 0 15px;
  }
  
  .banner-card-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  
  .banner-card-item {
    padding: 12px;
    margin-bottom: 0;
  }
  
  .banner-card-item .card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
  }
  
  .banner-card-item .card-icon i {
    font-size: 18px;
  }
  
  .banner-card-item h3 {
    font-size: 13px;
    margin-bottom: 4px;
  }
  
  .banner-card-item p {
    font-size: 11px;
    margin-bottom: 5px;
    line-height: 1.2;
  }
  
  .banner-card-link {
    font-size: 11px;
  }
  
  .qualification-item {
    width: 100%;
    margin: 10px 0;
  }
  
  .qualification-img {
    height: 100px;
  }
  
  .testimonial-slider-container {
    max-height: none;
  }
  
  .testimonial-content {
    font-size: 14px;
    line-height: 1.5;
    max-height: none;
  }
  
  .testimonial-card {
    padding: 15px;
    margin: 0;
  }
  
  .btn-prev, 
  .btn-next {
    display: none;
  }
  

  
  .product-item {
    width: 100%;
    margin-bottom: 15px;
  }
  
  .solution-item {
    width: 50%;
    margin-bottom: 20px;
  }
  
  .solution-content {
    flex-direction: column;
    height: auto;
  }
  
  .solution-img {
    width: 100%;
    height: 160px;
  }
  
  .solution-info {
    padding: 12px;
  }

  /* 解决方案移动端适配 */
  .solutions-container {
    flex-direction: column;
    height: auto;
    min-height: auto;
  }

  .solutions-left {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
  }

  .solutions-right {
    width: 100%;
    padding-left: 0;
  }

  .solution-tabs-nav {
    overflow-x: auto;
    white-space: nowrap;
    justify-content: flex-start;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }

  .solution-tab-item {
    padding: 8px 16px;
    font-size: 14px;
    flex-shrink: 0;
  }

  .solution-content-item {
    display: block;
    opacity: 1;
    transform: none;
    position: relative;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
  }

  .solution-content-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
  }

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

  .solution-content-item p {
    font-size: 14px;
    margin-bottom: 15px;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .solution-features {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .solution-features li {
    font-size: 13px;
  }

  /* 移动端只显示当前激活的内容项，而不是全部列表 */
  .solution-content-wrapper .solution-content-item {
    display: none;
  }
  
  .solution-content-wrapper .solution-content-item.active {
    display: block;
    animation: fadeIn 0.5s ease;
  }
  
  .solution-content h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }
  
  .solution-content p {
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 12px;
  }
  
  .solution-tag {
    font-size: 10px;
    padding: 3px 8px;
  }
  
  .migration-left h2 {
    font-size: 22px;
  }
  
  .migration-features li {
    margin-bottom: 10px;
  }
  
  .migration-btn {
    width: 100%;
    text-align: center;
  }
  
  .footer-nav {
    flex-direction: column;
  }
  
  .footer-nav-left {
    flex-direction: column;
  }
  
  .footer-nav-box {
    width: 100%;
    margin-bottom: 20px;
  }
  
  .footer-nav-right {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
  }
  
  .footer-contact, 
  .footer-qrcode {
    width: 48%;
    margin: 0 0 20px 0;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .swiper {
    height: 350px;
  }
  
  .swiper h1 {
    font-size: 20px;
  }
  
  .banner-desc {
    font-size: 13px;
  }
  
  .section-header h2 {
    font-size: 20px;
  }
  
  .testimonials-title {
    font-size: 20px;
  }
  
  .testimonials-desc {
    font-size: 13px;
  }
  
  .qualification-title {
    font-size: 16px;
  }
  
  .qualification-desc {
    font-size: 13px;
  }
  
  .client-avatar {
    width: 36px !important;
    height: 36px !important;
    font-size: 14px !important;
  }
  
  .author-avatar {
    width: 36px !important;
    height: 36px !important;
    font-size: 16px !important;
  }
  
  .author-name {
    font-size: 13px;
  }
  
  .banner-cards {
    margin-top: -15px;
  }
  
  .banner-card-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
  
  .banner-card-item {
    padding: 10px;
  }
  
  .banner-card-item .card-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 6px;
  }
  
  .banner-card-item .card-icon i {
    font-size: 16px;
  }
  
  .banner-card-item h3 {
    font-size: 12px;
    margin-bottom: 3px;
  }
  
  .banner-card-item p {
    font-size: 10px;
    -webkit-line-clamp: 2;
    margin-bottom: 4px;
    line-height: 1.1;
  }
  
  .banner-card-link {
    font-size: 10px;
  }
  
  .banner-card-link:after {
    margin-left: 3px;
  }
}

@media (max-width: 768px) {
  .testimonials-container-responsive {
    flex-direction: column !important;
  }
  
  .btn-prev, 
  .btn-next {
    display: none !important;
  }
  
  .testimonial-nav {
    margin-top: 15px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  
  .testimonial-nav .btn-prev,
  .testimonial-nav .btn-next {
    display: flex !important;
    position: static !important;
    margin: 0 10px !important;
    width: 45px !important;
    height: 45px !important;
    transform: none !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
    background: #fff !important;
    border-radius: 50% !important;
  }
  
  .testimonial-pagination {
    margin-bottom: 10px;
  }
}

/* 隐藏PC端的导航区 */
@media (min-width: 769px) {
  .testimonial-nav {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .testimonial-nav .btn-prev:hover,
  .testimonial-nav .btn-next:hover {
    background-color: #0066ff !important;
    color: white !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 30px rgba(0, 102, 255, 0.25) !important;
  }
  
  .testimonial-nav .btn-prev:active,
  .testimonial-nav .btn-next:active {
    transform: scale(0.95) !important;
  }
}

@media (max-width: 380px) {
  .products {
    display: none !important;
    visibility: hidden !important;
    padding: 25px 0;
  }
  
  .products .section-header h2 {
    font-size: 20px;
    margin-bottom: 6px;
  }
  
  .products .section-header .section-desc {
    font-size: 12px;
    padding: 0 15px;
  }
  
  .product-list {
    gap: 10px;
    padding: 0 2px;
  }
  
  .product-card {
    border-radius: 8px;
  }
  
  .product-card-top {
    padding: 12px 10px 10px;
  }
  
  .product-card-bottom {
    padding: 0 10px 12px;
  }
  
  .product-card-icon {
    width: 34px;
    height: 34px;
    margin-bottom: 10px;
    border-radius: 6px;
  }
  
  .product-card-icon i {
    font-size: 14px;
  }
  
  .product-card h3 {
    font-size: 13px;
    margin-bottom: 5px;
    line-height: 1.1;
  }
  
  .product-card p {
    font-size: 10px;
    margin-bottom: 10px;
    min-height: 28px;
    line-height: 1.2;
  }
  
  .product-card-price {
    margin-bottom: 10px;
  }
  
  .product-card-price span {
    font-size: 14px;
  }
  
  .product-card-link {
    padding: 8px 12px;
    font-size: 10px;
    border-radius: 5px;
  }
  
  .more-link {
    margin-top: 25px;
  }
  
  .more-link a {
    padding: 8px 16px;
    font-size: 11px;
    border-radius: 5px;
  }
}

/* 导航二级菜单样式 */
.product-dropdown,
.about-dropdown {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-radius: 0 0 8px 8px;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
}

.product-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  padding: 0 20px;
}

.product-left {
  width: 25%;
  border-right: 1px solid #f0f0f0;
  padding-right: 20px;
}

.product-right {
  flex: 1;
  padding-left: 20px;
}

.product-tabs {
  display: flex;
  flex-direction: column;
}

.product-tab {
  padding: 12px 15px;
  cursor: pointer;
  border-radius: 8px;
  margin-bottom: 5px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.product-tab:hover,
.product-tab.active {
  background-color: #f5f7fa;
  color: #1e88e5;
}

.product-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  grid-gap: 15px;
}

.menu-link {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  border-radius: 6px;
  text-decoration: none;
  color: #333;
  transition: all 0.2s ease;
}

.menu-link:hover {
  background-color: #f5f7fa;
  color: #1e88e5;
  transform: translateY(-2px);
}

.menu-icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  color: #1e88e5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-text {
  font-size: 15px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .product-container {
    flex-direction: column;
  }
  
  .product-left {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #f0f0f0;
    padding-right: 0;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  
  .product-right {
    padding-left: 0;
  }
  
  .product-items {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}

.more-link a {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;  /* 从16px 32px减为12px 24px */
  background: transparent;
  border: 2px solid #4A90E2;
  border-radius: 6px;  /* 从8px减为6px */
  color: #4A90E2;
  font-size: 13px;  /* 从15px减为13px */
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.more-link a:hover {
  background: #4A90E2;
  color: #ffffff;
  transform: translateY(-1px);  /* 从-2px减为-1px */
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);  /* 减小阴影 */
}

/* 手机端商品分类样式 - Tab式布局 */
#mobile-products {
    display: none;
    padding: 20px 15px;
    background: #fff;
    margin: 15px 0;
}

/* 强制重置以确保布局正确 */
#mobile-products * {
    box-sizing: border-box;
}

.mobile-categories-title {
    color: #333;
    text-align: center;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
}

/* 一级分类Tab布局 */
#mobile-product-categories {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
}

/* 一级分类Tab导航 */
.category-tabs {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin-bottom: 20px;
    padding: 0 5px 10px 0;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 12px;
}

.category-tabs::-webkit-scrollbar {
    display: none;
}

.category-tab {
    flex: 0 0 auto;
    padding: 10px 16px;
    margin-right: 12px;
    background: #fff;
    border: none;
    border-radius: 8px;
    color: #6c757d;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.category-tab:last-child {
    margin-right: 0;
}

.category-tab.active {
    background: #9798C6;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(151, 152, 198, 0.3);
}

.category-tab:hover:not(.active) {
    background: #e9ecef;
    color: #495057;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.category-tab-icon {
    margin-right: 8px;
    font-size: 14px;
}

/* 二级分类内容区域 */
.category-content-area {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    min-height: 200px;
}

.category-content-panel {
    display: none;
    padding: 20px;
}

.category-content-panel.active {
    display: block;
}

/* 二级分类列表样式 */
.subcategory-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.subcategory-item {
    border: none;
}

.subcategory-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    text-decoration: none;
    color: #495057;
    transition: all 0.2s ease;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.subcategory-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #9798C6, #7E7FB8);
    transition: width 0.3s ease;
    z-index: 1;
}

.subcategory-link:hover::before {
    width: 4px;
}

.subcategory-link:hover {
    background: #fff;
    color: #9798C6;
    text-decoration: none;
    border-color: #EAE9F4;
    box-shadow: 0 2px 8px rgba(151, 152, 198, 0.1);
    transform: translateY(-1px);
}

.subcategory-name {
    font-size: 14px;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.subcategory-arrow {
    font-size: 12px;
    color: #adb5bd;
    transition: all 0.2s ease;
    position: relative;
    z-index: 2;
}

.subcategory-link:hover .subcategory-arrow {
    color: #9798C6;
    transform: translateX(3px);
}

/* 加载状态 */
.category-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    color: #6c757d;
}

.category-loading i {
    font-size: 28px;
    color: #9798C6;
    margin-bottom: 15px;
    animation: spin 1s linear infinite;
}

.category-loading p {
    font-size: 14px;
    margin: 0;
}

.category-empty {
    text-align: center;
    padding: 50px 20px;
    color: #6c757d;
}

.category-empty i {
    font-size: 36px;
    margin-bottom: 15px;
    color: #dee2e6;
}

.category-empty p {
    font-size: 14px;
    margin: 0;
}

/* 查看全部产品按钮 */
.view-all-products {
    text-align: center;
    margin-top: 25px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    padding: 0;
    background: transparent;
    color: #9798C6;
    text-decoration: none;
    border-radius: 0;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: none;
}

.view-all-btn:hover {
    background: transparent;
    color: #7E7FB8;
    text-decoration: underline;
    transform: none;
    box-shadow: none;
}

.view-all-btn i {
    margin-right: 8px;
}

/* 响应式调整 */
@media (max-width: 480px) {
    #mobile-products {
        padding: 10px 10px 70px 10px;
    }
    
    .category-tabs {
        padding: 10px;
    }
    
    .category-tab {
        padding: 8px 14px;
        font-size: 13px;
        margin-right: 10px;
    }
    
    .category-content-panel {
        padding: 15px;
    }
    
    .subcategory-link {
        padding: 14px;
    }
    
    .subcategory-name {
        font-size: 13px;
    }
    
    .subcategory-list {
        gap: 10px;
    }
    
    /* 进一步优化小屏幕上的标题 */
    .lgyc {
        font-size: 20px !important;
    }
    
    .solutions .section-header h2.lgyc {
        font-size: 18px !important;
        line-height: 1.2;
        margin-bottom: 12px;
    }
    
    .solutions .section-desc {
        font-size: 13px;
        padding: 0 10px;
    }
}

/* 移动端产品圆角优化 */
@media (max-width: 768px) {
  /* 产品卡片圆角调整 */
  .product-card {
    border-radius: 6px !important;
  }
  
  .product-card-icon {
    border-radius: 5px !important;
  }
  
  /* 移动端产品分类相关圆角调整 */
  .category-tabs {
    border-radius: 8px;
  }
  
  .category-tab {
    border-radius: 6px;
  }
  
  .category-content-area {
    border-radius: 8px;
  }
  
  .subcategory-link {
    border-radius: 6px;
  }
  
  .view-all-btn {
    border-radius: 6px;
  }
  
  .more-link a {
    border-radius: 5px;
  }
}

/* 手机端商品分组显示样式 */
.mobile-products {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  display: none; /* 默认隐藏 */
}

/* PC端隐藏手机端产品分类 */
@media (min-width: 769px) {
  .mobile-products {
    display: none !important;
  }
}

/* 只在移动端显示 */
@media (max-width: 768px) {
  .mobile-products {
    display: block;
  }
  
  #mobile-products {
    display: block;
  }
  
  /* PC端产品分类在手机端隐藏 */
  .section.products {
    display: none !important;
  }
  
  .section.products .section-header {
    display: none !important;
  }
  
  .section.products .product-list {
    display: none !important;
  }
  
  .pc-products {
    display: none !important;
  }
  
  /* 优化解决方案标题在移动端的显示 */
  .lgyc {
    font-size: 24px !important;
  }
  
  .solutions .section-header h2.lgyc {
    font-size: 22px !important;
    line-height: 1.3;
    margin-bottom: 15px;
  }
  
  .solutions .section-desc {
    font-size: 14px;
    line-height: 1.5;
  }
}

/* 淡入动画 */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

.category-group {
  animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
} 

/* PC端产品分类样式 (New Matrix Layout) */
.product-matrix-section {
    padding: 60px 0;
    position: relative;
    background: #fff;
    z-index: 1;
}

.product-matrix-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-color: #fff;
    /* 与域名模块一致的不规则弥散光晕 */
    background-image: 
        radial-gradient(ellipse 35% 40% at 40% 55%, #d8cbfd 0%, rgba(255, 255, 255, 0) 70%),
        radial-gradient(ellipse 40% 35% at 60% 65%, #b0d0ff 0%, rgba(255, 255, 255, 0) 70%),
        radial-gradient(circle at 50% 60%, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
    filter: blur(40px);
    opacity: 0.8;
}

.matrix-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    padding: 0 20px;
    margin-top: 40px;
}

/* Left Sidebar -> Right Sidebar */
.matrix-sidebar {
    width: 340px;
    flex-shrink: 0;
    margin-left: 20px;
}

.matrix-nav-item {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 6px;
    padding: 24px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.matrix-nav-item:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border-color: #e6f3ff;
}

.matrix-nav-item.active {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-color: #3b82f6;
    box-shadow: 0 10px 30px rgba(59,130,246,0.12);
}

.matrix-nav-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #8B8CBE;
    border-radius: 4px 0 0 4px;
}

.nav-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.nav-title {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    transition: color 0.3s;
}

.matrix-nav-item:hover .nav-title,
.matrix-nav-item.active .nav-title {
    color: #8B8CBE;
}

.nav-tag {
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 500;
}

.tag-blue {
    background: #f5f5ff;
    color: #8B8CBE;
}

.tag-green {
    background: #f0fdf4;
    color: #22c55e;
}

.tag-purple {
    background: #f5f3ff;
    color: #8b5cf6;
}

.tag-orange {
    background: #fff7ed;
    color: #f97316;
}

.tag-gray {
    background: #f3f4f6;
    color: #6b7280;
}

.nav-desc {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.nav-tags-row {
    margin-top: 14px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.mini-tag {
    font-size: 12px;
    padding: 2px 8px;
    background: #f9fafb;
    color: #6b7280;
    border-radius: 4px;
    border: 1px solid #e5e7eb;
}

.matrix-nav-item.active .mini-tag {
    background: #f5f5ff;
    color: #8B8CBE;
    border-color: #dcdce6;
}

/* Right Content */
.matrix-content {
    flex: 1;
}

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

.matrix-column {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    overflow: hidden;
    height: 100%;
}

.column-header-box {
    padding: 25px;
    position: relative;
    color: inherit;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bg-gradient-blue {
    background: linear-gradient(to bottom, #bfdbfe 0%, rgba(255, 255, 255, 0) 100%);
    color: #1e3a8a !important;
}

.bg-gradient-cyan {
    background: linear-gradient(to bottom, #cffafe 0%, rgba(255, 255, 255, 0) 100%);
    color: #164e63 !important;
}

.bg-gradient-purple {
    background: linear-gradient(to bottom, #ddd6fe 0%, rgba(255, 255, 255, 0) 100%);
    color: #5b21b6 !important;
}

.column-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}

.column-subtitle {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
    position: relative;
    z-index: 2;
}

.column-bg-icon {
    position: absolute;
    right: 20px;
    bottom: -10px;
    font-size: 80px;
    opacity: 0.1;
    transform: rotate(15deg);
}

.column-items {
    padding: 20px;
}

.matrix-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 6px;
    padding: 16px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.matrix-card:last-child {
    margin-bottom: 0;
}

.matrix-card:hover {
    border-color: #8B8CBE;
    box-shadow: 0 4px 12px rgba(139,140,190,0.2);
    transform: translateY(-2px);
}

.card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.card-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.tag-red {
    background: #fee2e2;
    color: #dc2626;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 4px;
}

.card-sub {
    font-size: 12px;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.4;
}

.card-tags {
    display: flex;
    gap: 8px;
}

.card-tags span {
    font-size: 12px;
    color: #6b7280;
    background: #f9fafb;
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid #e5e7eb;
}

/* Responsive */
@media (max-width: 1200px) {
    .matrix-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .matrix-container {
        flex-direction: column;
    }
    .matrix-sidebar {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .matrix-nav-item {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .matrix-grid {
        grid-template-columns: 1fr;
    }
    .matrix-sidebar {
        grid-template-columns: 1fr;
    }

    /* 域名模块间距优化 */
    .banner-cards {
        padding-bottom: 20px;
    }

    /* 产品矩阵模块手机端优化 */
    .product-matrix-section {
        padding: 30px 0;
    }
    
    .matrix-container {
        padding: 0 15px;
        flex-direction: column;
        margin-top: 20px;
    }
    
    .matrix-sidebar {
        margin-left: 0;
        margin-top: 25px;
        width: 100%;
    }

    .matrix-nav-item {
        margin-bottom: 15px;
    }

    /* 标题与描述优化 */
    .lgyc {
        font-size: 22px !important;
    }
    
    .section-desc-wrapper {
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    .column-items {
        gap: 15px;
    }
}


/* 合作伙伴模块 */
.partners {
  padding: 60px 0;
  background: transparent;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.partners::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  height: 400px;
  background-image: 
    linear-gradient(to bottom, rgba(255,255,255,0) 0%, #ffffff 100%),
    linear-gradient(90deg, #FFCCD2 0%, #DD96DB 15%, #A080F1 30%, #9D7FF1 45%, #388DF8 60%, #75BAFA 75%, #CCDFFE 90%);
  z-index: -1;
  filter: blur(40px);
  opacity: 1;
}

.partners-scroll-container {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.partners-row {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.partners-track {
  display: flex;
  align-items: center;
  width: fit-content;
  will-change: transform;
}

/* 偶数行反向滚动 */
.partners-row:nth-child(even) .partners-track {
  animation: scrollPartnersReverse 40s linear infinite;
}

/* 奇数行正向滚动 */
.partners-row:nth-child(odd) .partners-track {
  animation: scrollPartners 40s linear infinite;
}

.partner-logo-item {
  flex: 0 0 auto;
  width: 160px;
  height: 80px;
  margin: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* 无背景简约风格 */
  background: transparent;
  transition: all 0.3s ease;
}

.partner-logo-item img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.partner-logo-item:hover img {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* 合作伙伴底部 */
.partners-footer {
  text-align: center;
  margin-top: 50px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 16px;
  color: #666;
}

.partners-link {
  color: #388DF8;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
}

.partners-link:hover {
  color: #0066ff;
  transform: translateX(3px);
}

.partners-link i {
  font-style: normal;
  font-family: Arial, sans-serif;
}

@keyframes scrollPartners {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollPartnersReverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* 移除鼠标悬停暂停滚动的样式 */

@media (max-width: 768px) {
  .partners {
    padding: 40px 0;
  }
  
  .partners-scroll-container {
    gap: 20px;
  }

  .partner-logo-item {
    width: 120px;
    height: 60px;
    margin: 0 15px;
  }
  
  .partner-logo-item img {
    max-height: 40px;
  }
}

/* 波浪动画效果 */
.section.banner {
  position: relative;
}

.wave-animation {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  overflow: hidden;
  pointer-events: none;
  z-index: 20; /* 提高z-index确保显示在最前面 */
}

.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.4));
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-top: 2px solid rgba(255, 255, 255, 0.6);
  animation: waveMove 6s ease-in-out infinite;
  box-shadow: 0 -4px 30px rgba(255, 255, 255, 0.3);
}

.wave1 {
  animation-delay: 0s;
  opacity: 1;
  clip-path: polygon(0 30%, 15% 15%, 30% 25%, 45% 40%, 60% 20%, 75% 35%, 90% 25%, 100% 30%, 100% 100%, 0 100%);
}

.wave2 {
  animation-delay: -3s;
  opacity: 0.85;
  clip-path: polygon(0 40%, 20% 25%, 35% 45%, 50% 30%, 65% 50%, 80% 25%, 95% 40%, 100% 35%, 100% 100%, 0 100%);
}

.wave3 {
  animation-delay: -6s;
  opacity: 0.7;
  clip-path: polygon(0 20%, 25% 40%, 40% 15%, 55% 35%, 70% 20%, 85% 45%, 100% 25%, 100% 100%, 0 100%);
}

@keyframes waveMove {
  0%, 100% {
    transform: translateX(-50%) translateY(0px) scale(1);
  }
  15% {
    transform: translateX(-50%) translateY(-20px) scale(1.05);
  }
  30% {
    transform: translateX(-50%) translateY(-35px) scale(1.1);
  }
  45% {
    transform: translateX(-50%) translateY(-45px) scale(1.12);
  }
  60% {
    transform: translateX(-50%) translateY(-40px) scale(1.1);
  }
  75% {
    transform: translateX(-50%) translateY(-25px) scale(1.06);
  }
  90% {
    transform: translateX(-50%) translateY(-10px) scale(1.02);
  }
}

/* PC端默认显示波浪动画 */
.wave-animation {
  display: block;
}

.wave {
  display: block;
}

/* iPad端和手机端隐藏波浪动画 */
@media (min-width: 769px) and (max-width: 1366px) {
  .wave-animation {
    display: none !important;
  }
  
  .wave {
    display: none !important;
  }
}

/* 手机端隐藏波浪动画 */
@media (max-width: 768px) {
  .wave-animation {
    display: none !important;
  }
  
  .wave {
    display: none !important;
  }
}