/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
}

/* 顶部导航样式 */
header {
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
    background-color: transparent;
}

/* 添加滚动时的样式类 */
header.scrolled {
    position: fixed;
    background-color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

/* 移动端导航样式 */
@media (max-width: 768px) {
    .nav-container {
        flex-wrap: wrap;
    }

    .nav-links {
        display: flex; /* 始终显示导航链接 */
        width: 100%;
        order: 3;
        margin: 10px 0 0;
        padding: 10px 0;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 4px;
        flex-direction: row; /* 水平排列 */
        justify-content: center; /* 居中显示 */
        flex-wrap: wrap; /* 允许换行 */
    }

    .nav-links a {
        padding: 8px 12px;
        width: auto;
        text-align: center;
        color: #333;
        font-size: 14px; /* 稍微减小字体大小 */
    }

    .nav-buttons {
        order: 2;
    }

    /* 完全移除汉堡菜单按钮相关样式 */
    .hamburger-menu {
        display: none !important;
    }
}

.logo img {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;  /* 移除滤镜，只保留过渡效果 */
}

/* 滚动时的Logo样式 */
header.scrolled .logo img {
    /* 不需要额外的样式，直接使用不同的图片源 */
}

.nav-links {
    margin-left: 20px;
    margin-right: auto;
    display: flex;
    align-items: center;
}

/* 导航链接基础样式 */
.nav-links a {
    color: #a1a2a2;  /* 默认灰色 */
    text-decoration: none;
    margin: 0 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    display: block;
}

/* 激活状态 */
.nav-links a.active {
    color: #0071c1 !important;  /* 蓝色 */
    font-weight: bold !important;
}

/* 确保滚动时也保持激活状态 */
header.scrolled .nav-links a.active {
    color: #0071c1 !important;
    font-weight: bold !important;
}

/* 鼠标悬停状态 */
.nav-links a:hover {
    color: rgba(255, 255, 255, 1);  /* 悬停时变为全白 */
}

/* 滚动时的导航链接样式 */
header.scrolled .nav-links a {
    color: #a1a2a2;  /* 滚动后默认为灰色 */
}

header.scrolled .nav-links a:hover {
    color: #0071c1;  /* 滚动后悬停变为蓝色 */
}

.nav-buttons {
    display: flex;
    gap: 10px;
}

.nav-buttons .register-btn {
    padding: 8px 24px;
    font-size: 14px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    color: white;
    background: linear-gradient(45deg, #0052D9, #00B42A);
    transition: all 0.3s ease;
}

.nav-buttons .register-btn:hover {
    opacity: 0.9;
}

.nav-buttons .login-btn {
    padding: 8px 24px;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 4px;
    cursor: pointer;
    color: white;
    background: transparent;
    transition: all 0.3s ease;
    text-shadow: none;
    position: relative;
    overflow: hidden;
}

.nav-buttons .login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: white;
    opacity: 0;
    transition: left 0.4s ease, opacity 0.4s ease;
    z-index: 1;
}

.nav-buttons .login-btn:hover::before {
    left: 0;
    opacity: 1;
}

.nav-buttons .login-btn span {
    position: relative;
    z-index: 2;
}

.nav-buttons .login-btn:hover span {
    color: #0052D9;
    text-shadow: none;
}

/* 滚动时的登录按钮样式 */
header.scrolled .nav-buttons .login-btn {
    border: 1px solid #0071c1;
    color: #0071c1;
}

header.scrolled .nav-buttons .login-btn::before {
    background: #0071c1;
}

header.scrolled .nav-buttons .login-btn:hover span {
    color: white;
}

/* 未滚动时的登录按钮样式保持不变 */
.nav-buttons .login-btn {
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: white;
}

.nav-buttons .login-btn::before {
    background: white;
}

.nav-buttons .login-btn:hover span {
    color: #0052D9;
}

/* Banner区域样式 */
.banner {
    width: 100%;
    height: 0;
    padding-bottom: 42.85%;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding-top: 0;
    color: white;
    text-align: center;
    background: #f5f5f5;
}

.banner-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: translateZ(0); /* 启用GPU加速 */
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: none;
}

.slider-item.active {
    display: block;
    opacity: 1;
}

/* 首页轮播特殊处理 */
body:not(.wm-page):not(.qzx-page):not(.znht-page):not(.csfx-page):not(.sxy-page) .slider-item {
    transition: opacity 0.3s ease-in-out;
}

/* 其他页面的banner立即显示 */
.wm-page .slider-item,
.qzx-page .slider-item,
.znht-page .slider-item,
.csfx-page .slider-item,
.sxy-page .slider-item {
    display: block;
    opacity: 1;
    transition: none;
    will-change: transform;
    transform: translateZ(0);
}

/* 为其他页面的 banner 统一样式 */
.znht-page .banner,
.csfx-page .banner,
.sxy-page .banner,
.wm-page .banner,
.qzx-page .banner {
    width: 100%;
    height: 0;
    padding-bottom: 42.85%;  /* 保持与图片比例一致 */
}

/* 移动端适配 */
@media (max-width: 768px) {
    .banner {
        height: auto;
        min-height: 300px;
        padding: 60px 20px;
        margin: 0;
    }

    .slider-item {
        background-size: cover;
        background-position: center;
        height: 100%;
        display: flex;
        align-items: center;
    }
}

/* Banner内容区域样式 */
.banner-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding-bottom: 100px;
    padding-left: 130px;
}

@media (max-width: 768px) {
    .banner-content {
        padding: 20px;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .banner h1 {
        font-size: 32px;
        margin-bottom: 20px;
        margin-left: 0;
    }

    .banner p {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .banner-buttons {
        margin-left: 0;
        justify-content: center;
        flex-wrap: wrap;
    }
}

.banner h1 {
    font-size: 48px;
    margin-bottom: 30px;
    font-weight: 600;
    color: #FFE600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-left: -40px;
}

.banner p {
    font-size: 24px;
    margin-bottom: 40px;
}

/* 按钮容器样式 */
.banner-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    margin-left: -200px;
}

/* Banner区域的免费注册按钮 */
.banner-buttons .register-btn {
    padding: 12px 40px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    color: white;
    background: linear-gradient(to right, #1890ff, #52c41a);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(24, 144, 255, 0.2);
}

.banner-buttons .register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(24, 144, 255, 0.4);
}

/* Banner区域的登录按钮 */
.banner-buttons .login-btn {
    padding: 12px 40px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    color: #666;
    background: white;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.banner-buttons .login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* 轮播点样式调整 */
.slider-dots {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

/* 导航按钮样式 */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
}

.banner:hover .slider-nav {
    opacity: 1;
}

.slider-nav:hover {
    background: rgba(0, 0, 0, 0.5);
}

.slider-nav svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

/* 移动端导航按钮适配 */
@media (max-width: 768px) {
    .slider-nav {
        width: 40px;
        height: 40px;
    }

    .slider-nav svg {
        width: 20px;
        height: 20px;
    }
}

/* 业务介绍区样式 */
.business-intro {
    padding: 80px 0;
    text-align: center;
    background: #f5f5f5;
}

.business-intro h2 {
    font-size: 32px;
    color: #003399;
    margin-bottom: 20px;
}

.business-intro > p {
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.service-cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: nowrap;
}

.card {
    background: white;
    padding: 24px 16px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    flex: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 260px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.card h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 16px;
}

.card p {
    color: #666;
    margin-bottom: 8px;
    line-height: 1.5;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card p:last-child {
    margin-bottom: 0;
}

/* 响应式调整 */
@media (max-width: 1400px) {
    .service-cards {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        padding-bottom: 20px;
    }
    
    .card {
        flex: 0 0 calc(25% - 15px);
    }
}

@media (max-width: 640px) {
    .card {
        flex: 0 0 100%;
        min-width: 260px;
    }
}

/* 系统集成图示区样式 */
.system-integration {
    padding: 80px 0;
    text-align: center;
    background: white;
}

.system-integration h2 {
    font-size: 32px;
    color: #003399;
    margin-bottom: 20px;
}

.integration-diagram {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.integration-img {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* 底部样式 */
footer {
    background: #001529;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr) 300px;
    gap: 60px;
    padding: 0 20px;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
}

.footer-section a {
    display: block;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.footer-section .contact-info,
.footer-section .phone,
.footer-section .email {
    line-height: 1.4 !important;  /* 增加行高，从1.2改为1.4 */
    padding: 0 !important;
    margin: 0 !important;
}

.footer-section .contact-info {
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 3px !important;  /* 增加间距，从2px改为3px */
}

.footer-section .phone,
.footer-section .email {
    color: white;
    margin-bottom: 8px !important;  /* 增加间距，从5px改为8px */
}

.footer-section .email {
    margin-bottom: 0 !important;
}

/* 调整联系方式区块的整体间距 */
.footer-section h3 + .contact-info {
    margin-top: 12px !important;  /* 增加标题和第一个联系信息之间的间距，从10px改为12px */
}

.social-media {
    margin-top: 20px;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    align-items: center;
}

.social-icon {
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: brightness(0) invert(1);
    opacity: 0.65;
    transition: opacity 0.3s;
}

.social-icon:hover {
    opacity: 1;
}

.social-icon.weibo {
    background-image: url('../images/微信视频号.png');
}

.social-icon.wechat {
    width: 28px;
    height: 28px;
    background-image: url('../images/微信.png');
}

.social-icon.douyin {
    background-image: url('../images/微信小程序.png');
}

.footer-logo {
    width: 240px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    padding-left: 60px;
    position: relative;
    height: 100%;
}

.footer-logo::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 80%;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.footer-logo img {
    width: 100%;
    height: auto;
}

.footer-bottom {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
}

.footer-links {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: left;
    color: rgba(255, 255, 255, 0.45);
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links .left-content {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
}

.footer-links .right-content {
    display: flex;
    align-items: center;
    gap: 5px;  /* 减小间距从10px到5px */
    margin-left: auto;  /* 将内容推到右边 */
    padding-right: 20px;  /* 右侧添加一些内边距 */
}

.footer-links .right-content .divider {
    margin: 0 5px;  /* 减小分隔符的间距 */
    color: rgba(255, 255, 255, 0.2);
}

.police-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.police-link img {
    height: 16px;
    width: auto;
}

/* 响应式调整 */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-logo {
        grid-column: 1 / -1;
        justify-self: center;
        margin-left: 0;
        margin-top: 40px;
        padding-left: 0;
        padding-top: 40px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-logo::before {
        display: none;
    }
}

@media (max-width: 640px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-links .left-content,
    .footer-links .right-content {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .footer-links .right-content {
        justify-content: center;
        padding-right: 0;
        margin-left: 0;
    }
}

/* CTA按钮区域样式 */
.cta-buttons {
    padding: 40px 0;
    text-align: center;
    background: #f5f5f5;
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* 免费试用按钮 */
.free-trial-btn {
    padding: 12px 40px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    color: white;
    background: linear-gradient(to right, #1890ff, #52c41a);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(24, 144, 255, 0.2);
}

.free-trial-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(24, 144, 255, 0.4);
}

/* 体验Demo按钮 */
.demo-btn {
    padding: 12px 40px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    color: #666;
    background: white;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.demo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.demo-btn::before {
    display: none;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
}

.footer-links a:hover {
    color: rgba(255, 255, 255, 0.45);
}

/* 移动端导航栏适配 */
@media (max-width: 768px) {
    header {
        position: fixed;
        background-color: rgba(255, 255, 255, 0.95);
        padding: 10px 0;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .nav-container {
        padding: 10px 20px;
    }

    .logo img {
        height: 32px;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        padding: 0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-links.active {
        max-height: 300px;
        padding: 10px 0;
    }

    .nav-links a {
        padding: 12px 20px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        color: #333;
        font-size: 15px;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-buttons {
        gap: 10px;
    }

    .nav-buttons button {
        padding: 8px 15px;
        font-size: 14px;
    }

    /* Banner区域移动端适配 */
    .banner {
        height: 100vh;
        margin-top: 0;
        padding-top: 60px;
    }

    .banner-content {
        padding: 20px;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding-bottom: 80px;
    }

    .banner h1 {
        font-size: 28px;
        margin-bottom: 15px;
        line-height: 1.4;
        text-align: center;
    }

    .banner p {
        font-size: 15px;
        margin-bottom: 25px;
        white-space: normal;
        text-align: center;
        max-width: 100%;
    }

    .banner-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .banner-buttons button {
        width: 100%;
        padding: 12px 24px;
        font-size: 15px;
    }
}

/* 移动端Banner区域适配 */
@media (max-width: 768px) {
    /* 内容区域通用样式 */
    .section {
        padding: 40px 20px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .section-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    /* 卡片布局 */
    .card-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0;
    }

    .card {
        padding: 20px;
    }

    .card-title {
        font-size: 18px;
    }

    .card-content {
        font-size: 14px;
    }

    /* 图片和图标 */
    .feature-image {
        max-width: 100%;
        height: auto;
        margin-bottom: 20px;
    }

    .icon {
        width: 40px;
        height: 40px;
    }

    /* 按钮和交互元素 */
    .button {
        width: 100%;
        max-width: 280px;
        margin: 10px auto;
        padding: 12px 24px;
        font-size: 15px;
    }

    /* 列表和表格 */
    .list-item {
        padding: 15px;
        margin-bottom: 10px;
    }

    table {
        font-size: 14px;
    }

    td, th {
        padding: 10px;
    }

    /* 页脚适配 */
    footer {
        padding: 30px 20px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        margin-top: 20px;
    }

    .footer-social {
        margin-top: 20px;
    }

    /* Banner区域适配 */
    .banner {
        height: 100vh;
        margin-top: -80px;
        padding-top: 80px;
        position: relative;
    }

    .slider-item {
        background-size: cover;
        background-position: top center;
    }

    .slider-dots {
        bottom: 200px;
        position: fixed;
    }

    .banner-content {
        padding-bottom: 60px;
        padding-left: 40px;
    }

    .banner h1 {
        margin-left: 0;
        font-size: 24px;
        margin-bottom: 15px;
        line-height: 1.4;
    }

    .banner p {
        font-size: 14px;
        margin-bottom: 20px;
        white-space: normal;
    }

    .banner-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
        margin-left: 0;
    }

    .banner-buttons button {
        width: 100%;
    }
}

/* 移动端卡片区域适配 */
@media (max-width: 768px) {
    .business-intro h2 {
        font-size: 24px;
    }

    .business-intro > p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .service-cards {
        flex-direction: column;
        gap: 15px;
    }

    .card {
        width: 100%;
        min-width: unset;
    }
}

/* 移动端系统集成区域适配 */
@media (max-width: 768px) {
    .system-integration {
        padding: 40px 0;
    }

    .system-integration h2 {
        font-size: 24px;
    }

    .system-integration p {
        font-size: 14px;
        padding: 0 20px;
    }
}

/* 修改logo和二维码容器样式 */
.logo-qrcode-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.logo-qrcode-container img {
    width: 100%;
    height: auto;
}

.logo-qrcode-container .qrcode {
    width: 120px; /* 二维码尺寸 */
    height: 120px;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .logo-qrcode-container .qrcode {
        width: 100px;
        height: 100px;
    }
}

/* 隐藏特定页面的轮播点 */
.znht-page .slider-dots,
.csfx-page .slider-dots,
.sxy-page .slider-dots,
.wm-page .slider-dots,
.qzx-page .slider-dots {  /* 确保包含了qzx-page */
    display: none !important;  /* 使用!important确保样式生效 */
}

/* 商学院特点介绍样式 */
.sxy-features {
    padding: 80px 0;
    text-align: center;
    background-color: #f5f5f5;
}

.learning-features {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 60px; /* 减小最后一行的下边距 */
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 30px;  /* 文本块之间的间距 */
}

.text-item {
    display: grid;
    grid-template-columns: 160px 1fr; /* 增加标题宽度 */
    align-items: baseline;
    margin-bottom: 30px; /* 增加行间距 */
}

.text-item h3 {
    color: #2b5dbb;
    font-size: 18px; /* 增大标题字号 */
    white-space: nowrap;
    text-align: right; /* 标题右对齐 */
    padding-right: 15px; /* 标题和内容之间的间距 */
}

.text-item span {
    color: #666;
    font-size: 16px; /* 增大内容字号 */
    line-height: 1.8; /* 增加行高 */
    max-width: 500px; /* 限制内容宽度，使文字自动换行 */
}

/* 移动端适配 */
@media (max-width: 768px) {
    .feature-row {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 50px;
    }

    .feature-row.reverse {
        flex-direction: column;
    }

    .feature-text h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .feature-text p {
        font-size: 14px;
    }
}

/* 最后一个feature-row不需要下边距 */
.feature-row:last-child {
    margin-bottom: 0;
}

/* 基础特点介绍样式 */
.qzx-features {
    padding: 80px 0;
    text-align: center;
    background-color: #f5f5f5;
}

.qzx-features h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 10px;
}

.qzx-features .subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 220px 280px;
    padding: 0 100px;
    position: relative;
}

.q-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 380px;
    z-index: 0;
    background-color: #f5f5f5;
    border-radius: 50%;
    padding: 40px;
}

.q-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-item {
    text-align: left;
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 360px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.feature-item h3 {
    color: #0071c1;
    font-size: 18px;
    margin-bottom: 12px;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

/* 商学院页面图片样式 - 最终版本 */
.sxy-page .feature-image {
    width: 300px !important;
    flex: 0 0 300px !important;
    margin: 0 auto;
}

.sxy-page .feature-image img {
    width: 300px !important;
    height: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .sxy-page .feature-image,
    .sxy-page .feature-image img {
        width: 250px !important;
    }
}

.contract-description {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

/* 调整上方文字块的垂直位置 */
.contract-description:not(.bottom) {
    margin-bottom: 0px;  /* 减少与图片的上方间距 */
}

/* 调整下方文字块的垂直位置 */
.contract-description.bottom {
    margin-top: 0px;  /* 保持与图片的下方间距 */
}

/* 上方第一个文字块 */
.contract-description:not(.bottom) .desc-item:first-child {
    margin-left: 250px;
    max-width: 250px;
}

/* 上方第二个文字块 */
.contract-description:not(.bottom) .desc-item:last-child {
    margin-right: 200px;  /* 减少右边距，从 430px 改为 300px */
    max-width: 250px;
}

/* 下方最后一个文字块 */
.contract-description.bottom .desc-item:last-child {
    margin-right: 450px;
    max-width: 250px;
}

/* 所有文字块的标题和段落统一样式 */
.desc-item h3 {
    color: #0071c1;
    font-size: 20px;
    margin-bottom: 15px;
    text-align: center;  /* 所有标题居中 */
}

.desc-item p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    text-align: left;
    max-width: 200px;  /* 限制段落宽度，强制换行 */
    margin: 0 auto;
    word-wrap: break-word;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .contract-description {
        flex-direction: column;
        gap: 20px;
    }
    
    .contract-description:not(.bottom) .desc-item:first-child,
    .contract-description:not(.bottom) .desc-item:last-child,
    .contract-description.bottom .desc-item:first-child,
    .contract-description.bottom .desc-item:last-child {
        margin: 0 auto;
    }
}

/* 智能合同页面的图片样式 */
.znht-page .feature-image {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    position: relative;
}

.znht-page .feature-image img {
    width: 100%;
    height: auto;
    min-width: 1200px;
    max-width: 1400px;
    margin: 0 auto;
    display: block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

/* 移动端适配 */
@media (max-width: 768px) {
    .znht-page .feature-image img {
        min-width: 100%;
        max-width: 100%;
        left: 0;
        transform: none;
    }
}

/* 智能合同页面标题样式 */
.contract-features {
    text-align: center;
    padding-top: 60px;
}

.contract-features h2 {
    font-size: 48px;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

.contract-features .subtitle {
    font-size: 24px;
    color: #666;
    margin-bottom: 60px;
    position: relative;
    padding: 0 20px;
}

/* 在副标题两侧添加装饰线 */
.contract-features .subtitle::before,
.contract-features .subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 1px;
    background-color: #666;
}

.contract-features .subtitle::before {
    right: calc(50% + 200px);
}

.contract-features .subtitle::after {
    left: calc(50% + 200px);
}

/* 移动端适配 */
@media (max-width: 768px) {
    .contract-features h2 {
        font-size: 32px;
    }
    
    .contract-features .subtitle {
        font-size: 18px;
    }
    
    /* 移动端隐藏装饰线 */
    .contract-features .subtitle::before,
    .contract-features .subtitle::after {
        display: none;
    }
}

/* 企业健康服务页面的文字布局样式 */
.contract-features .text-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
    padding-top: 40px;  /* 添加顶部内边距，让整体内容向下移 */
}

.contract-features .text-item h3 {
    color: #0071c1;
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
}

.contract-features .text-item span {
    color: #666;
    font-size: 16px;
    line-height: 2;
    text-align: left;
    display: block;
    white-space: normal;
    word-wrap: break-word;
    max-width: 350px;
    padding: 0 10px;
}

/* 调整图片和文字的间距 */
.contract-features .feature-row {
    gap: 80px;  /* 增加图片和文字之间的间距 */
    margin-bottom: 80px;  /* 增加行之间的间距 */
    align-items: flex-start;  /* 让内容从顶部对齐 */
}

/* 企业健康服务页面的图片样式 */
.contract-features .feature-image {
    width: 500px;  /* 统一设置固定宽度 */
    flex: 0 0 500px;  /* 防止图片被压缩 */
}

.contract-features .feature-image img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* 调整图片和文字的布局 */
.contract-features .feature-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
    margin-bottom: 80px;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .contract-features .feature-image {
        width: 100%;
        flex: none;
    }
    
    .contract-features .feature-image img {
        max-width: 100%;
    }
}

/* 我们页面样式 */
.contact-features {
    text-align: center;
    padding: 80px 0;
    background-color: #f5f5f5;
}

.company-info {
    margin-bottom: 60px;
}

.company-info h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}

.company-info .subtitle {
    font-size: 20px;
    color: #666;
}

.contact-info {
    margin-top: 60px;
}

.contact-info h2 {
    font-size: 28px;
    color: #0071c1;
    margin-bottom: 30px;
}

.contact-details {
    font-size: 18px;
    color: #666;
    line-height: 2;
}

.contact-details p {
    margin-bottom: 10px;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .contact-features {
        padding: 40px 20px;
    }
    
    .company-info h2 {
        font-size: 28px;
    }
    
    .company-info .subtitle {
        font-size: 16px;
    }
    
    .contact-info h2 {
        font-size: 24px;
    }
    
    .contact-details {
        font-size: 16px;
    }
}

/* 智能合同页面特定样式 */
.znht-page .slider-dots {
    display: none;  /* 隐藏轮播点 */
}

.content p {
    margin: 0;
    padding: 0;
    font-size: 15px;
    background: transparent;
    font-family: "Microsoft YaHei", "SimSun", sans-serif;
    letter-spacing: 0.5px;
    color: #333;
    line-height: 1.8;
    text-align: justify;  /* 两端对齐 */
}

.contact-details p {
    margin: 2px 0;
    font-size: 14px;
    background: transparent;
    text-align: left;
    font-family: "SimSun", serif;
    letter-spacing: 0;
    line-height: 1.5;
    color: #333;
}

.about-us {
    background: transparent;
    max-width: 800px;  /* 限制内容区域宽度 */
    margin: 0 auto;
    padding: 0 20px;
}

.content {
    line-height: 1.8;
    text-align: left;
    background: transparent;
    color: #333;
    width: 100%;  /* 确保内容占满容器宽度 */
}