   /* 独享标题样式 */
        .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;
        }
        
        /* 独享页面顶部横幅样式 */
        .page-hero {
            height: 60vh;
            background: linear-gradient(135deg, rgba(10, 26, 45, 0.85) 0%, rgba(26, 45, 74, 0.7) 100%), url('https://images.unsplash.com/photo-1553877522-43269d4ea984?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--text-light);
            margin-top: 70px;
            position: relative;
            overflow: hidden;
        }
        
        .page-hero-content {
            max-width: 900px;
            padding: 0 20px;
            z-index: 2;
        }
        
        .page-hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            font-weight: 600;
            line-height: 1.2;
        }
        
        .page-hero-content p {
            font-size: 1.3rem;
            margin-bottom: 40px;
            font-weight: 300;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* 独享装饰元素样式 */
        .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);
        }
        
        /* 独享内容区域样式 */
        .content-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f5 100%);
            position: relative;
            overflow: hidden;
        }
        
        .content-section::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%;
        }
        
        .content-block {
            background: var(--text-light);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
            margin-bottom: 50px;
            transition: all 0.4s ease;
        }
        
        .content-block:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.12);
        }
        
        .content-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;
        }
        
        .content-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%);
        }
        
        .content-icon {
            font-size: 3rem;
            margin-right: 25px;
            color: var(--secondary-color);
            z-index: 2;
        }
        
        .content-title {
            z-index: 2;
            flex: 1;
        }
        
        .content-title h3 {
            font-size: 2rem;
            margin-bottom: 10px;
            font-weight: 600;
        }
        
        .content-title p {
            font-size: 1.1rem;
            opacity: 0.9;
            max-width: 600px;
        }
        
        .content-body {
            padding: 40px;
        }
        
        /* 独享关于我们样式 */
        .about-content {
            display: flex;
            align-items: center;
            gap: 60px;
            margin-bottom: 60px;
        }
        
        .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;
            font-size: 1.05rem;
        }
        
        .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);
        }
        
        /* 独享合作伙伴样式 */
        .partners {
            position: relative;
        }
        
        .partners-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 40px;
            align-items: center;
        }
        
        .partner-item {
            background: var(--text-light);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.4s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 120px;
        }
        
        .partner-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .partner-item img {
            max-width: 100%;
            max-height: 60px;
            filter: grayscale(100%);
            transition: all 0.4s ease;
        }
        
        .partner-item:hover img {
            filter: grayscale(0%);
        }
        
        /* 独享CTA样式 */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
            color: var(--text-light);
            text-align: center;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::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;
        }
        
        .cta-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .cta-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .cta-content p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }
        
        /* 独享响应式设计 */
        @media (max-width: 1200px) {
            .about-content {
                gap: 40px;
            }
            
            .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;
            }
            
            .section-title h2::before, .section-title h2::after {
                width: 50px;
            }
            
            .section-title h2::before {
                left: -70px;
            }
            
            .section-title h2::after {
                right: -70px;
            }
            
            .page-hero-content h1 {
                font-size: 2.8rem;
            }
        }
        
        @media (max-width: 768px) {
            .page-hero-content h1 {
                font-size: 2.2rem;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .section-title h2::before, .section-title h2::after {
                display: none;
            }
            
            .process-step {
                flex: 0 0 50%;
            }
            
            .partners-grid {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
                gap: 25px;
            }
        }
        
        @media (max-width: 576px) {
            .process-step {
                flex: 0 0 100%;
            }
            
            .page-hero-content h1 {

                font-size: 1.8rem;
            }
            
            .page-hero-content p {
                font-size: 1rem;
            }
            
            .cta-content h2 {
                font-size: 2rem;
            }
            
            .partners-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }