@charset "utf-8";

        /* ========================================
           知行市场调研 - 全球视野
           Style B: Global Horizon (Professional)
        ======================================== */
        
        :root {
            --bg-primary: #FFFFFF;
            --bg-secondary: #F0F7FF;
            --bg-tertiary: #E6F0FF;
            --primary-navy: #0A2463;
            --primary-blue: #1E40AF;
            --primary-light-blue: #3B82F6;
            --primary-ultra-light: #DBEAFE;
            --accent-gold: #F59E0B;
            --accent-amber: #D97706;
            --text-primary: #0F172A;
            --text-secondary: #334155;
            --text-muted: #64748B;
            --border-color: #CBD5E1;
            --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'PingFang SC', 'Noto Sans SC', sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        
        ::-webkit-scrollbar-track {
            background: var(--bg-secondary);
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--primary-navy);
            border-radius: 4px;
        }
        
        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            line-height: 1.3;
        }
        
        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }
        
        /* ========================================
           Navigation
        ======================================== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 24px 80px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }
        
        .navbar.scrolled {
            padding: 16px 80px;
            box-shadow: var(--shadow-md);
        }
        
        .logo {
            display: flex;
            align-items: center;
            height: 60px;
            width: 300px;
            gap: 14px;
                background-image: url('	https://research2.havereal.com/uploads/allimg/20251230/1-251230003201295.webp');
    background-size: contain;      /* 核心属性：确保图片完整显示在容器内，不被裁剪 */
    background-position: center;    /* 核心属性：图片在容器内居中 */
    background-repeat: no-repeat; 
    
        }
        /*.logo-image {
    
    background-image: url('	https://research2.havereal.com/uploads/allimg/20251230/1-251230003201295.webp');
    background-size: contain;     
    background-position: center;   
    background-repeat: no-repeat;  

    
    width: 230px; 
    height:60px;  
}*/
        
        .logo-icon {
            width: 56px;
            height: 56px;
            background: var(--primary-navy);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            font-weight: 800;
            color: white;
            letter-spacing: -1px;
        }
        
        .logo-text {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary-navy);
            letter-spacing: -0.5px;
        }
        
        .logo-slogan {
            font-size: 11px;
            color: var(--text-muted);
            letter-spacing: 3px;
            text-transform: uppercase;
        }
        
        .nav-links {
            display: flex;
            gap: 48px;
            list-style: none;
		
        }
        
        .nav-links li {
            position: relative;
        }
        .nav-links li.active > a {
            color: var(--accent-gold);
        }

        .nav-links li.active > a::after {
            width: 100%;
        }

        /* 子栏目激活时顶级栏目高亮 */
        .nav-links li .dropdown li a.active {
           color: var(--accent-gold);
           background: var(--bg-tertiary);
        }

        .nav-links li .dropdown li a.active + .has-dropdown {
           color: var(--accent-gold);
        }
        .nav-links a {
            font-size: 15px;
            font-weight: 500;
            color: var(--text-secondary);
            padding: 8px 0;
            position: relative;
            display: block;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-gold);
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover {
            color: var(--primary-navy);
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        /* 二级下拉菜单 */
        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 200px;
            background: white;
            border-radius: 10px;
            box-shadow: var(--shadow-lg);
            padding: 15px 0;
            margin-top: 10px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 999;
            border: 1px solid var(--border-color);
        }
        
        .dropdown li {
            list-style: none;
        }
        
        .dropdown a {
            padding: 10px 20px;
            color: var(--text-secondary);
            transition: all 0.2s ease;
        }
        
        .dropdown a:hover {
            background: var(--bg-tertiary);
            color: var(--primary-blue);
            padding-left: 25px;
        }
        
        .dropdown a::after {
            display: none;
        }
        
        .has-dropdown:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .nav-cta {
            padding: 14px 32px;
            background: var(--primary-navy);
            border-radius: 8px;
            font-weight: 600;
            font-size: 15px;
            color: white;
            transition: all 0.3s ease;
        }
        
        .nav-cta:hover {
            background: var(--primary-blue);
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }
        
        /* 汉堡菜单 - 移动端 */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--primary-navy);
            cursor: pointer;
        }
        
        /* ========================================
           Hero Section
        ======================================== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #F0F7FF 0%, #FFFFFF 50%, #E6F0FF 100%);
            padding-top: 120px;
        }
        
        .hero-bg-pattern {
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2394A3B8' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.7;
        }
        
        .hero-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 80px;
            align-items: center;
            position: relative;
            z-index: 10;
        }
        
        .hero-content {
            max-width: 680px;
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 24px;
            background: rgba(245, 158, 11, 0.1);
            border-radius: 50px;
            font-size: 14px;
            color: var(--accent-gold);
            font-weight: 600;
            margin-bottom: 32px;
            border: 1px solid rgba(245, 158, 11, 0.2);
        }
        
        .hero h1 {
            font-size: 64px;
            font-weight: 800;
            margin-bottom: 24px;
            color: var(--primary-blue);
            letter-spacing: -1px;
            line-height: 1.1;
        }
        
        .hero h1 span {
            color: var(--accent-gold);
        }
        
        .hero-subtitle {
            font-size: 22px;
            color: var(--text-secondary);
            margin-bottom: 20px;
            font-weight: 400;
            line-height: 1.7;
        }
        
        .hero-description {
            font-size: 17px;
            color: var(--text-muted);
            margin-bottom: 40px;
            line-height: 1.9;
        }
        
        .hero-ctas {
            display: flex;
            gap: 20px;
        }
        
        .btn-primary {
            padding: 18px 44px;
            background: var(--primary-navy);
            border: none;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        
        .btn-primary:hover {
            background: var(--primary-blue);
            transform: translateY(-3px);
            box-shadow: var(--shadow-xl);
        }
        
        .btn-secondary {
            padding: 18px 44px;
            background: transparent;
            border: 2px solid var(--primary-light-blue);
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            color: var(--primary-navy);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn-secondary:hover {
            border-color: var(--primary-navy);
            background: var(--bg-tertiary);
        }
        
        /* ========================================
           Hero Banner Slider
        ======================================== */
        .hero-banners {
            position: relative;
        }
        
        .hero-banner {
            background: white;
            border-radius: 24px;
            padding: 56px;
            box-shadow: var(--shadow-xl);
            display: none;
            border: 1px solid var(--border-color);
            transition: all 0.5s ease;
            height: 420px;
			
        }
        
        .hero-banner.active {
            display: flex;
            gap: 36px;
            align-items: center;
            animation: slideUp 0.6s ease;
        }
        
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .hero-banner-icon {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-blue) 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 56px;
            flex-shrink: 0;
            color: white;
        }
        
        .hero-banner-content h3 {
            font-size: 28px;
            color: var(--accent-amber);
            margin-bottom: 14px;
        }
        
        .hero-banner-content p {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.8;
        }
        
        .hero-banner-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 20px;
        }
        
        .banner-tag {
            padding: 8px 16px;
            background: var(--bg-tertiary);
            border-radius: 20px;
            font-size: 12px;
            color: var(--primary-blue);
            font-weight: 500;
        }
        
        .hero-banner-dots {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 30px;
        }
        
        .hero-banner-dot {
            width: 10px;
            height: 10px;
            background: var(--border-color);
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .hero-banner-dot.active {
            background: var(--accent-gold);
            transform: scale(1.2);
        }
        
        /* ========================================
           Stats Section
        ======================================== */
        .stats-section {
            padding: 100px 80px;
            background: var(--bg-primary);
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .stat-card {
            text-align: center;
            padding: 40px 30px;
            background: var(--bg-secondary);
            border-radius: 20px;
            border: 1px solid var(--border-color);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-blue), var(--accent-gold));
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .stat-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary-light-blue);
        }
        
        .stat-card:hover::before {
            opacity: 1;
        }
        
        .stat-number {
            font-size: 52px;
            font-weight: 800;
            color: var(--accent-gold);
            margin-bottom: 8px;
            letter-spacing: -2px;
            position: relative;
        }
        
        .stat-number span {
            color: var(--accent-gold);
        }
        
        .stat-label {
            font-size: 15px;
            color: var(--text-muted);
            font-weight: 500;
        }
        
        /* ========================================
           客户信赖模块
        ======================================== */
        .clients-section {
            padding: 60px 80px;
            background: var(--bg-tertiary);
            overflow: hidden;
        }
        
        .clients-container {
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .clients-slider {
            position: relative;
            overflow: hidden;
            margin-top: 40px;
        }
        
        .clients-track {
            display: flex;
            animation: scrollLeft 20s linear infinite;
            width: max-content;
            gap: 60px;
        }
        
        .client-item {
            width: 300px;
            height: 150px;
            background: white;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-md);
            padding: 20px;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }
        
        .client-item:hover {
            transform: scale(1.05);
            box-shadow: var(--shadow-lg);
        }
        
        .client-logo {
            max-width: 100%;
            max-height: 130px;
            filter: grayscale(30%);
            transition: all 0.3s ease;
        }
        
        .client-item:hover .client-logo {
            filter: grayscale(0);
        }
        
        @keyframes scrollLeft {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }
        
        /* 暂停动画效果 */
        .clients-slider:hover .clients-track {
            animation-play-state: paused;
        }
        
        /* ========================================
           Services Section
        ======================================== */
        .services-section {
            padding: 80px 80px;
            background: var(--bg-secondary);
        }
        
        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 80px;
        }
        
        .section-tag {
            display: inline-block;
            padding: 10px 24px;
            background: rgba(245, 158, 11, 0.1);
            border-radius: 50px;
            font-size: 15px;
            color: var(--accent-gold);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 24px;
            border: 1px solid rgba(245, 158, 11, 0.2);
        }
        
        .section-header h2 {
            font-size: 48px;
            color: var(--primary-blue);
            margin-bottom: 20px;
            letter-spacing: -1px;
        }
        
        .section-header h2 span {
            color: var(--accent-gold);
        }
        
        .section-header p {
            font-size: 18px;
            color: var(--text-secondary);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .service-card {
            background: white;
            border-radius: 20px;
            padding: 44px;
            border: 1px solid var(--border-color);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 0;
            background: var(--accent-gold);
            transition: height 0.4s ease;
        }
        
        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
			
        }
        
        .service-card:hover::before {
            height: 100%;
        }
        
        .service-icon-wrapper {
            width: 80px;
            height: 80px;
            background: var(--bg-tertiary);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 38px;
            margin-bottom: 28px;
            transition: all 0.3s ease;
            color: var(--primary-blue);
        }
        
        .service-card:hover .service-icon-wrapper {
            background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-blue) 100%);
            color: white;
			
        }
        
        .service-card h3 {
            font-size: 22px;
            color: var(--accent-gold);
            margin-bottom: 16px;
        }
        
        .service-card p {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 24px;
        }
        
        .service-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        
        .service-tag {
            padding: 8px 14px;
            background: var(--bg-tertiary);
            border-radius: 6px;
            font-size: 12px;
            color: var(--primary-blue);
            font-weight: 500;
        }
        
        /* ========================================
           About Section
        ======================================== */
        .about-section {
            padding: 80px 80px;
            background: white;
        }
        
        .about-container {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 100px;
            max-width: 1400px;
            margin: 0 auto;
            align-items: center;
            
        }
        
        .about-images {
            position: relative;
        }
        
        .about-main-image {
            width: 100%;
            height: 500px;
            /*background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-blue) 100%);*/
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 100px;
            color: white;
            box-shadow: var(--shadow-xl);
            background-image: url('https://research2.havereal.com/uploads/allimg/20251230/1-251230000614a3.webp');
    background-size: cover;      
    background-position: center;  
    background-repeat: no-repeat; 
    
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
        }

        .about-accent-image {
            position: absolute;
            bottom: -40px;
            right: -40px;
            width: 200px;
            height: 200px;
            background: var(--accent-gold);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 80px;
            box-shadow: var(--shadow-xl);
        }
        
        .about-content h2 {
            font-size: 48px;
            color: var(--primary-navy);
            margin-bottom: 28px;
            letter-spacing: -1px;
            line-height: 1.2;
        }
        
        .about-content h2 span {
            color: var(--accent-gold);
        }
        
        .about-content > p {
            font-size: 17px;
            color: var(--text-secondary);
            line-height: 1.9;
            margin-bottom: 24px;
        }
        
        .about-highlights {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-top: 40px;
        }
        
        .about-highlight-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 24px;
            background: var(--bg-secondary);
            border-radius: 14px;
            border: 1px solid var(--border-color);
        }
        
        .about-highlight-icon {
            width: 52px;
            height: 52px;
            background: var(--primary-light-blue);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            flex-shrink: 0;
            color: white;
        }
        
        .about-highlight-text h4 {
            font-size: 17px;
            color: var(--primary-navy);
            margin-bottom: 6px;
        }
        
        .about-highlight-text p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.6;
        }
        
        /* ========================================
           Process Section
        ======================================== */
        .process-section {
            padding: 80px 80px;
            background: var(--bg-secondary);
        }
        
        .process-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .process-item {
            text-align: center;
            position: relative;
            padding: 40px 24px;
            background: white;
            border-radius: 20px;
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }
        
        /* 添加连接线 */
        .process-item:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 30px;
            right: -30px;
            width: 30px;
            height: 2px;
            background: var(--primary-light-blue);
        }
        
        .process-item:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: var(--accent-gold);
        }
        
        .process-number {
            width: 60px;
            height: 60px;
            background: var(--primary-navy);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 700;
            color: white;
            margin: 0 auto 24px;
        }
        
        .process-item:hover .process-number {
            background: var(--accent-gold);
        }
        
        .process-item h3 {
            font-size: 20px;
            color: var(--primary-navy);
            margin-bottom: 14px;
        }
        
        .process-item p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
        }
		/* ========================================
   News Section
======================================== */
.news-section {
    padding: 80px 80px;
    background: var(--bg-primary);
}

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

.news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.featured-news {
    grid-column: span 1;
    grid-row: span 2;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.featured-news:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.news-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.news-image {
    position: relative;
    overflow: hidden;
}

.featured-news .news-image {
    height: 300px;
}

.news-item .news-image {
    height: 180px;
}

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

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

.news-date {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--primary-navy);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

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

.featured-news .news-content {
    padding: 30px;
}

.news-category {
    display: inline-block;
    padding: 5px 12px;
    background: var(--bg-tertiary);
    color: var(--primary-blue);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.news-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.featured-news .news-content h3 {
    font-size: 24px;
    color: var(--primary-navy);
}

.news-content h3 a {
    color: var(--primary-blue);
    transition: color 0.3s ease;
}

.news-content h3 a:hover {
    color: var(--accent-gold);
}

.news-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--accent-gold);
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--accent-amber);
    transform: translateX(5px);
}

.news-more {
    text-align: center;
}
  /* ========================================
           分页
        ======================================== */
        

       .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    list-style-type: none;
    padding: 0;
}

.pagination li {
    /* 可以在这里为li添加通用样式 */
}

/* 为li中的a标签设置通用样式 */
.pagination li a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding:12px 16px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    background: white;
    color: var(--text-primary);
    text-decoration: none;
}

/* 鼠标悬停效果 */
.pagination li a:hover {
    border-color: var(--primary-light-blue);
    color: var(--primary-blue);
}

/* 【关键】当前页的li样式 */
.pagination li.active a {
    background: var(--primary-navy);
    color: white;
    border-color: var(--primary-navy);
    pointer-events: none; /* 让当前页的链接不可点击 */
    cursor: default;
}

/* “上一页”和“下一页”的特殊宽度 */
.pagination li.prev a,
.pagination li.next a {
    width: auto;
    padding: 12px 16px;
}
        .pagination-btn {
            width: 44px;
            height: 44px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 1px solid var(--border-color);
            background: white;
            cursor: pointer;
        }
        
        .pagination-btn:hover:not(.pagination-active) {
            border-color: var(--primary-light-blue);
            color: var(--primary-blue);
        }
        
        .pagination-active,.pagination .pagination-btn.thisclass
        {
            background: var(--primary-navy);
            color: white;
            border-color: var(--primary-navy);
            pointer-events: none;
            cursor: default;
        }
        
        .pagination-prev,
        .pagination-next {
            width: auto;
            padding: 0 16px;
        }
        /* 新闻内容区域 (已移除侧边栏) */
        .news-content-section {
            padding: 80px 0;
        }
        
        .news-detail-container {
            /* 移除了原有的 grid 布局，使内容占满容器 */
        }
        
        .news-main-content {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--border-color);
            /* 限制最大宽度以优化阅读体验 */
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .news-title {
            font-size: 36px;
            color: var(--primary-navy);
            margin-bottom: 30px;
            line-height: 1.3;
        }
        
        .news-meta {
            display: flex;
            align-items: center;
            gap: 24px;
            padding: 20px 0;
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
            margin-bottom: 30px;
            color: var(--text-muted);
            font-size: 15px;
        }
        
        .news-meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .news-body {
            font-size: 17px;
            color: var(--text-secondary);
            line-height: 1.9;
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
        }
             
        .news-main-content .news-body img {
            max-width: 100% !important;
            height: auto !important;
           display: block;
          
        }
        .news-body p {
            margin-bottom: 24px;
        }
        
        .news-body h3 {
            font-size: 24px;
            color: var(--primary-navy);
            margin: 36px 0 20px;
        }
        
        .news-image {
            width: 100%;
            border-radius: 16px;
            margin: 30px 0;
            box-shadow: var(--shadow-md);
        }
        
        .news-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin: 40px 0;
        }
        
        .news-tag {
            padding: 8px 18px;
            background: var(--bg-tertiary);
            border-radius: 20px;
            font-size: 14px;
            color: var(--primary-blue);
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .news-tag:hover {
            background: var(--primary-blue);
            color: white;
        }
        
        /* 上一篇/下一篇导航 */
        .news-navigation {
            display: flex;
            justify-content: space-between;
            margin-top: 60px;
            padding-top: 30px;
            border-top: 1px solid var(--border-color);
        }
        
        .news-nav-item {
            display: flex;
            align-items: center;
            gap: 12px;
            max-width: 45%;
        }
        
        .news-nav-item.prev {
            justify-content: flex-start;
        }
        
        .news-nav-item.next {
            justify-content: flex-end;
        }
        
        .news-nav-icon {
            font-size: 20px;
            color: var(--accent-gold);
        }
        
        .news-nav-text {
            line-height: 1.5;
        }
        
        .news-nav-label {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 4px;
        }
        
        .news-nav-title {
            font-size: 16px;
            color: var(--primary-navy);
            font-weight: 600;
            transition: color 0.3s ease;
        }
        
        .news-nav-item:hover .news-nav-title {
            color: var(--accent-gold);
        }
/* 响应式设计 */
@media (max-width: 1200px) {
    .news-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .featured-news {
        grid-column: span 2;
        grid-row: span 1;
        display: flex;
    }
    
    .featured-news .news-image {
        width: 40%;
        height: auto;
    }
    
    .featured-news .news-content {
        width: 60%;
    }
}

@media (max-width: 992px) {
    .news-section {
        padding: 80px 40px;
    }
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-news {
        grid-column: span 1;
        flex-direction: column;
    }
    
    .featured-news .news-image,
    .featured-news .news-content {
        width: 100%;
    }
    
    .featured-news .news-image {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .news-section {
        padding: 60px 20px;
    }
    .news-grid {
        /* 新增这行，强制手机端一行一个 */
        grid-template-columns: 1fr;
    }
    .news-item .news-image {
        height: 150px;
    }
    
    .news-content {
        padding: 20px;
    }
    
    .news-content h3 {
        font-size: 18px;
    }
}
        
        /* ========================================
           Contact Section
        ======================================== */
        .contact-section {
            padding: 80px 80px;
            background: var(--bg-secondary);
        }
        
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 80px;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .contact-info h2 {
            font-size: 48px;
            color: var(--primary-navy);
            margin-bottom: 24px;
            letter-spacing: -1px;
        }
        
        .contact-info h2 span {
            color: var(--accent-gold);
        }
        
        .contact-info > p {
            font-size: 17px;
            color: var(--text-secondary);
            line-height: 1.9;
            margin-bottom: 44px;
        }
        
        .contact-cards {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .contact-card {
            display: flex;
            align-items: center;
            gap: 24px;
            padding: 28px;
            background: var(--bg-secondary);
            border-radius: 16px;
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }
        
        .contact-card:hover {
            transform: translateX(10px);
            border-color: var(--accent-gold);
        }
        
        .contact-card-icon {
            width: 64px;
            height: 64px;
            background: var(--primary-navy);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            flex-shrink: 0;
            color: white;
        }
        
        .contact-card-content h4 {
            font-size: 13px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 6px;
        }
        
        .contact-card-content p {
            font-size: 16px;
            color: var(--primary-navy);
            font-weight: 600;
        }
        
        .contact-card-content a {
            color: inherit;
        }
        
        .contact-form-wrapper {
            background: var(--primary-navy);
            border-radius: 24px;
            padding: 56px;
            color: white;
        }
        
        .contact-form-wrapper h3 {
            font-size: 28px;
            margin-bottom: 36px;
            text-align: center;
        }
        
        .contact-form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 10px;
        }
        
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 16px 20px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            font-size: 15px;
            color: white;
            font-family: inherit;
            transition: all 0.3s ease;
        }
        
        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }
        
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--accent-gold);
            background: rgba(255, 255, 255, 0.15);
        }
        
        .form-group textarea {
            min-height: 130px;
            resize: vertical;
        }
        
        .form-group select {
            color: white;
            cursor: pointer;
        }
        
        .form-group select option {
            background: var(--primary-navy);
            color: white;
        }
        
        .submit-button {
            width: 100%;
            padding: 20px;
            background: var(--accent-gold);
            border: none;
            border-radius: 12px;
            font-size: 17px;
            font-weight: 600;
            color: var(--primary-navy);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .submit-button:hover {
            background: var(--accent-amber);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
        }
        
        /* ========================================
           Footer
        ======================================== */
        .footer {
            padding: 80px 80px 40px;
            background: var(--primary-navy);
            color: white;
        }
        
        .footer-top {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 60px;
            max-width: 1400px;
            margin: 0 auto 60px;
        }
        
        .footer-brand .logo {
            margin-bottom: 24px;
        }
        
        .footer-brand .logo-icon {
            background: white;
            color: var(--primary-navy);
        }
        
        .footer-brand .logo-text {
            color: white;
        }
        
        .footer-brand p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            margin-bottom: 24px;
        }
        
        .footer-social {
            display: flex;
            gap: 14px;
        }
        
        .footer-social-link {
            width: 48px;
            height: 48px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            transition: all 0.3s ease;
        }
        
        .footer-social-link:hover {
            background: var(--accent-gold);
        }
        
        .footer-column h4 {
            font-size: 17px;
            color: white;
            margin-bottom: 28px;
            font-weight: 600;
        }
        
        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        
        .footer-links a {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--accent-gold);
            padding-left: 5px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-bottom p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.5);
        }
        
        .footer-bottom a {
            color: var(--accent-gold);
        }
        
        /* ========================================
           在线客服和返回顶部
        ======================================== */
        .fixed-tools {
            position: fixed;
            right: 30px;
            bottom: 30px;
            z-index: 998;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .tool-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--primary-navy);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            box-shadow: var(--shadow-lg);
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }
        
        .tool-btn:hover {
            background: var(--accent-gold);
            transform: translateY(-5px);
        }
        
        /* 客服菜单 */
        .service-menu {
            position: absolute;
            right: 80px;
            bottom: 0;
            background: white;
            border-radius: 12px;
            box-shadow: var(--shadow-xl);
            width: 280px;
            padding: 20px;
            opacity: 0;
            visibility: hidden;
            transform: translateX(20px);
            transition: all 0.3s ease;
            border: 1px solid var(--border-color);
        }
        
        .service-menu.active {
            opacity: 1;
            visibility: visible;
            transform: translateX(0);
        }
        
        .service-menu-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--primary-navy);
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border-color);
        }
        
        .service-menu-items {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .service-menu-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px;
            border-radius: 8px;
            transition: all 0.2s ease;
        }
        
        .service-menu-item:hover {
            background: var(--bg-secondary);
        }
        
        .service-menu-icon {
            width: 40px;
            height: 40px;
            background: var(--bg-tertiary);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: var(--primary-blue);
        }
        
        .service-menu-text {
            flex: 1;
        }
        
        .service-menu-text h5 {
            font-size: 14px;
            color: var(--primary-navy);
            margin-bottom: 2px;
        }
        
        .service-menu-text p {
            font-size: 12px;
            color: var(--text-muted);
        }
        
        .wechat-qrcode {
            width: 120px;
            height: 120px;
            margin: 10px auto;
            display: block;
        }
        
        /* ========================================
           移动端底部导航
        ======================================== */
        .mobile-bottom-nav {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: white;
            border-top: 1px solid var(--border-color);
            padding: 10px 0;
            z-index: 997;
        }
        
        .mobile-nav-items {
            display: flex;
            justify-content: space-around;
        }
        
        .mobile-nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
            color: var(--text-secondary);
            font-size: 12px;
            flex: 1;
            padding: 5px 0;
        }
        
        .mobile-nav-icon {
            font-size: 20px;
        }
        
        .mobile-nav-item.active {
            color: var(--primary-blue);
        }
        
        /* 微信弹窗 */
        .wechat-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .wechat-modal.active {
            opacity: 1;
            visibility: visible;
        }
        
        .wechat-modal-content {
            background: white;
            border-radius: 16px;
            padding: 30px;
            text-align: center;
            position: relative;
            transform: scale(0.9);
            transition: all 0.3s ease;
        }
        
        .wechat-modal.active .wechat-modal-content {
            transform: scale(1);
        }
        
        .close-modal {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            font-size: 20px;
            color: var(--text-muted);
            cursor: pointer;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
        }
        
        .close-modal:hover {
            background: var(--bg-tertiary);
            color: var(--primary-navy);
        }
        
        .wechat-modal h3 {
            font-size: 18px;
            color: var(--primary-navy);
            margin-bottom: 20px;
        }
        
        .wechat-modal-qrcode {
            width: 200px;
            height: 200px;
            margin: 0 auto 15px;
        }
        
        .wechat-modal p {
            font-size: 14px;
            color: var(--text-secondary);
        }
        
        /* ========================================
           移动端侧边菜单
        ======================================== */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: 0;
            width: 85%;
            height: 100vh;
            background: white;
            z-index: 2000;
            transform: translateX(100%);
            transition: transform 0.3s ease;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            overflow-y: auto;
        }
        
        .mobile-menu.active {
            transform: translateX(0);
        }
        
        .mobile-menu-overlay {
            position: flex;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .mobile-menu-header {
            padding: 20px;
            border-bottom: 1px solid var(--border-color);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .close-mobile-menu {
            background: none;
            border: none;
            font-size: 24px;
            color: var(--primary-navy);
            cursor: pointer;
            
        }
        
        .mobile-menu-links {
            padding: 20px;
            list-style: none;
        }
        
        .mobile-menu-link {
            border-bottom: 1px solid var(--border-color);
        }
        
        .mobile-menu-link a {
            display: block;
            padding: 15px 0;
            font-size: 16px;
            color: var(--primary-navy);
            font-weight: 500;
        }
        
        .mobile-dropdown-toggle {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            background: none;
            border: none;
            padding: 15px 0;
            font-size: 16px;
            color: var(--primary-navy);
            font-weight: 500;
            cursor: pointer;
            font-family: inherit;
        }
        
        .mobile-dropdown-icon {
            transition: transform 0.3s ease;
        }
        
        .mobile-dropdown-icon.rotate {
            transform: rotate(180deg);
        }
        
        .mobile-dropdown {
            list-style: none;
            padding-left: 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .mobile-dropdown.active {
            max-height: 500px;
        }
        
        .mobile-dropdown a {
            display: block;
            padding: 12px 0;
            font-size: 15px;
            color: var(--text-secondary);
        }
        
        /* ========================================
           Mobile Responsive
        ======================================== */
        @media (max-width: 1200px) {
            .navbar {
                padding: 20px 40px;
            }
            
            .hero-container {
                padding: 0 40px;
            }
            
            .hero h1 {
                font-size: 48px;
            }
            
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .process-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .process-item:nth-child(n+4) {
                margin-top: 30px;
            }
            
            .process-item:nth-child(3)::after {
                display: none;
            }
            
            .about-container {
                grid-template-columns: 1fr;
            }
            
            .contact-container {
                grid-template-columns: 1fr;
            }
            
            .footer-top {
                grid-template-columns: 1fr 1fr;
            }
            .news-list {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 992px) {

            
            .nav-links {
                gap: 30px;
            }
            
            .news-banner {
                min-height: 250px;
                margin-top: 95px;
            }
            
            .news-banner h1 {
                font-size: 40px;
            }
            
            .news-header {
                padding: 25px 40px;
            }
            
            .news-list-section {
                padding: 50px 40px;
            }
            

        }
        
       
        
               
        
        /* ========================================
           Animations
        ======================================== */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.6s ease;
        }
        
        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }
 /* ========================================
           News栏目Banner
        ======================================== */
        .news-banner {
            margin-top: 110px;
            min-height: 300px;
            background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-blue) 100%);
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            padding: 40px 20px;
        }
        
        .news-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }
        
        .news-banner-content {
            position: relative;
            z-index: 10;
            text-align: center;
            color: white;
            max-width: 800px;
        }
        
        .news-banner h1 {
            font-size: 48px;
            margin-bottom: 16px;
            letter-spacing: -1px;
        }
        
        .news-banner p {
            font-size: 18px;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* ========================================
           位置导航与子栏目
        ======================================== */
        .news-header {
            padding: 30px 80px;
            background: var(--bg-primary);
            border-bottom: 1px solid var(--border-color);
        }
        
        .news-header-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .breadcrumbs {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: var(--text-muted);
        }
        
        .breadcrumbs a {
            color: var(--text-muted);
        }
        
        .breadcrumbs a:hover {
            color: var(--primary-blue);
        }
        
        .breadcrumbs span:last-child {
            color: var(--primary-navy);
            font-weight: 500;
        }
        
        .subcategories {
            display: flex;
            gap: 20px;
        }
        
        .subcategory-item {
            padding: 8px 18px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .subcategory-item.active {
            background: var(--primary-navy);
            color: white;
        }
        
        .subcategory-item:not(.active) {
            background: var(--bg-secondary);
            color: var(--text-secondary);
        }
        
        .subcategory-item:not(.active):hover {
            background: var(--bg-tertiary);
            color: var(--primary-blue);
        }
        
        /* ========================================
           新闻列表
        ======================================== */
        .news-list-section {
            padding: 60px 80px;
            background: var(--bg-secondary);
        }
        
        .news-list-container {
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .news-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .news-list-item {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
            display: flex;
        }
        
        .news-list-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-xl);
        }
        
        .news-list-image {
            width: 35%;
            position: relative;
            overflow: hidden;
        }
        
        .news-list-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .news-list-item:hover .news-list-img {
            transform: scale(1.05);
        }
        
        .news-list-date {
            position: absolute;
            bottom: 15px;
            right: 15px;
            background: var(--primary-navy);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 500;
        }
        
        .news-list-content {
            width: 65%;
            padding: 25px;
            display: flex;
            flex-direction: column;
        }
        
        .news-list-category {
            display: inline-block;
            padding: 5px 12px;
            background: var(--bg-tertiary);
            color: var(--primary-blue);
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 12px;
            align-self: flex-start;
        }
        
        .news-list-title {
            font-size: 20px;
            margin-bottom: 15px;
            line-height: 1.4;
            color: var(--primary-navy);
        }
        
        .news-list-item:hover .news-list-title {
            color: var(--accent-gold);
        }
        
        .news-list-excerpt {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 20px;
            flex-grow: 1;
        }
        
        .news-list-readmore {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 15px;
            font-weight: 600;
            color: var(--accent-gold);
            transition: all 0.3s ease;
            align-self: flex-start;
        }
        
        .news-list-readmore:hover {
            color: var(--accent-amber);
            transform: translateX(5px);
        }
        
      
        
       
         @media (max-width: 768px) {
            /* 隐藏桌面端元素 */
            .nav-links,
            .nav-cta,
            .fixed-tools {
                display: none;
            }
                        .news-list {
                grid-template-columns: 1fr;
            }
            /* 显示移动端元素 */
            .mobile-menu-btn,
            .mobile-bottom-nav {
                display: block;
            }
                
            .navbar {
                padding: 15px 20px;
            }
            .navbar.scrolled {
        padding: 12px 20px;
    }
    .mobile-menu-btn {
        
        margin-left: auto; 
        
    }
    .mobile-menu-btn i{margin-left:20px;}
            .hero {
                padding-top: 80px;
            }
            
            .hero-container {
                grid-template-columns: 1fr;
                padding: 60px 20px 120px;
                gap: 60px;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .hero-subtitle {
                font-size: 18px;
            }
            
            .hero-ctas {
                flex-direction: column;
            }
            
            .hero-banners {
                order: -1;
            }
            
            .hero-banner {
                height: auto;
                padding: 36px;
            }
            
            .hero-banner.active {
                flex-direction: column;
                text-align: center;
            }
            
            /* 统计模块 - 移动端垂直排列 */
            .stats-section {
                padding: 60px 20px;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .stat-card {
                padding: 30px 20px;
            }
            
            .stat-number {
                font-size: 42px;
            }
            
            /* 客户信赖模块 */
            .clients-section {
                padding: 60px 20px;
            }
            
            .client-item {
                width: 150px;
                height: 80px;
            }
            
            /* 服务模块 */
            .services-section {
                padding: 80px 20px;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .section-header h2 {
                font-size: 36px;
            }
            
            /* 流程模块 */
            .process-section {
                padding: 80px 20px;
            }
            
            .process-grid {
                grid-template-columns: 1fr;
            }
            
            .process-item:not(:last-child)::after {
                display: none;
            }
            
            .process-item {
                margin-bottom: 20px;
            }
            
            /* 关于我们 */
            .about-section {
                padding: 80px 20px;
            }
            
            .about-container {
                gap: 60px;
            }
            
            .about-main-image {
                height: 350px;
            }
            
            .about-highlights {
                grid-template-columns: 1fr;
            }
            
            /* 联系我们 */
            .contact-section {
                padding: 80px 20px;
            }
            
            .contact-container {
                gap: 60px;
            }
            
            .contact-form-row {
                grid-template-columns: 1fr;
            }
            
            .contact-form-wrapper {
                padding: 36px 20px;
            }
            
            /* 页脚 */
            .footer {
                padding: 60px 20px 80px; /* 底部留空间给移动端导航 */
            }
            
            .footer-top {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .news-banner {
                min-height: 200px;
                margin-top: 80px;
            }
            
            .news-banner h1 {
                font-size: 32px;
            }
            
            .news-banner p {
                font-size: 16px;
            }
            
            .news-header-container {
                /* 【修改】在小屏幕上，将导航和子栏目垂直排列 */
                flex-direction: column;
                align-items: flex-start; /* 左对齐 */
                gap: 15px; /* 增加垂直间距 */
            }
            
            .subcategories {
                /* 【修改】允许子栏目按钮换行 */
                flex-wrap: wrap;
            }
            
            .news-list-item {
                /* 【修改】在小屏幕上，新闻图片和内容垂直排列 */
                flex-direction: column;
            }
            
            .news-list-image,
            .news-list-content {
                width: 100%;
            }
            
            .news-list-image {
                height: 200px;
            }
            /* 增加页面底部内边距，避免被底部导航遮挡 */
            body {
                padding-bottom: 70px;
            }
        }
         @media (max-width: 576px) {

            
            .news-banner {
                min-height: 180px;
                margin-top: 75px;
                padding: 50px 20px;
            }
            
            .news-banner h1 {
                font-size: 26px;
                margin-bottom: 12px;
            }

            .news-banner p {
                font-size: 14px;
            }
            
            .news-header {
                padding: 20px 20px;
            }
            
            .news-list-section {
                padding: 40px 20px;
            }
            .news-list {
                grid-template-columns: 1fr;
            }
            .footer-top {
                grid-template-columns: 1fr;
            }
            
            .footer-bottom {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
            
            .pagination-btn {
                width: 36px;
                height: 36px;
                font-size: 14px;
            }
        }
        
        .category-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .category-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px dashed var(--border-color);
        }
        
        .category-item:last-child {
            border-bottom: none;
        }
        
        .category-name {
            color: var(--text-secondary);
            transition: color 0.3s ease;
        }
        
        .category-name:hover {
            color: var(--accent-gold);
        }
        
        .category-count {
            padding: 3px 10px;
            background: var(--bg-tertiary);
            border-radius: 10px;
            font-size: 12px;
            color: var(--primary-blue);
        }

   