        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Noto Sans SC', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
            overflow-x: hidden;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
          /* 位置导航开始-------------------------------------------------------------------------------- */
        .breadcrumb {
            background-color: #f1f5f9;
            padding: 18px 0;
            margin-top: 1px;
            border-bottom: 1px solid #e2e8f0;
        }

        .breadcrumb-content {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            font-size: 15px;
            color: #64748b;
        }

        .breadcrumb a {
            color: #4dabf7;
            text-decoration: none;
            transition: color 0.3s;
            font-weight: 500;
            display: flex;
            align-items: center;
        }

        .breadcrumb a:hover {
            color: #0e74f6;
            text-decoration: underline;
        }

        .breadcrumb span.separator {
            margin: 0 10px;
            color: #94a3b8;
        }

        .breadcrumb .current {
            color: #475569;
            font-weight: 600;
            max-width: 400px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .breadcrumb-icon {
            margin-right: 8px;
            font-size: 14px;
        }
        /* 位置导航结束--------------------------------------------------------------------------------- */

          /* 头部样式 */
header {
    background: linear-gradient(135deg, #2768bb 0%, #0667e7 100%);
    color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.logo-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text h1 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
}

.logo-text p {
    font-size: 14px;
    opacity: 0.9;
    margin-top: 5px;
}

/* 导航菜单样式 - 修复下拉菜单问题 */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-menu > li {
    position: relative;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu a:hover {
    color: #4dabf7;
}

.nav-menu a.active {
    color: #4dabf7;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #4dabf7;
}

/* 二级菜单样式 */
.nav-item.has-submenu {
    position: relative;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(21, 85, 168, 0.98);
    min-width: 200px;
    border-radius: 8px;
    padding: 10px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    margin-top: 20px;
}

.nav-item.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.submenu a {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s;
    width: 100%;
    box-sizing: border-box;
}

.submenu a:hover {
    color: #4dabf7;
    background: rgba(255, 255, 255, 0.1);
    padding-left: 25px;
}

/* 移动端下拉箭头样式 */
.nav-item.has-submenu > a .dropdown-icon {
    font-size: 12px;
    transition: transform 0.3s;
}

.nav-item.has-submenu > a .dropdown-icon.desktop {
    display: inline-block;
}

.nav-item.has-submenu > a .dropdown-icon.mobile {
    display: none;
}

/* 移动端子菜单样式 */
@media (max-width: 768px) {
    .nav-item.has-submenu > a .dropdown-icon.desktop {
        display: none;
    }
    
    .nav-item.has-submenu > a .dropdown-icon.mobile {
        display: inline-block;
        margin-left: auto;
        font-size: 12px;
        transition: transform 0.3s;
    }
    
    .nav-item.has-submenu.active > a .dropdown-icon.mobile {
        transform: rotate(180deg);
    }
    
    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(26, 75, 140, 0.8);
        border-radius: 0;
        box-shadow: none;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        margin-top: 0;
    }
    
    .nav-item.has-submenu.active .submenu {
        max-height: 500px;
    }
    
    .submenu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .submenu a {
        padding: 12px 0 12px 30px;
        font-size: 16px;
    }
}

.header-actions {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.search-btn, .language-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.search-btn:hover, .language-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* PC端默认隐藏关闭按钮 - 修复PC导航显示关闭按钮的问题 */
.nav-close-btn {
    display: none;
}

/* 轮播图样式 */
.banner {
    position: relative;
    height: 600px;
    overflow: hidden;
    margin-top: 0px;
    width: 100%;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.banner-slide.active {
    opacity: 1;
    z-index: 2;
}

.banner-slide-1 {
    background-image: linear-gradient(rgba(10, 46, 92, 0.8), rgba(10, 46, 92, 0.7)), url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070');
}

.banner-slide-2 {
    background-image: linear-gradient(rgba(10, 46, 92, 0.8), rgba(10, 46, 92, 0.7)), url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070');
}

.banner-slide-3 {
    background-image: linear-gradient(rgba(10, 46, 92, 0.8), rgba(10, 46, 92, 0.7)), url('https://images.unsplash.com/photo-1559131397-f94da358a2f7?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070');
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 90%;
    max-width: 1000px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    padding: 20px;
    z-index: 3;
}

.banner-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.banner-content p {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.9;
}

.banner-btn {
    display: inline-block;
    background: linear-gradient(135deg, #4dabf7 0%, #339af0 100%);
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(77, 171, 247, 0.4);
}

.banner-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(77, 171, 247, 0.6);
}

.banner-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.banner-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.banner-dot.active {
    background: white;
}

.banner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    font-size: 20px;
}

.banner-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.banner-prev {
    left: 30px;
}

.banner-next {
    right: 30px;
}

/* 核心价值区域 */
.core-values {
    padding: 100px 0;
    background: white;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
    width: 100%;
}

.section-title h2 {
    font-size: 36px;
    color: #0a2e5c;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #4dabf7, #0f72f0);
    border-radius: 2px;
}

.section-title p {
    color: #666;
    font-size: 18px;
    max-width: 700px;
    margin: 30px auto 0;
    line-height: 1.6;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    width: 100%;
}

.value-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #eee;
    width: 100%;
    box-sizing: border-box;
    background: white;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #4dabf7, #096cec);
}

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

.value-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #e7f5ff 0%, #d0ebff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #339af0;
    font-size: 36px;
    transition: all 0.3s;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #4dabf7 0%, #339af0 100%);
    color: white;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #0a2e5c;
    line-height: 1.3;
}

.value-card p {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

/* 管理痛点区域 */
.pain-points {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f8ff 100%);
}

.pain-points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    width: 100%;
}

.pain-point-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    border-left: 5px solid #ff6b6b;
}

.pain-point-card:nth-child(2) {
    border-left-color: #4dabf7;
}

.pain-point-card:nth-child(3) {
    border-left-color: #51cf66;
}

.pain-point-card:nth-child(4) {
    border-left-color: #ff922b;
}

.pain-point-card:nth-child(5) {
    border-left-color: #cc5de8;
}

.pain-point-card:nth-child(6) {
    border-left-color: #339af0;
}

.pain-point-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pain-point-icon {
    width: 60px;
    height: 60px;
    background: #ffe8e8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: #ff6b6b;
    font-size: 24px;
}

.pain-point-card:nth-child(2) .pain-point-icon {
    background: #e7f5ff;
    color: #4dabf7;
}

.pain-point-card:nth-child(3) .pain-point-icon {
    background: #e8f7e9;
    color: #51cf66;
}

.pain-point-card:nth-child(4) .pain-point-icon {
    background: #fff4e6;
    color: #ff922b;
}

.pain-point-card:nth-child(5) .pain-point-icon {
    background: #f3e8ff;
    color: #cc5de8;
}

.pain-point-card:nth-child(6) .pain-point-icon {
    background: #e7f5ff;
    color: #339af0;
}

.pain-point-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #0a2e5c;
    line-height: 1.3;
}

.pain-point-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* 产品功能区域 */
.product-features {
    padding: 100px 0;
    background: white;
}

.features-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
    justify-content: center;
}

.feature-tab {
    background: white;
    padding: 15px 30px;
    border-radius: 30px;
    border: 1px solid #e9ecef;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    color: #555;
}

.feature-tab:hover {
    border-color: #4dabf7;
    color: #4dabf7;
    transform: translateY(-3px);
}

.feature-tab.active {
    background: linear-gradient(135deg, #4dabf7 0%, #106ade 100%);
    color: white;
    border-color: #4dabf7;
    box-shadow: 0 5px 15px rgba(77, 171, 247, 0.3);
}

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

.feature-content.active {
    display: block;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-item {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    border: 1px solid #f1f5f9;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e7f5ff 0%, #d0ebff 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #339af0;
    font-size: 24px;
}

.feature-item h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #0a2e5c;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.feature-list {
    list-style: none;
    margin-top: 15px;
}

.feature-list li {
    margin-bottom: 8px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list li i {
    color: #4dabf7;
}

/* 或者使用更美观的svg图标 */
.module-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
    background-size: contain;
    background-repeat: no-repeat;
}

/* 政策引领区域 */
.policy-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f8ff 100%);
}

.policy-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.policy-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #4dabf7;
    transition: transform 0.3s;
}

.policy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.policy-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #0a2e5c;
    line-height: 1.4;
}

.policy-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.policy-date {
    display: inline-block;
    background: #e7f5ff;
    color: #339af0;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-top: 15px;
}

/* 公司简介区域 */
.company-intro {
padding: 100px 0;
background: linear-gradient(135deg, #0a2e5c 0%, #1a4b8c 100%);
color: white;
}

.company-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}

.company-text h2 {
font-size: 36px;
margin-bottom: 25px;
line-height: 1.3;
}

.company-text p {
font-size: 18px;
line-height: 1.6;
opacity: 0.9;
margin-bottom: 25px;
}

.stats {
display: flex;
gap: 40px;
margin-top: 40px;
}

.stat-item {
text-align: center;
}

.stat-number {
font-size: 40px;
font-weight: 700;
color: #4dabf7;
line-height: 1;
margin-bottom: 10px;
}

.stat-label {
font-size: 16px;
opacity: 0.8;
}

.certifications {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 20px;
margin-top: 30px;
}

.cert-item {
background: rgba(255, 255, 255, 0.1);
padding: 15px;
border-radius: 8px;
text-align: center;
transition: all 0.3s;
}

.cert-item:hover {
background: rgba(255, 255, 255, 0.2);
transform: translateY(-5px);
}

.cert-item i {
font-size: 30px;
color: #4dabf7;
margin-bottom: 10px;
}

.cert-item p {
font-size: 14px;
margin: 0;
}

/* 合作伙伴区域 */
.partners {
    padding: 100px 0;
    background: white;
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.partner-logo {
    width: 180px;
    height: 220px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 20px;
    flex-shrink: 0;
    transition: all 0.3s;
}

.partner-logo:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    opacity: 0.7;
    transition: all 0.3s;
}

.partner-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* 二级页面内容样式 */
.solution-hero {
    background: linear-gradient(rgba(10, 46, 92, 0.8), rgba(10, 46, 92, 0.8)), url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070');
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    text-align: center;
    color: white;
    margin-top: 0px;
}
.solution-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}
.solution-hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
    opacity: 0.9;
}

.section-padding {
    padding: 100px 0;
}

/* 公司资质模块样式 */
.qualification-section {
    background-color: #fff;
    padding: 100px 0;
}

.qualification-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.qualification-intro h3 {
    font-size: 32px;
    color: #0a2e5c;
    margin-bottom: 20px;
}

.qualification-intro p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

.qualification-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.qualification-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.qualification-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.qualification-img {
    height: 220px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    padding: 20px;
}

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

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

.qualification-content {
    padding: 25px;
}

.qualification-content h4 {
    font-size: 20px;
    color: #0a2e5c;
    margin-bottom: 12px;
    font-weight: 600;
}

.qualification-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.qualification-number {
    display: inline-block;
    background-color: #f0f7ff;
    color: #4dabf7;
    font-size: 14px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.certification-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.certification-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 180px;
    text-align: center;
}

.badge-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4dabf7 0%, #339af0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: white;
    font-size: 32px;
    box-shadow: 0 8px 20px rgba(77, 171, 247, 0.3);
}

.badge-text h5 {
    font-size: 16px;
    color: #0a2e5c;
    margin-bottom: 5px;
}

.badge-text p {
    font-size: 14px;
    color: #666;
}

.qualification-footer {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #f0f7ff 0%, #e3f2fd 100%);
    border-radius: 15px;
}

.qualification-footer h4 {
    font-size: 24px;
    color: #0a2e5c;
    margin-bottom: 15px;
}

.qualification-footer p {
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 25px;
}

/* 相关新闻 */
.related-news {
    padding: 80px 0;
    background: #f8f9fa;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.related-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.related-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-content {
    padding: 25px;
}

.related-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #666;
}

.related-category {
    background: #f0f7ff;
    color: #4dabf7;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

.related-title {
    font-size: 18px;
    color: #0a2e5c;
    margin-bottom: 15px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4dabf7;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
}

.related-link:hover {
    gap: 12px;
}

/* 新闻导航 */
.news-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.news-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0a2e5c;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    max-width: 45%;
}

.news-nav-link:hover {
    color: #4dabf7;
}

.news-nav-link.prev {
    text-align: left;
}

.news-nav-link.next {
    text-align: right;
    flex-direction: row-reverse;
}

.news-nav-link i {
    font-size: 18px;
}

.news-nav-link span {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 标签区域 */
.news-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 50px 0 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.news-tags span {
    font-weight: 500;
    color: #666;
    margin-right: 10px;
}

.tag {
    background: #f0f7ff;
    color: #4dabf7;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.tag:hover {
    background: #4dabf7;
    color: white;
}


/* 功能模块CSS */
/* 功能模块展示 */
.functions-section {
    padding: 100px 0;
    background: white;
}

/* 交错图文模块 */
.function-module {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s, transform 0.8s;
}

.function-module.animate {
    opacity: 1;
    transform: translateY(0);
}

.function-module.reverse {
    flex-direction: row-reverse;
}

.function-image {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.function-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.function-image:hover img {
    transform: scale(1.05);
}

.function-content {
    flex: 1;
}

.function-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4dabf7 0%, #0a2e5c 100%);
    border-radius: 50%;
    color: white;
    text-align: center;
    line-height: 50px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.function-content h3 {
    font-size: 32px;
    color: #0a2e5c;
    margin-bottom: 20px;
    line-height: 1.3;
}

.function-content p {
    color: #666;
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.7;
}

.function-features {
    list-style: none;
    margin-bottom: 30px;
}

.function-features li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    color: #555;
}

.function-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4dabf7;
    font-weight: bold;
}

.function-btn {
    display: inline-block;
    background: linear-gradient(135deg, #4dabf7 0%, #0a2e5c 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(77, 171, 247, 0.3);
}

.function-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(77, 171, 247, 0.5);
}

/* 平台架构展示 */
.architecture-section {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.architecture-diagram {
    width: 100%;
    max-width: 1000px;
    margin: 50px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.architecture-layer {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

.architecture-layer-title {
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
    color: #0a2e5c;
    font-weight: 600;
    font-size: 18px;
}

.architecture-box {
    background: white;
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
    min-width: 180px;
    border-top: 5px solid #4dabf7;
}

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

.architecture-box i {
    font-size: 36px;
    color: #4dabf7;
    margin-bottom: 15px;
}

.architecture-box h4 {
    font-size: 18px;
    color: #0a2e5c;
    margin-bottom: 10px;
}

.architecture-box p {
    font-size: 14px;
    color: #666;
}

.architecture-arrow {
    font-size: 30px;
    color: #4dabf7;
    margin: 10px 0;
}

/* 系统解决方案部分CSS */
/* 页面头部 */
.page-header {
    background: linear-gradient(135deg, #0e74f6 0%, #0a2e5c 100%);
    color: white;
    padding: 90px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-header p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.6;
}

/* 对比分析部分 */
.comparison-section {
    padding: 100px 0;
    background: white;
}

.comparison-table {
    width: 100%;
    overflow-x: auto;
    margin-top: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.table {
    width: 100%;
    border-collapse: collapse;
    min-width: 350px;
}

.thead {
    background: linear-gradient(135deg, #4dabf7 0%, #0d6be4 100%);
    color: white;
}

.th {
    padding: 20px;
    text-align: center;
    font-weight: 600;
    font-size: 18px;
}

.th:first-child {
    border-radius: 12px 0 0 0;
}

.th:last-child {
    border-radius: 0 12px 0 0;
}

.tbody tr {
    border-bottom: 1px solid #eee;
    transition: all 0.3s;
}

.tbody tr:hover {
    background-color: #f8f9ff;
}

.td {
    padding: 20px;
    text-align: center;
    vertical-align: top;
}

.problem-cell {
    background: #fff5f5;
    color: #e53e3e;
    font-weight: 500;
}

.solution-cell {
    background: #f0fff4;
    color: #38a169;
    font-weight: 500;
}

/* 功能亮点部分 */
.features-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

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

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #4dabf7, #0a6cea);
}

.feature-icon-large {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #4dabf7 0%, #0a6cea 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
}

.feature-card h3 {
    font-size: 24px;
    color: #0a2e5c;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* 优势展示部分 */
.advantages-section {
    padding: 100px 0;
    background: white;
}

.advantages-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.advantage-item {
    text-align: center;
    padding: 30px;
    border-radius: 12px;
    background: #f8f9ff;
    transition: transform 0.3s;
}

.advantage-item:hover {
    transform: translateY(-5px);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #4dabf7 0%, #0870f5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.advantage-item h4 {
    font-size: 20px;
    color: #0a2e5c;
    margin-bottom: 15px;
}

.advantage-item p {
    color: #666;
    font-size: 15px;
    line-height: 1.5;
}

/* CTA部分 */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0e74f6 0%, #0a2e5c 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-btn {
    display: inline-block;
    background: white;
    color: #0e74f6;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
    background: #f8f9ff;
}

/* 新闻展示页主内容 */
.news-detail-header {
    background: linear-gradient(135deg, #0a2e5c 0%, #1e88e5 100%);
    color: white;
    padding: 140px 0 60px;
    margin-top: 0px;
    text-align: center;
}

.news-title-bt {
    font-size: 22px;
    font-weight: 600;
    color: #0a2e5c;
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.news-meta-lb {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 5px;
    font-size: 14px;
    color: #666;
}

.news-date-lb {
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.news-date, .news-category, .news-author {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.news-category {
    background: rgb(77 151 247 / 89%);
    padding: 2px 8px;
    border-radius: 20px;
    border: 1px solid rgba(77, 171, 247, 0.3);
}

/* 常见问题部分 */
.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #4dabf7;
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f0f7ff;
}

.faq-question h3 {
    font-size: 18px;
    color: #0a2e5c;
    margin: 0;
}

.faq-toggle {
    font-size: 20px;
    color: #4dabf7;
    transition: transform 0.3s;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #666;
    line-height: 1.6;
}

.faq-answer.open {
    padding: 0 30px 30px;
    max-height: 500px;
}

/* 联系表单样式 */
.contact-form-section {
    background: #f8f9fa;
    padding: 80px 0;
    border-radius: 20px;
}

.contact-form-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 10px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4dabf7;
    box-shadow: 0 0 0 3px rgba(77, 171, 247, 0.2);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, #4dabf7 0%, #156ee0 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(77, 171, 247, 0.3);
    align-self: center;
    min-width: 200px;
    margin-top: 20px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(77, 171, 247, 0.4);
}

.submit-btn:active {
    transform: translateY(-1px);
}

/* 地图部分 */
.map-section {
    padding: 80px 0;
    background: white;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 450px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4ff 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #0a2e5c;
}

.map-placeholder i {
    font-size: 80px;
    margin-bottom: 20px;
    color: #4dabf7;
}

.map-placeholder h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.map-placeholder p {
    font-size: 16px;
    color: #666;
    max-width: 300px;
    text-align: center;
}

/* 联系信息卡片 */
.contact-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid #4dabf7;
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(77, 171, 247, 0.15);
}

.contact-card h3 {
    font-size: 22px;
    color: #0a2e5c;
    margin-bottom: 15px;
}

.contact-card p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-card a {
    color: #4dabf7;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.contact-card a:hover {
    color: #0a2e5c;
}

/* 联系我们页面头部 */
.contact-header {
    background: linear-gradient(135deg, #0a2e5c 0%, #1e88e5 100%);
    color: white;
    padding: 60px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1559131397-f94da358a2f7?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.contact-header .container {
    position: relative;
    z-index: 1;
}

.contact-header h1 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.contact-header p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
    line-height: 1.6;
}

/* 联系我们主内容 */
.contact-main {
    padding: 80px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-bottom: 80px;
}

/* 返回按钮 */
.back-to-news {
    text-align: center;
    margin-top: 60px;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0a2e5c;
    color: white;
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.back-btn:hover {
    background: #1e88e5;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(30, 136, 229, 0.3);
}



/* 企业资质页面头部 */
.qualifications-header {
    background: linear-gradient(135deg, #0a2e5c 0%, #1e88e5 100%);
    color: white;
    padding: 60px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.qualifications-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.qualifications-header .container {
    position: relative;
    z-index: 1;
}

.qualifications-header h1 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.qualifications-header p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
    line-height: 1.6;
}

/* 资质分类导航 */
.qualifications-nav {
    background: white;
    padding: 30px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 80px;
    z-index: 100;
}

.qualifications-nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    flex-wrap: wrap;
    gap: 10px;
}

.qualifications-nav li {
    margin: 0 5px;
}

.qualifications-nav a {
    display: block;
    padding: 10px 25px;
    color: #666;
    text-decoration: none;
    font-weight: 500;
    border-radius: 30px;
    transition: all 0.3s;
    border: 1px solid #eee;
    white-space: nowrap;
}

.qualifications-nav a:hover,
.qualifications-nav a.active {
    background: linear-gradient(135deg, #4dabf7 0%, #0f70eb 100%);
    color: white;
    border-color: #4dabf7;
}

/* 资质展示区域 */
.qualifications-main {
    padding: 80px 0;
    background: white;
}

/* 资质网格布局 */
.qualifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.qualification-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.qualification-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(77, 171, 247, 0.15);
}

.qualification-img {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.qualification-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.qualification-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #4dabf7 0%, #0a2e5c 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.qualification-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.qualification-content h3 {
    font-size: 22px;
    color: #0a2e5c;
    margin-bottom: 15px;
    line-height: 1.3;
}

.qualification-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.qualification-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 14px;
    color: #888;
}

.qualification-id {
    background: #f0f7ff;
    padding: 3px 10px;
    border-radius: 15px;
    font-family: monospace;
}

.qualification-date {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* 企业荣誉区域 */
.honors-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.honors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.honor-item {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border-top: 4px solid #4dabf7;
}

.honor-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(77, 171, 247, 0.15);
}

.honor-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #4dabf7 0%, #1b79f0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
}

.honor-item h3 {
    font-size: 20px;
    color: #0a2e5c;
    margin-bottom: 10px;
}

.honor-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* 资质详情模态框样式 */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 15px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalFadeIn 0.3s ease;
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    font-size: 20px;
    transition: all 0.3s;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.8);
}

.modal-body {
    padding: 40px;
}

.modal-img {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.modal-title {
    font-size: 28px;
    color: #0a2e5c;
    margin-bottom: 15px;
}

.modal-description {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.modal-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.detail-item {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 14px;
    color: #888;
    margin-bottom: 5px;
}

.detail-value {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

/* 两栏布局 */
.news-layout {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
}

/* 左侧新闻列表 */
.news-list {
    flex: 1;
}

/* 右侧新闻分类 */
.news-categories {
    width: 300px;
    flex-shrink: 0;
}



/* 右侧分类样式 */
.categories-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
    position: sticky;
    top: 100px;
}

.categories-title {
    font-size: 22px;
    color: #0a2e5c;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #4dabf7;
    position: relative;
}

.categories-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #4dabf7, #0a2e5c);
}

.category-list {
    list-style: none;
    margin-bottom: 30px;
}

.category-item {
    margin-bottom: 12px;
}

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

.category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #333;
    text-decoration: none;
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.category-link:hover {
    background: #f0f7ff;
    color: #4dabf7;
    border-left-color: #4dabf7;
}

.category-link.active {
    background: #e8f4ff;
    color: #4dabf7;
    border-left-color: #4dabf7;
    font-weight: 500;
}

.category-count {
    background: #f0f7ff;
    color: #4dabf7;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 500;
}

.category-link.active .category-count {
    background: #4dabf7;
    color: white;
}

/* 热门新闻 */
.hot-news-title {
    font-size: 18px;
    color: #0a2e5c;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.hot-news-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f5f5f5;
}

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

.hot-news-number {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #4dabf7 0%, #1e88e5 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
}

.hot-news-content h4 {
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hot-news-content .date {
    font-size: 12px;
    color: #999;
}

/* 分页样式 ----------------------------------------------------------------------*/


.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: white;
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
}

.pagination-btn:hover {
    background: #4dabf7;
    color: white;
    border-color: #4dabf7;
}

.pagination-btn.active {
    background: linear-gradient(135deg, #4dabf7 0%, #1e88e5 100%);
    color: white;
    border-color: #4dabf7;
}

.pagination-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-btn.disabled:hover {
    background: white;
    color: #333;
    border-color: #ddd;
}

.pagination {
    margin: 0;
    padding: 10px 20px 30px 20px;
    text-align: center;
    font-size: 12px;
    display: block;
}
.pagination ul {
    display: inline-block;
    margin-left: 0;
    margin-bottom: 0;
    padding: 0;
}
.pagination ul>li {
    display: inline;
}
.pagination ul>.active>a, .pagination ul>.active>span {
    cursor: default;
}
.pagination ul>.active>a, .pagination ul>.active>span {
    background-color: #0a52d4;
    color: #fff;
}
.pagination ul>li>a, .pagination ul>li>span {
    margin: 4px 6px 4px 0;
    float: left;
    padding: 10px 18px;
    background-color: #ddd;
    color: #666;
    border-radius: 2px;
	font-family: 微软雅黑;
}
/* 分页样式 ----------------------------------------------------------------------*/

/* 页脚样式 */
footer {
    background: #1461c7;
    color: white;
    padding: 80px 0 30px;
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
    width: 100%;
}

.footer-column {
    width: 100%;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    line-height: 1.3;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #4dabf7;
}

.footer-links {
    list-style: none;
    width: 100%;
}

.footer-links li {
    margin-bottom: 15px;
    width: 100%;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
    display: inline-block;
    line-height: 1.4;
}

.footer-links a:hover {
    color: #4dabf7;
    transform: translateX(5px);
}

.contact-info {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    width: 100%;
}

.contact-icon {
    margin-right: 15px;
    color: #4dabf7;
    flex-shrink: 0;
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.contact-icon-lxwm {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #4dabf7 0%, #0d6de9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    width: 100%;
    line-height: 1.5;
}

/* 动画 */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .container {
        padding: 0 15px;
    }
    
    .news-title {
        font-size: 38px;
    }
    
    .news-layout {
        flex-direction: column;
        gap: 30px;
    }
    
    .news-categories {
        width: 100%;
        margin-bottom: 40px;
        position: static;
    }
    
    .categories-card {
        position: static;
    }
}

@media (max-width: 992px) {
    .company-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .news-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .news-layout {
        flex-direction: column;
    }
    
    .news-categories {
        width: 100%;
        order: -1;
        margin-bottom: 40px;
    }
    
    .news-item {
        flex-direction: column;
    }
    
    .news-image-container {
        width: 100%;
        height: 200px;
    }
    
    .news-content {
        padding: 30px;
    }
    
    .news-banner h1 {
        font-size: 36px;
    }
    
    .banner-content h2 {
        font-size: 36px;
    }
    
    .banner-content p {
        font-size: 18px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    /* 移动端导航菜单样式 */
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #0d54ae;
        flex-direction: column;
        padding: 100px 20px 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        z-index: 999;
        gap: 0;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu > li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        position: relative;
    }
    
    .nav-menu a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 0;
        font-size: 18px;
        width: 100%;
    }
    
    .nav-menu a.active::after {
        display: none;
    }
    
    /* 移动端显示关闭按钮 - 修复PC导航显示关闭按钮的问题 */
    .nav-close-btn {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        color: white;
        font-size: 30px;
        cursor: pointer;
        z-index: 1000;
    }
    
    .news-title {
        font-size: 30px;
    }
    
    /* 移动端子菜单样式 */
    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(26, 75, 140, 0.8);
        border-radius: 0;
        box-shadow: none;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        margin-top: 0;
    }
    
    .nav-item.has-submenu.active .submenu {
        max-height: 500px;
    }
    
    .submenu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .submenu a {
        padding: 12px 0 12px 30px;
        font-size: 16px;
    }
    
    .mobile-menu-btn {
        display: flex;
        order: 3;
        margin-left: 15px;
    }
    
    .header-actions {
        order: 2;
        margin-left: auto;
    }
    
    .logo {
        order: 1;
    }
    
    .banner {
        height: 400px;
    }
    
    .banner-content {
        width: 95%;
        padding: 15px;
    }
    
    .banner-content h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .banner-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .section-title p {
        font-size: 16px;
        padding: 0 10px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .news-banner {
        padding: 50px 0 40px;
    }
    
    .news-banner h1 {
        font-size: 32px;
    }
    
    .news-card {
        margin-bottom: 0;
    }
    
    .events-sidebar {
        padding: 20px;
    }
    
    .partner-logos {
        gap: 20px;
    }
    
    .partner-logo {
        width: 130px;
        height: 70px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
                .audit-content {
                grid-template-columns: 1fr;
            }

            .audit-features {
                grid-template-columns: 1fr;
            }
     .comparison-table {
                display: block;
                overflow-x: auto;
            }
            
     .architecture-layer {
                flex-direction: column;
                text-align: center;
            }

     .layer-content {
                margin-left: 0;
                margin-top: 15px;
            }       
}

@media (max-width: 576px) {
    .banner {
        height: 350px;
    }
    
    .banner-content h2 {
        font-size: 24px;
    }
    
    .banner-content p {
        font-size: 16px;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
    
    .section-title p {
        font-size: 15px;
    }
    
    .news-excerpt {
        font-size: 14px;
    }
    
    .values-grid,
    .access-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .value-card,
    .access-card {
        padding: 20px 15px;
    }
    
    .access-card img {
        height: 140px;
    }
    
    .access-content {
        padding: 20px;
    }
    
    .news-content {
        padding: 15px;
    }
    
    .news-content h3 {
        font-size: 17px;
    }
    
    .news-content p {
        font-size: 14px;
    }
    
    .events-sidebar h3 {
        font-size: 20px;
    }
    
    .event-item {
        padding: 12px 0;
    }
    
    .partner-logos {
        gap: 15px;
    }
    
    .partner-logo {
        width: 130px;
        height: 145px;
        padding: 10px;
    }
    
    .logo-text h1 {
        font-size: 22px;
    }
    
    .logo-text p {
        font-size: 12px;
    }
    
    .header-content {
        padding: 15px 0;
    }
    
    .breadcrumb-content {
        font-size: 14px;
    }
    
    .breadcrumb .current {
        max-width: 250px;
    }
}

/*-------------------------------------------------------------------------------*/




 /* 面包屑导航 - 修复样式 */
        .breadcrumb {
            background-color: #f1f5f9;
            padding: 18px 0;
            margin-top: 1px;
            border-bottom: 1px solid #e2e8f0;
        }

        .breadcrumb-content {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            font-size: 15px;
            color: #64748b;
        }

        .breadcrumb a {
            color: #4dabf7;
            text-decoration: none;
            transition: color 0.3s;
            font-weight: 500;
            display: flex;
            align-items: center;
        }

        .breadcrumb a:hover {
            color: #0e74f6;
            text-decoration: underline;
        }

        .breadcrumb span.separator {
            margin: 0 10px;
            color: #94a3b8;
        }

        .breadcrumb .current {
            color: #475569;
            font-weight: 600;
            max-width: 400px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

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

        /* 页面主体内容 */
        .page-content {
            padding: 50px 0 80px;
        }

        .page-title {
            font-size: 36px;
            color: #0a2e5c;
            margin-bottom: 15px;
            position: relative;
            padding-bottom: 15px;
        }

        .page-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #4dabf7, #0a2e5c);
            border-radius: 2px;
        }

        .page-description {
            color: #666;
            font-size: 18px;
            margin-bottom: 40px;
            max-width: 800px;
            line-height: 1.7;
        }

        /* 左右分栏布局 */
        .content-layout {
            display: flex;
            gap: 40px;
            margin-top: 30px;
        }

        .main-content {
            flex: 1;
            min-width: 0; /* 防止flex元素溢出 */
        }

        .sidebar {
            width: 320px;
            flex-shrink: 0;
        }

        /* 新闻详情样式 */
        .news-detail {
            background: white;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            margin-bottom: 40px;
        }

        .news-header {
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid #e2e8f0;
        }

        .news-title {
            font-size: 32px;
            color: #0a2e5c;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .news-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            color: #666;
            font-size: 14px;
        }

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

        .news-meta-item i {
            color: #4dabf7;
        }

        .news-content {
            font-size: 16px;
            line-height: 1.8;
            color: #444;
        }

        .news-content h2 {
            font-size: 24px;
            color: #0a2e5c;
            margin: 10px 0 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #e2e8f0;
        }

        .news-content h3 {
            font-size: 20px;
            color: #0a2e5c;
            margin: 25px 0 12px;
        }

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

        .news-content ul, .news-content ol {
            margin: 25px 0 15px 20px;
            padding-left: 20px;
        }

        .news-content li {
            margin-bottom: 8px;
        }

        .news-content blockquote {
            border-left: 4px solid #4dabf7;
            padding: 15px 20px;
            margin: 25px 0;
            background-color: #f8fafc;
            font-style: italic;
            color: #555;
            border-radius: 0 8px 8px 0;
        }

        .news-image {
            margin: 20px 0 8px 12px;
            text-align: center;
        }

        .news-image img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .news-image img:hover {
            transform: scale(1.01);
        }

        .news-image-caption {
            font-size: 14px;
            color: #666;
            margin-top: 10px;
            text-align: center;
            font-style: italic;
        }

        .news-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #e2e8f0;
        }

        .tag {
            background-color: #f0f7ff;
            color: #4dabf7;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 14px;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .tag:hover {
            background-color: #4dabf7;
            color: white;
            text-decoration: none;
        }

        /* 侧边栏样式 */
        .sidebar-widget {
            background: white;
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }

        .sidebar-title {
            font-size: 20px;
            color: #0a2e5c;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #4dabf7;
            position: relative;
        }

        .sidebar-title::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 50px;
            height: 2px;
            background: #0a2e5c;
        }

        /* 新闻分类 */
        .category-list {
            list-style: none;
        }

        .category-item {
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px dashed #e2e8f0;
            transition: all 0.3s;
        }

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

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

        .category-link {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #444;
            text-decoration: none;
            transition: color 0.3s;
        }

        .category-link:hover {
            color: #4dabf7;
        }

        .category-count {
            background-color: #f0f7ff;
            color: #4dabf7;
            padding: 3px 10px;
            border-radius: 12px;
            font-size: 12px;
            transition: all 0.3s;
        }

        .category-item:hover .category-count {
            background-color: #4dabf7;
            color: white;
        }

        /* 热门新闻 */
        .hot-news-list {
            list-style: none;
        }

        .hot-news-item {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px dashed #e2e8f0;
            transition: all 0.3s;
        }

        .hot-news-item:hover {
            transform: translateY(-3px);
        }

        .hot-news-item:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }

        .hot-news-img {
            width: 80px;
            height: 80px;
            border-radius: 8px;
            overflow: hidden;
            flex-shrink: 0;
        }

        .hot-news-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }

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

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

        .hot-news-title {
            font-size: 15px;
            font-weight: 500;
            line-height: 1.4;
            margin-bottom: 8px;
        }

        .hot-news-title a {
            color: #333;
            text-decoration: none;
            transition: color 0.3s;
        }

        .hot-news-title a:hover {
            color: #4dabf7;
        }

        .hot-news-date {
            font-size: 12px;
            color: #888;
        }

        /* 标签云 */
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .tag-cloud a {
            display: inline-block;
            padding: 6px 15px;
            background-color: #f0f7ff;
            color: #4dabf7;
            border-radius: 20px;
            font-size: 14px;
            text-decoration: none;
            transition: all 0.3s;
        }

        .tag-cloud a:hover {
            background-color: #4dabf7;
            color: white;
            transform: translateY(-2px);
        }

        /* 新闻导航 */
        .news-navigation {
            display: flex;
            justify-content: space-between;
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid #e2e8f0;
        }

        .news-nav-link {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 15px 20px;
            background-color: #f8fafc;
            border-radius: 8px;
            text-decoration: none;
            color: #444;
            transition: all 0.3s;
            max-width: 45%;
            border: 1px solid #e2e8f0;
        }

        .news-nav-link:hover {
            background-color: #4dabf7;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(77, 171, 247, 0.3);
            border-color: #4dabf7;
        }

        .news-nav-link.prev i {
            margin-right: 5px;
        }

        .news-nav-link.next i {
            margin-left: 5px;
        }

        .news-nav-title {
            font-size: 14px;
            font-weight: 500;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
