      /* ====== 服务页面独享CSS ====== */
        
        /* 页面顶部横幅 */
        .page-banner {
            position: relative;
            height: 400px;
            overflow: hidden;
            margin-top: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            background: linear-gradient(rgba(26,115,232,0.8), rgba(0,201,183,0.8)), url('/template/jia/images/13.jpg') center/cover no-repeat;
        }
        
        .banner-content {
            max-width: 800px;
            padding: 0 20px;
            animation: fadeInUp 1s ease;
        }
        
        @keyframes fadeInUp {
            0% { transform: translateY(30px); opacity: 0; }
            100% { transform: translateY(0); opacity: 1; }
        }
        
        .page-banner h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
        }
        
        .page-banner p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
        }
        
        /* 服务详情区域 */
        .services-detail {
            background: var(--light-color);
        }
        
        .service-item {
            background: #fff;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            margin-bottom: 40px;
            transition: var(--transition);
            animation: fadeInUp 1s ease;
        }
        
        .service-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }
        
        .service-header {
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            color: #fff;
            padding: 25px 30px;
            position: relative;
            overflow: hidden;
        }
        
        .service-header:before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
            animation: iconShine 3s infinite linear;
        }
        
        @keyframes iconShine {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .service-title {
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
            z-index: 2;
        }
        
        .service-title h3 {
            font-size: 1.8rem;
            margin-bottom: 0;
            color: #fff;
        }
        
        .service-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--secondary-color);
            background: rgba(255,255,255,0.2);
            padding: 8px 15px;
            border-radius: 50px;
            animation: pricePulse 2s infinite;
        }
        
        @keyframes pricePulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .service-content {
            padding: 30px;
        }
        
        .service-details {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .detail-section {
            margin-bottom: 25px;
        }
        
        .detail-section h4 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--primary-color);
            display: flex;
            align-items: center;
        }
        
        .detail-section h4 i {
            margin-right: 10px;
            color: var(--secondary-color);
        }
        
        .detail-list {
            list-style: none;
        }
        
        .detail-list li {
            margin-bottom: 10px;
            padding-left: 25px;
            position: relative;
        }
        
        .detail-list li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent-color);
            font-weight: bold;
        }
        
        .process-steps {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 10px;
        }
        
        .process-step {
            background: rgba(26, 115, 232, 0.1);
            border-radius: 8px;
            padding: 12px 15px;
            flex: 1;
            min-width: 120px;
            text-align: center;
            font-weight: 600;
            color: var(--primary-color);
            position: relative;
            animation: stepFloat 3s infinite;
        }
        
        @keyframes stepFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }
        
        .process-step:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--primary-color);
            border-radius: 8px 8px 0 0;
        }
        
        .time-info {
            display: flex;
            align-items: center;
            background: rgba(255, 107, 53, 0.1);
            border-radius: 8px;
            padding: 15px;
            margin-top: 10px;
        }
        
        .time-info i {
            font-size: 1.5rem;
            color: var(--secondary-color);
            margin-right: 15px;
        }
        
        .time-text {
            font-weight: 600;
            color: var(--secondary-color);
        }
        
        /* 修复价格和免费咨询标签重叠问题 */
        .service-tags {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 15px;
            position: relative;
            z-index: 2;
        }
        
        .free-tag {
            background: var(--secondary-color);
            color: #fff;
            padding: 8px 15px;
            border-radius: 4px;
            font-size: 0.9rem;
            font-weight: 600;
            animation: tagPulse 2s infinite;
        }
        
        @keyframes tagPulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        /* 动态背景元素 */
        .bg-elements {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }
        
        .bg-element {
            position: absolute;
            border-radius: 50%;
            background: rgba(26, 115, 232, 0.05);
            animation: floatElement 20s infinite linear;
        }
        
        @keyframes floatElement {
            0% { transform: translateY(0) rotate(0deg); }
            100% { transform: translateY(-1000px) rotate(720deg); }
        }