     /* 独享CSS - 我们的服务页面 */
        .page-hero {
            height: 60vh;
            background: linear-gradient(rgba(26, 54, 93, 0.8), rgba(26, 54, 93, 0.9)), url('/template/jia/images/1.jpg') no-repeat center center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--text-light);
            margin-top: 70px;
        }

        .page-hero-content h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease;
        }

        .page-hero-content p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            animation: fadeInUp 1s ease 0.3s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .services-section {
            padding: 100px 0;
            background-color: #f8f9fa;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--secondary-color);
        }

        .section-title p {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

        .services-tabs {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            margin-bottom: 50px;
            gap: 10px;
        }

        .tab-btn {
            padding: 12px 25px;
            background-color: #fff;
            border: 2px solid var(--primary-color);
            border-radius: 30px;
            color: var(--primary-color);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }

        .tab-btn.active, .tab-btn:hover {
            background-color: var(--primary-color);
            color: var(--text-light);
        }

        .service-details-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .service-detail-card {
            background-color: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            transform: translateY(50px);
            opacity: 0;
        }

        .service-detail-card.animate {
            transform: translateY(0);
            opacity: 1;
        }

        .service-detail-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .service-header {
            background-color: var(--primary-color);
            color: var(--text-light);
            padding: 20px;
            position: relative;
        }

        .service-header h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .service-icon {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 2.5rem;
            color: var(--secondary-color);
        }

        .service-price {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--secondary-color);
        }

        .service-content {
            padding: 25px;
        }

        .info-section {
            margin-bottom: 20px;
        }

        .info-section h4 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--primary-color);
            display: flex;
            align-items: center;
        }

        .info-section h4 i {
            margin-right: 10px;
            color: var(--secondary-color);
        }

        .info-section ul {
            list-style-type: none;
            padding-left: 0;
        }

        .info-section li {
            padding: 5px 0;
            position: relative;
            padding-left: 20px;
        }

        .info-section li::before {
            content: '•';
            color: var(--secondary-color);
            position: absolute;
            left: 0;
            font-weight: bold;
        }

        .service-note {
            background-color: rgba(212, 175, 55, 0.1);
            padding: 15px;
            border-radius: 5px;
            margin-top: 20px;
            border-left: 4px solid var(--secondary-color);
        }

        .service-note p {
            margin: 0;
            color: var(--primary-color);
            font-weight: 600;
        }

        .service-note i {
            color: var(--secondary-color);
            margin-right: 10px;
        }

        .contact-section {
            background-color: var(--primary-color);
            padding: 80px 0;
            text-align: center;
            color: var(--text-light);
        }

        .contact-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .contact-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .contact-btn {
            display: inline-block;
            background-color: var(--secondary-color);
            color: var(--text-color);
            padding: 15px 40px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: var(--transition);
            border: none;
            cursor: pointer;
        }

        .contact-btn:hover {
            background-color: #e6c12e;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        /* 动画工具类 */
        .animate-on-scroll {
            transition: all 0.8s ease;
        }