
        /* 独享CSS - 服务页面样式与动画 */
        
        /* 页面标题 */
        .page-header {
            padding: 150px 0 80px;
            background: linear-gradient(135deg, rgba(10, 26, 53, 0.9), rgba(30, 58, 95, 0.9));
            color: white;
            text-align: center;
            margin-top: 70px;
            position: relative;
            overflow: hidden;
        }
        
        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('/template/jia/images/13.jpg') center/cover;
            z-index: -1;
        }
        
        .page-title {
            font-size: 48px;
            margin-bottom: 20px;
            font-weight: 800;
            position: relative;
            display: inline-block;
        }
        
        .page-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--secondary-color);
            border-radius: 2px;
            animation: titleLine 3s infinite;
        }
        
        @keyframes titleLine {
            0% { width: 0; }
            50% { width: 100px; }
            100% { width: 0; }
        }
        
        .page-description {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
        }
        
        /* 服务详情样式 */
        .services-detail {
            padding: 100px 0;
            background-color: rgba(247, 250, 252, 0.9);
            position: relative;
        }
        
        .services-detail::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(10,26,53,0.03)"/></svg>');
            background-size: cover;
        }
        
        .services-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }
        
        .service-category {
            margin-bottom: 80px;
        }
        
        .category-title {
            font-size: 36px;
            color: var(--primary-color);
            margin-bottom: 40px;
            text-align: center;
            position: relative;
            font-weight: 800;
        }
        
        .category-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--secondary-color);
            border-radius: 2px;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 40px;
        }
        
        .service-card {
            background-color: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px) rotateY(10deg);
            position: relative;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--secondary-color), var(--primary-color), var(--secondary-color));
            background-size: 200% 100%;
            animation: cardLine 3s linear infinite;
        }
        
        @keyframes cardLine {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }
        
        .service-card.animate {
            opacity: 1;
            transform: translateY(0) rotateY(0);
            transition: all 0.6s ease;
        }
        
        .service-card:hover {
            transform: translateY(-15px) scale(1.03);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .service-header {
            padding: 25px 25px 15px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: center;
        }
        
        .service-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            margin-right: 15px;
            position: relative;
            overflow: hidden;
        }
        
        .service-icon::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: iconShine 5s linear infinite;
        }
        
        @keyframes iconShine {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .service-title {
            font-size: 22px;
            color: var(--primary-color);
            font-weight: 700;
        }
        
        .service-price {
            font-size: 24px;
            font-weight: 800;
            color: var(--secondary-color);
            margin-left: auto;
        }
        
        .service-content {
            padding: 25px;
        }
        
        .service-info {
            margin-bottom: 25px;
        }
        
        .info-item {
            margin-bottom: 15px;
            display: flex;
        }
        
        .info-label {
            width: 120px;
            font-weight: 600;
            color: var(--primary-color);
            flex-shrink: 0;
        }
        
        .info-value {
            flex: 1;
            color: var(--dark-color);
        }
        
        .info-list {
            list-style-type: none;
        }
        
        .info-list li {
            margin-bottom: 8px;
            position: relative;
            padding-left: 15px;
        }
        
        .info-list li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--secondary-color);
            font-weight: bold;
        }
        
        .service-highlight {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(30, 58, 95, 0.1));
            padding: 15px;
            border-radius: 8px;
            border-left: 4px solid var(--secondary-color);
            margin-top: 20px;
            position: relative;
            overflow: hidden;
        }
        
        .service-highlight::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            animation: highlightShine 5s infinite;
        }
        
        @keyframes highlightShine {
            0% { left: -100%; }
            50% { left: 100%; }
            100% { left: 100%; }
        }
        
        .service-highlight p {
            margin: 0;
            font-weight: 500;
            color: var(--primary-color);
            position: relative;
            z-index: 1;
        }
        
        /* 响应式调整 */
        @media screen and (max-width: 768px) {
            .page-title {
                font-size: 36px;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .category-title {
                font-size: 28px;
            }
            
            .service-header {
                flex-direction: column;
                text-align: center;
            }
            
            .service-icon {
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .service-price {
                margin-left: 0;
                margin-top: 10px;
            }
        }