 /* 独享标题样式 */
        .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;
        }
        
        /* 独享联系页横幅样式 */
        .contact-hero {
            height: 50vh;
            position: relative;
            overflow: hidden;
            margin-top: 70px;
            background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--text-light);
        }
        
        .contact-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1553877522-43269d4ea984?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            opacity: 0.3;
        }
        
        .contact-hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 0 20px;
        }
        
        .contact-hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .contact-hero-content p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            font-weight: 300;
        }
        
        /* 独享装饰元素样式 */
        .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);
        }
        
        /* 独享联系信息样式 */
        .contact-info-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f5 100%);
            position: relative;
            overflow: hidden;
        }
        
        .contact-info-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%;
        }
        
        .contact-content {
            display: flex;
            flex-wrap: wrap;
            gap: 60px;
            justify-content: center;
            align-items: flex-start;
        }
        
        .contact-details {
            flex: 1;
            min-width: 300px;
            max-width: 500px;
        }
        
        .contact-details h3 {
            font-size: 2rem;
            margin-bottom: 30px;
            color: var(--primary-dark);
            font-weight: 600;
            position: relative;
            padding-bottom: 15px;
        }
        
        .contact-details h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--secondary-color);
        }
        
        .contact-item {
            display: flex;
            margin-bottom: 30px;
            align-items: flex-start;
        }
        
        .contact-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--secondary-color), var(--gold-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
            color: var(--text-light);
            font-size: 1.5rem;
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
        }
        
        .contact-text {
            flex: 1;
        }
        
        .contact-text h4 {
            font-size: 1.3rem;
            margin-bottom: 8px;
            color: var(--primary-dark);
            font-weight: 600;
        }
        
        .contact-text p {
            color: var(--dark-color);
            margin-bottom: 5px;
        }
        
        .contact-text a {
            color: var(--accent-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .contact-text a:hover {
            color: var(--secondary-color);
        }
        
        /* 独享微信二维码样式 */
        .qrcode-section {
            flex: 1;
            min-width: 300px;
            max-width: 400px;
            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;
            text-align: center;
            padding: 40px 30px;
        }
        
        .qrcode-section:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.12);
        }
        
        .qrcode-title {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--primary-dark);
            font-weight: 600;
        }
        
        .qrcode-image {
            max-width: 250px;
            margin: 0 auto 25px;
            border: 10px solid var(--gold-light);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .qrcode-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .qrcode-description {
            color: var(--dark-color);
            margin-bottom: 25px;
            line-height: 1.7;
        }
        
        /* 独享响应式设计 */
        @media (max-width: 992px) {
            .contact-content {
                flex-direction: column;
                align-items: center;
            }
            
            .contact-details, .qrcode-section {
                max-width: 100%;
            }
            
            .section-title h2::before, .section-title h2::after {
                width: 50px;
            }
            
            .section-title h2::before {
                left: -70px;
            }
            
            .section-title h2::after {
                right: -70px;
            }
            
            .contact-hero-content h1 {
                font-size: 2.8rem;
            }
        }
        
        @media (max-width: 768px) {
            .contact-hero-content h1 {
                font-size: 2.2rem;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .section-title h2::before, .section-title h2::after {
                display: none;
            }
            
            .contact-item {
                flex-direction: column;
                text-align: center;
            }
            
            .contact-icon {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }
        
        @media (max-width: 576px) {
            .contact-hero-content h1 {
                font-size: 1.8rem;
            }
            
            .contact-hero-content p {
                font-size: 1.1rem;
            }
            
            .contact-details h3 {
                font-size: 1.6rem;
            }
            
            .contact-text h4 {
                font-size: 1.1rem;
            }
        }