   /* 独享CSS部分 - 联系我们页面内容 */
        
        /* 页面标题部分 */
        .page-header {
            background: linear-gradient(rgba(10,36,99,0.9), rgba(10,36,99,0.9)), url('/template/jia/images/9.jpg');
            background-size: cover;
            background-position: center;
            padding: 150px 0 80px;
            text-align: center;
            color: white;
            margin-top: 70px;
        }
        
        .page-title {
            font-size: 3rem;
            margin-bottom: 20px;
            animation: fadeInDown 1s ease;
        }
        
        .page-subtitle {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            animation: fadeInUp 1s ease 0.3s both;
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* 联系我们内容部分 */
        .contact-section {
            padding: 80px 0;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }
        
        .contact-card {
            background: white;
            border-radius: 10px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: var(--transition);
            transform: translateY(30px);
            opacity: 0;
        }
        
        .contact-card.animate {
            transform: translateY(0);
            opacity: 1;
        }
        
        .contact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .contact-icon {
            width: 80px;
            height: 80px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: white;
            font-size: 2rem;
            transition: var(--transition);
        }
        
        .contact-card:hover .contact-icon {
            background: var(--secondary-color);
            transform: rotateY(180deg);
        }
        
        .contact-card h3 {
            color: var(--primary-color);
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        
        .contact-card p {
            color: #666;
            margin-bottom: 10px;
        }
        
        .phone-number {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin: 15px 0;
        }
        
        /* 微信二维码部分 */
        .qrcode-section {
            text-align: center;
            padding: 60px 0;
            background: #f8f9fa;
            border-radius: 10px;
            margin: 40px 0;
        }
        
        .qrcode-container {
            max-width: 600px;
            margin: 0 auto;
            padding: 40px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .qrcode-title {
            color: var(--primary-color);
            font-size: 2rem;
            margin-bottom: 10px;
        }

        
        .qrcode-subtitle {
            color: #666;
            margin-bottom: 30px;
        }
        
        .qrcode-image {
            width: 200px;
            height: 200px;
            background: #f0f0f0;
            border-radius: 10px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        
                .qrcode-image img {
            width: 100%;
            height: 100%;
            
        }
        
        .qrcode-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(10,36,99,0.1), rgba(212,175,55,0.1));
            z-index: 1;
            opacity: 0;
            transition: var(--transition);
        }
        
        .qrcode-image:hover::before {
            opacity: 1;
        }
        
        .qrcode-image i {
            font-size: 5rem;
            color: var(--primary-color);
            transition: var(--transition);
        }
        
        .qrcode-image:hover i {
            transform: scale(1.1);
            color: var(--secondary-color);
        }
        
        .qrcode-desc {
            color: #666;
            margin-top: 20px;
        }
        
        /* 办公时间部分 */
        .hours-section {
            margin-top: 60px;
        }
        
        .section-title {
            text-align: center;
            color: var(--primary-color);
            font-size: 2rem;
            margin-bottom: 40px;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--secondary-color);
        }
        
        .hours-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .hours-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: var(--transition);
        }
        
        .hours-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .hours-icon {
            width: 60px;
            height: 60px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 1.5rem;
        }
        
        .hours-card h3 {
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .hours-list {
            list-style: none;
        }
        
        .hours-list li {
            margin-bottom: 10px;
            display: flex;
            justify-content: space-between;
        }
        
        .hours-list .day {
            font-weight: 500;
        }
        
        .hours-list .time {
            color: var(--secondary-color);
            font-weight: 700;
        }
        
        /* CTA部分 */
        .cta-section {
            background: linear-gradient(rgba(10,36,99,0.9), rgba(10,36,99,0.9)), url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            padding: 80px 0;
            text-align: center;
            color: white;
            margin-top: 60px;
        }
        
        .cta-title {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .cta-text {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        .btn {
            display: inline-block;
            background: var(--secondary-color);
            color: var(--primary-color);
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            transition: var(--transition);
            border: 2px solid var(--secondary-color);
            position: relative;
            overflow: hidden;
        }
        
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: var(--transition);
        }
        
        .btn:hover::before {
            left: 100%;
        }
        
        .btn:hover {
            background: transparent;
            color: var(--secondary-color);
        }
        
        /* 背景动画元素 */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }
        
        .bg-circle {
            position: absolute;
            border-radius: 50%;
            background: rgba(10, 36, 99, 0.03);
            animation: float 15s infinite linear;
        }
        
        .bg-circle:nth-child(1) {
            width: 300px;
            height: 300px;
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }
        
        .bg-circle:nth-child(2) {
            width: 200px;
            height: 200px;
            top: 60%;
            left: 80%;
            animation-delay: 2s;
        }
        
        .bg-circle:nth-child(3) {
            width: 400px;
            height: 400px;
            top: 30%;
            left: 60%;
            animation-delay: 4s;
        }
        
        .bg-circle:nth-child(4) {
            width: 250px;
            height: 250px;
            top: 70%;
            left: 10%;
            animation-delay: 6s;
        }
        
        @keyframes float {
            0% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
            100% { transform: translateY(0px) rotate(360deg); }
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .page-title {
                font-size: 2.2rem;
            }
            
            .contact-container {
                grid-template-columns: 1fr;
            }
            
            .qrcode-container {
                padding: 30px 20px;
            }
            
            .hours-container {
                grid-template-columns: 1fr;
            }
        }