    /* ===== 独享CSS部分 ===== */
        /* 轮播图样式 */
        .hero-slider {
            height: 700px;
            position: relative;
            overflow: hidden;
            margin-top: 70px;
            background: var(--gradient);
        }
        
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease;
            display: flex;
            align-items: center;
            background-size: cover;
            background-position: center;
        }
        
        .slide.active {
            opacity: 1;
        }
        
        .slide-content {
            max-width: 600px;
            padding: 40px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 15px;
            margin-left: 10%;
            transform: translateX(-50px);
            opacity: 0;
            transition: all 0.8s ease;
            box-shadow: var(--shadow);
            backdrop-filter: blur(10px);
        }
        
        .slide.active .slide-content {
            transform: translateX(0);
            opacity: 1;
        }
        
        .slide h1 {
            font-size: 42px;
            margin-bottom: 20px;
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .slide p {
            font-size: 18px;
            margin-bottom: 25px;
        }
        
        .slider-nav {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .slider-dot.active {
            background: white;
            transform: scale(1.3);
        }
        
        /* 公司信息展示区 */
        .company-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .company-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            position: relative;
        }
        
        .company-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .company-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient);
        }
        
        .company-header {
            background: var(--primary-color);
            color: white;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .company-id {
            font-size: 14px;
            opacity: 0.8;
        }
        
        .detail-btn {
            background: var(--secondary-color);
            color: white;
            border: none;
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            animation: pulseBtn 2s infinite;
            box-shadow: var(--glow);
        }
        
        @keyframes pulseBtn {
            0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
            100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
        }
        
        .detail-btn:hover {
            background: var(--primary-color);
            transform: scale(1.05);
        }
        
        .company-body {
            padding: 20px;
        }
        
        .company-field {
            display: flex;
            margin-bottom: 10px;
            border-bottom: 1px solid #E2E8F0;
            padding-bottom: 10px;
        }
        
        .field-name {
            font-weight: 600;
            width: 120px;
            flex-shrink: 0;
            color: var(--primary-color);
        }
        
        .field-value {
            flex: 1;
        }
        
        .price {
            font-size: 24px;
            font-weight: 700;
            color: var(--secondary-color);
            text-align: center;
            margin-top: 15px;
            animation: priceGlow 3s infinite;
        }
        
        @keyframes priceGlow {
            0% { text-shadow: 0 0 5px rgba(212, 175, 55, 0.5); }
            50% { text-shadow: 0 0 15px rgba(212, 175, 55, 0.8); }
            100% { text-shadow: 0 0 5px rgba(212, 175, 55, 0.5); }
        }
        
        /* 核心优势样式 */
        .advantages {
            background: var(--light-color);
            position: relative;
            overflow: hidden;
        }
        
        .advantages:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(10,36,99,0.03)"/></svg>');
            background-size: cover;
        }
        
        .advantage-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .advantage-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: var(--shadow);
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .advantage-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .advantage-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
        }
        
        .advantage-card:hover:before {
            transform: scaleX(1);
        }
        
        .advantage-icon {
            font-size: 48px;
            color: var(--secondary-color);
            margin-bottom: 20px;
            display: inline-block;
            animation: rotateIcon 10s linear infinite;
        }
        
        @keyframes rotateIcon {
            0% { transform: rotateY(0); }
            100% { transform: rotateY(360deg); }
        }
        
        /* 关于我们样式 */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .about-text {
            padding-right: 20px;
        }
        
        .about-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            position: relative;
        }
        
        .about-image:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient);
            opacity: 0.1;
            z-index: 1;
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        .stats {
            display: flex;
            justify-content: space-between;
            margin-top: 30px;
        }
        
        .stat-item {
            text-align: center;
            padding: 15px;
            border-radius: 10px;
            background: rgba(10, 36, 99, 0.05);
            flex: 1;
            margin: 0 10px;
            transition: all 0.3s ease;
        }
        
        .stat-item:hover {
            transform: translateY(-5px);
            background: rgba(10, 36, 99, 0.1);
        }
        
        .stat-number {
            font-size: 36px;
            font-weight: 700;
            color: var(--primary-color);
            display: block;
        }
        
        .stat-label {
            font-size: 14px;
            color: var(--text-color);
        }
        
        /* 服务流程样式 */
        .process {
            background: var(--light-color);
            position: relative;
        }
        
        .process:before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,100 L0,100 Z" fill="rgba(10,36,99,0.03)"/></svg>');
            background-size: cover;
        }
        
        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin-top: 50px;
        }
        
        .process-steps:before {
            content: '';
            position: absolute;
            top: 40px;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--primary-color);
            z-index: 1;
        }
        
        .process-step {
            text-align: center;
            position: relative;
            z-index: 2;
            flex: 1;
        }
        
        .step-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 30px;
            position: relative;
            animation: pulse 2s infinite;
            box-shadow: var(--shadow);
        }
        
        @keyframes pulse {
            0% { 
                box-shadow: 0 0 0 0 rgba(10, 36, 99, 0.7);
                transform: scale(1);
            }
            70% { 
                box-shadow: 0 0 0 15px rgba(10, 36, 99, 0);
                transform: scale(1.05);
            }
            100% { 
                box-shadow: 0 0 0 0 rgba(10, 36, 99, 0);
                transform: scale(1);
            }
        }
        
        .step-title {
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        /* 知识库样式 */
        .knowledge-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .knowledge-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            position: relative;
        }
        
        .knowledge-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .knowledge-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        
        .knowledge-image:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient);
            opacity: 0.2;
            z-index: 1;
        }
        
        .knowledge-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .knowledge-card:hover .knowledge-image img {
            transform: scale(1.1);
        }
        
        .knowledge-content {
            padding: 20px;
        }
        
        .knowledge-title {
            font-size: 18px;
            margin-bottom: 10px;
        }
        
        .knowledge-title a {
            color: var(--primary-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .knowledge-title a:hover {
            color: var(--secondary-color);
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .about-content {
                grid-template-columns: 1fr;
            }
            
            .about-text {
                padding-right: 0;
            }
            
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .process-steps {
                flex-direction: column;
                gap: 40px;
            }
            
            .process-steps:before {
                display: none;
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background: white;
                flex-direction: column;
                padding: 20px;
                box-shadow: var(--shadow);
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .nav-links li {
                margin: 10px 0;
            }
            
            .mobile-toggle {
                display: block;
            }
            
            .hero-slider {
                height: 500px;
            }
            
            .slide h1 {
                font-size: 32px;
            }
            
            .slide-content {
                margin-left: 5%;
                padding: 25px;
            }
            
            .advantage-grid, .company-grid, .knowledge-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .stats {
                flex-direction: column;
                gap: 15px;
            }
            
            .stat-item {
                margin: 5px 0;
            }
        }
        
        @media (max-width: 576px) {
            section {
                padding: 50px 0;
            }
            
            .hero-slider {
                height: 400px;
            }
            
            .slide h1 {
                font-size: 28px;
            }
        }