  /* 页面标题样式 */
        .page-header {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
            color: var(--text-light);
            padding: 100px 0 60px;
            text-align: center;
            margin-top: 80px;
            position: relative;
            overflow: hidden;
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('/template/jia/images/12.jpg') no-repeat center center;
            background-size: cover;
            opacity: 0.2;
            z-index: 1;
        }

        .page-header-content {
            position: relative;
            z-index: 2;
        }

        .page-title {
            font-size: 42px;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .page-subtitle {
            font-size: 18px;
            max-width: 600px;
            margin: 0 auto;
            opacity: 0.9;
        }

        /* 面包屑导航 */
        .breadcrumb {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 15px 0;
            margin-bottom: 40px;
        }

        .breadcrumb-content {
            display: flex;
            align-items: center;
            font-size: 14px;
        }

        .breadcrumb a {
            color: var(--text-light);
            text-decoration: none;
            transition: var(--transition);
        }

        .breadcrumb a:hover {
            color: var(--secondary-color);
        }

        .breadcrumb-separator {
            margin: 0 10px;
            color: #ccc;
        }

        .breadcrumb-current {
            color: var(--secondary-color);
        }

        /* 联系我们内容样式 - 新布局 */
        .contact-section {
            padding: 80px 0;
            background-color: #fff;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 50px;
        }

        .contact-info-card {
            background-color: #f9f9f9;
            padding: 40px;
            border-radius: 15px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .contact-info-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background-color: var(--secondary-color);
        }

        .contact-info-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .contact-info-card h2 {
            font-size: 28px;
            color: var(--primary-color);
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }

        .contact-info-card h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--secondary-color);
        }

        .contact-details {
            margin-bottom: 30px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
            padding: 15px;
            border-radius: 8px;
            transition: var(--transition);
            background-color: #fff;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }

        .contact-item:hover {
            background-color: #f0f0f0;
            transform: translateX(5px);
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background-color: var(--secondary-color);
            color: var(--dark-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            margin-right: 20px;
            flex-shrink: 0;
            transition: var(--transition);
        }

        .contact-item:hover .contact-icon {
            transform: scale(1.1);
        }

        .contact-text h3 {
            font-size: 18px;
            color: var(--primary-color);
            margin-bottom: 5px;
        }

        .contact-text p {
            color: #666;
            margin-bottom: 0;
        }

        .business-hours {
            background-color: #fff;
            padding: 25px;
            border-radius: 10px;
            border-left: 4px solid var(--secondary-color);
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }

        .business-hours h3 {
            font-size: 20px;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .hours-list {
            list-style: none;
        }

        .hours-list li {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
            padding-bottom: 8px;
            border-bottom: 1px solid #eee;
        }

        .hours-list li:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }

        .day {
            font-weight: 600;
            color: var(--primary-color);
        }

        .time {
            color: #666;
        }

        /* 微信二维码区域 - 新布局 */
        .qrcode-card {
            background-color: #f9f9f9;
            padding: 40px;
            border-radius: 15px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .qrcode-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background-color: var(--secondary-color);
        }

        .qrcode-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .qrcode-card h3 {
            font-size: 24px;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .qrcode-card p {
            color: #666;
            margin-bottom: 25px;
            max-width: 300px;
        }

        .qrcode-large {
            width: 200px;
            height: 200px;
            background-color: #fff;
            margin: 0 auto;
            padding: 15px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .qrcode-large:hover {
            transform: scale(1.05);
        }

        .qrcode-large img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 5px;
        }

        /* 服务团队介绍 */
        .team-section {
            padding: 80px 0;
            background-color: var(--light-color);
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 36px;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .section-title p {
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }

        .team-card {
            background-color: #fff;
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .team-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background-color: var(--secondary-color);
        }

        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .team-icon {
            font-size: 50px;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }

        .team-title {
            font-size: 20px;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        /* 服务流程 */
        .process-section {
            padding: 80px 0;
            background-color: #fff;
        }

        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }

        .process-steps::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--secondary-color);
            z-index: 1;
        }

        .process-step {
            text-align: center;
            position: relative;
            z-index: 2;
            background-color: #fff;
            padding: 20px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            width: 22%;
        }

        .process-step:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .step-icon {
            width: 80px;
            height: 80px;
            background-color: var(--primary-color);
            color: var(--text-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 30px;
            position: relative;
        }

        .step-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--primary-color);
        }

        /* 响应式设计 */
        @media (max-width: 992px) {
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .process-steps {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .process-step {
                width: 45%;
                margin-bottom: 30px;
            }
            
            .process-steps::before {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .page-title {
                font-size: 36px;
            }
            
            .contact-info-card, .qrcode-card {
                padding: 30px;
            }
            
            .team-grid {
                grid-template-columns: 1fr;
            }
            
            .process-step {
                width: 100%;
            }
        }

        @media (max-width: 576px) {
            .page-title {
                font-size: 30px;
            }
            
            .page-subtitle {
                font-size: 16px;
            }
            
            .contact-info-card, .qrcode-card {
                padding: 20px;
            }
            
            .contact-item {
                flex-direction: column;
                text-align: center;
            }
            
            .contact-icon {
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .qrcode-large {
                width: 180px;
                height: 180px;
            }
        }