     /* 独享标题样式 */
        .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('/template/jia/images/28.jpg');
            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;
        }
        
        /* 独享资料列表样式 */
        .materials-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .material-item {
            background: var(--light-color);
            padding: 25px;
            border-radius: 10px;
            border-left: 4px solid var(--secondary-color);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .material-item:hover {
            transform: translateX(5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        }
        
        .material-item h4 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: var(--primary-dark);
            font-weight: 600;
            display: flex;
            align-items: center;
        }
        
        .material-item h4 i {
            margin-right: 10px;
            color: var(--secondary-color);
        }
        
        .material-item p {
            color: var(--dark-color);
            margin-bottom: 10px;
            line-height: 1.6;
            flex-grow: 1;
        }
        
        .material-note {
            background: var(--gold-light);
            padding: 15px;
            border-radius: 8px;
            margin-top: 15px;
            font-size: 0.9rem;
            border-left: 3px solid var(--secondary-color);
        }
        
        /* 独享流程样式 */
        .process-steps {
            display: flex;
            flex-direction: column;
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .process-step {
            display: flex;
            margin-bottom: 40px;
            position: relative;
        }
        
        .process-step:last-child {
            margin-bottom: 0;
        }
        
        .process-step::before {
            content: '';
            position: absolute;
            top: 60px;
            left: 30px;
            width: 2px;
            height: calc(100% + 40px);
            background: linear-gradient(to bottom, var(--secondary-color), var(--gold-dark));
            z-index: 1;
        }
        
        .process-step:last-child::before {
            display: none;
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            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: 1.5rem;
            font-weight: 700;
            margin-right: 30px;
            position: relative;
            z-index: 2;
            transition: all 0.5s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            flex-shrink: 0;
        }
        
        .process-step:hover .step-number {
            transform: scale(1.1);
            background: linear-gradient(135deg, var(--secondary-color), var(--gold-dark));
            box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
        }
        
        .step-content {
            flex: 1;
            padding-top: 10px;
        }
        
        .step-content h4 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--primary-dark);
            font-weight: 600;
        }
        
        .step-content p {
            color: var(--dark-color);
            margin-bottom: 10px;
            line-height: 1.7;
        }
        
        .step-time {
            display: inline-block;
            background: var(--gold-light);
            color: var(--gold-dark);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-top: 10px;
        }
        
        /* 独享价格表格样式 */
        .pricing-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-radius: 10px;
            overflow: hidden;
        }
        
        .pricing-table th {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
            color: var(--text-light);
            padding: 20px;
            text-align: left;
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        .pricing-table td {
            padding: 20px;
            border-bottom: 1px solid #eee;
        }
        
        .pricing-table tr:nth-child(even) {
            background: var(--light-color);
        }
        
        .pricing-table tr:hover {
            background: rgba(212, 175, 55, 0.05);
        }
        
        .price-tag {
            font-weight: 700;
            color: var(--secondary-color);
            font-size: 1.2rem;
        }
        
        .time-tag {
            background: var(--primary-color);
            color: var(--text-light);
            padding: 5px 10px;
            border-radius: 15px;
            font-size: 0.8rem;
            display: inline-block;
        }
        
        /* 独享服务选择样式 */
        .service-selection {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .service-card {
            background: var(--text-light);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            border: 1px solid #eee;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        
        .service-header {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
            color: var(--text-light);
            padding: 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .service-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: 2.5rem;
            margin-bottom: 15px;
            color: var(--secondary-color);
            z-index: 2;
            position: relative;
        }
        
        .service-name {
            font-size: 1.4rem;
            font-weight: 600;
            z-index: 2;
            position: relative;
        }
        
        .service-body {
            padding: 25px;
        }
        
        .service-feature {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }
        
        .service-feature i {
            color: var(--secondary-color);
            margin-right: 10px;
            margin-top: 3px;
            flex-shrink: 0;
        }
        
        .service-price {
            text-align: center;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }
        
        /* 独享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) {
            .materials-list, .service-selection {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            }
        }
        
        @media (max-width: 992px) {
            .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;
            }
            
            .content-header {
                flex-direction: column;
                text-align: center;
            }
            
            .content-icon {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }
        
        @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;
            }
            
            .materials-list, .service-selection {
                grid-template-columns: 1fr;
            }
            
            .process-step {
                flex-direction: column;
            }
            
            .step-number {
                margin-right: 0;
                margin-bottom: 20px;
            }
            
            .process-step::before {
                left: 30px;
                top: 60px;
                height: calc(100% + 20px);
            }
            
            .pricing-table {
                display: block;
                overflow-x: auto;
            }
        }
        
        @media (max-width: 576px) {
            .page-hero-content h1 {
                font-size: 1.8rem;
            }
            
            .page-hero-content p {
                font-size: 1rem;
            }
            
            .content-body {
                padding: 25px;
            }
            
            .cta-content h2 {
                font-size: 2rem;
            }
        }