 /* 重置样式 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.5;
            color: #202027;
            background-color: #f9fbfd;
        }
        
        /* 头部样式 */
        .header {
            background: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 70px;
        }
        
        /* 徽标样式 */
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 700;
            font-size: 22px;
            text-decoration: none;
            color: #223265;
        }
        
        .logo img {
            height: 36px;
        }
        
        /* 导航菜单 */
        .nav-menu {
            display: flex;
            gap: 5px;
        }
        
        .nav-menu ul {
            display: flex;
            list-style: none;
            gap: 5px;
        }
        
        .nav-link {
            padding: 8px 16px;
            text-decoration: none;
            color: #485064;
            font-weight: 500;
            font-size: 14px;
            border-radius: 6px;
            transition: all 0.3s ease;
            display: block;
        }
        
        .nav-link:hover {
            background-color: #f3f5f8;
            color: #2d68b2;
        }
        
        .nav-menu li.active .nav-link {
            background-color: #2d68b2;
            color: white;
        }
        
        /* 操作区域 */
        .header-actions {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            white-space: nowrap;
        }
        
        .btn-primary {
            background: linear-gradient(230.52deg, #2d68b2 21.73%, #1a4c8c 72.58%);
            color: white;
            box-shadow: 0 4px 12px rgba(45, 104, 178, 0.3);
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(45, 104, 178, 0.3);
        }
        
        .btn-outline {
            border: 1px solid #a3c5ff;
            color: #2d68b2;
            background: transparent;
        }
        
        .btn-outline:hover {
            background-color: #f3f5f8;
        }
        
        .btn-icon {
            padding: 10px 16px;
        }
        
        /* 移动端菜单按钮 */
        .menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: center;
            width: 30px;
            height: 30px;
            cursor: pointer;
            position: relative;
            z-index: 1001;
        }
        
        .menu-toggle span {
            height: 3px;
            width: 100%;
            background-color: #202027;
            margin: 2px 0;
            border-radius: 3px;
            transition: all 0.3s ease;
        }
        
        /* 响应式设计 */
        @media (max-width: 991px) {
            .menu-toggle {
                display: flex;
            }
            
            .nav-menu {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background: white;
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
                transform: translateY(-100%);
                opacity: 0;
                transition: all 0.3s ease;
                pointer-events: none;
            }
            
            .nav-menu.active {
                transform: translateY(0);
                opacity: 1;
                pointer-events: all;
            }
            
            .nav-menu ul {
                flex-direction: column;
                width: 100%;
            }
            
            .nav-menu li {
                width: 100%;
                text-align: center;
            }
            
            .nav-link {
                padding: 12px 20px;
                width: 100%;
            }
            
            /* 移动端按钮保持显示 */
            .header-actions {
                display: flex;
                gap: 10px;
            }
            
            .btn {
                padding: 10px 16px;
                font-size: 14px;
            }
        }
        
        @media (max-width: 480px) {
            .header-actions {
                gap: 8px;
            }
            
            .btn {
                padding: 10px 14px;
                font-size: 13px;
            }
            
            .logo span {
                font-size: 18px;
            }
        }
        
        /* 演示内容样式 */
        .demo-content {
            max-width: 1200px;
            margin: 40px auto;
            padding: 20px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        
        .demo-content h2 {
            color: #2d68b2;
            margin-bottom: 15px;
        }
        
        .demo-content p {
            margin-bottom: 15px;
            line-height: 1.6;
        }
		
		
		
		/*hero1*/
		
/* CSS 样式 - 添加 Font Awesome CDN 链接到您的页面头部 */
.yw-banner {
  position: relative;
  padding: 80px 0 60px;
  background: #fff;
  box-sizing: border-box;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.yw-banner .yw-banner-bg-icon {
  position: absolute;
  z-index: 1;
}
.yw-banner .yw-banner-bg-icon.yw-icon1 {
  top: 60px;
  left: 40%;
}
.yw-banner .yw-banner-bg-icon.yw-icon2 {
  top: 176px;
  left: 12px;
}
.yw-banner .yw-banner-content {
  position: relative;
  z-index: 3;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  box-sizing: border-box;
  gap: 60px;
}
.yw-banner .yw-banner-content .yw-banner-left {
  flex: 1;
  max-width: 600px;
}
.yw-banner .yw-banner-content .yw-banner-left .yw-banner-left-title {
  font-size: 52px;
  font-family: "Poppins-Medium";
  font-weight: 600;
  color: #223265;
  line-height: 1.2;
  margin-bottom: 20px;
}
.yw-banner .yw-banner-content .yw-banner-left .yw-banner-left-tip {
  font-size: 20px;
  font-family: "Poppins-Medium";
  font-weight: 500;
  color: #223265;
  line-height: 1.6;
  margin-bottom: 10px;
}
.yw-banner .yw-banner-content .yw-banner-left .yw-banner-left-list {
  margin-top: 30px;
  margin-bottom: 40px;
}
.yw-banner .yw-banner-content .yw-banner-left .yw-banner-left-list .yw-list-item {
  font-size: 18px;
  font-family: "Poppins-Medium";
  font-weight: 500;
  color: #223265;
  line-height: 1.5;
  position: relative;
  padding-left: 36px;
  margin-bottom: 16px;
}
.yw-banner .yw-banner-content .yw-banner-left .yw-banner-left-list .yw-list-item::before {
  content: '';
  background: url("/static/image/banner_list_item.svg") no-repeat;
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-size: contain;
}
.yw-banner .yw-banner-content .yw-banner-left .yw-banner-left-btns {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.yw-banner .yw-banner-content .yw-banner-left .yw-banner-left-btns .yw-btn {
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins-Medium";
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: none;
  outline: none;
}
.yw-banner .yw-banner-content .yw-banner-left .yw-banner-left-btns .yw-down-btn {
  background: #2d68b2;
  color: #FFFFFF;
  padding: 16px 36px;
  font-size: 18px;
  min-width: 200px;
}
.yw-banner .yw-banner-content .yw-banner-left .yw-banner-left-btns .yw-down-btn:hover {
  background: #1a4c8c;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(45, 104, 178, 0.3);
}
.yw-banner .yw-banner-content .yw-banner-left .yw-banner-left-btns .yw-down-btn i {
  margin-right: 12px;
  font-size: 20px;
}
.yw-banner .yw-banner-content .yw-banner-left .yw-banner-left-btns .yw-buy-btn {
  border: 2px solid #2d68b2;
  color: #2d68b2;
  padding: 16px 36px;
  font-size: 18px;
  min-width: 200px;
  background: transparent;
}
.yw-banner .yw-banner-content .yw-banner-left .yw-banner-left-btns .yw-buy-btn:hover {
  background: #2d68b2;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(45, 104, 178, 0.3);
}
.yw-banner .yw-banner-content .yw-banner-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.yw-banner .yw-banner-content .yw-banner-right img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  max-height: 500px;
}

/* OS 图标容器 */
.yw-os-icons-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 60px auto 0;
  position: relative;
  z-index: 3;
  gap: 20px;
  max-width: 1400px;
  padding: 0 20px;
}

.yw-os-icons-container a.yw-os-icon {
  text-decoration: none;
  display: flex;
  align-items: center;
  background-color: #2d68b2;
  padding: 14px 28px;
  border-radius: 10px;
  cursor: pointer;
  min-width: 180px;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.yw-os-icons-container a.yw-os-icon:hover {
  transform: translateY(-3px);
  background-color: #1a4c8c;
  box-shadow: 0 8px 20px rgba(45, 104, 178, 0.3);
}

.yw-os-icons-container a.yw-os-icon i {
  font-size: 28px;
  color: white;
  width: 28px;
  text-align: center;
}

.yw-os-icons-container a.yw-os-icon span {
  margin-left: 14px;
  font-size: 18px;
  font-weight: 600;
  color: white;
  font-family: "Poppins-Medium";
}

/* 响应式设计 */
@media (max-width: 1200px) {
  .yw-banner .yw-banner-content {
    max-width: 100%;
    padding: 0 40px;
    gap: 40px;
  }
  
  .yw-banner .yw-banner-content .yw-banner-left .yw-banner-left-title {
    font-size: 44px;
  }
  
  .yw-banner .yw-banner-content .yw-banner-right img {
    max-height: 400px;
  }
}

@media (max-width: 992px) {
  .yw-banner .yw-banner-content {
    flex-direction: column;
    text-align: center;
    padding: 0 30px;
    gap: 50px;
  }
  
  .yw-banner .yw-banner-content .yw-banner-left {
    max-width: 100%;
  }
  
  .yw-banner .yw-banner-content .yw-banner-left .yw-banner-left-list {
    display: inline-block;
    text-align: left;
  }
  
  .yw-banner .yw-banner-content .yw-banner-left .yw-banner-left-btns {
    justify-content: center;
  }
  
  .yw-banner .yw-banner-content .yw-banner-right {
    width: 100%;
  }
  
  .yw-banner .yw-banner-content .yw-banner-right img {
    max-height: 350px;
    margin: 0 auto;
  }
  
  .yw-os-icons-container {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .yw-banner {
    padding: 60px 0 40px;
  }
  
  .yw-banner .yw-banner-content {
    padding: 0 20px;
    gap: 40px;
  }
  
  .yw-banner .yw-banner-content .yw-banner-left .yw-banner-left-title {
    font-size: 36px;
  }
  
  .yw-banner .yw-banner-content .yw-banner-left .yw-banner-left-tip {
    font-size: 18px;
  }
  
  .yw-banner .yw-banner-content .yw-banner-left .yw-banner-left-list .yw-list-item {
    font-size: 16px;
    padding-left: 32px;
  }
  
  .yw-banner .yw-banner-content .yw-banner-left .yw-banner-left-list .yw-list-item::before {
    width: 22px;
    height: 22px;
  }
  
  .yw-banner .yw-banner-content .yw-banner-left .yw-banner-left-btns {
    flex-direction: column;
    width: 100%;
    gap: 20px;
  }
  
  .yw-banner .yw-banner-content .yw-banner-left .yw-banner-left-btns .yw-btn {
    width: 100%;
    max-width: 320px;
    padding: 14px 30px;
  }
  
  .yw-banner .yw-banner-content .yw-banner-right img {
    max-height: 300px;
  }
  
  .yw-os-icons-container {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
  }
  
  .yw-os-icons-container a.yw-os-icon {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    padding: 12px 24px;
  }
  
  .yw-os-icons-container a.yw-os-icon i {
    font-size: 24px;
  }
  
  .yw-os-icons-container a.yw-os-icon span {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .yw-banner {
    padding: 40px 0 30px;
  }
  
  .yw-banner .yw-banner-content .yw-banner-left .yw-banner-left-title {
    font-size: 28px;
  }
  
  .yw-banner .yw-banner-content .yw-banner-left .yw-banner-left-tip {
    font-size: 16px;
  }
  
  .yw-banner .yw-banner-content .yw-banner-right img {
    max-height: 250px;
  }
}




/*hero2*/

/* 易用性部分样式 */
.yw-ease-use {
  position: relative;
  width: 100%;
  background: #f2f6fe;
  padding: 100px 0;
  box-sizing: border-box;
}

.yw-ease-use .yw-ease-use-bg-icon {
  position: absolute;
  z-index: 1;
}

.yw-ease-use .yw-ease-use-bg-icon.yw-icon1 {
  right: 0;
  top: 36.9%;
}

.yw-ease-use .yw-ease-use-bg-icon.yw-icon2 {
  right: 46px;
  top: 52.9%;
}

.yw-ease-use .yw-ease-use-center {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* 标题样式 */
.yw-ease-use .yw-ease-use-center .yw-use-title {
  margin-bottom: 16px;
  font-size: 46px;
  font-family: "Poppins-Medium";
  font-weight: 600;
  color: #223265;
  line-height: 1.2;
  text-align: center;
}

.yw-ease-use .yw-ease-use-center .yw-use-small-title {
  margin-bottom: 60px;
  font-size: 20px;
  font-family: "Poppins-Medium";
  font-weight: 500;
  color: #223265;
  line-height: 1.6;
  text-align: center;
}

/* 优势盒子 - PC端：卡片在左，图片在右 */
.yw-ease-use .yw-ease-use-center .yw-advs-box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 120px;
  gap: 60px;
}

/* PC端：卡片在左 */
.yw-ease-use .yw-ease-use-center .yw-advs-box .yw-advs-left {
  flex: 1;
  max-width: 684px;
}

/* PC端：图片在右 */
.yw-ease-use .yw-ease-use-center .yw-advs-box .yw-advs-right {
  flex: 1;
  max-width: 636px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.yw-ease-use .yw-ease-use-center .yw-advs-box .yw-advs-right img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* 卡片样式 - PC端和移动端都保持一行3个 */
.yw-ease-use .yw-ease-use-center .yw-advs-box .yw-advs-left .yw-advs-list {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 20px;
  gap: 15px;
}

.yw-ease-use .yw-ease-use-center .yw-advs-box .yw-advs-left .yw-advs-list:last-child {
  margin-bottom: 0;
}

.yw-ease-use .yw-ease-use-center .yw-advs-box .yw-advs-left .yw-advs-list .yw-advs-item {
  flex: 1;
  min-height: 170px;
  padding: 22px 12px;
  background: #FFFFFF;
  box-shadow: 0 8px 24px rgba(192, 192, 192, 0.15);
  border-radius: 10px;
  box-sizing: border-box;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.yw-ease-use .yw-ease-use-center .yw-advs-box .yw-advs-left .yw-advs-list .yw-advs-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(45, 104, 178, 0.2);
}

.yw-ease-use .yw-ease-use-center .yw-advs-box .yw-advs-left .yw-advs-list .yw-advs-item .yw-item-img {
  height: 48px;
  margin-bottom: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.yw-ease-use .yw-ease-use-center .yw-advs-box .yw-advs-left .yw-advs-list .yw-advs-item .yw-item-img img {
  height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.yw-ease-use .yw-ease-use-center .yw-advs-box .yw-advs-left .yw-advs-list .yw-advs-item .yw-item-tit {
  font-size: 22px;
  font-family: "Poppins-SemiBold";
  font-weight: 700;
  color: #2d68b2;
  line-height: 1.2;
  margin-bottom: 6px;
}

.yw-ease-use .yw-ease-use-center .yw-advs-box .yw-advs-left .yw-advs-list .yw-advs-item .yw-item-tip {
  font-size: 15px;
  font-family: "Poppins-Medium";
  font-weight: 600;
  color: #223265;
  line-height: 1.4;
}

/* 代理信息盒子 */
.yw-ease-use .yw-ease-use-center .yw-proxy-info-box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
}

.yw-ease-use .yw-ease-use-center .yw-proxy-info-box .yw-proxy-left {
  flex: 1;
  max-width: 570px;
}

.yw-ease-use .yw-ease-use-center .yw-proxy-info-box .yw-proxy-left .yw-small-tit {
  margin-bottom: 12px;
  font-size: 16px;
  font-family: "Poppins-Medium";
  font-weight: 600;
  color: #2d68b2;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.yw-ease-use .yw-ease-use-center .yw-proxy-info-box .yw-proxy-left .yw-title {
  margin-bottom: 24px;
  font-size: 44px;
  font-family: "Poppins-Medium";
  font-weight: 700;
  color: #223265;
  line-height: 1.2;
}

.yw-ease-use .yw-ease-use-center .yw-proxy-info-box .yw-proxy-left .yw-title .yw-title-highlight {
  font-size: 44px;
  color: #2d68b2;
  display: inline-block;
  margin-left: 8px;
}

.yw-ease-use .yw-ease-use-center .yw-proxy-info-box .yw-proxy-left .yw-tip {
  font-size: 18px;
  font-family: "Poppins-Regular";
  font-weight: 400;
  color: #223265;
  line-height: 1.8;
  margin-bottom: 20px;
}
/* 优化移动端按钮对齐 */
.yw-ease-use .yw-ease-use-center .yw-proxy-info-box .yw-proxy-left .yw-buy-btn {
  display: inline-block;
  width: 220px;
  height: 56px;
  margin-top: 32px;
  border-radius: 8px;
  background: #2d68b2;
  font-size: 18px;
  font-family: "Poppins-Bold";
  font-weight: 700;
  color: #FAFCFE;
  text-align: center;
  line-height: 56px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  outline: none;
}


.yw-ease-use .yw-ease-use-center .yw-proxy-info-box .yw-proxy-left .yw-buy-btn:hover {
  background: #1a4c8c;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(45, 104, 178, 0.3);
}

.yw-ease-use .yw-ease-use-center .yw-proxy-info-box .yw-proxy-right {
  flex: 1;
  max-width: 620px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.yw-ease-use .yw-ease-use-center .yw-proxy-info-box .yw-proxy-right img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* 响应式设计 */
@media (max-width: 1200px) {
  .yw-ease-use .yw-ease-use-center {
    max-width: 100%;
    padding: 0 40px;
  }
  
  .yw-ease-use .yw-ease-use-center .yw-advs-box {
    gap: 40px;
  }
  
  .yw-ease-use .yw-ease-use-center .yw-proxy-info-box {
    gap: 60px;
  }
  
  .yw-ease-use .yw-ease-use-center .yw-advs-box .yw-advs-left .yw-advs-list .yw-advs-item {
    min-height: 160px;
    padding: 20px 10px;
  }
  
  .yw-ease-use .yw-ease-use-center .yw-advs-box .yw-advs-left .yw-advs-list .yw-advs-item .yw-item-tit {
    font-size: 20px;
  }
}

/* 优化卡片在移动端为一行3个 */
@media (max-width: 992px) {
  .yw-ease-use {
    padding: 80px 0;
  }
  
  .yw-ease-use .yw-ease-use-center .yw-use-title {
    font-size: 38px;
  }
  
  .yw-ease-use .yw-ease-use-center .yw-use-small-title {
    font-size: 18px;
    margin-bottom: 50px;
  }
  
  /* 平板端：卡片在上，图片在下，保持一行3个 */
  .yw-ease-use .yw-ease-use-center .yw-advs-box {
    flex-direction: column;
    margin-bottom: 80px;
    gap: 40px;
  }
  
  /* 移动端：卡片在上 */
  .yw-ease-use .yw-ease-use-center .yw-advs-box .yw-advs-left {
    order: 1; /* 卡片在上 */
    max-width: 100%;
    width: 100%;
  }
  
  /* 移动端：图片在下 */
  .yw-ease-use .yw-ease-use-center .yw-advs-box .yw-advs-right {
    order: 2; /* 图片在下 */
    max-width: 100%;
    width: 100%;
  }
  
  /* 平板端：优化卡片为一行3个，减少间隙 */
  .yw-ease-use .yw-ease-use-center .yw-advs-box .yw-advs-left .yw-advs-list {
    gap: 12px;
    justify-content: center;
  }
  
  .yw-ease-use .yw-ease-use-center .yw-advs-box .yw-advs-left .yw-advs-list .yw-advs-item {
    flex: 0 0 calc(33.333% - 8px);
    max-width: calc(33.333% - 8px);
    min-height: 160px;
    padding: 22px 10px;
  }
  
  .yw-ease-use .yw-ease-use-center .yw-advs-box .yw-advs-left .yw-advs-list .yw-advs-item .yw-item-img {
    height: 45px;
    margin-bottom: 12px;
  }
  
  .yw-ease-use .yw-ease-use-center .yw-advs-box .yw-advs-left .yw-advs-list .yw-advs-item .yw-item-tit {
    font-size: 20px;
  }
  
  .yw-ease-use .yw-ease-use-center .yw-advs-box .yw-advs-left .yw-advs-list .yw-advs-item .yw-item-tip {
    font-size: 14px;
  }
  
  .yw-ease-use .yw-ease-use-center .yw-proxy-info-box {
    flex-direction: column-reverse;
    gap: 50px;
  }
  
  .yw-ease-use .yw-ease-use-center .yw-proxy-info-box .yw-proxy-left,
  .yw-ease-use .yw-ease-use-center .yw-proxy-info-box .yw-proxy-right {
    max-width: 100%;
  }
  
  /* 优化按钮在移动端居中显示 */
  .yw-ease-use .yw-ease-use-center .yw-proxy-info-box .yw-proxy-left .yw-buy-btn {
    display: block;
    margin: 32px auto 0;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .yw-ease-use {
    padding: 60px 0;
  }
  
  .yw-ease-use .yw-ease-use-center {
    padding: 0 15px;
  }
  
  .yw-ease-use .yw-ease-use-center .yw-use-title {
    font-size: 32px;
  }
  
  .yw-ease-use .yw-ease-use-center .yw-use-small-title {
    font-size: 16px;
    margin-bottom: 40px;
  }
  
  /* 移动端：卡片一行3个，减少内边距 */
  .yw-ease-use .yw-ease-use-center .yw-advs-box .yw-advs-left .yw-advs-list {
    gap: 10px;
  }
  
  .yw-ease-use .yw-ease-use-center .yw-advs-box .yw-advs-left .yw-advs-list .yw-advs-item {
    flex: 0 0 calc(33.333% - 6.67px);
    max-width: calc(33.333% - 6.67px);
    min-height: 150px;
    padding: 20px 8px;
  }
  
  .yw-ease-use .yw-ease-use-center .yw-advs-box .yw-advs-left .yw-advs-list .yw-advs-item .yw-item-img {
    height: 40px;
    margin-bottom: 10px;
  }
  
  .yw-ease-use .yw-ease-use-center .yw-advs-box .yw-advs-left .yw-advs-list .yw-advs-item .yw-item-tit {
    font-size: 18px;
    margin-bottom: 4px;
  }
  
  .yw-ease-use .yw-ease-use-center .yw-advs-box .yw-advs-left .yw-advs-list .yw-advs-item .yw-item-tip {
    font-size: 13px;
  }
  
  .yw-ease-use .yw-ease-use-center .yw-proxy-info-box .yw-proxy-left .yw-title {
    font-size: 36px;
  }
  
  .yw-ease-use .yw-ease-use-center .yw-proxy-info-box .yw-proxy-left .yw-title .yw-title-highlight {
    font-size: 36px;
  }
  
  .yw-ease-use .yw-ease-use-center .yw-proxy-info-box .yw-proxy-left .yw-tip {
    font-size: 16px;
  }
  
  .yw-ease-use .yw-ease-use-center .yw-proxy-info-box .yw-proxy-left .yw-buy-btn {
    width: 100%;
    max-width: 280px;
    height: 52px;
    line-height: 52px;
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  /* 小屏幕：继续优化为一行3个 */
  .yw-ease-use .yw-ease-use-center .yw-advs-box .yw-advs-left .yw-advs-list {
    gap: 8px;
  }
  
  .yw-ease-use .yw-ease-use-center .yw-advs-box .yw-advs-left .yw-advs-list .yw-advs-item {
    flex: 0 0 calc(33.333% - 5.33px);
    max-width: calc(33.333% - 5.33px);
    min-height: 140px;
    padding: 18px 6px;
  }
  
  .yw-ease-use .yw-ease-use-center .yw-advs-box .yw-advs-left .yw-advs-list .yw-advs-item .yw-item-img {
    height: 36px;
    margin-bottom: 8px;
  }
  
  .yw-ease-use .yw-ease-use-center .yw-advs-box .yw-advs-left .yw-advs-list .yw-advs-item .yw-item-tit {
    font-size: 16px;
  }
  
  .yw-ease-use .yw-ease-use-center .yw-advs-box .yw-advs-left .yw-advs-list .yw-advs-item .yw-item-tip {
    font-size: 12px;
  }
  
  .yw-ease-use .yw-ease-use-center .yw-use-title {
    font-size: 28px;
  }
  
  .yw-ease-use .yw-ease-use-center .yw-proxy-info-box .yw-proxy-left .yw-title {
    font-size: 30px;
  }
  
  .yw-ease-use .yw-ease-use-center .yw-proxy-info-box .yw-proxy-left .yw-title .yw-title-highlight {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  /* 最小屏幕：如果实在放不下，稍微减小卡片尺寸 */
  .yw-ease-use .yw-ease-use-center {
    padding: 0 12px;
  }
  
  .yw-ease-use .yw-ease-use-center .yw-advs-box .yw-advs-left .yw-advs-list {
    gap: 6px;
  }
  
  .yw-ease-use .yw-ease-use-center .yw-advs-box .yw-advs-left .yw-advs-list .yw-advs-item {
    flex: 0 0 calc(33.333% - 4px);
    max-width: calc(33.333% - 4px);
    min-height: 130px;
    padding: 16px 4px;
  }
  
  .yw-ease-use .yw-ease-use-center .yw-advs-box .yw-advs-left .yw-advs-list .yw-advs-item .yw-item-img {
    height: 32px;
    margin-bottom: 6px;
  }
  
  .yw-ease-use .yw-ease-use-center .yw-advs-box .yw-advs-left .yw-advs-list .yw-advs-item .yw-item-tit {
    font-size: 14px;
  }
  
  .yw-ease-use .yw-ease-use-center .yw-advs-box .yw-advs-left .yw-advs-list .yw-advs-item .yw-item-tip {
    font-size: 11px;
  }
}

/*hero3*/
/* 对比部分样式 - 单独优化PC端列宽 */
.yw-all-article.yw-alternative {
  position: relative;
  width: 100%;
  padding: 100px 0;
  background: #fff;
  box-sizing: border-box;
}

.yw-all-article.yw-alternative .yw-alternative-bg-icon {
  position: absolute;
  z-index: 1;
}

.yw-all-article.yw-alternative .yw-alternative-bg-icon.yw-icon1 {
  top: 40%;
  left: 94px;
}

.yw-all-article.yw-alternative .yw-alternative-middle {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.yw-all-article.yw-alternative .yw-alternative-middle h2 {
  font-family: "Poppins-Medium";
  font-size: 46px;
  font-weight: 600;
  color: #223265;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 16px;
}

.yw-all-article.yw-alternative .yw-alternative-middle .yw-subtitle {
  font-size: 18px;
  font-family: "Poppins-Medium";
  font-weight: 500;
  color: #223265;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 10px;
}

.yw-all-article.yw-alternative .yw-alternative-middle .yw-subtitle:last-of-type {
  margin-bottom: 60px;
}

/* 表格容器 */
.yw-all-article.yw-alternative .yw-alternative-middle .yw-comparison-table {
  width: 100%;
  margin-top: 60px;
}

/* 滚动容器 */
.yw-all-article.yw-alternative .yw-alternative-middle .yw-comparison-table .yw-table-scroll {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* 表格容器 */
.yw-all-article.yw-alternative .yw-alternative-middle .yw-comparison-table .yw-table-scroll .yw-table-container {
  width: 100%;
}

/* 对比表格主体 */
.yw-all-article.yw-alternative .yw-alternative-middle .yw-comparison-table .yw-table-scroll .yw-table-container .yw-contrast {
  display: flex;
  width: 100%;
}

/* ===== PC端左侧列 - 增加宽度 ===== */
.yw-all-article.yw-alternative .yw-alternative-middle .yw-comparison-table .yw-table-scroll .yw-table-container .yw-contrast .yw-left {
  flex: 0 0 220px; /* PC端增加宽度 */
  background: #f8fafd;
  border-right: 3px solid #2d68b2;
  box-sizing: border-box;
}

.yw-all-article.yw-alternative .yw-alternative-middle .yw-comparison-table .yw-table-scroll .yw-table-container .yw-contrast .yw-left .yw-header-placeholder {
  height: 64px;
  background: #2d68b2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px; /* PC端增大字体 */
  font-weight: 700;
  font-family: "Poppins-Bold";
  color: #fff;
}

.yw-all-article.yw-alternative .yw-alternative-middle .yw-comparison-table .yw-table-scroll .yw-table-container .yw-contrast .yw-left .yw-row-item {
  height: 56px;
  font-size: 16px; /* PC端增大字体 */
  line-height: 1.4;
  color: #223265;
  font-family: "Poppins-Medium";
  font-weight: 600;
  border-bottom: 1px solid #e6e9f0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 15px; /* PC端增加内边距 */
  white-space: normal;
  word-break: break-word;
}

.yw-all-article.yw-alternative .yw-alternative-middle .yw-comparison-table .yw-table-scroll .yw-table-container .yw-contrast .yw-left .yw-row-item:last-child {
  border-bottom: none;
}

/* ===== PC端右侧对比区域 - 减小宽度 ===== */
.yw-all-article.yw-alternative .yw-alternative-middle .yw-comparison-table .yw-table-scroll .yw-table-container .yw-contrast .yw-right {
  flex: 1;
  background: #fff;
}

/* PC端表头行 */
.yw-all-article.yw-alternative .yw-alternative-middle .yw-comparison-table .yw-table-scroll .yw-table-container .yw-contrast .yw-right .yw-header-row {
  height: 64px;
  display: flex;
  background: #f8fafd;
  border-bottom: 1px solid #e6e9f0;
}

.yw-all-article.yw-alternative .yw-alternative-middle .yw-comparison-table .yw-table-scroll .yw-table-container .yw-contrast .yw-right .yw-header-row .yw-py-header,
.yw-all-article.yw-alternative .yw-alternative-middle .yw-comparison-table .yw-table-scroll .yw-table-container .yw-contrast .yw-right .yw-header-row .yw-other-header {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px; /* PC端增大字体 */
  font-weight: 700;
  font-family: "Poppins-Bold";
  border-right: 1px solid #e6e9f0;
  padding: 0 15px; /* PC端适当内边距 */
}

.yw-all-article.yw-alternative .yw-alternative-middle .yw-comparison-table .yw-table-scroll .yw-table-container .yw-contrast .yw-right .yw-header-row .yw-py-header {
  color: #2d68b2;
  background: rgba(45, 104, 178, 0.05);
}

.yw-all-article.yw-alternative .yw-alternative-middle .yw-comparison-table .yw-table-scroll .yw-table-container .yw-contrast .yw-right .yw-header-row .yw-other-header {
  color: #666;
}

.yw-all-article.yw-alternative .yw-alternative-middle .yw-comparison-table .yw-table-scroll .yw-table-container .yw-contrast .yw-right .yw-header-row .yw-py-header img {
  height: 28px; /* PC端增大图标 */
  width: auto;
  object-fit: contain;
}

/* PC端数据行 */
.yw-all-article.yw-alternative .yw-alternative-middle .yw-comparison-table .yw-table-scroll .yw-table-container .yw-contrast .yw-right .yw-data-row {
  height: 56px;
  display: flex;
  border-bottom: 1px solid #e6e9f0;
}

.yw-all-article.yw-alternative .yw-alternative-middle .yw-comparison-table .yw-table-scroll .yw-table-container .yw-contrast .yw-right .yw-data-row:nth-child(odd) {
  background: #f8fafd;
}

.yw-all-article.yw-alternative .yw-alternative-middle .yw-comparison-table .yw-table-scroll .yw-table-container .yw-contrast .yw-right .yw-data-row:last-child {
  border-bottom: none;
}

.yw-all-article.yw-alternative .yw-alternative-middle .yw-comparison-table .yw-table-scroll .yw-table-container .yw-contrast .yw-right .yw-data-row .yw-py,
.yw-all-article.yw-alternative .yw-alternative-middle .yw-comparison-table .yw-table-scroll .yw-table-container .yw-contrast .yw-right .yw-data-row .yw-other {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px; /* PC端增大字体 */
  font-weight: 600;
  font-family: "Poppins-Medium";
  padding: 0 15px; /* PC端适当内边距 */
  text-align: center;
  border-right: 1px solid #e6e9f0;
  white-space: normal;
  word-break: break-word;
}

.yw-all-article.yw-alternative .yw-alternative-middle .yw-comparison-table .yw-table-scroll .yw-table-container .yw-contrast .yw-right .yw-data-row .yw-py {
  color: #2d68b2;
  background: rgba(45, 104, 178, 0.05);
}

.yw-all-article.yw-alternative .yw-alternative-middle .yw-comparison-table .yw-table-scroll .yw-table-container .yw-contrast .yw-right .yw-data-row .yw-other {
  color: #666;
}

/* 移除最后一列的右边框 */
.yw-all-article.yw-alternative .yw-alternative-middle .yw-comparison-table .yw-table-scroll .yw-table-container .yw-contrast .yw-right .yw-data-row .yw-other:last-child,
.yw-all-article.yw-alternative .yw-alternative-middle .yw-comparison-table .yw-table-scroll .yw-table-container .yw-contrast .yw-right .yw-header-row .yw-other-header:last-child {
  border-right: none;
}

/* ===== 响应式设计 ===== */
@media (max-width: 1200px) {
  .yw-all-article.yw-alternative .yw-alternative-middle {
    padding: 0 40px;
  }
}

@media (max-width: 992px) {
  .yw-all-article.yw-alternative {
    padding: 80px 0;
  }
  
  .yw-all-article.yw-alternative .yw-alternative-middle h2 {
    font-size: 38px;
  }
  
  .yw-all-article.yw-alternative .yw-alternative-middle .yw-subtitle {
    font-size: 16px;
  }
  
  .yw-all-article.yw-alternative .yw-alternative-middle .yw-subtitle:last-of-type {
    margin-bottom: 50px;
  }
  
  .yw-all-article.yw-alternative .yw-alternative-middle .yw-comparison-table {
    margin-top: 40px;
  }
  
  /* 平板端调整列宽 */
  .yw-all-article.yw-alternative .yw-alternative-middle .yw-comparison-table .yw-table-scroll .yw-table-container .yw-contrast .yw-left {
    flex: 0 0 180px; /* 平板端稍小 */
  }
  
  .yw-all-article.yw-alternative .yw-alternative-middle .yw-comparison-table .yw-table-scroll .yw-table-container .yw-contrast .yw-left .yw-row-item {
    font-size: 15px;
    padding: 10px 12px;
  }
  
  .yw-all-article.yw-alternative .yw-alternative-middle .yw-comparison-table .yw-table-scroll .yw-table-container .yw-contrast .yw-right .yw-header-row .yw-py-header,
  .yw-all-article.yw-alternative .yw-alternative-middle .yw-comparison-table .yw-table-scroll .yw-table-container .yw-contrast .yw-right .yw-header-row .yw-other-header {
    font-size: 18px;
    padding: 0 12px;
  }
  
  .yw-all-article.yw-alternative .yw-alternative-middle .yw-comparison-table .yw-table-scroll .yw-table-container .yw-contrast .yw-right .yw-data-row .yw-py,
  .yw-all-article.yw-alternative .yw-alternative-middle .yw-comparison-table .yw-table-scroll .yw-table-container .yw-contrast .yw-right .yw-data-row .yw-other {
    font-size: 15px;
    padding: 0 12px;
  }
}

@media (max-width: 768px) {
  .yw-all-article.yw-alternative {
    padding: 60px 0;
  }
  
  .yw-all-article.yw-alternative .yw-alternative-middle {
    padding: 0 15px;
    width: 100%;
  }
  
  .yw-all-article.yw-alternative .yw-alternative-middle h2 {
    font-size: 32px;
  }
  
  .yw-all-article.yw-alternative .yw-alternative-middle .yw-subtitle {
    font-size: 15px;
  }
  
  .yw-all-article.yw-alternative .yw-alternative-middle .yw-subtitle:last-of-type {
    margin-bottom: 40px;
  }
  
  /* 移动端表格 */
  .yw-all-article.yw-alternative .yw-alternative-middle .yw-comparison-table {
    margin-top: 30px;
    width: 100%;
    overflow-x: visible;
  }
  
  .yw-all-article.yw-alternative .yw-alternative-middle .yw-comparison-table .yw-table-scroll {
    min-width: auto;
    width: 100%;
  }
  
  /* 移动端左侧列 */
  .yw-all-article.yw-alternative .yw-alternative-middle .yw-comparison-table .yw-table-scroll .yw-table-container .yw-contrast .yw-left {
    flex: 0 0 110px; /* 移动端更窄 */
  }
  
  .yw-all-article.yw-alternative .yw-alternative-middle .yw-comparison-table .yw-table-scroll .yw-table-container .yw-contrast .yw-left .yw-header-placeholder {
    height: 50px;
    font-size: 14px;
  }
  
  .yw-all-article.yw-alternative .yw-alternative-middle .yw-comparison-table .yw-table-scroll .yw-table-container .yw-contrast .yw-left .yw-row-item {
    height: 50px;
    line-height: 1.3;
    font-size: 12px;
    padding: 8px 6px;
  }
  
  /* 移动端右侧对比区域 */
  .yw-all-article.yw-alternative .yw-alternative-middle .yw-comparison-table .yw-table-scroll .yw-table-container .yw-contrast .yw-right .yw-header-row {
    height: 50px;
  }
  
  .yw-all-article.yw-alternative .yw-alternative-middle .yw-comparison-table .yw-table-scroll .yw-table-container .yw-contrast .yw-right .yw-header-row .yw-py-header,
  .yw-all-article.yw-alternative .yw-alternative-middle .yw-comparison-table .yw-table-scroll .yw-table-container .yw-contrast .yw-right .yw-header-row .yw-other-header {
    font-size: 15px;
    padding: 0 8px;
  }
  
  .yw-all-article.yw-alternative .yw-alternative-middle .yw-comparison-table .yw-table-scroll .yw-table-container .yw-contrast .yw-right .yw-header-row .yw-py-header img {
    height: 20px;
  }
  
  .yw-all-article.yw-alternative .yw-alternative-middle .yw-comparison-table .yw-table-scroll .yw-table-container .yw-contrast .yw-right .yw-data-row {
    height: 50px;
  }
  
  .yw-all-article.yw-alternative .yw-alternative-middle .yw-comparison-table .yw-table-scroll .yw-table-container .yw-contrast .yw-right .yw-data-row .yw-py,
  .yw-all-article.yw-alternative .yw-alternative-middle .yw-comparison-table .yw-table-scroll .yw-table-container .yw-contrast .yw-right .yw-data-row .yw-other {
    font-size: 13px;
    padding: 0 8px;
  }
}

@media (max-width: 576px) {
  .yw-all-article.yw-alternative .yw-alternative-middle h2 {
    font-size: 28px;
  }
  
  .yw-all-article.yw-alternative .yw-alternative-middle .yw-subtitle {
    font-size: 14px;
  }
  
  /* 最小屏幕左侧列 */
  .yw-all-article.yw-alternative .yw-alternative-middle .yw-comparison-table .yw-table-scroll .yw-table-container .yw-contrast .yw-left {
    flex: 0 0 100px;
  }
  
  .yw-all-article.yw-alternative .yw-alternative-middle .yw-comparison-table .yw-table-scroll .yw-table-container .yw-contrast .yw-left .yw-row-item {
    font-size: 11px;
    padding: 8px 4px;
  }
  
  /* 最小屏幕右侧对比区域 */
  .yw-all-article.yw-alternative .yw-alternative-middle .yw-comparison-table .yw-table-scroll .yw-table-container .yw-contrast .yw-right .yw-header-row .yw-py-header,
  .yw-all-article.yw-alternative .yw-alternative-middle .yw-comparison-table .yw-table-scroll .yw-table-container .yw-contrast .yw-right .yw-header-row .yw-other-header {
    font-size: 14px;
    padding: 0 6px;
  }
  
  .yw-all-article.yw-alternative .yw-alternative-middle .yw-comparison-table .yw-table-scroll .yw-table-container .yw-contrast .yw-right .yw-data-row .yw-py,
  .yw-all-article.yw-alternative .yw-alternative-middle .yw-comparison-table .yw-table-scroll .yw-table-container .yw-contrast .yw-right .yw-data-row .yw-other {
    font-size: 12px;
    padding: 0 6px;
  }
}



	
/*hero6*/

.pricing-plan {
    padding: 100px 0;
    position: relative;
    background-color: #fff;
}

.pricing-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.pricing-plan__body {
    background: #f3f5f8;
    border-radius: 3em;
    padding: 80px;
}

.pricing-plan__header {
    display: flex;
    align-items: center;
    gap: 75px;
}

.pricing-plan__info {
    flex: 0 1 655px;
}

.pricing-plan__title {
    margin-bottom: 24px;
    text-align: left;
    font-size: 36px;
    font-weight: 700;
    color: #333;
}

.pricing-plan__title span {
    color: #2d68b2;
}

.pricing-plan__desc {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.5;
    color: #666;
    margin-bottom: 77px;
}

/* 768px响应式调整 */
@media (max-width: 768px) {
    .pricing-plan {
        padding: 60px 0;
    }
    
    .pricing-plan__body {
        padding: 30px;
        border-radius: 2em;
    }
    
    .pricing-plan__header {
        flex-direction: column;
        gap: 30px;
    }
    
    .pricing-plan__info {
        flex: 1 1 auto;
        text-align: center;
    }
    
    .pricing-plan__title {
        font-size: 28px;
        text-align: center;
        margin-bottom: 16px;
    }
    
    .pricing-plan__desc {
        font-size: 16px;
        margin-bottom: 30px;
        text-align: center;
    }
}


/*hero7*/

.free-trial-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

/* 背景图样式 - 仅作为装饰，不影响布局 */
.free-trial-section::before {
    content: "";
    width: 518px;
    height: 518px;
    background: url(/static/image/background.svg) center no-repeat;
    background-size: contain;
    position: absolute;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}

.trial-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.free-trial__content {
    display: flex;
    box-shadow: 0 16px 32px -6px rgba(124, 78, 255, 0.06), 
                0 8px 16px -3px rgba(124, 78, 255, 0.03), 
                0 4px 8px -1px rgba(124, 78, 255, 0.03);
    border-radius: 32px;
    padding: 60px;
    color: #f9fbfd;
    background: url(/static/image/bg-big.svg) right center no-repeat, #202027;
    gap: 30px;
    align-items: center;
    position: relative;
}

.free-trial__info {
    flex: 0 1 57%;
    position: relative;
    z-index: 2;
}

.free-trial__heading {
    font-weight: 800;
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #fff;
}

.free-trial__description {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
}

.free-trial__graphics {
    position: relative;
    flex: 0 1 43%;
    height: 280px;
    min-height: 280px;
    user-select: none;
    z-index: 2;
}

/* 主图片样式 */
.free-trial__main-img {
    position: absolute;
    right: 0;
    
    transform: translateY(-50%);
    
    z-index: 3;
    animation: float-animation 3s infinite ease-in-out;
}

/* 中型图片样式 */
.free-trial__medium-img {
    position: absolute;
    left: 20px;
    bottom: 20px;
    width: 120px;
    z-index: 2;
    animation: float-animation 3.5s infinite ease-in-out;
    animation-delay: 0.5s;
}

/* 小型图片样式 */
.free-trial__small-img {
    position: absolute;
    left: 40%;
    top: 20px;
    width: 80px;
    z-index: 1;
    animation: float-animation 2.5s infinite ease-in-out;
    animation-delay: 0.8s;
}

/* 浮动动画 */
@keyframes float-animation {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* 768px响应式调整 */
@media (max-width: 768px) {
    .free-trial-section {
        padding: 60px 0;
    }
    
    .free-trial-section::before {
        width: 300px;
        height: 300px;
        bottom: -100px;
        opacity: 0.1;
    }
    
    .free-trial__content {
        flex-direction: column;
        padding: 40px;
        background-size: cover;
    }
    
    .free-trial__info {
        flex: 1 1 auto;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .free-trial__heading {
        font-size: 32px;
    }
    
    .free-trial__description {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .free-trial__graphics {
        flex: 1 1 auto;
        height: 200px;
        width: 100%;
        margin-top: 20px;
    }
    
    /* 移动端图片布局调整 */
    .free-trial__main-img {
        width: 160px;
        right: 50%;
        
        transform: translate(50%, -50%);
    }
    
    .free-trial__medium-img {
        width: 90px;
        left: 10%;
        bottom: 10px;
    }
    
    .free-trial__small-img {
        width: 60px;
        right: 10%;
        left: auto;
        top: 20px;
    }
}


/*首页底部文章*/

.modern-news-section {
    background-color: #f8f9fa;
    padding: 60px 0;
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
}

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

.modern-header {
    text-align: center;
    margin-bottom: 40px;
}

.modern-title {
    font-size: 32px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.modern-subtitle {
    font-size: 16px;
    color: #7f8c8d;
    font-weight: 400;
}

.modern-tabs {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.modern-tab-nav {
    display: flex;
    border-bottom: 1px solid #eaeaea;
}

.modern-tab-btn {
    flex: 1;
    padding: 16px 0;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 500;
    color: #7f8c8d;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.modern-tab-btn.active {
    color: #3498db;
}

.modern-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #3498db;
}

.modern-tab-btn:hover {
    color: #2980b9;
}

.modern-tab-content {
    padding: 30px;
}

.modern-tab-pane {
    display: none;
}

.modern-tab-pane.active {
    display: block;
}

.modern-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.modern-news-item {
    border-bottom: 1px solid #f1f1f1;
    padding-bottom: 15px;
}

.modern-news-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: #2c3e50;
    transition: color 0.2s;
}

.modern-news-link:hover {
    color: #3498db;
}

.modern-news-title {
    font-size: 15px;
    font-weight: 500;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 15px;
}

.modern-news-date {
    font-size: 13px;
    color: #95a5a6;
}

.modern-view-more {
    display: inline-block;
    color: #3498db;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.modern-view-more:hover {
    color: #2980b9;
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .modern-news-grid {
        grid-template-columns: 1fr;
    }
    
    .modern-tab-nav {
        flex-direction: column;
    }
    
    .modern-tab-btn {
        padding: 12px 0;
        text-align: center;
    }
    
    .modern-tab-btn.active::after {
        width: 2px;
        height: 100%;
        bottom: auto;
        left: auto;
        right: 0;
    }
}


/*footer*/


/* 基础 footer 样式 */
.footer {
  background-color: #223265;
  padding: 50px 0 25px;
  box-sizing: border-box;
  color: #ffffff;
  font-family: "Poppins", "Microsoft YaHei", sans-serif;
  width: 100%;
}

.footer-middle {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 顶部区域样式 */
.footer-middle .top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* 左侧区域样式 */
.footer-middle .top .left {
  flex: 1;
  min-width: 300px;
  margin-right: 40px;
}

.footer-middle .top .left .logo {
  max-width: 150px;
  margin-bottom: 20px;
}

.footer-middle .top .left .logo img {
  width: 100%;
  height: auto;
  display: block;
}

.footer-middle .top .left .introduce {
  max-width: 320px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.footer-middle .top .left .introduce p {
  margin: 0;
}

/* 联系信息样式 - 简化版 */
.footer-middle .top .left .contact-info {
  margin-top: 15px;
}

.footer-middle .top .left .contact-info .email {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-bottom: 12px;
  line-height: 1.5;
}

.footer-middle .top .left .contact-info .social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-middle .top .left .contact-info .social span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.footer-middle .top .left .contact-info .social .contact {
  position: relative;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

.footer-middle .top .left .contact-info .social .contact img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
  display: block;
}

.footer-middle .top .left .contact-info .social .contact:hover img {
  transform: scale(1.1);
}

.footer-middle .top .left .contact-info .social .contact .name {
  display: none;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 10px;
  background-color: white;
  border-radius: 4px;
  color: #223265;
  font-size: 12px;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  z-index: 10;
}

.footer-middle .top .left .contact-info .social .contact:hover .name {
  display: block;
}

/* 右侧链接区域样式 - 三列等宽布局 */
.footer-middle .top .right {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  flex: 1;
  min-width: 300px;
}

.footer-middle .top .right .link-column {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  min-width: 100px;
}

.footer-middle .top .right .link-column li {
  margin-bottom: 12px;
}

.footer-middle .top .right .link-column li:first-child {
  margin-bottom: 18px;
}

.footer-middle .top .right .link-column li span {
  font-size: 16px;
  color: #ffffff;
  display: inline-block;
  font-weight: 600;
}

.footer-middle .top .right .link-column li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-middle .top .right .link-column li a:hover {
  color: white;
  transform: translateX(5px);
}

/* 友情链接样式 */
.footer-middle .friend-links {
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin: 25px 0;
  font-size: 14px;
}

.footer-middle .friend-links span {
  color: rgba(255, 255, 255, 0.7);
  margin-right: 15px;
}

.footer-middle .friend-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-right: 20px;
  transition: color 0.3s ease;
}

.footer-middle .friend-links a:hover {
  color: white;
  text-decoration: underline;
}

/* 底部区域样式 */
.footer-middle .bottom {
  text-align: center;
  padding-top: 20px;
}

.footer-middle .bottom .disclaimer {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 15px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.footer-middle .bottom .record-info {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-middle .bottom .record-info a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
}

.footer-middle .bottom .record-info a:hover {
  color: white;
  text-decoration: underline;
}

.footer-middle .bottom .record-info img {
  margin-right: 5px;
  vertical-align: middle;
}

.footer-middle .bottom .record-info .separator {
  color: rgba(255, 255, 255, 0.3);
  margin: 0 5px;
}

/* 移动端优化 - 重新设计布局 */
@media (max-width: 768px) {
  .footer {
    padding: 35px 0 20px;
  }
  
  .footer-middle {
    padding: 0 15px;
  }
  
  .footer-middle .top {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-middle .top .left {
    margin-right: 0;
    min-width: 100%;
    text-align: center;
  }
  
  .footer-middle .top .left .logo {
    margin: 0 auto 20px;
  }
  
  .footer-middle .top .left .introduce {
    max-width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
  
  .footer-middle .top .left .contact-info {
    margin-top: 20px;
  }
  
  .footer-middle .top .left .contact-info .social {
    justify-content: center;
  }
  
  /* 移动端右侧链接优化 - 三列等宽布局 */
  .footer-middle .top .right {
    width: 100%;
    justify-content: space-between;
    gap: 20px;
  }
  
  .footer-middle .top .right .link-column {
    text-align: center;
    flex: 1;
    min-width: 0; /* 允许缩小 */
  }
  
  /* 确保三个栏目在同一行且等宽 */
  .footer-middle .top .right .link-column:nth-child(1),
  .footer-middle .top .right .link-column:nth-child(2),
  .footer-middle .top .right .link-column:nth-child(3) {
    flex-basis: calc(33.333% - 14px); /* 减去gap的空间 */
  }
  
  .footer-middle .friend-links {
    text-align: center;
    padding: 20px 0;
    margin: 20px 0;
  }
  
  .footer-middle .friend-links span {
    display: block;
    margin-bottom: 10px;
  }
  
  .footer-middle .friend-links a {
    display: inline-block;
    margin: 0 10px 5px 0;
  }
  
  .footer-middle .bottom .record-info {
    flex-direction: column;
    gap: 8px;
  }
  
  .footer-middle .bottom .record-info .separator {
    display: none;
  }
}

/* 小屏幕移动端优化 */
@media (max-width: 600px) {
  .footer-middle .top .right {
    gap: 15px;
  }
  
  .footer-middle .top .right .link-column:nth-child(1),
  .footer-middle .top .right .link-column:nth-child(2),
  .footer-middle .top .right .link-column:nth-child(3) {
    flex-basis: calc(33.333% - 10px);
  }
  
  .footer-middle .top .right .link-column li {
    margin-bottom: 10px;
  }
  
  .footer-middle .top .right .link-column li:first-child {
    margin-bottom: 15px;
  }
  
  .footer-middle .top .right .link-column li span {
    font-size: 15px;
  }
  
  .footer-middle .top .right .link-column li a {
    font-size: 13px;
  }
}

/* 更小屏幕优化 */
@media (max-width: 480px) {
  .footer {
    padding: 30px 0 18px;
  }
  
  .footer-middle .top .right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    width: 100%;
  }
  
  .footer-middle .top .right .link-column {
    text-align: center;
  }
  
  .footer-middle .friend-links {
    text-align: left;
  }
  
  .footer-middle .friend-links a {
    margin: 0 10px 8px 0;
  }
}

/* 最小屏幕优化 */
@media (max-width: 360px) {
  .footer-middle .top .right {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .footer-middle .top .right .link-column {
    text-align: left;
  }
  
  .footer-middle .friend-links a {
    display: block;
    margin: 0 0 8px 0;
  }
}




		
		/*客服*/
		
		 /* 主容器样式 - 使用独特类名 */
        .custom-service-7e8f9g {
            position: fixed;
            right: 20px;
            bottom: 100px;
            z-index: 9999;
            font-family: 'Microsoft YaHei', sans-serif;
        }

        /* 客服按钮通用样式 */
        .custom-service-7e8f9g .service-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            margin-bottom: 10px;
            border-radius: 50%;
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            position: relative;
            transition: all 0.3s;
        }

        .custom-service-7e8f9g .service-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .custom-service-7e8f9g .service-btn img {
            width: 30px;
            height: 30px;
        }

        /* QQ弹窗样式 */
        .custom-service-7e8f9g .qq-popup {
            position: absolute;
            right: 60px;
            bottom: 24px;
            width: 200px;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            padding: 15px;
            display: none;
            opacity: 0;
            transition: opacity 0.3s;
            transform: translateY(50%);
        }

        .custom-service-7e8f9g .qq-popup.show {
            display: block;
            opacity: 1;
        }

        .custom-service-7e8f9g .qq-popup::after {
            content: '';
            position: absolute;
            right: -10px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            border-left: 10px solid #fff;
        }

        .custom-service-7e8f9g .qq-title {
            font-size: 14px;
            color: #666;
            margin-bottom: 8px;
        }

        .custom-service-7e8f9g .qq-number {
            font-size: 16px;
            color: #333;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
        }

        .custom-service-7e8f9g .copy-btn {
            width: 20px;
            height: 20px;
            margin-left: 8px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="9" y="9" width="13" height="13" rx="2" ry="2"></rect><path d="M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1"></path></svg>') no-repeat center;
            background-size: contain;
            cursor: pointer;
            opacity: 0.6;
            transition: opacity 0.2s;
        }

        .custom-service-7e8f9g .copy-btn:hover {
            opacity: 1;
        }

        .custom-service-7e8f9g .qq-consult {
            display: block;
            background: #12B7F5;
            color: #fff;
            text-align: center;
            padding: 8px 0;
            border-radius: 4px;
            font-size: 14px;
            text-decoration: none;
            transition: background 0.3s;
        }

        .custom-service-7e8f9g .qq-consult:hover {
            background: #0E9BD8;
        }

        /* 微信弹窗样式 */
        .custom-service-7e8f9g .wechat-popup {
            position: absolute;
            right: 60px;
            bottom: 24px;
            width: 180px;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            padding: 15px;
            display: none;
            text-align: center;
            transform: translateY(50%);
        }

        .custom-service-7e8f9g .wechat-popup.show {
            display: block;
        }

        .custom-service-7e8f9g .wechat-popup::after {
            content: '';
            position: absolute;
            right: -10px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            border-left: 10px solid #fff;
        }

        .custom-service-7e8f9g .wechat-popup img {
            width: 150px;
            height: 150px;
            margin-bottom: 5px;
        }

        .custom-service-7e8f9g .wechat-popup p {
            font-size: 14px;
            color: #666;
            margin: 0;
        }

        /* 返回顶部按钮 */
        .custom-service-7e8f9g .back-top {
            display: none;
            background-color: #fff;
        }

        .custom-service-7e8f9g .back-top.show {
            display: flex;
        }

        /* 复制成功提示 */
        .custom-service-7e8f9g .copy-tooltip {
            position: absolute;
            top: -30px;
            left: 50%;
            transform: translateX(-50%);
            background: #4CAF50;
            color: white;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 12px;
            opacity: 0;
            transition: opacity 0.3s;
            white-space: nowrap;
        }

        .custom-service-7e8f9g .copy-tooltip.show {
            opacity: 1;
        }
		
		
		/*price*/
		
		/* 主内容区域 */
.price-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.price-page-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px 0;
    background: linear-gradient(135deg, #2d68b2 0%, #1a4c8c 100%);
    color: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.price-page-title {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.price-page-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* 筛选区域 */
.price-filters {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.price-filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.price-filter-label {
    font-weight: bold;
    color: #555;
    margin-right: 5px;
    min-width: 60px;
}

.price-filter-btn {
    padding: 8px 15px;
    background: #f0f2f5;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.price-filter-btn:hover {
    background: #e1e5eb;
}

.price-filter-btn.active {
    background: #2d68b2;
    color: white;
}

/* 产品网格 */
.price-jiage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

/* 产品卡片 */
.jiage-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.jiage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.card-header {
    padding: 15px 20px;
    background: linear-gradient(135deg, #2d68b2 0%, #1a4c8c 100%);
    color: white;
}

.jiage-type {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-bottom: 5px;
}

.jiage-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.jiage-id {
    font-size: 0.9rem;
    opacity: 0.8;
}

.card-body {
    padding: 20px;
}

.jiage-specs {
    margin-bottom: 15px;
}

.spec-item {
    display: flex;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.spec-label {
    font-weight: bold;
    min-width: 100px;
    color: #555;
}

.spec-value {
    flex: 1;
}

.jiage-desc {
    background: #f8f9fa;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.pricing {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.price-option {
    text-align: center;
    flex: 1;
    min-width: 80px;
}

.price-amount {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2d68b2;
}

.price-period {
    font-size: 0.8rem;
    color: #777;
}

/* 修改.buy-btn样式，使其适用于<a>标签 */
.buy-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: #2d68b2;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
    text-align: center;
    text-decoration: none; /* 去除下划线 */
}

.buy-btn:hover {
    background: #1a4c8c;
    color: white; /* 确保悬停时颜色不变 */
}

.no-jiage {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: #777;
    font-size: 1.1rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .price-jiage-grid {
        grid-template-columns: 1fr;
    }
    
    .price-filters {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .price-filter-group {
        margin-bottom: 10px;
    }
    
    .spec-item {
        flex-direction: column;
    }
    
    .spec-label {
        min-width: auto;
        margin-bottom: 3px;
    }
}



/*help*/

/* 基础样式 - 移除顶部间距，与头部无缝衔接 */
.bangzhu-help-center {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'PingFang SC', 'Microsoft YaHei', sans-serif;
    color: #333;
    line-height: 1.6;
    margin-top: 0;
    background-color: #fff;
}

/* 头部区域 - 白紫色渐变 */
.bangzhu-header {
    background:  linear-gradient(135deg, #2d68b2, #1a4c8c); 
    color: white;
    padding: 50px 0;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(124, 78, 255, 0.2);
}

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

.bangzhu-header-content {
    text-align: center;
}

.bangzhu-header-content h1 {
    font-size: 2.4rem;
    font-weight: 600;
    margin: 0 0 10px 0;
    letter-spacing: 0.5px;
}

.bangzhu-header-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 0;
}

/* 主内容区 */
.bangzhu-main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

/* 顶部导航栏 */
.bangzhu-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

/* 面包屑导航 */
.bangzhu-breadcrumb {
    font-size: 0.9rem;
    color: #666;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.bangzhu-breadcrumb a {
    color: #2d68b2;
    text-decoration: none;
    transition: color 0.2s;
    margin-right: 5px;
}

.bangzhu-breadcrumb a:hover {
    color: #1a4c8c;
    text-decoration: underline;
}

.bangzhu-breadcrumb > span {
    margin: 0 5px;
    color: #999;
}

/* 搜索框 */
.bangzhu-search-wrapper {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.3s;
    background: #fff;
}

.bangzhu-search-wrapper:hover,
.bangzhu-search-wrapper:focus-within {
    border-color: #2d68b2;
    box-shadow: 0 4px 12px rgba(45, 104, 178, 0.3);
}

.bangzhu-search-input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    outline: none;
    font-size: 0.95rem;
}

.bangzhu-search-button {
    background: #2d68b2;
    color: white;
    border: none;
    padding: 0 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background 0.3s;
    white-space: nowrap;
}

.bangzhu-search-button:hover {
    background: #1a4c8c;
}

.bangzhu-icon-search {
    margin-right: 6px;
    font-size: 1rem;
}

.bangzhu-search-text {
    display: inline;
}

/* 子栏目导航 */
.bangzhu-subnav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 25px 0;
    padding: 0;
    list-style: none;
}

.bangzhu-subnav-item {
    margin: 0;
}

.bangzhu-subnav-item a {
    display: block;
    padding: 8px 16px;
    text-decoration: none;
    color: #555;
    border-radius: 20px;
    transition: all 0.3s;
    font-size: 0.9rem;
    border: 1px solid #e0e0e0;
    background: #f9f9f9;
}

.bangzhu-subnav-item a:hover {
    color: #2d68b2;
   
    border-color: #1a4c8c;
}

.bangzhu-subnav-item.active a {
    color: white;
    background: #2d68b2;
    border-color: #2d68b2;
    font-weight: 500;
}

/* 教程列表 */
.bangzhu-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.bangzhu-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #eee;
}

.bangzhu-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(124, 78, 255, 0.1);
    border-color: #d0c4ff;
}

.bangzhu-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.bangzhu-thumb-container {
    height: 180px;
    overflow: hidden;
    position: relative;
    background: #f9f9f9;
}

.bangzhu-thumb-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bangzhu-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.bangzhu-item:hover .bangzhu-thumb {
    transform: scale(1.05);
}

.bangzhu-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.9rem;
}

.bangzhu-content {
    padding: 15px;
}

.bangzhu-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 10px;
}

.bangzhu-date,
.bangzhu-views {
    display: flex;
    align-items: center;
}

.bangzhu-icon-eye {
    margin-right: 4px;
}

.bangzhu-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #333;
    line-height: 1.4;
}

.bangzhu-desc {
    font-size: 0.9rem;
    color: #666;
    margin: 0 0 15px 0;
    line-height: 1.5;
}

.bangzhu-more {
    color: #2d68b2;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.bangzhu-item:hover .bangzhu-more {
    color: #1a4c8c;
}

/* 分页样式 - 紫色系 */
.bangzhu-pagination-wrapper {
    margin: 40px 0 60px;
    text-align: center;
}

.bangzhu-pagination {
    display: inline-block;
}

.bangzhu-pagination-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.bangzhu-pagination-list li {
    margin: 0;
    display: inline-block;
}

.bangzhu-pagination-list a,
.bangzhu-pagination-list strong {
    display: inline-block;
    min-width: 36px;
    padding: 8px 12px;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s;
    border: 1px solid #e0e0e0;
    color: #2d68b2;
    background: white;
}

.bangzhu-pagination-list a:hover {
    background: #f3eefd;
    border-color: #d0c4ff;
}

.bangzhu-pagination-list strong,
.bangzhu-pagination-list .active a {
    background: #2d68b2;
    color: white;
    border-color: #2d68b2;
    font-weight: 500;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .bangzhu-header {
        padding: 35px 0;
    }
    
    .bangzhu-header-content h1 {
        font-size: 2rem;
    }
    
    .bangzhu-header-content p {
        font-size: 1rem;
    }
    
    .bangzhu-top-bar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .bangzhu-search-wrapper {
        width: 100%;
    }
    
    .bangzhu-list {
        grid-template-columns: 1fr;
    }
    
    .bangzhu-subnav {
        overflow-x: auto;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }
    
    .bangzhu-subnav-item {
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .bangzhu-header {
        padding: 25px 0;
    }
    
    .bangzhu-header-content h1 {
        font-size: 1.8rem;
    }
    
    .bangzhu-content {
        padding: 15px;
    }
    
    .bangzhu-thumb-container {
        height: 150px;
    }
}


/*neirong*/

/* 基础样式 */
.neirong-wrapper {
    margin-top: 20px;
    padding: 0 20px;
    font-family: 'Helvetica Neue', Arial, 'PingFang SC', 'Microsoft YaHei', sans-serif;
    color: #333;
    line-height: 1.7;
}

.neirong-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px;
    background: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

/* 面包屑导航 */
.neirong-breadcrumb {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.neirong-breadcrumb a {
    color: #2d68b2;
    text-decoration: none;
    transition: color 0.2s;
}

.neirong-breadcrumb a:hover {
    color: #1a4c8c;
    text-decoration: underline;
}

/* 文章标题 */
.neirong-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0 0 20px 0;
    color: #222;
    line-height: 1.3;
}

/* 文章元信息 */
.neirong-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: #666;
}

.neirong-meta-item {
    display: flex;
    align-items: center;
}

/* 文章内容 */
.neirong-body {
    margin-bottom: 40px;
}

.neirong-body p {
    margin-bottom: 1.5em;
    font-size: 1rem;
}

.neirong-body img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 15px 0;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.neirong-body img:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* 图片放大效果 - Lightbox */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.lightbox-prev,
.lightbox-next {
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    margin: 0 20px;
    transition: background 0.3s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(0, 0, 0, 0.6);
}

/* 有序列表（默认数字） */
.neirong-body ol,
.article-detail-content ol {
    list-style-type: decimal;
    padding-left: 1.5em;
    margin: 0.5em 0;
}

/* 无序列表（默认圆点） */
.neirong-body ul,
.article-detail-content ul {
    list-style-type: disc;
    padding-left: 1.5em;
    margin: 0.5em 0;
}

/* 嵌套有序列表（子级样式） */
.neirong-body ol ol,
.article-detail-content ol ol {
    list-style-type: lower-alpha; /* a. b. c. */
}

.neirong-body ol ol ol,
.article-detail-content ol ol ol {
    list-style-type: lower-roman; /* i. ii. iii. */
}

/* 嵌套无序列表（子级样式） */
.neirong-body ul ul,
.article-detail-content ul ul {
    list-style-type: circle; /* ◦ 空心圆 */
}

.neirong-body ul ul ul,
.article-detail-content ul ul ul {
    list-style-type: square; /* ▪ 方块 */
}

/* 混合嵌套（ol 里面有 ul，或 ul 里面有 ol） - 两层嵌套 */
.neirong-body ol ul,
.article-detail-content ol ul {
    list-style-type: circle; /* ol > ul 用空心圆 */
}

.neirong-body ul ol,
.article-detail-content ul ol {
    list-style-type: lower-alpha; /* ul > ol 用字母 */
}

/* 混合嵌套 - 三层嵌套情况 */
/* ol > ul > ol */
.neirong-body ol ul ol,
.article-detail-content ol ul ol {
    list-style-type: lower-roman; /* i. ii. iii. */
}

/* ol > ul > ul */
.neirong-body ol ul ul,
.article-detail-content ol ul ul {
    list-style-type: square; /* ▪ 方块 */
}

/* ul > ol > ul */
.neirong-body ul ol ul,
.article-detail-content ul ol ul {
    list-style-type: square; /* ▪ 方块 */
}

/* ul > ol > ol */
.neirong-body ul ol ol,
.article-detail-content ul ol ol {
    list-style-type: lower-roman; /* i. ii. iii. */
}

/* 表格样式 */
.neirong-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
}

.neirong-body th,
.neirong-body td {
    padding: 8px 12px;
    border: 1px solid #ddd;
}

.neirong-body th {
    background-color: #f5f5f5;
    font-weight: 600;
}

/* 代码块样式 */
.neirong-body pre {
    background: #f8f8f8;
    border-radius: 4px;
    padding: 15px;
    overflow-x: auto;
    margin: 15px 0;
    font-family: Consolas, Monaco, 'Andale Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.5;
}

.neirong-body code {
    font-family: Consolas, Monaco, 'Andale Mono', monospace;
    font-size: 0.9rem;
    background: #f8f8f8;
    padding: 2px 4px;
    border-radius: 3px;
}

/* 引用样式 */
.neirong-body blockquote {
    border-left: 4px solid #2d68b2;
    background: #f9f9f9;
    padding: 10px 15px;
    margin: 15px 0;
    color: #555;
    font-style: italic;
}

/* 标签 */
.neirong-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
    font-size: 0.9rem;
}

.neirong-tags-label {
    color: #666;
}

.neirong-tag-item {
    display: inline-block;
    padding: 4px 12px;
    background: #3a86ff;
    color: #2d68b2;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s;
}

.neirong-tag-item:hover {
    background: #2d68b2;
    color: white;
}

/* 上一篇下一篇导航 */
.neirong-navigation {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #f0f0f0;
    padding-top: 30px;
}

.neirong-nav-prev,
.neirong-nav-next {
    flex: 1;
    min-width: 0;
}

.neirong-nav-next {
    text-align: right;
}

.neirong-nav-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
}

.neirong-nav-link {
    font-size: 1rem;
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.neirong-nav-link:hover {
    color: #2d68b2;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .neirong-wrapper {
        margin-top: 10px;
        padding: 0 15px;
    }
    
    .neirong-container {
        padding: 20px;
    }
    
    .neirong-title {
        font-size: 1.5rem;
    }
    
    .neirong-meta {
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .neirong-navigation {
        flex-direction: column;
        gap: 20px;
    }
    
    .neirong-nav-prev,
    .neirong-nav-next {
        width: 100%;
    }
    
    .neirong-nav-next {
        text-align: left;
    }
    
    .neirong-body ol,
    .neirong-body ul,
    .singlecon ol,
    .singlecon ul {
        padding-left: 1.2em;
    }
    
    .lightbox-prev,
    .lightbox-next {
        font-size: 1.5rem;
        padding: 8px 15px;
        margin: 0 10px;
    }
}

@media (max-width: 480px) {
    .neirong-wrapper {
        margin-top: 10px;
        padding: 0 10px;
    }
    
    .neirong-container {
        padding: 15px;
    }
    
    .neirong-title {
        font-size: 1.3rem;
    }
    
    .neirong-meta {
        font-size: 0.8rem;
    }
    
    .neirong-body p {
        font-size: 0.95rem;
    }
    
    .lightbox-content {
        max-width: 95%;
    }
    
    .lightbox-close {
        top: -30px;
        font-size: 1.5rem;
    }
}


/*diqu*/
     /* 游戏加速IP列表专用样式 */
        .diqu-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        /* 服务信息样式 */
        .diqu-service-info {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 25px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            text-align: center;
            font-size: 15px;
            line-height: 1.8;
            border: 1px solid #f0f0f0;
        }
        
        .diqu-service-info p {
            margin: 8px 0;
            color: #333;
            letter-spacing: 0.5px;
        }
        
        .diqu-service-info .diqu-title {
            font-size: 18px;
            font-weight: bold;
            color: #1a2a6c;
            margin-bottom: 15px;
        }
        
        .diqu-service-info .diqu-warning {
            color: #d32f2f;
            font-weight: 600;
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px dashed #eee;
        }
        
        .diqu-service-info .diqu-note {
            color: #2d68b2;
            font-weight: 500;
        }

        /* 表格控件样式 */
        .diqu-controls {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .diqu-search-box {
            flex-grow: 1;
            max-width: 400px;
        }
        
        .diqu-search-box input {
            width: 100%;
            padding: 12px 15px;
            border: none;
            border-radius: 30px;
            font-size: 1rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .diqu-filter-buttons {
            display: flex;
            gap: 10px;
        }
        
        .diqu-btn {
            padding: 10px 20px;
            background: #1a2a6c;
            color: white;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 600;
        }
        
        .diqu-btn:hover {
            background: #fdbb2d;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        
        /* 表格容器 */
        .diqu-table-wrapper {
            width: 100%;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            margin-bottom: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .diqu-table-container {
            background: white;
            border-radius: 10px;
            min-width: 800px;
        }
        
        .diqu-table {
            width: 100%;
            border-collapse: collapse;
        }
        
        .diqu-thead {
            background: #1a2a6c;
            color: white;
        }
        
        .diqu-th {
            padding: 15px;
            text-align: left;
            font-weight: 600;
            cursor: pointer;
            user-select: none;
            position: relative;
            white-space: nowrap;
        }
        
        .diqu-th:hover {
            background: #0d1a4d;
        }
        
        .diqu-th::after {
            content: '↕';
            position: absolute;
            right: 15px;
            opacity: 0.7;
        }
        
        .diqu-tbody tr {
            border-bottom: 1px solid #eee;
            transition: background 0.3s;
        }
        
        .diqu-tbody tr:hover {
            background: #f9f9f9;
        }
        
        .diqu-td {
            padding: 12px 15px;
            white-space: nowrap;
        }
        
        .diqu-region-header {
            background: #f0f5ff;
            font-weight: 600;
            cursor: pointer;
        }
        
        .diqu-region-header .diqu-td:first-child {
            display: flex;
            align-items: center;
        }
        
        .diqu-toggle-icon {
            margin-right: 10px;
            transition: transform 0.3s;
        }
        
        .diqu-toggle-icon.diqu-expanded {
            transform: rotate(90deg);
        }
        
        .diqu-city-row {
            display: table-row;
        }
        
        .diqu-city-row.diqu-hidden {
            display: none;
        }
        
        .diqu-footer {
            text-align: center;
            color: #666;
            margin-top: 30px;
            font-size: 0.9rem;
        }
        
        /* 移动端优化 */
        @media (max-width: 768px) {
            .diqu-container {
                padding: 15px;
            }
            
            .diqu-service-info {
                padding: 20px;
                font-size: 14px;
            }
            
            .diqu-controls {
                flex-direction: column;
            }
            
            .diqu-btn {
                padding: 8px 16px;
            }
        }
        
        
        
        
        
        /*xiazai*/
   /*xiazai*/

/* 下载页面主容器 */
.xiazai-container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 15px;
}

/* 页面标题 */
.xiazai-page-title {
    font-size: 28px;
    font-weight: 700;
    color: #202027;
    margin-bottom: 30px;
    text-align: center;
}

/* 下载卡片容器 */
.xiazai-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

/* 下载卡片 */
.xiazai-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 350px;
}

.xiazai-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* 卡片头部 */
.xiazai-card-header {
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* 图标样式 - 优化后 */
.xiazai-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: linear-gradient(135deg, #2d68b2 0%, #1a4c8c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

/* Font Awesome 图标颜色 */
.xiazai-card-icon i {
    color: white;
    font-size: 1.2em; /* 适当调整图标大小 */
}

.xiazai-card-title {
    flex: 1;
}

.xiazai-card-title h3 {
    margin: 0;
    font-size: 18px;
    color: #202027;
    font-weight: 600;
}

.xiazai-card-title p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #7a7e8c;
}

/* 卡片内容 */
.xiazai-card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.xiazai-card-description {
    font-size: 14px;
    color: #5a5e6b;
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

/* 优化段落样式 */
.description-item {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.description-item:before {
    content: "•";
    color: #2d68b2;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.description-item:last-child {
    margin-bottom: 0;
}

/* 卡片底部 */
.xiazai-card-footer {
    padding: 15px 20px;
    background: #f9f9fc;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.xiazai-version {
    font-size: 13px;
    color: #7a7e8c;
    display: flex;
    align-items: center;
}

.xiazai-download-btn {
    padding: 10px 24px;
    background: linear-gradient(230.52deg, #2d68b2 21.73%, #1a4c8c 72.58%);
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(124, 78, 255, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
}

.xiazai-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 104, 178, 0.3);
    background: linear-gradient(230.52deg, #1a4c8c 21.73%, #2d68b2 72.58%);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .xiazai-grid {
        grid-template-columns: 1fr;
    }
    
    .xiazai-page-title {
        font-size: 24px;
    }
    
    .xiazai-card {
        min-height: 320px;
    }
}

@media (max-width: 480px) {
    .xiazai-card-header {
        flex-direction: column;
        text-align: center;
    }
    
    .xiazai-card-icon {
        margin-bottom: 10px;
    }
    
    .xiazai-download-btn {
        padding: 8px 20px;
        min-width: 80px;
    }
}



/*教程中心*/
  /* 容器样式 */
.help-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 15px 60px;
}

/* 头部样式 */
.help-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.help-title {
    font-size: 2.2rem;
    color: #2d3748;
    margin-bottom: 10px;
    font-weight: 600;
}

.help-subtitle {
    font-size: 1rem;
    color: #718096;
}

/* 内容区域布局 */
.help-content {
    display: flex;
    gap: 30px;
}

/* 左侧导航栏 */
.help-sidebar {
    width: 280px;
    flex-shrink: 0;
    position: -webkit-sticky; /* 兼容Safari */
    position: sticky;
    top: 80px;
    align-self: flex-start;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    /* 恢复阴影效果 */
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.category-list {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}

.category-item {
    border-bottom: 1px solid #f0f2f5;
}

.category-item:last-child {
    border-bottom: none;
}

/* 栏目交互样式 */
.category-toggle {
    display: none;
}

.category-title {
  font-size: 16px;
    font-weight: 600;
    color: #3f3d59;
    padding: 12px 20px;
    cursor: pointer;
    display: grid;
    grid-template-columns: auto 1fr auto; /* 图标 | 文字 | 箭头 */
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
    user-select: none;
}

.category-title:hover {
    background-color: #f8fafc;
}

.category-arrow {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.category-toggle:checked + .category-title .category-arrow {
    transform: rotate(-135deg);
}

/* 文章列表样式 */
.article-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.category-toggle:checked ~ .article-list {
    max-height: 1000px;
}

.article-link {
    display: block;
    padding: 10px 20px 10px 35px;
    color: #4a5568;
    text-decoration: none;
    transition: all 0.2s;
    border-left: 3px solid transparent;
    cursor: pointer;
}

.article-link:hover {
    background-color: #f8fafc;
    color: #3a7bd5;
}

.article-link.active {
    border-left-color: #3a7bd5;
    background-color: #f0f7ff;
    color: #3a7bd5;
}

/* 右侧内容区 */
.help-main {
    flex: 1;
    min-width: 0;
}

/* 文章卡片样式 - 列表页 */
.article-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 25px;
    margin-bottom: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.article-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.article-card-header {
    margin-bottom: 15px;
}

.article-card-title {
    font-size: 1.4rem;
    margin: 0 0 10px 0;
    color: #2d3748;
    line-height: 1.3;
}

.article-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.article-card-title a:hover {
    color: #3a7bd5;
}

.article-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.85rem;
    color: #718096;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.article-card-excerpt {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.article-card-footer {
    text-align: right;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    background: #f0f7ff;
    color: #3a7bd5;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.read-more-btn:hover {
    background: #e1ecfa;
    color: #2a5db0;
}

/* 文章详情页样式 */
.article-detail {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 30px;
}

.article-detail-header {
    
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f2f5;
}

.article-detail-title {
    font-size: 1.8rem;
    margin: 0 0 15px 0;
    color: #2d3748;
    line-height: 1.3;
}

.article-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.9rem;
    color: #718096;
}

.article-detail-content {
    padding: 15px 0;
    line-height: 1.8;
    color: #4a5568;
}

.article-detail-content p {
    margin: 0 0 1.5em 0;
}

.article-detail-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/*.article-detail-content table {*/
/*    width: 100%;*/
/*    border-collapse: collapse;*/
/*    margin: 20px 0;*/
/*    font-size: 0.95rem;*/
/*    box-shadow: 0 1px 3px rgba(0,0,0,0.1);*/
/*}*/

/*.article-detail-content th,*/
/*.article-detail-content td {*/
/*    padding: 12px 15px;*/
/*    text-align: left;*/
/*    border: 1px solid #e2e8f0;*/
/*}*/

/*.article-detail-content th {*/
/*    background-color: #f8fafc;*/
/*    font-weight: 600;*/
/*    color: #4a5568;*/
/*}*/

/*.article-detail-content tr:nth-child(even) {*/
/*    background-color: #f8fafc;*/
/*}*/



/* 响应式设计 */
@media (max-width: 992px) {
    .help-content {
        flex-direction: column;
    }
    
    .help-sidebar {
        width: 100%;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .help-header {
        padding: 20px 0;
    }
    .help-content {
        flex-direction: column;
    }
    
    .help-sidebar {
        width: 100%;
        margin-bottom: 30px;
        position: static; /* 移动端取消粘性定位 */
        max-height: none;
        overflow-y: visible;
    }
    .help-title {
        font-size: 1.8rem;
    }
    
    .article-card {
        padding: 20px;
    }
    
    .article-card-title {
        font-size: 1.2rem;
    }
    
    .article-detail {
        padding: 20px;
    }
    
    .article-detail-title {
        font-size: 1.5rem;
    }
    
   
    .article-detail-content img {
        margin: 15px auto;
    }
}
/*教程内容图片放大样式*/

/* 图片放大功能样式 - 优化版 */
.img-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.img-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.img-overlay img {
    max-width: 90%;
    max-height: 90%;
    transform: scale(1);
    transition: transform 0.3s;
    cursor: zoom-out;
}

.img-overlay .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 30px;
    cursor: pointer;
    z-index: 10;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1;
}

.img-overlay .zoom-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 10;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    align-items: center;
}

.img-overlay .zoom-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    user-select: none;
    line-height: 1;
    font-family: 'FontAwesome';
}

.img-overlay .zoom-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.img-overlay .zoom-level {
    color: white;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    border-radius: 3px;
    margin-right: 10px;
    font-family: inherit;
}

.img-overlay .img-caption {
    position: absolute;
    bottom: 70px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    padding: 10px;
    background: rgba(0, 0, 0, 0.5);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.img-overlay .img-counter {
    position: absolute;
    top: 20px;
    left: 20px;
    color: white;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    border-radius: 3px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.img-overlay .nav-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    z-index: 10;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.img-overlay .nav-arrow {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    user-select: none;
    line-height: 1;
    font-family: 'FontAwesome';
}

.img-overlay .nav-arrow:hover {
    background: rgba(0, 0, 0, 0.5);
}

.img-overlay .grabbing {
    cursor: grabbing;
}



/* 为表格添加清晰的边框样式 */
.table.table-bordered {
  border-collapse: collapse; /* 确保边框合并 */
  width: 100%;
}

.table.table-bordered,
.table.table-bordered th,
.table.table-bordered td {
  border: 1px solid #dee2e6; /* 灰色边框 */
  padding: 6px 6px; /* 单元格内边距 */
      margin: 0 0 15px 0;
}

/* 表头样式 */
.table.table-bordered thead th {
  border-bottom-width: 2px; /* 加粗表头底部边框 */
  background-color: #f8f9fa; /* 浅灰色背景 */
}

/* 鼠标悬停效果 */
.table.table-bordered tbody tr:hover {
  background-color: rgba(0,0,0,.02); /* 轻微高亮 */
}

/* 斑马条纹效果 (可选) */
.table.table-bordered tbody tr:nth-child(odd) {
  background-color: rgba(0,0,0,.01);
}

/* 表格响应式容器 - 只在移动端生效 */
@media screen and (max-width: 768px) {
  .table {
    display: block;
    width: 100%;
    overflow-x: auto;
    /* 修正后的平滑滚动属性 */
    -webkit-overflow-scrolling: touch; /* iOS 5+ 平滑滚动 */
    scroll-behavior: smooth; /* 现代浏览器平滑滚动 */
  }
  
  /* 保持表格单元格不换行 */
  .table.table-bordered {
    white-space: nowrap;
  }
}



/* 针对 article-detail-content 下的 video */
.article-detail-content video {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: #000;
    width: 100%;
    aspect-ratio: 16/9;
    filter: contrast(1.05) saturate(1.1);
    
}

/* 传统浏览器的备用方案 */
@supports not (aspect-ratio: 16/9) {
    .article-detail-content .video-container {
        position: relative;
        padding-bottom: 56.25%; /* 16:9 */
        height: 0;
        overflow: hidden;
    }
    .article-detail-content .video-container video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}

/* 移动端优化 */
@media (max-width: 768px) {
    .article-detail-content video {
        border-radius: 4px;
    }
}

/* 深色模式适配 */
@media (prefers-color-scheme: dark) {
    .article-detail-content video {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
}

/* 只对非移动设备生效 - 控制面板悬停效果 */
@media (hover: hover) and (pointer: fine) {
    .article-detail-content video::-webkit-media-controls-panel {
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease-out, visibility 0.3s;
    }
    
    .article-detail-content video:hover::-webkit-media-controls-panel {
        opacity: 1;
        visibility: visible;
        transition: opacity 0.2s;
    }
}

/* 移动设备：始终显示控制面板 */
@media (hover: none) and (pointer: coarse) {
    .article-detail-content video::-webkit-media-controls-panel {
        opacity: 1 !important;
        visibility: visible !important;
    }
}





/*效果展示*/
 
/* 添加主容器样式，限制整体宽度 */
.zhanshi-main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* 产品演示中心样式 */
.zhanshi-container {
    font-family: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin: 0 auto;
}

.zhanshi-title {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.zhanshi-title h2 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #1a2a6c;
}

.zhanshi-title p {
    font-size: 1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* 产品网格容器 */
.zhanshi-grid-container {
    width: 100%;
    margin-bottom: 2.5rem;
}

/* 优化产品网格布局 */
.zhanshi-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

/* 优化产品项 - 协调的长宽比例 */
.zhanshi-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.2rem 0.8rem;
    background: #fff;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    border: 1px solid #eaeaea;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
    width: 130px;
    height: 140px;
    flex-shrink: 0;
    justify-content: space-between;
    box-sizing: border-box;
}

.zhanshi-item:hover {
    transform: translateY(-5px);
    border-color: #1a2a6c;
    box-shadow: 0 10px 25px rgba(26, 42, 108, 0.15);
}

/* 优化图标区域 */
.zhanshi-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 0.8rem;
    border-radius: 12px;
    object-fit: contain;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
   
}



/* 优化名称区域 */
.zhanshi-name {
    text-align: center;
    font-weight: 500;
    color: #333;
    font-size: 0.9rem;
    line-height: 1.4;
    word-break: break-word;
    width: 100%;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 2.8em;
}

/* 模态框样式 */
.zhanshi-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.zhanshi-modal-content {
    background: white;
    width: 100%;
    max-width: 1100px;
    border-radius: 12px;
    overflow: hidden;
    animation: zhanshi-modalFade 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

@keyframes zhanshi-modalFade {
    from { 
        opacity: 0; 
        transform: translateY(20px) scale(0.98); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0) scale(1); 
    }
}

.zhanshi-modal-header {
    padding: 0.5rem 2rem;
    background: linear-gradient(135deg, #1a2a6c, #004c98);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    flex-shrink: 0;
}

.zhanshi-modal-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #4facfe, #00f2fe);
}

.zhanshi-modal-title {
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.zhanshi-close-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    line-height: 1;
    flex-shrink: 0;
}

.zhanshi-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.zhanshi-modal-body {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
    -webkit-overflow-scrolling: touch;
}

/* 演示内容样式 */
.zhanshi-media-container {
    width: 100%;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eef2f7;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #000;
}

.zhanshi-media {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.zhanshi-description {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1rem;
    padding: 0 5px;
}

.zhanshi-description::before {
    content: '📋 ';
    font-size: 1.1em;
}

/* 移动端模态框优化 */
.zhanshi-modal-mobile-controls {
    display: none;
    padding: 1rem;
    background: #f8f9fa;
    border-top: 1px solid #eaeaea;
    text-align: center;
}

.zhanshi-modal-mobile-close {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background: linear-gradient(135deg, #1a2a6c, #004c98);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    max-width: 200px;
}

/* 底部说明区域 */
.zhanshi-footer-note {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #f0f0f0;
    text-align: center;
    color: #666;
}

.zhanshi-footer-note h3 {
    color: #1a2a6c;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.zhanshi-footer-note p {
    margin-bottom: 0.8rem;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.zhanshi-footer-note ul {
    text-align: left;
    display: inline-block;
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.zhanshi-footer-note li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.zhanshi-contact-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.6rem 1.8rem;
    background: linear-gradient(135deg, #1a2a6c, #004c98);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s;
}

.zhanshi-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 42, 108, 0.2);
}

/* 空状态提示 */
.zhanshi-empty {
    text-align: center;
    padding: 3rem 2rem;
    color: #666;
    width: 100%;
}

.zhanshi-empty p {
    margin-bottom: 1rem;
}

/* 模态框滑动关闭指示器 */
.zhanshi-swipe-indicator {
    display: none;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
}

/* 视频提示标签 */
.zhanshi-video-tip {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    z-index: 5;
}

/* 搜索框样式 */
.zhanshi-search-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 2.5rem auto;
    position: relative;
}

.zhanshi-search-box {
    width: 100%;
    padding: 0.9rem 1.2rem 0.9rem 3rem;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    font-size: 1rem;
    font-family: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    background: #f8f9fa;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    outline: none;
    box-sizing: border-box;
}

.zhanshi-search-box:focus {
    background: #fff;
    border-color: #1a2a6c;
    box-shadow: 0 5px 15px rgba(26, 42, 108, 0.1);
}

.zhanshi-search-icon {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 1.1rem;
    pointer-events: none;
    z-index: 2;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.zhanshi-search-box:focus + .zhanshi-search-icon {
    color: #1a2a6c;
    transform: translateY(-50%) scale(1.1);
}

.zhanshi-clear-search {
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #999;
    font-size: 1.2rem;
    cursor: pointer;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    z-index: 3;
}

.zhanshi-clear-search:hover {
    background: #e9ecef;
    color: #333;
    transform: translateY(-50%) scale(1.1);
}

.zhanshi-clear-search.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) scale(1);
}

.zhanshi-search-box:focus ~ .zhanshi-clear-search.show {
    color: #1a2a6c;
}

.zhanshi-search-tip {
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.5rem;
    padding: 0 1rem;
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s, transform 0.3s;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 8px 8px;
    padding: 0.8rem 1rem;
    pointer-events: none;
}

.zhanshi-search-tip.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* 搜索结果统计 */
.zhanshi-search-results {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin: 0.5rem auto 1.5rem auto;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border-radius: 6px;
    max-width: 500px;
    display: none;
    transition: opacity 0.3s;
}

.zhanshi-search-results.show {
    display: block;
    animation: zhanshi-fadeIn 0.3s ease;
}

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

/* 搜索结果高亮 */
.zhanshi-highlight {
    background: linear-gradient(120deg, rgba(79, 172, 254, 0.2), rgba(0, 242, 254, 0.2));
    padding: 0 2px;
    border-radius: 2px;
    font-weight: 500;
}

/* 无结果状态 */
.zhanshi-no-results {
    text-align: center;
    padding: 3rem 2rem;
    color: #666;
    width: 100%;
    display: none;
}

.zhanshi-no-results.show {
    display: block;
}

.zhanshi-no-results-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

/* 添加产品按钮 - 禁用样式 */
.zhanshi-add-item {
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    cursor: default;
    opacity: 0.7;
}

.zhanshi-add-item:hover {
    background: #f8f9fa;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.zhanshi-add-item .zhanshi-icon {
    background: #e9ecef;
}

.zhanshi-add-item .zhanshi-name {
    color: #666;
}

/* 响应式调整 */
@media (max-width: 1200px) {
    .zhanshi-main-container {
        max-width: 100%;
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .zhanshi-main-container {
        padding: 0 10px;
    }
    
    .zhanshi-container {
        padding: 1.25rem;
    }
    
    .zhanshi-grid {
        gap: 15px;
    }
    
    .zhanshi-item {
        width: 110px;
        height: 120px;
        padding: 0.9rem 0.6rem;
    }
    
    .zhanshi-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 0.6rem;
        padding: 8px;
    }
    
    .zhanshi-name {
        font-size: 0.85rem;
        height: 2.6em;
    }
    
    /* 移动端模态框优化 */
    .zhanshi-modal {
        padding: 10px;
        overflow-y: auto;
    }
    
    .zhanshi-modal-content {
        max-height: 85vh;
        margin-top: 10px;
        margin-bottom: 20px;
    }
    
    .zhanshi-modal-title {
        font-size: 1.1rem;
        gap: 8px;
    }
    
    .zhanshi-modal-body {
        padding: 1.2rem;
        overflow-y: auto;
    }
    
    .zhanshi-media-container {
        max-height: 350px;
        min-height: 200px;
    }
    
    .zhanshi-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .zhanshi-close-btn {
        width: 32px;
        height: 32px;
        font-size: 1.3rem;
    }
    
    /* 移动端显示底部关闭按钮 */
    .zhanshi-modal-mobile-controls {
        display: block;
        flex-shrink: 0;
    }
    
    /* 搜索框响应式 */
    .zhanshi-search-container {
        margin-bottom: 2rem;
        max-width: 400px;
    }
    
    .zhanshi-search-box {
        padding: 0.8rem 1rem 0.8rem 2.8rem;
        font-size: 0.95rem;
    }
    
    .zhanshi-search-icon {
        font-size: 1rem;
    }
    
    .zhanshi-clear-search {
        right: 1rem;
    }
    
    .zhanshi-search-tip {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 12px 12px 0 0;
        padding: 1rem;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
        max-height: 200px;
        overflow-y: auto;
    }
    
    .zhanshi-search-box:focus + .zhanshi-search-icon {
        transform: translateY(-50%) scale(1.05);
    }
    
    .zhanshi-clear-search:hover {
        transform: translateY(-50%) scale(1.05);
    }
    
    .zhanshi-swipe-indicator {
        display: block;
    }
}

@media (max-width: 480px) {
    .zhanshi-grid {
        gap: 12px;
    }
    
    .zhanshi-item {
        width: calc(50% - 16px);
        height: 110px;
        max-width: 120px;
        padding: 0.8rem 0.5rem;
    }
    
    .zhanshi-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 0.5rem;
        padding: 7px;
    }
    
    .zhanshi-name {
        font-size: 0.8rem;
        height: 2.4em;
    }
    
    /* 移动端防止产品超出容器 */
    .zhanshi-grid-container {
        padding: 0 5px;
        box-sizing: border-box;
    }
    
    /* 小屏手机模态框优化 */
    .zhanshi-modal {
        padding: 5px;
    }
    
    .zhanshi-modal-content {
        max-height: 90vh;
        border-radius: 10px;
    }
    
    .zhanshi-modal-title {
        font-size: 1rem;
    }
    
    .zhanshi-modal-body {
        padding: 1rem;
    }
    
    .zhanshi-media-container {
        max-height: 280px;
        border-radius: 6px;
        min-height: 180px;
    }
    
    .zhanshi-description {
        font-size: 0.9rem;
        padding: 0;
    }
    
    .zhanshi-modal-mobile-controls {
        padding: 0.8rem;
    }
    
    .zhanshi-modal-mobile-close {
        padding: 0.6rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .zhanshi-search-container {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .zhanshi-search-box {
        padding: 0.7rem 0.9rem 0.7rem 2.6rem;
        font-size: 0.9rem;
    }
    
    .zhanshi-clear-search {
        right: 0.9rem;
    }
    
    .zhanshi-search-icon {
        font-size: 1rem;
    }
    
    .zhanshi-clear-search {
        font-size: 1.1rem;
        width: 22px;
        height: 22px;
    }
}

/* 小屏幕手机特别优化 */
@media (max-width: 360px) {
    .zhanshi-grid {
        gap: 12px;
    }
    
    .zhanshi-item {
        width: calc(50% - 10px);
        height: 100px;
        padding: 0.7rem 0.4rem;
    }
    
    .zhanshi-icon {
        width: 48px;
        height: 48px;
        padding: 6px;
    }
    
    .zhanshi-name {
        font-size: 0.75rem;
        height: 2.2em;
    }
    
    /* 超小屏模态框优化 */
    .zhanshi-modal-content {
        max-height: 95vh;
    }
    
    .zhanshi-modal-header {
        padding: 0.8rem 0.9rem;
    }
    
    .zhanshi-modal-title {
        font-size: 0.95rem;
    }
    
    .zhanshi-modal-body {
        padding: 0.9rem;
    }
    
    .zhanshi-media-container {
        max-height: 220px;
        min-height: 150px;
    }
    
    .zhanshi-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .zhanshi-modal-mobile-controls {
        padding: 0.7rem;
    }
    
    .zhanshi-modal-mobile-close {
        padding: 0.6rem 1.2rem;
        font-size: 0.95rem;
    }
}

/* 平板设备优化 */
@media (min-width: 769px) and (max-width: 1024px) {
    .zhanshi-modal {
        padding: 15px;
    }
    
    .zhanshi-modal-content {
        max-width: 95%;
        max-height: 85vh;
    }
    
    .zhanshi-media-container {
        max-height: 400px;
    }
}

/* 横屏模式优化 */
@media (max-height: 600px) and (orientation: landscape) {
    .zhanshi-modal-content {
        max-height: 85vh;
        width: 90%;
    }
    
    .zhanshi-media-container {
        max-height: 250px;
    }
}




/*软路由*/

/* 软路由展示模板样式 - 最终优化版 */
.yw-soft-router-section {
  width: 100%;
  padding: 30px 0 50px;
  background: #f8fafd;
  box-sizing: border-box;
}

.yw-soft-router-section .yw-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 标题部分 */
.yw-soft-router-section .yw-section-header {
  text-align: center;
  margin-bottom: 30px;
}

.yw-soft-router-section .yw-section-header .yw-section-title {
  font-size: 36px;
  font-family: "Poppins-Medium";
  font-weight: 600;
  color: #223265;
  line-height: 1.2;
  margin-bottom: 10px;
}

.yw-soft-router-section .yw-section-header .yw-section-subtitle {
  font-size: 16px;
  font-family: "Poppins-Medium";
  font-weight: 500;
  color: #223265;
  line-height: 1.6;
  opacity: 0.8;
}

/* 选项卡导航 - 150x150图片 */
.yw-soft-router-section .yw-router-tabs .yw-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.yw-soft-router-section .yw-router-tabs .yw-tabs-nav .yw-tab-btn {
  flex: 0 0 auto;
  width: 200px;
  background: #fff;
  border: 2px solid #e6e9f0;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
  text-align: center;
  position: relative;
  z-index: 1; /* 确保在移动端不会重叠 */
}

.yw-soft-router-section .yw-router-tabs .yw-tabs-nav .yw-tab-btn:hover {
  border-color: #2d68b2;
  box-shadow: 0 8px 20px rgba(45, 104, 178, 0.1);
  /* 移动端移除transform效果 */
}

/* PC端保留上移效果，移动端移除 */
@media (min-width: 769px) {
  .yw-soft-router-section .yw-router-tabs .yw-tabs-nav .yw-tab-btn:hover {
    transform: translateY(-3px);
  }
}

.yw-soft-router-section .yw-router-tabs .yw-tabs-nav .yw-tab-btn.yw-active {
  border-color: #2d68b2;
  background: #fff;
  box-shadow: 0 8px 20px rgba(45, 104, 178, 0.15);
  position: relative;
}

/* PC端激活状态上移效果 */
@media (min-width: 769px) {
  .yw-soft-router-section .yw-router-tabs .yw-tabs-nav .yw-tab-btn.yw-active {
    transform: translateY(-3px);
  }
}

/* 移除::after样式 */
/* .yw-soft-router-section .yw-router-tabs .yw-tabs-nav .yw-tab-btn.yw-active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: #2d68b2;
  border-radius: 0 0 10px 10px;
} */

/* 150x150图片容器 */
.yw-soft-router-section .yw-router-tabs .yw-tabs-nav .yw-tab-btn .yw-tab-image {
  width: 150px;
  height: 150px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 10px;
  background: #f8fafd;
  border: 1px solid #e6e9f0;
}

.yw-soft-router-section .yw-router-tabs .yw-tabs-nav .yw-tab-btn .yw-tab-image .yw-router-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.yw-soft-router-section .yw-router-tabs .yw-tabs-nav .yw-tab-btn:hover .yw-tab-image .yw-router-thumb {
  transform: scale(1.05);
}

.yw-soft-router-section .yw-router-tabs .yw-tabs-nav .yw-tab-btn .yw-tab-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.yw-soft-router-section .yw-router-tabs .yw-tabs-nav .yw-tab-btn .yw-tab-info .yw-tab-name {
  font-size: 18px;
  font-family: "Poppins-SemiBold";
  font-weight: 600;
  color: #223265;
  transition: color 0.3s ease;
}

.yw-soft-router-section .yw-router-tabs .yw-tabs-nav .yw-tab-btn .yw-tab-info .yw-tab-price {
  font-size: 16px;
  font-family: "Poppins-SemiBold";
  font-weight: 600;
  color: #2d68b2;
  transition: color 0.3s ease;
}

.yw-soft-router-section .yw-router-tabs .yw-tabs-nav .yw-tab-btn.yw-active .yw-tab-info .yw-tab-name,
.yw-soft-router-section .yw-router-tabs .yw-tabs-nav .yw-tab-btn.yw-active .yw-tab-info .yw-tab-price {
  color: #2d68b2;
}

/* 选项卡内容 */
.yw-soft-router-section .yw-router-tabs .yw-tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.yw-soft-router-section .yw-router-tabs .yw-tab-content.yw-active {
  display: block;
}

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

/* 内容区域 - 优化左右比例 */
.yw-soft-router-section .yw-router-tabs .yw-tab-content .yw-router-content {
  display: flex;
  gap: 40px;
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* 左侧信息区域 - 减少宽度 */
.yw-soft-router-section .yw-router-tabs .yw-tab-content .yw-router-content .yw-router-info {
  flex: 0 0 40%;
  min-width: 0;
}

.yw-soft-router-section .yw-router-tabs .yw-tab-content .yw-router-content .yw-router-info .yw-router-badge {
  display: inline-block;
  background: #2d68b2;
  color: #fff;
  font-size: 14px;
  font-family: "Poppins-SemiBold";
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 16px;
  margin-bottom: 15px;
}

.yw-soft-router-section .yw-router-tabs .yw-tab-content .yw-router-content .yw-router-info .yw-router-title {
  font-size: 28px;
  font-family: "Poppins-Bold";
  font-weight: 700;
  color: #223265;
  line-height: 1.3;
  margin-bottom: 15px;
}

.yw-soft-router-section .yw-router-tabs .yw-tab-content .yw-router-content .yw-router-info .yw-router-description {
  font-size: 15px;
  font-family: "Poppins-Regular";
  color: #666;
  line-height: 1.6;
  margin-bottom: 12px;
}

.yw-soft-router-section .yw-router-tabs .yw-tab-content .yw-router-content .yw-router-info .yw-router-description:last-of-type {
  margin-bottom: 25px;
}

/* 特性列表 */
.yw-soft-router-section .yw-router-tabs .yw-tab-content .yw-router-content .yw-router-info .yw-router-features {
  margin-bottom: 25px;
}

.yw-soft-router-section .yw-router-tabs .yw-tab-content .yw-router-content .yw-router-info .yw-router-features .yw-features-title {
  font-size: 16px;
  font-family: "Poppins-SemiBold";
  font-weight: 600;
  color: #223265;
  margin-bottom: 12px;
}

.yw-soft-router-section .yw-router-tabs .yw-tab-content .yw-router-content .yw-router-info .yw-router-features .yw-features-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.yw-soft-router-section .yw-router-tabs .yw-tab-content .yw-router-content .yw-router-info .yw-router-features .yw-features-list .yw-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.yw-soft-router-section .yw-router-tabs .yw-tab-content .yw-router-content .yw-router-info .yw-router-features .yw-features-list .yw-feature-item i {
  color: #2d68b2;
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

.yw-soft-router-section .yw-router-tabs .yw-tab-content .yw-router-content .yw-router-info .yw-router-features .yw-features-list .yw-feature-item span {
  font-size: 13px;
  font-family: "Poppins-Regular";
  color: #666;
  line-height: 1.5;
}

/* 按钮区域 */
.yw-soft-router-section .yw-router-tabs .yw-tab-content .yw-router-content .yw-router-info .yw-router-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.yw-soft-router-section .yw-router-tabs .yw-tab-content .yw-router-content .yw-router-info .yw-router-actions .yw-price-btn {
  background: #2d68b2;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 18px;
  font-family: "Poppins-Bold";
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.yw-soft-router-section .yw-router-tabs .yw-tab-content .yw-router-content .yw-router-info .yw-router-actions .yw-price-btn:hover {
  background: #1a4c8c;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(45, 104, 178, 0.3);
}

.yw-soft-router-section .yw-router-tabs .yw-tab-content .yw-router-content .yw-router-info .yw-router-actions .yw-price-btn .yw-price-label {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.9;
}

.yw-soft-router-section .yw-router-tabs .yw-tab-content .yw-router-content .yw-router-info .yw-router-actions .yw-price-btn .yw-price-unit {
  font-size: 12px;
  font-weight: 500;
}

.yw-soft-router-section .yw-router-tabs .yw-tab-content .yw-router-content .yw-router-info .yw-router-actions .yw-detail-btn,
.yw-soft-router-section .yw-router-tabs .yw-tab-content .yw-router-content .yw-router-info .yw-router-actions .yw-buy-btn {
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-family: "Poppins-SemiBold";
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* 查看详情按钮样式 - 超链接版本 */
.yw-soft-router-section .yw-router-tabs .yw-tab-content .yw-router-content .yw-router-info .yw-router-actions .yw-detail-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-family: "Poppins-SemiBold";
  font-weight: 600;
  text-decoration: none;
  background: transparent;
  border: 2px solid #2d68b2;
  color: #2d68b2;
  cursor: pointer;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.yw-soft-router-section .yw-router-tabs .yw-tab-content .yw-router-content .yw-router-info .yw-router-actions .yw-detail-btn:hover {
  background: rgba(45, 104, 178, 0.1);
  text-decoration: none;
}

.yw-soft-router-section .yw-router-tabs .yw-tab-content .yw-router-content .yw-router-info .yw-router-actions .yw-buy-btn {
  background: #2d68b2;
  border: 2px solid #2d68b2;
  color: #fff;
}

.yw-soft-router-section .yw-router-tabs .yw-tab-content .yw-router-content .yw-router-info .yw-router-actions .yw-buy-btn:hover {
  background: #1a4c8c;
  border-color: #1a4c8c;
}

/* 右侧图片区域 - 增加宽度 */
.yw-soft-router-section .yw-router-tabs .yw-tab-content .yw-router-content .yw-router-image {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.yw-soft-router-section .yw-router-tabs .yw-tab-content .yw-router-content .yw-router-image .yw-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 1000px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
  background: #f8fafd;
}

.yw-soft-router-section .yw-router-tabs .yw-tab-content .yw-router-content .yw-router-image .yw-image-container .yw-product-image {
  width: 100%;
  height: 100%;
  max-height: 600px;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.yw-soft-router-section .yw-router-tabs .yw-tab-content .yw-router-content .yw-router-image .yw-image-container .yw-product-image:hover {
  transform: scale(1.02);
}

.yw-soft-router-section .yw-router-tabs .yw-tab-content .yw-router-content .yw-router-image .yw-image-caption {
  text-align: center;
  margin-top: 15px;
}

.yw-soft-router-section .yw-router-tabs .yw-tab-content .yw-router-content .yw-router-image .yw-image-caption p {
  font-size: 14px;
  font-family: "Poppins-Medium";
  color: #666;
  font-style: italic;
}

/* 响应式设计 */
@media (max-width: 1200px) {
  .yw-soft-router-section .yw-router-tabs .yw-tab-content .yw-router-content {
    gap: 30px;
  }
  
  .yw-soft-router-section .yw-router-tabs .yw-tab-content .yw-router-content .yw-router-info {
    flex: 0 0 45%;
  }
}

@media (max-width: 992px) {
  .yw-soft-router-section {
    padding: 25px 0 40px;
  }
  
  .yw-soft-router-section .yw-section-header {
    margin-bottom: 25px;
  }
  
  .yw-soft-router-section .yw-section-header .yw-section-title {
    font-size: 30px;
  }
  
  .yw-soft-router-section .yw-router-tabs .yw-tab-content .yw-router-content {
    flex-direction: column;
    gap: 25px;
  }
  
  .yw-soft-router-section .yw-router-tabs .yw-tab-content .yw-router-content .yw-router-info {
    flex: 1;
    width: 100%;
  }
  
  .yw-soft-router-section .yw-router-tabs .yw-tabs-nav {
    gap: 10px;
  }
  
  .yw-soft-router-section .yw-router-tabs .yw-tabs-nav .yw-tab-btn {
    width: 180px;
    padding: 15px;
  }
  
  .yw-soft-router-section .yw-router-tabs .yw-tabs-nav .yw-tab-btn .yw-tab-image {
    width: 130px;
    height: 130px;
  }
  
  .yw-soft-router-section .yw-router-tabs .yw-tabs-nav .yw-tab-btn .yw-tab-info .yw-tab-name {
    font-size: 16px;
  }
  
  .yw-soft-router-section .yw-router-tabs .yw-tabs-nav .yw-tab-btn .yw-tab-info .yw-tab-price {
    font-size: 14px;
  }
  
  .yw-soft-router-section .yw-router-tabs .yw-tab-content .yw-router-content .yw-router-image .yw-image-container {
    min-height: 300px;
    max-height: 400px;
  }
}

@media (max-width: 768px) {
  .yw-soft-router-section {
    padding: 20px 0 30px;
  }
  
  .yw-soft-router-section .yw-container {
    padding: 0 15px;
  }
  
  .yw-soft-router-section .yw-section-header {
    margin-bottom: 20px;
  }
  
  .yw-soft-router-section .yw-section-header .yw-section-title {
    font-size: 26px;
  }
  
  .yw-soft-router-section .yw-section-header .yw-section-subtitle {
    font-size: 14px;
  }
  
  .yw-soft-router-section .yw-router-tabs .yw-tabs-nav {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 10px;
    margin-bottom: 15px;
    flex-wrap: nowrap;
  }
  
  .yw-soft-router-section .yw-router-tabs .yw-tabs-nav .yw-tab-btn {
    flex: 0 0 auto;
  }
  
  .yw-soft-router-section .yw-router-tabs .yw-tab-content .yw-router-content {
    padding: 20px;
  }
  
  .yw-soft-router-section .yw-router-tabs .yw-tab-content .yw-router-content .yw-router-info .yw-router-title {
    font-size: 22px;
  }
  
  .yw-soft-router-section .yw-router-tabs .yw-tab-content .yw-router-content .yw-router-info .yw-router-description {
    font-size: 14px;
  }
  
  .yw-soft-router-section .yw-router-tabs .yw-tab-content .yw-router-content .yw-router-info .yw-router-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .yw-soft-router-section .yw-router-tabs .yw-tab-content .yw-router-content .yw-router-info .yw-router-actions .yw-price-btn,
  .yw-soft-router-section .yw-router-tabs .yw-tab-content .yw-router-content .yw-router-info .yw-router-actions .yw-detail-btn,
  .yw-soft-router-section .yw-router-tabs .yw-tab-content .yw-router-content .yw-router-info .yw-router-actions .yw-buy-btn {
    width: 100%;
    justify-content: center;
  }
  
    /* 移除图片容器的高度限制 */
  .yw-soft-router-section .yw-router-tabs .yw-tab-content .yw-router-content .yw-router-image .yw-image-container {
    min-height: auto !important;
    max-height: none !important;
    height: auto !important;
  }
  
  /* 让图片自适应 */
  .yw-soft-router-section .yw-router-tabs .yw-tab-content .yw-router-content .yw-router-image .yw-image-container .yw-product-image {
    max-height: none !important;
    height: auto !important;
    width: 100% !important;
    object-fit: contain !important;
  }
  
  /* 确保图片区域不会压缩内容 */
  .yw-soft-router-section .yw-router-tabs .yw-tab-content .yw-router-content .yw-router-image {
    flex: none !important;
    width: 100% !important;
  }
}

@media (max-width: 576px) {
  .yw-soft-router-section .yw-section-header .yw-section-title {
    font-size: 22px;
  }
  
  .yw-soft-router-section .yw-router-tabs .yw-tab-content .yw-router-content .yw-router-info .yw-router-title {
    font-size: 20px;
  }
  
  .yw-soft-router-section .yw-router-tabs .yw-tab-content .yw-router-content .yw-router-info .yw-router-actions .yw-price-btn {
    font-size: 16px;
    padding: 10px 16px;
  }
  
  .yw-soft-router-section .yw-router-tabs .yw-tabs-nav .yw-tab-btn {
    width: 160px;
    padding: 12px;
  }
  
  .yw-soft-router-section .yw-router-tabs .yw-tabs-nav .yw-tab-btn .yw-tab-image {
    width: 120px;
    height: 120px;
  }
}