
        
        /* 独享CSS部分 - 服务页面主体 */
        /* 页面标题横幅 */
        .page-banner {
            background: linear-gradient(rgba(10, 42, 94, 0.8), rgba(10, 42, 94, 0.8)), url('/template/jia/images/5.jpg');
            background-size: cover;
            background-position: center;
            padding: 150px 0 80px;
            text-align: center;
            color: var(--light-color);
        }
        
        .page-banner h1 {
            font-size: 48px;
            margin-bottom: 20px;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
        }
        
        .page-banner p {
            font-size: 20px;
            max-width: 700px;
            margin: 0 auto;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        }
        
        /* 通用板块样式 */
        .section {
            padding: 100px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 36px;
            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-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }
        
        .service-category {
            flex: 1;
            min-width: 300px;
        }
        
        .service-category h3 {
            font-size: 24px;
            color: var(--primary-color);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--secondary-color);
        }
        
        .service-item {
            background-color: var(--light-color);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 20px;
            transition: var(--transition);
            transform: translateY(20px);
            opacity: 0;
        }
        
        .service-item.animate {
            transform: translateY(0);
            opacity: 1;
        }
        
        .service-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .service-header {
            padding: 20px;
            background-color: var(--primary-color);
            color: var(--light-color);
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
        }
        
        .service-title {
            display: flex;
            align-items: center;
        }
        
        .service-icon {
            width: 40px;
            height: 40px;
            background-color: var(--secondary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: var(--primary-color);
            font-size: 18px;
        }
        
        .service-name {
            font-size: 20px;
            font-weight: 600;
        }
        
        .service-price {
            font-size: 22px;
            font-weight: 700;
            color: var(--secondary-color);
        }
        
        .service-toggle {
            font-size: 20px;
            transition: var(--transition);
        }
        
        .service-toggle.rotate {
            transform: rotate(180deg);
        }
        
        .service-content {
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: all 0.5s ease;
        }
        
        .service-content.active {
            padding: 25px;
            max-height: 1000px;
        }
        
        .service-detail {
            margin-bottom: 20px;
        }
        
        .service-detail:last-child {
            margin-bottom: 0;
        }
        
        .service-detail h4 {
            font-size: 18px;
            color: var(--primary-color);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .service-detail h4 i {
            margin-right: 10px;
            color: var(--secondary-color);
        }
        
        .service-detail ul, .service-detail ol {
            padding-left: 20px;
        }
        
        .service-detail li {
            margin-bottom: 8px;
            color: #666;
        }
        
        .service-detail p {
            color: #666;
        }
        
        .time-badge {
            display: inline-block;
            padding: 5px 15px;
            background-color: var(--secondary-color);
            color: var(--primary-color);
            border-radius: 20px;
            font-weight: 600;
            margin-top: 10px;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .services-container {
                flex-direction: column;
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--primary-color);
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .nav-links li {
                margin: 10px 0;
            }
            
            .mobile-menu {
                display: block;
            }
            
            .contact-phone {
                display: none;
            }
            
            .page-banner h1 {
                font-size: 36px;
            }
            
            .page-banner p {
                font-size: 18px;
            }
            
            .section {
                padding: 60px 0;
            }
            
            .section-title h2 {
                font-size: 30px;
            }
        }
        
        @media (max-width: 576px) {
            .page-banner h1 {
                font-size: 28px;
            }
            
            .page-banner p {
                font-size: 16px;
            }
            
            .service-header {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .service-price {
                margin-top: 10px;
            }
        }