    /* ====== 联系我们页面独享CSS ====== */
        
        /* 页面顶部横幅 */
        .page-banner {
            position: relative;
            height: 400px;
            overflow: hidden;
            margin-top: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            background: linear-gradient(rgba(26,115,232,0.8), rgba(0,201,183,0.8)), url('/template/jia/images/12.jpg') center/cover no-repeat;
        }
        
        .banner-content {
            max-width: 800px;
            padding: 0 20px;
            animation: fadeInUp 1s ease;
        }
        
        @keyframes fadeInUp {
            0% { transform: translateY(30px); opacity: 0; }
            100% { transform: translateY(0); opacity: 1; }
        }
        
        .page-banner h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
        }
        
        .page-banner p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
        }
        
        /* 联系我们内容区域 */
        .contact-content {
            background: var(--light-color);
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 50px;
            align-items: center;
        }
        
        .contact-info-section {
            animation: fadeInLeft 1s ease;
        }
        
        @keyframes fadeInLeft {
            0% { transform: translateX(-30px); opacity: 0; }
            100% { transform: translateX(0); opacity: 1; }
        }
        
        .contact-card {
            background: #fff;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            margin-bottom: 30px;
            transition: var(--transition);
        }
        
        .contact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }
        
        .contact-card h3 {
            display: flex;
            align-items: center;
            color: var(--primary-color);
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        
        .contact-card h3 i {
            margin-right: 10px;
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.2rem;
        }
        
        .contact-details {
            list-style: none;
        }
        
        .contact-details li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
            padding: 10px 0;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .contact-details li:last-child {
            border-bottom: none;
        }
        
        .contact-details i {
            margin-right: 15px;
            color: var(--accent-color);
            font-size: 1.2rem;
            margin-top: 3px;
            min-width: 20px;
            text-align: center;
        }
        
        .contact-details .detail-text {
            flex: 1;
        }
        
        .detail-title {
            font-weight: 600;
            color: var(--dark-color);
            margin-bottom: 5px;
        }
        
        .detail-content {
            color: #666;
        }
        
        .phone-number {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--secondary-color);
            display: block;
            margin-top: 5px;
            animation: phonePulse 2s infinite;
        }
        
        /* 二维码区域 */
        .qrcode-section {
            text-align: center;
            animation: fadeInRight 1s ease;
        }
        
        @keyframes fadeInRight {
            0% { transform: translateX(30px); opacity: 0; }
            100% { transform: translateX(0); opacity: 1; }
        }
        
        .qrcode-container {
            background: #fff;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            display: inline-block;
            transition: var(--transition);
        }
        
        .qrcode-container:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }
        
        .qrcode-image {
            width: 220px;
            height: 220px;
            background: #f8f9fa;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            overflow: hidden;
            border: 1px solid #eee;
        }
        
        .qrcode-image img {
            max-width: 100%;
            height: auto;
        }
        
        .qrcode-text {
            margin-top: 20px;
        }
        
        .qrcode-text h3 {
            color: var(--primary-color);
            margin-bottom: 10px;
        }
        
        .qrcode-text p {
            color: #666;
            max-width: 300px;
            margin: 0 auto;
        }
        
        /* 服务流程区域 */
        .process-section {
            background: #fff;
            padding: 80px 0;
        }
        
        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin-top: 50px;
        }
        
        .process-steps:before {
            content: '';
            position: absolute;
            top: 40px;
            left: 10%;
            width: 80%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            z-index: 1;
            border-radius: 2px;
            animation: lineFlow 3s infinite linear;
        }
        
        @keyframes lineFlow {
            0% { background-position: 0 0; }
            100% { background-position: 20px 0; }
        }
        
        .step {
            text-align: center;
            position: relative;
            z-index: 2;
            flex: 1;
            animation: stepBounce 2s infinite;
        }
        
        @keyframes stepBounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        .step-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.8rem;
            position: relative;
            animation: stepPulse 2s infinite;
        }
        
        @keyframes stepPulse {
            0% { box-shadow: 0 0 0 0 rgba(26, 115, 232, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(26, 115, 232, 0); }
            100% { box-shadow: 0 0 0 0 rgba(26, 115, 232, 0); }
        }
        
        .step-number {
            position: absolute;
            top: -10px;
            right: -10px;
            width: 30px;
            height: 30px;
            background: var(--secondary-color);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.9rem;
            animation: numberSpin 3s infinite;
        }
        
        @keyframes numberSpin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* 动态背景元素 */
        .bg-elements {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }
        
        .bg-element {
            position: absolute;
            border-radius: 50%;
            background: rgba(26, 115, 232, 0.05);
            animation: floatElement 20s infinite linear;
        }
        
        @keyframes floatElement {
            0% { transform: translateY(0) rotate(0deg); }
            100% { transform: translateY(-1000px) rotate(720deg); }
        }