     /* 独享CSS部分 - 我们的服务页面 */
        
        /* 页面标题样式 */
        .page-header {
            padding: 150px 0 80px;
            background-color: var(--primary-color);
            color: var(--text-light);
            text-align: center;
            margin-top: 70px;
        }
        
        .page-title {
            font-size: 42px;
            margin-bottom: 20px;
        }
        
        .page-subtitle {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto;
            color: rgba(255,255,255,0.8);
        }
        
        /* 服务详情样式 */
        .services-detail {
            padding: 100px 0;
            background-color: var(--light-color);
        }
        
        .service-category {
            margin-bottom: 80px;
        }
        
        .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-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .service-detail-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .service-detail-card.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .service-detail-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .service-header {
            padding: 25px;
            background-color: var(--accent-color);
            color: var(--text-light);
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        .service-header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
            transform: rotate(45deg);
            transition: all 0.5s ease;
        }
        
        .service-detail-card:hover .service-header::before {
            transform: rotate(45deg) translate(50%, 50%);
        }
        
        .service-icon {
            width: 60px;
            height: 60px;
            background-color: rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            font-size: 24px;
        }
        
        .service-title {
            font-size: 22px;
            font-weight: 600;
        }
        
        .service-content {
            padding: 25px;
        }
        
        .service-info {
            margin-bottom: 20px;
        }
        
        .service-info h4 {
            font-size: 18px;
            color: var(--primary-color);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .service-info h4 i {
            margin-right: 10px;
            color: var(--secondary-color);
        }
        
        .service-info ul {
            padding-left: 20px;
            color: #666;
        }
        
        .service-info ul li {
            margin-bottom: 8px;
            position: relative;
        }
        
        .service-info ul li::before {
            content: '•';
            color: var(--secondary-color);
            font-weight: bold;
            display: inline-block;
            width: 1em;
            margin-left: -1em;
        }
        
        .service-price {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 25px;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }
        
        .price {
            font-size: 24px;
            font-weight: 700;
            color: var(--secondary-color);
        }
        
        .time-info {
            font-size: 14px;
            color: #666;
            display: flex;
            align-items: center;
        }
        
        .time-info i {
            margin-right: 5px;
            color: var(--secondary-color);
        }
        
        .free-tag {
            background-color: var(--secondary-color);
            color: white;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
        }
        
        /* 动画定义 */
        @keyframes gradientShift {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }
        
        /* 响应式调整 */
        @media (max-width: 992px) {
            .services-grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
        }
        
        @media (max-width: 768px) {
            .page-title {
                font-size: 32px;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .service-header {
                flex-direction: column;
                text-align: center;
            }
            
            .service-icon {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }