      /* 独享标题样式 */
        .section-title {
            text-align: center;
            margin-bottom: 70px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 3rem;
            color: var(--primary-dark);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
            font-weight: 600;
        }
        
        .section-title h2::before, .section-title h2::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 80px;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--secondary-color));
        }
        
        .section-title h2::before {
            left: -100px;
        }
        
        .section-title h2::after {
            right: -100px;
            background: linear-gradient(90deg, var(--secondary-color), transparent);
        }
        
        .section-title p {
            color: var(--dark-color);
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            font-weight: 300;
        }
        
        /* 独享轮播图样式 */
        .hero-slider {
            height: 100vh;
            position: relative;
            overflow: hidden;
            margin-top: 70px;
        }
        
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.2s ease;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .slide.active {
            opacity: 1;
        }
        
        .slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(10, 26, 45, 0.85) 0%, rgba(26, 45, 74, 0.7) 100%);
        }
        
        .slide-content {
            text-align: center;
            color: var(--text-light);
            max-width: 900px;
            padding: 0 20px;
            transform: translateY(50px);
            opacity: 0;
            transition: all 1s ease 0.5s;
            z-index: 2;
            position: relative;
        }
        
        .slide.active .slide-content {
            transform: translateY(0);
            opacity: 1;
        }
        
        .slide-content h1 {
            font-size: 4rem;
            margin-bottom: 25px;
            font-weight: 600;
            line-height: 1.2;
        }
        
        .slide-content p {
            font-size: 1.3rem;
            margin-bottom: 40px;
            font-weight: 300;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .slider-controls {
            position: absolute;
            bottom: 50px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            z-index: 10;
        }
        
        .slider-dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: rgba(255,255,255,0.4);
            margin: 0 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .slider-dot.active {
            background: var(--secondary-color);
            border-color: var(--gold-light);
            transform: scale(1.2);
        }
        
        /* 独享装饰元素样式 */
        .decoration {
            position: absolute;
            z-index: 1;
        }
        
        .decoration.circle {
            width: 300px;
            height: 300px;
            border-radius: 50%;
            border: 2px solid rgba(212, 175, 55, 0.2);
            top: 10%;
            right: 5%;
        }
        
        .decoration.square {
            width: 200px;
            height: 200px;
            border: 2px solid rgba(212, 175, 55, 0.15);
            bottom: 15%;
            left: 5%;
            transform: rotate(45deg);
        }
        
        /* 独享服务板块样式 */
        .services {
            background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f5 100%);
            position: relative;
            overflow: hidden;
        }
        
        .services::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }
        
        .service-category {
            margin-bottom: 80px;
            background: var(--text-light);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
        }
        
        .service-category:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.12);
        }
        
        .service-category-header {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
            color: var(--text-light);
            padding: 30px 40px;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        .service-category-header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
        }
        
        .service-icon {
            font-size: 3.5rem;
            margin-right: 25px;
            color: var(--secondary-color);
            z-index: 2;
        }
        
        .service-category-title {
            z-index: 2;
            flex: 1;
        }
        
        .service-category-title h3 {
            font-size: 2rem;
            margin-bottom: 10px;
            font-weight: 600;
        }
        
        .service-category-title p {
            font-size: 1.1rem;
            opacity: 0.9;
            max-width: 600px;
        }
        
        .service-category-action {
            z-index: 2;
        }
        
        /* 独享子服务区域样式 */
        .service-subitems {
            padding: 30px 40px;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 20px;
        }
        
        .service-subitem {
            background: var(--light-color);
            padding: 15px;
            border-radius: 8px;
            border-left: 3px solid var(--secondary-color);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .service-subitem:hover {
            transform: translateX(5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .service-subitem h4 {
            font-size: 1rem;
            margin-bottom: 8px;
            color: var(--primary-dark);
            font-weight: 600;
            line-height: 1.3;
        }
        
        .service-subitem p {
            color: var(--dark-color);
            margin-bottom: 10px;
            font-size: 0.85rem;
            line-height: 1.5;
            flex-grow: 1;
        }
        
        .service-price {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--secondary-color);
            display: flex;
            align-items: center;
            margin-top: 5px;
        }
        
        .service-price::before {
            content: '';
            width: 12px;
            height: 2px;
            background: var(--secondary-color);
            margin-right: 6px;
        }
        
        /* 独享关于我们样式 */
        .about {
            position: relative;
            overflow: hidden;
        }
        
        .about-bg {
            position: absolute;
            top: 0;
            right: 0;
            width: 45%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            z-index: 1;
            clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 60px;
            position: relative;
            z-index: 2;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h3 {
            font-size: 2.2rem;
            margin-bottom: 25px;
            color: var(--primary-dark);
            font-weight: 600;
            line-height: 1.3;
        }
        
        .about-text p {
            margin-bottom: 20px;
            line-height: 1.8;
        }
        
        .about-highlight {
            background: linear-gradient(135deg, var(--gold-light), #fef6e4);
            padding: 25px;
            border-left: 5px solid var(--secondary-color);
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .about-image {
            flex: 1;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            position: relative;
        }
        
        .about-image::before {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            background: linear-gradient(135deg, var(--secondary-color), transparent);
            z-index: -1;
            border-radius: 15px;
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.8s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        /* 独享优势板块样式 */
        .advantages {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
            color: var(--text-light);
            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(212,175,55,0.05)"/></svg>');
            background-size: cover;
        }
        
        .advantages .section-title h2 {
            color: var(--text-light);
        }
        
		.advantages .section-title p {
    color: var(--text-light);
}
		
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 40px;
        }
        
        .advantage-item {
            text-align: center;
            padding: 40px 25px;
            background: rgba(255,255,255,0.05);
            border-radius: 12px;
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(212, 175, 55, 0.1);
            position: relative;
            z-index: 2;
        }
        
        .advantage-item:hover {
            transform: translateY(-10px);
            background: rgba(255,255,255,0.08);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }
        
        .advantage-icon {
            font-size: 3rem;
            color: var(--secondary-color);
            margin-bottom: 25px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .advantage-item h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .advantage-item p {
            color: rgba(255,255,255,0.8);
        }
        
        /* 独享服务流程样式 */
        .process {
            background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f5 100%);
            position: relative;
            overflow: hidden;
        }
        
        .process::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }
        
        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            max-width: 1100px;
            margin: 0 auto;
        }
        
        .process-steps::before {
            content: '';
            position: absolute;
            top: 60px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--secondary-color), var(--gold-dark));
            z-index: 1;
        }
        
        .process-step {
            text-align: center;
            position: relative;
            z-index: 2;
            flex: 1;
        }
        
        .step-number {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
            color: var(--text-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 700;
            margin: 0 auto 25px;
            position: relative;
            transition: all 0.5s ease;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            border: 5px solid var(--text-light);
            animation: pulse 3s infinite;
        }
        
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
            }
            70% {
                box-shadow: 0 0 0 20px rgba(212, 175, 55, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
            }
        }
        
        .process-step:hover .step-number {
            transform: scale(1.1);
            background: linear-gradient(135deg, var(--secondary-color), var(--gold-dark));
            box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
            animation: none;
        }
        
        .step-content h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--primary-dark);
            font-weight: 600;
        }
        
        .step-content p {
            color: var(--dark-color);
        }
        
        /* 独享知识库样式 */
        .knowledge {
            position: relative;
        }
        
        .knowledge-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 40px;
        }
        
        .knowledge-card {
            background: var(--text-light);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            position: relative;
        }
        
        .knowledge-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .knowledge-image {
            height: 220px;
            overflow: hidden;
            position: relative;
        }
        
        .knowledge-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(10, 26, 45, 0.3), transparent);
            z-index: 1;
        }
        
        .knowledge-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }
        
        .knowledge-card:hover .knowledge-image img {
            transform: scale(1.1);
        }
        
        .knowledge-content {
            padding: 25px;
        }
        
        .knowledge-content h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--primary-dark);
            font-weight: 600;
            line-height: 1.4;
        }
                .knowledge-content h3 a {
    text-decoration: none;
    color: inherit;
}
        .knowledge-content p {
            color: var(--dark-color);
            margin-bottom: 20px;
            line-height: 1.7;
        }
        
        .knowledge-meta {
            display: flex;
            justify-content: space-between;
            color: #777;
            font-size: 0.9rem;
            border-top: 1px solid #eee;
            padding-top: 15px;
        }
        
        /* 独享响应式设计 */
        @media (max-width: 1200px) {
            .about-bg {
                width: 40%;
            }
            
            .process-steps {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .process-step {
                flex: 0 0 33.333%;
                margin-bottom: 40px;
            }
            
            .process-steps::before {
                display: none;
            }
        }
        
        @media (max-width: 992px) {
            .about-content {
                flex-direction: column;
            }
            
            .about-bg {
                width: 100%;
                height: 50%;
                clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 80%);
            }
            
            .section-title h2::before, .section-title h2::after {
                width: 50px;
            }
            
            .section-title h2::before {
                left: -70px;
            }
            
            .section-title h2::after {
                right: -70px;
            }
            
            .slide-content h1 {
                font-size: 3rem;
            }
            
            .service-category-header {
                flex-direction: column;
                text-align: center;
            }
            
            .service-icon {
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .service-category-action {
                margin-top: 20px;
            }
        }
        
        @media (max-width: 768px) {
            .slide-content h1 {
                font-size: 2.5rem;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .process-step {
                flex: 0 0 50%;
            }
            
            .section-title h2::before, .section-title h2::after {
                display: none;
            }
            
            .service-subitems {
                grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
                gap: 15px;
                padding: 20px;
            }
        }
        
        @media (max-width: 576px) {
            .process-step {
                flex: 0 0 100%;
            }
            
            .services-grid, .knowledge-grid {
                grid-template-columns: 1fr;
            }
            
            .slide-content h1 {
                font-size: 2rem;
            }
            
            .slide-content p {
                font-size: 1.1rem;
            }
            
            .service-subitems {
                grid-template-columns: 1fr;
            }
        }