   /* ===== 独享CSS样式 - 我们的服务页面 ===== */
        
        /* 页面标题样式 */
        .page-hero {
            padding: 10rem 0 5rem;
            background: linear-gradient(135deg, rgba(26, 54, 93, 0.9), rgba(197, 164, 126, 0.8)), url('/template/jia/images/15.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            margin-top: 70px;
        }
        
        .page-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
        }
        
        .page-hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2rem;
        }
        
        /* 服务分类导航 */
        .service-categories {
            padding: 3rem 0;
            background: var(--light-color);
        }
        
        .category-nav {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1rem;
        }
        
        .category-item {
            padding: 0.8rem 1.5rem;
            background: white;
            border-radius: 30px;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            border: 2px solid transparent;
        }
        
        .category-item.active, .category-item:hover {
            background: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }
        
        /* 服务列表样式 */
        .services-section {
            padding: 5rem 0;
            background: white;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
        
        .service-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px);
            cursor: pointer;
        }
        
        .service-card.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 2rem auto 1.5rem;
            color: white;
            font-size: 2rem;
            transition: var(--transition);
        }
        
        .service-card:hover .service-icon {
            background: var(--secondary-color);
            transform: rotateY(180deg);
        }
        
        .service-card-content {
            padding: 0 1.5rem 1.5rem;
            text-align: center;
        }
        
        .service-card h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }
        
        .service-card p {
            color: var(--accent-color);
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }
        
        .service-tags {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }
        
        .service-tag {
            background: #e9ecef;
            color: var(--accent-color);
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-size: 0.8rem;
        }
        
        .service-price {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
        }
        
        /* 服务详情样式 */
        .service-detail-section {
            padding: 5rem 0;
            background: var(--light-color);
            display: none;
        }
        
        .service-detail-section.active {
            display: block;
        }
        
        .back-to-services {
            display: inline-flex;
            align-items: center;
            margin-bottom: 2rem;
            color: var(--primary-color);
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .back-to-services:hover {
            color: var(--secondary-color);
        }
        
        .back-to-services i {
            margin-right: 0.5rem;
        }
        
        .service-detail-header {
            display: flex;
            align-items: center;
            margin-bottom: 2rem;
        }
        
        .service-detail-icon {
            width: 100px;
            height: 100px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2.5rem;
            margin-right: 2rem;
        }
        
        .service-detail-title h2 {
            font-size: 2.2rem;
            color: var(--primary-color);
        }
        
        .service-detail-title p {
            color: var(--accent-color);
            font-size: 1.1rem;
        }
        
        .service-detail-content {
            display: flex;
            gap: 3rem;
            margin-top: 3rem;
        }
        
        .service-detail-info {
            flex: 1;
            background: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .service-detail-process {
            flex: 1;
            background: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .info-box, .process-box {
            margin-bottom: 2rem;
        }
        
        .info-box h3, .process-box h3 {
            font-size: 1.3rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--secondary-color);
        }
        
        .info-list li, .process-list li {
            margin-bottom: 0.8rem;
            padding-left: 1.5rem;
            position: relative;
        }
        
        .info-list li::before, .process-list li::before {
            content: '•';
            color: var(--secondary-color);
            font-weight: bold;
            position: absolute;
            left: 0;
        }
        
        .process-step {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid #eee;
        }
        
        .step-number {
            width: 40px;
            height: 40px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            margin-right: 1rem;
            flex-shrink: 0;
        }
        
        .step-content h4 {
            font-size: 1.1rem;
            margin-bottom: 0.3rem;
            color: var(--primary-color);
        }
        
        .time-price-box {
            display: flex;
            justify-content: space-between;
            background: var(--primary-color);
            color: white;
            padding: 1.5rem;
            border-radius: 8px;
            margin-top: 2rem;
        }
        
        .time-box, .price-box {
            text-align: center;
            flex: 1;
        }
        
        .time-label, .price-label {
            font-size: 1rem;
            opacity: 0.8;
            margin-bottom: 0.5rem;
        }
        
        .time-value, .price-value {
            font-size: 1.8rem;
            font-weight: 700;
        }
        
        .price-value {
            color: var(--secondary-color);
        }
        
        .detail-cta {
            text-align: center;
            margin-top: 3rem;
        }
        
        /* 服务优势样式 */
        .service-advantages {
            padding: 5rem 0;
            background: white;
        }
        
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .advantage-card {
            text-align: center;
            padding: 2rem 1.5rem;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px);
        }
        
        .advantage-card.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .advantage-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .advantage-icon {
            width: 70px;
            height: 70px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: white;
            font-size: 1.8rem;
            transition: var(--transition);
        }
        
        .advantage-card:hover .advantage-icon {
            background: var(--secondary-color);
            transform: rotateY(180deg);
        }
        
        .advantage-card h3 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }
        
        /* 常见问题样式 */
        .faq-section {
            padding: 5rem 0;
            background: var(--light-color);
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: white;
            border-radius: 8px;
            margin-bottom: 1rem;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            opacity: 0;
            transform: translateY(20px);
        }
        
        .faq-item.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .faq-question {
            padding: 1.5rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--primary-color);
        }
        
        .faq-question i {
            transition: var(--transition);
        }
        
        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .faq-answer.active {
            padding: 0 1.5rem 1.5rem;
            max-height: 500px;
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        
        /* 页面切换动画 */
        .page-transition {
            animation: fadeIn 0.5s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }