    /* 联系我们页面独享CSS部分 */
        
        /* 页面横幅 */
        .page-banner {
            margin-top: 80px;
            padding: 120px 0;
            background: linear-gradient(135deg, rgba(26, 60, 110, 0.9), rgba(26, 60, 110, 0.7)), url('/template/jia/images/3.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .page-banner::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(248, 181, 0, 0.1)"/></svg>');
            background-size: cover;
        }
        
        .banner-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease forwards;
        }
        
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .banner-content h1 {
            font-size: 48px;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #fff, var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .banner-content p {
            font-size: 20px;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* 联系内容区域 */
        .contact-content {
            padding: 100px 0;
            background-color: var(--light-color);
            position: relative;
        }
        
        .contact-content::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(26, 60, 110, 0.03)"/></svg>');
            background-size: cover;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 70px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 42px;
            color: var(--primary-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: -10px;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            border-radius: 2px;
        }
        
        .section-title p {
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
            font-size: 18px;
        }
        
        /* 联系信息网格 */
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-bottom: 80px;
        }
        
        .contact-card {
            background: linear-gradient(135deg, #fff, #f9fbfd);
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.5);
        }
        
        .contact-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            transform: scaleX(0);
            transition: var(--transition);
        }
        
        .contact-card:hover::before {
            transform: scaleX(1);
        }
        
        .contact-card.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .contact-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .contact-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, rgba(26, 60, 110, 0.1), rgba(248, 181, 0, 0.1));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            transition: var(--transition);
            position: relative;
        }
        
        .contact-card:hover .contact-icon {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            transform: rotateY(180deg) scale(1.1);
        }
        
        .contact-icon i {
            font-size: 36px;
            color: var(--primary-color);
            transition: var(--transition);
        }
        
        .contact-card:hover .contact-icon i {
            color: white;
            transform: rotateY(-180deg);
        }
        
        .contact-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--dark-color);
        }
        
        .contact-card p {
            color: var(--text-light);
            margin-bottom: 15px;
        }
        
        .contact-link {
            display: inline-block;
            margin-top: 10px;
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            position: relative;
        }
        
        .contact-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -2px;
            left: 0;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            transition: var(--transition);
        }
        
        .contact-link:hover {
            color: var(--secondary-color);
        }
        
        .contact-link:hover::after {
            width: 100%;
        }
        
        /* 二维码区域 */
        .qrcode-section {
            background: linear-gradient(135deg, #fff, #f9fbfd);
            border-radius: 15px;
            padding: 60px 40px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.5);
        }
        
        .qrcode-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
        }
        
        .qrcode-title {
            font-size: 32px;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .qrcode-desc {
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto 40px;
            font-size: 18px;
        }
        
        .qrcode-container {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 30px;
        }
        
        .qrcode-large {
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, #fff, #f0f0f0);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 15px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            transition: var(--transition);
            animation: pulse 2s infinite;
        }
		
		.qrcode-large img {
            width: 100%;
            height: 100%; 
        }
        
        .qrcode-large:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
            animation: none;
        }
        
        .qrcode-large span {
            color: var(--dark-color);
            font-size: 14px;
            font-weight: bold;
        }
        
        .qrcode-note {
            color: var(--text-light);
            font-size: 16px;
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* 工作时间 */
        .working-hours {
            margin-top: 60px;
            text-align: center;
        }
        
        .hours-card {
            background: linear-gradient(135deg, #fff, #f9fbfd);
            border-radius: 15px;
            padding: 40px 30px;
            display: inline-block;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            border: 1px solid rgba(255,255,255,0.5);
        }
        
        .hours-card h3 {
            font-size: 24px;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .hours-list {
            list-style: none;
            text-align: left;
        }
        
        .hours-list li {
            margin-bottom: 10px;
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }
        
        .hours-list li:last-child {
            border-bottom: none;
        }
        
        .hours-day {
            font-weight: 600;
            color: var(--dark-color);
        }
        
        .hours-time {
            color: var(--text-light);
        }