/* 基础body样式 */
body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background-image: linear-gradient(120deg, #0a5dd3, #24a7ff);
    background-attachment: fixed;
    min-height: 100vh;
}

/* 基础样式 */
.header {
    background-image: linear-gradient(120deg, #0a5dd3, #24a7ff);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header.scrolled {
    background-color: rgba(10, 93, 211, 0.95);
    padding: 10px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo 样式 */
.header-logo {
    display: inline-block;
    height: 40px;
    min-width: 0;
    z-index: 1001;
}

.header-logo img {
    height: 100%;
    width: auto;
}

/* 导航菜单 */
.header-nav {
    display: flex;
    align-items: center;
}

.header-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-menu-item {
    margin: 0 10px;
}

.header-menu-item a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 12px;
    display: block;
    transition: all 0.3s ease;
}

.header-menu-item a:hover {
    opacity: 0.8;
}

.header-menu-item.header-active a {
    font-weight: 600;
    position: relative;
}

.header-menu-item.header-active a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 12px;
    right: 12px;
    height: 2px;
    background-color: #fff;
}

/* 操作按钮 */
.header-actions {
    display: flex;
    align-items: center;
    margin-left: 20px;
    z-index: 1001;
}

.header-btn {
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    margin-left: 10px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.header-register {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.header-login {
    background-color: #fff;
    color: #0a5dd3;
}

.header-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* 移动端菜单按钮 */
.header-toggle {
    display: none;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    position: relative;
    cursor: pointer;
    padding: 0;
    margin-left: 15px;
    z-index: 1002;
    -webkit-tap-highlight-color: transparent;
}

.header-toggle::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
}

.header-toggle-line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
    transform-origin: center;
    pointer-events: none;
}

.header-toggle-line:nth-child(1) {
    top: 8px;
}

.header-toggle-line:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.header-toggle-line:nth-child(3) {
    bottom: 8px;
}

.header-toggle.is-active .header-toggle-line:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

.header-toggle.is-active .header-toggle-line:nth-child(2) {
    opacity: 0;
}

.header-toggle.is-active .header-toggle-line:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

/* 响应式设计 */
@media (max-width: 992px) {
    .header-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: rgba(10, 93, 211, 0.98);
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        transform: translateY(-150%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
    }
    
    .header.scrolled .header-nav {
        top: 60px;
    }
    
    .header-nav.header-show {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .header-menu {
        flex-direction: column;
    }
    
    .header-menu-item {
        margin: 10px 0;
    }
    
    .header-toggle {
        display: block;
    }
    
    .header-actions {
        margin-left: auto;
        margin-right: 15px;
    }
    
    .header-logo img {
    height: 100%;
        width: 150px;
}
}

/* 主内容区域 */
.main-content {
    padding-top: 80px;
    min-height: calc(100vh - 80px);
}

/*头部结束*/


/* Hero 基础样式 */
.hero {
    padding: 120px 0 100px;
    background: linear-gradient(120deg, #0a5dd3, #24a7ff);
    color: #fff;
    margin-top: 80px;
    overflow: hidden;
}

.hero-container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}

.hero-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

/* 文字内容部分 */
.hero-text {
    flex: 0 1 400px;
    min-width: 300px;
    padding-right: 30px;
}

.hero-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 35px;
    line-height: 1.6;
}

/* 图片组合部分 - 电脑端样式 */
.hero-image {
    flex: 1;
    min-width: 300px;
    max-width: 700px;
    position: relative;
    height: 400px;
    margin-top: -30px;
}

.device-combo {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.windows-image {
    width: 540px;
    max-width: 100%;
    height: 368px;
    object-fit: contain;
    z-index: 2;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.android-image {
    width: 240px;
    max-width: 45%;
    height: 427px;
    object-fit: contain;
    z-index: 3;
    margin-left: -80px;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}
.socks5-image {
    width: 300px;
 
    object-fit: contain;
    position: absolute; /* 关键修改！ */
    left: 200px; /* 从Windows右侧开始定位 */
    bottom: 0; /* 与现有图片底部对齐 */
    z-index: 3; /* 介于Windows(2)和Android(4)之间 */
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    transform: translateY(0); /* 悬停动画准备 */
}

/* 悬停效果 */
.device-combo:hover .windows-image {
    transform: translateY(-5px);
}
.device-combo:hover .socks5-image {
    transform: translateY(-5px);
}
.device-combo:hover .android-image {
    transform: translateY(-5px);
}

/* 按钮样式 */
.hero-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    background-color: #fff;
    color: #0a5dd3;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 9px 18px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    background-color: #f8f8f8;
}

/* 响应式设计 - 移动端优化 */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text {
        order: 1;
        flex-basis: auto;
        width: 100%;
        padding-right: 0;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .hero-image {
        order: 2;
        height: 350px; /* 降低容器高度 */
        width: 100%;
        max-width: 540px;
        margin: 0 auto;
        margin-top: 0; /* 重置上边距 */
    }
    
    .device-combo {
        justify-content: center; /* 居中显示 */
    }
    
    .windows-image {
        width: 65%;
        height: auto;
        max-height: 280px; /* 限制最大高度 */
    }
    
    .android-image {
        width: 35%;
        height: auto;
        max-height: 380px; /* 限制最大高度 */
        margin-left: -15%; /* 动态重叠量 */
    }
     .socks5-image {
        width: 40%; /* 介于Windows(65%)和Android(35%)之间 */
        height: auto;
        left: 45%; /* 基于父容器百分比定位 */
        bottom: 0;
        max-height: 320px; /* 限制最大高度 */
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 80px;
        margin-top: 60px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-image {
        height: 320px;
    }
    
    .windows-image {
        max-height: 260px;
    }
    
    .android-image {
        max-height: 350px;
    }
    .socks5-image {
        width: 45%;
        left: 40%;
        max-height: 300px;
    }
}

@media (max-width: 576px) {
    .hero-image {
        height: 280px;
    }
    
    .windows-image {
        width: 70%;
        max-height: 220px;
    }
    
    .android-image {
        width: 30%;
        max-height: 300px;
        margin-left: -10%;
    }
    .socks5-image {
        width: 50%;
        left: 35%;
        max-height: 260px;
    }
}

@media (max-width: 480px) {
    .hero-image {
        height: 250px;
    }
    
    .windows-image {
        max-height: 200px;
    }
    
    .android-image {
        max-height: 270px;
    }
    .socks5-image {
        width: 55%;
        left: 30%;
        max-height: 230px;
    }
}





/*hero结束*/

/* 产品特点区块 */
.features-section {
    padding: 80px 0;
    background-color: #f8fafc;
    text-align: center;
}

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

/* 标题样式 */
.features-header {
    margin-bottom: 60px;
}

.features-title {
    font-size: 28px;
    font-weight: 700;
    color: #2F3C52;
    margin-bottom: 10px;
}

.features-subtitle {
    font-size: 18px;
    color: #7D8EA8;
    position: relative;
    padding-bottom: 20px;
}

.features-subtitle::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 2px;
    background-color: #D9E3F2;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* 特点卡片网格布局 */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* 单个特点卡片 */
.feature-card {
    background: white;
    border-radius: 10px;
    padding: 40px 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

/* 图标样式 */
.feature-icon {
    margin-bottom: 20px;
}

.feature-icon-trophy,
.feature-icon-cog,
.feature-icon-like {
    display: inline-block;
    font-size: 50px;
    color: #3195ff;
    text-shadow: 0 5px 15px rgba(49, 149, 255, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-trophy,
.feature-card:hover .feature-icon-cog,
.feature-card:hover .feature-icon-like {
    transform: scale(1.1);
    text-shadow: 0 8px 20px rgba(49, 149, 255, 0.4);
}

/* 文字内容 */
.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: #4a4a4a;
    margin-bottom: 15px;
}

.feature-desc {
    font-size: 15px;
    color: #707070;
    line-height: 1.6;
    opacity: 0.9;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .features-section {
        padding: 80px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
}

/*首页功能介绍结束*/


/* CTA区块基础样式 */
.cta-section {
    padding: 60px 0;
    background-color: #ededf1;
    position: relative;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* 文字内容区域 */
.cta-content {
    flex: 1;
    min-width: 300px;
}

.cta-title {
    font-size: 28px;
    font-weight: 400;
    color: #8493b4;
    margin-bottom: 10px;
    line-height: 1.3;
}

.cta-subtitle {
    font-size: 18px;
    font-weight: 300;
    color: #666;
    line-height: 1.5;
}

/* 按钮区域 */
.cta-action {
    flex: 0 0 auto;
}

.cta-button {
    display: inline-block;
    padding: 12px 32px;
    background-color: #3195ff;
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(49, 149, 255, 0.25);
    border: none;
    cursor: pointer;
    text-align: center;
    min-width: 180px;
}

.cta-button:hover {
    background-color: #1a7de8;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(49, 149, 255, 0.35);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .cta-action {
        width: 100%;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

/*首页footer*/

/* 页脚基础样式 */
.site-footer {
    background-color: #2a2e35;
    color: #ffffff;
    padding: 60px 0 30px;
    font-size: 15px;
    line-height: 1.6;
}

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

/* 页脚网格布局 */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

/* 页脚列样式 */
.footer-col {
    margin-bottom: 20px;
}

/* 页脚标题 */
.footer-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #3195ff;
}

/* 页脚菜单 */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

/* 页脚链接 */
.footer-link {
    color: #bbbbbb;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: #ffffff;
}

/* 品牌信息 */
.footer-brand {
    max-width: 250px;
}

.footer-text {
    color: #bbbbbb;
    margin: 10px 0;
}

/* 免责声明 */
.footer-disclaimer {
    border-top: 1px solid #444;
    padding-top: 30px;
    margin-top: 30px;
}

.footer-disclaimer-text {
    color: #999;
    font-size: 14px;
    line-height: 1.7;
}

/* 公司简介 */
.footer-company-intro {
    border-top: 1px solid #444;
    padding-top: 20px;
    margin-top: 20px;
}

.footer-intro-heading {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-intro-text {
    color: #bbbbbb;
    font-size: 14px;
    line-height: 1.6;
}

/* 公司信息 */
.footer-company-info {
    border-top: 1px solid #444;
    padding-top: 20px;
    margin-top: 20px;
    text-align: center;
}

.footer-info-text {
    color: #bbbbbb;
    font-size: 14px;
    line-height: 1.5;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-disclaimer-text,
    .footer-intro-text,
    .footer-info-text {
        font-size: 13px;
    }
    
    .footer-company-info {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-info-text {
        font-size: 12px;
    }
}

/*在线客服*/
/* 右侧浮动工具栏基础样式 */
.float-sidebar {
    position: fixed;
    right: 20px;
    bottom: 100px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

/* 每个浮动项基础样式 */
.sidebar-item {
    position: relative;
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sidebar-item:hover {
    transform: translateX(-5px);
}

/* 图标基础样式 */
.sidebar-icon {
    font-size: 24px;
    color: #666;
    transition: all 0.3s ease;
}

.sidebar-item:hover .sidebar-icon {
    color: #fff;
}

/* 二维码提示框样式 */
.sidebar-tooltip {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    width: 180px;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    text-align: center;
}

.sidebar-tooltip img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 10px;
}

.sidebar-tooltip p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.sidebar-item:hover .sidebar-tooltip {
    opacity: 1;
    visibility: visible;
    right: 70px;
}

/* 工具提示内容区域 */
.tooltip-content {
    margin-top: 10px;
}

.tooltip-content p {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
    font-weight: bold;
}

/* QQ咨询按钮样式 */
.qq-consult {
    display: inline-block;
    padding: 6px 12px;
    background-color: #12b7f5;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s;
}

.qq-consult:hover {
    background-color: #0e9bd4;
}

/* 返回顶部文字样式 */
.sidebar-text {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: #3195ff;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
}

.sidebar-item:hover .sidebar-text {
    opacity: 1;
    right: 70px;
}

/* 不同服务的悬停颜色 */
.qq-service:hover {
    background: #12b7f5;
}

.wechat-service:hover {
    background: #07c160;
}

.back-to-top:hover {
    background: #666;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .float-sidebar {
        right: 10px;
        bottom: 80px;
    }
    
    .sidebar-item {
        width: 45px;
        height: 45px;
    }
    
    .sidebar-tooltip {
        width: 160px;
        right: 55px;
    }
    
    .sidebar-item:hover .sidebar-tooltip {
        right: 60px;
    }
    
    .sidebar-icon {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .float-sidebar {
        bottom: 60px;
    }
    
    .sidebar-tooltip {
        width: 140px;
        padding: 10px;
    }
    
    .tooltip-content p {
        font-size: 14px;
    }
    
    .qq-consult {
        padding: 4px 8px;
        font-size: 12px;
    }
}


/*price*/

/* ===== 价格套餐区块 ===== */
.price-section {
  padding: 80px 0;
  background-color: #ffffff;
}

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

/* 标题样式 */
.price-header {
  text-align: center;
  margin-bottom: 50px;
}

.price-title {
  font-size: 28px;
  font-weight: 700;
  color: #2F3C52;
  margin-bottom: 12px;
}

.price-subtitle {
  font-size: 16px;
  color: #7D8EA8;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.price-subtitle:after {
  content: "";
  position: absolute;
  width: 60px;
  height: 2px;
  background-color: #D9E3F2;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* 套餐分类标签 */
.price-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  gap: 10px;
}

.price-tab {
  padding: 8px 20px;
  background: #f5f7fa;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #7D8EA8;
  cursor: pointer;
  transition: all 0.3s ease;
}

.price-tab.active {
  background: #3195ff;
  color: white;
}

.price-tab:hover:not(.active) {
  background: #e1e8f0;
}

/* 价格卡片网格 */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

/* 卡片容器 */
.price-card {
  position: relative;
  height: 100%;
}

/* 推荐标签 */
.price-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background-color: #3195ff;
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
}

/* 卡片内部 */
.price-card-inner {
  background-color: #fcfcfd;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(224, 224, 232, 0.5);
  transition: all 0.3s ease;
}

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

/* 推荐卡片特殊样式 */
.price-card-featured .price-card-inner {
  border: 2px solid #3195ff;
}

/* 卡片标题 */
.price-card-title {
  font-size: 16px;
  font-weight: 600;
  color: #2A4968;
  background-color: #EBF2F9;
  border-radius: 16px;
  padding: 6px 14px;
  display: inline-block;
  margin-bottom: 18px;
}

/* 价格显示 */
.price-card-price {
  font-size: 22px;
  font-weight: 700;
  color: #2A4968;
  margin-bottom: 10px;
}

.price-period {
  font-size: 14px;
  color: #7D8EA8;
  margin-bottom: 15px;
}

/* 价格选项 */
.price-options {
  margin-bottom: 15px;
}

.price-option {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #777493;
  padding: 4px 0;
  border-bottom: 1px dashed #e8e8f0;
}

.price-option:last-child {
  border-bottom: none;
}

/* 特性列表 */
.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  flex-grow: 1;
}

.price-features li {
  font-size: 14px;
  color: #777493;
  padding: 6px 0 6px 20px;
  line-height: 1.4;
  position: relative;
  border-bottom: 1px dashed #e8e8f0;
}

.price-features li:last-child {
  border-bottom: none;
}

.price-features li::before {
  content: "•";
  color: #3195ff;
  font-size: 18px;
  position: absolute;
  left: 5px;
  top: 4px;
}

/* 购买按钮 */
.price-btn {
  display: block;
  padding: 10px;
  background-color: #3195ff;
  color: white;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.price-btn:hover {
  background-color: #1a7de8;
  transform: translateY(-2px);
}

/* 响应式调整 */
@media (max-width: 768px) {
  .price-section {
    padding: 60px 0;
  }
  
  .price-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .price-card-inner {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .price-title {
    font-size: 24px;
  }
  
  .price-subtitle {
    font-size: 14px;
  }
  
  .price-tabs {
    flex-wrap: wrap;
  }
  
  .price-card-title {
    font-size: 15px;
  }
  
  .price-features li {
    font-size: 13px;
  }
}


/*download*/

 /* 下载区块基础样式 */
        .download-section {
            padding: 80px 0;
            background-color: #f8fafc;
        }

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

        /* 标题区域 */
        .download-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .download-title {
            font-size: 28px;
            font-weight: 700;
            color: #2F3C52;
            margin-bottom: 10px;
            position: relative;
            display: inline-block;
        }

        .download-title::after {
            content: "";
            position: absolute;
            width: 80px;
            height: 3px;
            background-color: #3195ff;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }

        /* 下载项样式 */
        .download-item {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            margin-bottom: 60px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            overflow: hidden;
        }

        /* 客户端截图 */
        .download-image {
            flex: 1;
            min-width: 300px;
            padding: 20px;
        }

        .download-img {
            width: 100%;
            height: auto;
            max-height: 300px;
            object-fit: contain;
            border-radius: 6px;
        }

        /* 下载内容区域 */
        .download-content {
            flex: 1;
            min-width: 300px;
            padding: 30px;
        }

        .download-platform {
            font-size: 22px;
            color: #2A4968;
            margin-bottom: 20px;
        }

        /* 下载信息列表 */
        .download-info {
            list-style: none;
            padding: 0;
            margin: 0 0 25px 0;
        }

        .download-info li {
            font-size: 15px;
            color: #555;
            padding: 8px 0;
            border-bottom: 1px dashed #eee;
        }

        .download-info li:last-child {
            border-bottom: none;
        }

        .download-info strong {
            color: #333;
            font-weight: 600;
        }

        /* 二维码和按钮组合 */
        .download-qr-group {
            display: flex;
            align-items: center;
            gap: 20px;
            margin: 20px 0;
        }

        .download-qrcode {
            flex-shrink: 0;
            margin: 0;
        }

        .qr-btn-container {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .download-qrcode img {
            border: 1px solid #eee;
            padding: 10px;
            background: white;
            width: 120px;
            height: 120px;
        }

        /* 下载按钮 */
        .download-btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: #3195ff;
            color: white;
            border-radius: 6px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .download-btn:hover {
            background-color: #1a7de8;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(49, 149, 255, 0.3);
        }

        /* Socks5配置描述 */
        .config-desc {
            color: #555;
            font-size: 15px;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
            .download-section {
                padding: 80px 0;
            }
            
            .download-item {
                flex-direction: column;
                margin-bottom: 40px;
            }
            
            .download-image, 
            .download-content {
                padding: 20px;
            }
            
            .download-platform {
                font-size: 20px;
            }
            
            .download-title {
                font-size: 24px;
            }
        }

        @media (max-width: 480px) {
            .download-info li {
                font-size: 14px;
            }
            
            .download-btn {
                padding: 10px 20px;
                font-size: 14px;
            }

            .download-qr-group {
                flex-direction: column;
                gap: 15px;
            }
            
            .download-qrcode img {
                width: 100px;
                height: 100px;
            }
        }

/*教程*/


/* 帮助中心基础样式 */
.help-center {
    padding: 80px 0;
    background-color: #f8fafc;
    font-family: 'Segoe UI', Arial, sans-serif;
}

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

/* 标题区域 */
.help-header {
    text-align: center;
    margin-bottom: 50px;
}

.help-title {
    font-size: 32px;
    font-weight: 700;
    color: #2F3C52;
    margin-bottom: 10px;
}

.help-subtitle {
    font-size: 18px;
    color: #7D8EA8;
    position: relative;
    display: inline-block;
}

.help-subtitle::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 2px;
    background-color: #D9E3F2;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

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

/* 左侧导航栏 */
.help-sidebar {
    flex: 0 0 280px;
}

.help-categories {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 15px;
}

.help-category {
    margin-bottom: 10px;
    border-bottom: 1px solid #f0f0f5;
    will-change: transform;
}

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

.help-category-title {
    font-size: 16px;
    font-weight: 600;
    color: #3f3d59;
    padding: 12px 10px;
    margin: 0 -10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease-out;
    border-radius: 6px;
    user-select: none;
}

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

.help-category.active .help-category-title {
    background-color: #3195ff;
    color: white;
}

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

.help-category.active .help-category-icon {
    transform: rotate(-135deg);
    color: white;
}

.help-category-content {
   max-height: 0;
    overflow: hidden;
    padding: 0 15px;
    transition: max-height 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    will-change: max-height;
}

.help-category.active .help-category-content {
     max-height: 500px; /* 调整为更合理的值 */
    padding: 10px 15px 15px;
}

.help-subcategories {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 15px;
}

.help-subcategories li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.help-subcategories li:before {
    content: "•";
    color: #3195ff;
    position: absolute;
    left: 0;
}

.help-subcategory-link {
    display: block;
    padding: 6px 0;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.help-subcategory-link:hover {
    color: #3195ff;
    padding-left: 5px;
}

.help-articles {
    list-style: none;
    padding: 0;
    margin: 0;
}

.help-articles li {
    margin-bottom: 8px;
}

/* 新增 li.active 样式 */
.help-articles li.active {
    background-color: #f0f7ff; /* 浅蓝色背景 */
    border-left: 3px solid #3195ff; /* 左侧蓝条 */
}

.help-articles li.active .help-article-link {
    color: #3195ff; /* 链接文字变蓝 */
    font-weight: 500;
}

/* 移除默认列表点 */
.help-articles li {
    list-style-type: none;
    padding-left: 10px; /* 为蓝条留空间 */
    margin-bottom: 8px;
    transition: all 0.3s ease; /* 平滑过渡 */
}

.help-article-link {
    display: block;
    padding: 8px 10px;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.help-article-link:hover {
    color: #3195ff;
    background-color: #f5f7fa;
    transform: translateX(5px);
}

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

.help-article {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 25px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
}

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

.help-article-title {
    font-size: 20px;
    font-weight: 600;
    color: #2F3C52;
    margin-bottom: 15px;
}

.help-article-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.help-article-title a:hover {
    color: #3195ff;
}

.help-article-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 15px;
}

.help-read-more {
    display: inline-block;
    padding: 8px 20px;
    background-color: #3195ff;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.help-read-more:hover {
    background-color: #1a7de8;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(26, 125, 232, 0.3);
}

/* 响应式设计 */
@media (max-width: 992px) {
    .help-content {
        flex-direction: column;
    }
    
    .help-sidebar {
        flex: 0 0 auto;
        margin-bottom: 30px;
    }
    
    .help-category-content {
        transition-duration: 0.3s;
    }
}

@media (max-width: 576px) {
    .help-center {
        padding: 80px 0;
    }
    
    .help-title {
        font-size: 26px;
    }
    
    .help-article {
        padding: 20px;
    }
    
    .help-article-title {
        font-size: 18px;
    }
    
    .help-subcategory-link:hover,
    .help-article-link:hover {
        transform: none;
    }
}


/*article*/
/* 文章容器 */


/* 右侧主内容区 */
.article-main {
    flex: 1;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 30px;
}

/* 文章标题 */
.article-header {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.article-title {
    font-size: 24px;
    font-weight: 600;
    color: #2F3C52;
    margin: 0;
}

/* 文章内容 */
.article-content {
    line-height: 1.8;
    color: #444;
}

/* 步骤标题 */
.article-step-title {
    font-size: 18px;
    font-weight: 600;
    color: #3195ff;
    margin: 25px 0 15px;
    padding-left: 15px;
    border-left: 3px solid #3195ff;
}

/* 提示文本 */
.article-notice {
    background: #f8fafc;
    padding: 12px 15px;
    border-left: 3px solid #ff9800;
    color: #666;
}

/* 链接样式 */
.article-link {
    color: #3195ff;
    text-decoration: none;
    word-break: break-all;
}

.article-link:hover {
    text-decoration: underline;
}

/* 图片样式 */
.article-image {
    max-width: 100%;
    height: auto;
    margin: 15px 0;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: block;
}
/*内容图片样式*/
/* 文章内容区域图片样式 */
.article-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);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* 响应式图片处理 */
.article-content picture {
    display: block;
    margin: 20px auto;
    max-width: 100%;
}

/* 图片悬停效果 */
.article-content img:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* 图片居中处理 */
.article-content .image-center {
    text-align: center;
}

/* 图片说明文字 */
.article-content .image-caption {
    display: block;
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-top: 8px;
    font-style: italic;
}

/* 防止图片在表格中溢出 */
.article-content table img {
    max-width: none;
}

/* 针对小屏幕的调整 */
@media (max-width: 768px) {
    .article-content img {
        margin: 15px auto;
    }
}

/* 响应式设计 */
@media (max-width: 992px) {
   
    
    .help-sidebar {
        margin-bottom: 20px;
    }
    
    .article-main {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .article-title {
        font-size: 20px;
    }
    
    .article-step-title {
        font-size: 16px;
    }
}

/*内容*/
/* 文章头部元信息 */
.article-meta {
     display: flex;
    align-items: center;
    margin-top: 15px;
    color: #7D8EA8;
    font-size: 14px;
    gap: 15px;
    white-space: nowrap;
}

.article-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* 图标样式 */
.icon-user, 
.icon-clock, 
.icon-eye {
    width: 16px;
    height: 16px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
}

.icon-user::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: white;
  border-radius: 50%;
  top: 2px;
  left: 4px;
}
@media (max-width: 768px) {
    .article-meta {
        font-size: 12px;
        gap: 8px;
        overflow-x: auto; /* 横向滚动（如内容过长） */
        padding-bottom: 2px; /* 预留滚动空间 */
    }
    
    /* 微调图标 */
    .fas {
        font-size: 12px !important;
    }
}
/*.icon-user {*/
/*    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%237D8EA8'%3E%3Cpath d='M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z'/%3E%3C/svg%3E");*/
/*}*/

/*.icon-clock {*/
/*    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%237D8EA8'%3E%3Cpath d='M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z'/%3E%3C/svg%3E");*/
/*}*/

/*.icon-eye {*/
/*    background-image: url("data:image/svg);*/
    
    
    /*轮播图*/
 /* 游戏展示区容器 */
        .game-showcase {
            
            max-width: 1200px;
            margin: 0 auto;
            overflow: hidden;
        }
        
        /* 标题样式 */
        .game-showcase-title {
            text-align: center;
            font-size: 32px;
            color: #2c3e50;
            margin-bottom: 40px;
            font-weight: 700;
            position: relative;
        }
        
        .game-showcase-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: #3498db;
            margin: 15px auto 0;
            border-radius: 2px;
        }
        
        /* 滚动容器 */
        .game-scroller-container {
            width: 100%;
            position: relative;
        }
        
        /* 通用滚动条样式 */
        .game-scroller {
            width: 100%;
            overflow: hidden;
            padding: 20px 0;
            position: relative;
        }
        
        .game-scroller::before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 100px;
            z-index: 2;
        }
        
        .game-scroller-left::before {
            left: 0;
            background: linear-gradient(90deg, rgba(248,249,250,1) 0%, rgba(248,249,250,0) 100%);
        }
        
        .game-scroller-right::before {
            right: 0;
            background: linear-gradient(270deg, rgba(248,249,250,1) 0%, rgba(248,249,250,0) 100%);
        }
        
        /* 滚动轨道 */
        .game-track {
            display: flex;
            width: max-content;
            animation-iteration-count: infinite;
            animation-timing-function: linear;
            will-change: transform;
        }
        
        /* 第一排：从左向右滑动 */
        .game-scroller-left .game-track {
            animation-name: scrollLeftToRight;
            animation-duration: 40s;
        }
        
        /* 第二排：从右向左滑动 */
        .game-scroller-right .game-track {
            animation-name: scrollRightToLeft;
            animation-duration: 40s;
        }
        
        /* 游戏图标样式 */
        .game-icon {
            display: block;
            width: 140px;
            height: 140px;
            margin: 0 20px;
            transition: all 0.3s ease;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 6px 12px rgba(0,0,0,0.08);
            background: white;
            flex-shrink: 0;
        }
        
        .game-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            
        }
        
        .game-icon:hover {
            transform: translateY(-8px) scale(1.05);
            box-shadow: 0 12px 24px rgba(0,0,0,0.15);
        }
        
        /* 动画定义 */
        @keyframes scrollLeftToRight {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        
        @keyframes scrollRightToLeft {
            0% { transform: translateX(-50%); }
            100% { transform: translateX(0); }
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .game-icon {
                width: 120px;
                height: 120px;
                margin: 0 15px;
            }
        }
        
        @media (max-width: 768px) {
            .game-showcase {
                padding: 40px 0;
            }
            
            .game-showcase-title {
                font-size: 28px;
                margin-bottom: 30px;
            }
            
            .game-icon {
                width: 100px;
                height: 100px;
                margin: 0 12px;
                border-radius: 12px;
            }
        }
        
        @media (max-width: 576px) {
            .game-icon {
                width: 80px;
                height: 80px;
                margin: 0 8px;
                border-radius: 10px;
            }
            
            .game-scroller {
                padding: 15px 0;
            }
        }
    
    
    
    /*zixun 模板*/
     
   
       /* 重置和基础样式 */
.bangzhu-help-center * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.bangzhu-help-center {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
    padding-top: 70px; /* 为顶部导航留出空间 */
}

/* 头部区域 */
.bangzhu-header {
    background-color: #1e88e5;
    color: white;
    padding: 40px 0;
    margin-bottom: 40px;
}

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

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

.bangzhu-header h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.bangzhu-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

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

/* 顶部导航栏 */
.bangzhu-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.bangzhu-breadcrumb {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.bangzhu-breadcrumb a {
    color: #1e88e5;
    text-decoration: none;
}

.bangzhu-breadcrumb a:hover {
    text-decoration: underline;
}

/* 搜索框 */
.bangzhu-search-wrapper {
    display: flex;
    width: 300px;
    margin-bottom: 15px;
}

.bangzhu-search-input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s;
}

.bangzhu-search-input:focus {
    border-color: #1e88e5;
}

.bangzhu-search-button {
    background-color: #1e88e5;
    color: white;
    border: none;
    padding: 0 15px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background-color 0.3s;
}

.bangzhu-search-button:hover {
    background-color: #1565c0;
}

.bangzhu-icon-search {
    margin-right: 5px;
}

.bangzhu-search-text {
    font-size: 0.95rem;
}

/* 子栏目导航 */
.bangzhu-subnav {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.bangzhu-subnav-item {
    margin-right: 20px;
    margin-bottom: 15px;
}

.bangzhu-subnav-item a {
    color: #666;
    text-decoration: none;
    font-size: 1rem;
    padding-bottom: 10px;
    position: relative;
    transition: color 0.3s;
}

.bangzhu-subnav-item a:hover {
    color: #1e88e5;
}

.bangzhu-subnav-item.active a {
    color: #1e88e5;
    font-weight: 500;
}

.bangzhu-subnav-item.active a:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #1e88e5;
}

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

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

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

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

.bangzhu-thumb-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 比例 */
    overflow: hidden;
}

.bangzhu-thumb-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.bangzhu-thumb {
width: 100%;
    height: 100%;
    object-fit: contain; /* 从 cover 改为 contain */
    transition: transform 0.3s;
    background-color: white; /* 图片周围空白区域背景色 */
}

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

.bangzhu-no-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.9rem;
}

.bangzhu-content {
    padding: 20px;
}

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

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

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

.bangzhu-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #222;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bangzhu-desc {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bangzhu-more {
    color: #1e88e5;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
    transition: transform 0.3s;
}

.bangzhu-item:hover .bangzhu-more {
    transform: translateX(5px);
}

/* 分页样式 */
.bangzhu-pagination-wrapper {
    padding: 10px;
    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: #1e88e5;
    background: white;
}

.bangzhu-pagination-list a:hover {
    background: #e3f2fd;
    border-color: #bbdefb;
}

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

/* 移动端适配 */
@media (max-width: 768px) {
    .bangzhu-help-center {
        padding-top: 70px;
    }
    
    .bangzhu-header {
        padding: 30px 0;
    }
    
    .bangzhu-header h1 {
        font-size: 2rem;
    }
    
    .bangzhu-header p {
        font-size: 1rem;
    }
    
    .bangzhu-top-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .bangzhu-search-wrapper {
        width: 100%;
    }
    
    .bangzhu-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .bangzhu-subnav {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }
    
    .bangzhu-subnav-item {
        margin-right: 15px;
    }
    
    .bangzhu-content {
        padding: 15px;
    }
    
    .bangzhu-pagination-list {
        gap: 5px;
    }
    
    .bangzhu-pagination-list a,
    .bangzhu-pagination-list strong {
        min-width: 30px;
        padding: 6px 10px;
        font-size: 0.85rem;
    }
}




        /*内容*/
        
        /* 新增包裹层样式 */
.benfu-article-wrapper {
    background-color: #fff;
    padding-top: 70px;
    padding-bottom: 40px;
   /* min-height: calc(100vh - 120px);*/
}

/* 基础样式 */
.benfu-article-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 20px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* 文章标题 */
.benfu-article-title {
    font-size: 28px;
    margin-bottom: 20px;
    color: #222;
    font-weight: 600;
    line-height: 1.3;
}

/* 文章元信息 */
.benfu-article-meta {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    color: #666;
    font-size: 14px;
}

.benfu-meta-item {
    margin-right: 20px;
    display: flex;
    align-items: center;
}

.benfu-icon {
    margin-right: 5px;
    color: #999;
}

/* 文章内容 - 新增图片样式优化 */
.benfu-article-content {
    margin-bottom: 40px;
}

.benfu-article-content p {
    margin-bottom: 20px;
}

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

/* 上一篇/下一篇导航 */
.benfu-article-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.benfu-prev-article, 
.benfu-next-article {
    flex: 1;
    padding: 15px;
    transition: all 0.3s;
}

.benfu-prev-article {
    text-align: left;
    padding-left: 0;
}

.benfu-next-article {
    text-align: right;
    padding-right: 0;
}

.benfu-nav-label {
    display: block;
    font-size: 14px;
    color: #999;
    margin-bottom: 5px;
}

.benfu-nav-title {
    font-size: 16px;
    color: #1890ff;
    text-decoration: none;
    transition: color 0.3s;
}

.benfu-nav-title:hover {
    color: #096dd9;
    text-decoration: underline;
}

.benfu-no-more {
    color: #ccc;
}


/* 面包屑导航样式 */
.benfu-breadcrumb {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.benfu-breadcrumb a {
    color: #1e88e5;
    text-decoration: none;
    transition: color 0.3s;
}

.benfu-breadcrumb a:hover {
    color: #1565c0;
    text-decoration: underline;
}

.benfu-breadcrumb > * {
    margin-right: 5px;
}

.benfu-current-page {
    color: #999;
    font-weight: normal;
}

/* 分隔符样式 */
/*.benfu-breadcrumb > *:not(:last-child):after {*/
/*    content: '>';*/
/*    margin-left: 5px;*/
/*    color: #ccc;*/
/*}*/

/* 响应式设计 */
@media (max-width: 768px) {
    .benfu-article-wrapper {
        padding-top: 70px;
    }
    
    .benfu-article-container {
        padding: 15px 15px;
    }
    
    .benfu-article-title {
        font-size: 24px;
    }
    
    .benfu-article-navigation {
        flex-direction: column;
    }
    
    .benfu-prev-article, 
    .benfu-next-article {
        padding: 10px 0;
        text-align: left !important;
    }
    
    .benfu-next-article {
        border-top: 1px dashed #eee;
        margin-top: 10px;
        padding-top: 15px;
    }
    
    .benfu-article-content img {
        border-radius: 6px;
    }
    
     .benfu-breadcrumb {
        font-size: 13px;
        padding-bottom: 10px;
        margin-bottom: 10px;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }
    
    .benfu-breadcrumb::-webkit-scrollbar {
        display: none;
    }
}


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

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

/* 表头样式 */
.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);
}
        
        
        
        /*底部文章*/
        
        
        .modern-news-section {
    padding: 60px 0;
    background-color: #f9fafb;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

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

.modern-news-title {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.modern-news-subtitle {
    font-size: 16px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.modern-tabs-wrapper {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
    overflow: hidden;
}

.modern-tab-nav-container {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #e5e7eb;
    padding: 0 24px;
}

.modern-tab-nav {
    display: inline-flex;
}

.modern-tab-btn {
    padding: 16px 24px;
    
    font-weight: 500;
    color: #6b7280;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

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

.modern-tab-btn.active {
    color: #111827;
    font-weight: 600;
}

.modern-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #3b82f6;
}

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

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

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

.modern-news-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.modern-news-card {
    border-radius: 8px;
    transition: all 0.2s ease;
}

.modern-news-card:hover {
    background-color: #f9fafb;
}

.modern-news-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    text-decoration: none;
    color: inherit;
}

.modern-news-content {
    flex: 1;
}

.modern-news-item-title {
    font-size: 16px;
    font-weight: 500;
    color: #111827;
    margin-bottom: 4px;
    transition: color 0.2s ease;
}

.modern-news-card:hover .modern-news-item-title {
    color: #3b82f6;
}

.modern-news-date {
    font-size: 14px;
    color: #9ca3af;
    display: block;
}

.modern-news-icon {
    width: 20px;
    height: 20px;
    color: #d1d5db;
    margin-left: 16px;
    transition: all 0.2s ease;
}

.modern-news-card:hover .modern-news-icon {
    color: #3b82f6;
    transform: translateX(4px);
}

.modern-view-more {
    display: inline-block;
    margin-top: 24px;
    font-size: 14px;
    font-weight: 500;
    color: #3b82f6;
    text-decoration: none;
    transition: all 0.2s ease;
}

.modern-view-more:hover {
    color: #2563eb;
}

.modern-view-more span {
    margin-left: 4px;
    transition: transform 0.2s ease;
}

.modern-view-more:hover span {
    transform: translateX(2px);
}

@media (min-width: 768px) {
    .modern-news-list {
        grid-template-columns: 1fr 1fr;
    }
}
        
        
        
        
    
    
    