   /* ====== 独享CSS部分（服务页面内容） ====== */
        /* 页面顶部横幅 */
        .page-header {
            min-height: 60vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding-top: 100px;
            background: var(--gradient-primary);
            margin-bottom: 80px;
        }
        
        .page-header:before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background: url("data:image/svg+xml,%3Csvg width='100' height='20' viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.184 20c.357-.13.72-.264 1.088-.402l1.768-.661C33.64 15.347 39.647 14 50 14c10.271 0 15.362 1.222 24.629 4.928.955.383 1.869.74 2.75 1.072h6.225c-2.51-.73-5.139-1.691-8.233-2.928C65.888 13.278 60.562 12 50 12c-10.626 0-16.855 1.397-26.66 5.063l-1.767.662c-2.475.923-4.66 1.674-6.724 2.275h6.335zm0-20C13.258 2.892 8.077 4 0 4V2c5.744 0 9.951-.574 14.85-2h6.334zM77.38 0C85.239 2.966 90.502 4 100 4V2c-6.842 0-11.386-.542-16.396-2h-6.225zM0 14c8.44 0 13.718-1.21 22.272-4.402l1.768-.661C33.64 5.347 39.647 4 50 4c10.271 0 15.362 1.222 24.629 4.928C84.112 12.722 89.438 14 100 14v-2c-10.271 0-15.362-1.222-24.629-4.928C65.888 3.278 60.562 2 50 2 39.374 2 33.145 3.397 23.34 7.063l-1.767.662C13.223 10.84 8.163 12 0 12v2z' fill='%2300b4d8' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.5;
        }
        
        .page-header-content {
            position: relative;
            z-index: 2;
            color: white;
            max-width: 800px;
        }
        
        .page-header-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .page-header-title {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
        }
        
        .page-header-desc {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 40px;
            max-width: 700px;
        }
        
        /* 服务筛选器 */
        .services-filter {
            background: white;
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--shadow);
            margin-bottom: 60px;
        }
        
        .filter-title {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .filter-title i {
            color: var(--accent);
        }
        
        .filter-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 25px;
        }
        
        .filter-tag {
            background: rgba(0, 180, 216, 0.1);
            color: var(--accent);
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            border: 2px solid transparent;
        }
        
        .filter-tag:hover {
            background: var(--accent);
            color: white;
            transform: translateY(-3px);
        }
        
        .filter-tag.active {
            background: var(--gradient-accent);
            color: white;
            border-color: transparent;
        }
        
        .filter-search {
            position: relative;
        }
        
        .filter-search input {
            width: 100%;
            padding: 15px 20px 15px 50px;
            border-radius: 50px;
            border: 2px solid rgba(15, 26, 54, 0.1);
            font-size: 1rem;
            transition: var(--transition);
            background: var(--light);
        }
        
        .filter-search input:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 5px 20px rgba(0, 180, 216, 0.1);
        }
        
        .filter-search i {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--accent);
        }
        
        /* 服务详情卡片 */
        .services-section {
            padding-bottom: 100px;
        }
        
        .service-detail-card {
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            margin-bottom: 40px;
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px);
        }
        
        .service-detail-card.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        .service-detail-card:hover {
            box-shadow: var(--shadow-hover);
        }
        
        .service-card-header {
            background: var(--gradient-primary);
            color: white;
            padding: 40px;
            position: relative;
            overflow: hidden;
        }
        
        .service-card-header:before {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            top: -100px;
            right: -100px;
        }
        
        .service-icon-large {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            margin-bottom: 25px;
        }
        
        .service-title {
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 15px;
        }
        
        .service-excerpt {
            opacity: 0.9;
            font-size: 1.1rem;
            max-width: 700px;
        }
        
        .service-price-tag {
            position: absolute;
            top: 30px;
            right: 30px;
            background: white;
            color: var(--primary);
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: 800;
            font-size: 1.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-card-body {
            padding: 50px;
        }
        
        .service-info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .info-section h3 {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .info-section h3 i {
            color: var(--accent);
        }
        
        .info-list {
            list-style: none;
        }
        
        .info-list li {
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
        }
        
        .info-list li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent);
            font-weight: bold;
        }
        
        .info-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
        }
        
        .info-table tr {
            border-bottom: 1px solid rgba(15, 26, 54, 0.05);
        }
        
        .info-table tr:last-child {
            border-bottom: none;
        }
        
        .info-table td {
            padding: 15px 0;
        }
        
        .info-table td:first-child {
            font-weight: 600;
            color: var(--primary);
            width: 40%;
        }
        
        .process-timeline {
            position: relative;
            padding-left: 30px;
            margin-top: 20px;
        }
        
        .process-timeline:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--gradient-accent);
        }
        
        .process-step {
            position: relative;
            margin-bottom: 30px;
        }
        
        .process-step:last-child {
            margin-bottom: 0;
        }
        
        .process-step:before {
            content: '';
            position: absolute;
            left: -36px;
            top: 5px;
            width: 15px;
            height: 15px;
            background: white;
            border: 3px solid var(--accent);
            border-radius: 50%;
        }
        
        .step-title {
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 5px;
        }
        
        .step-desc {
            color: #666;
            font-size: 0.95rem;
        }
        
        .service-cta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 40px;
            border-top: 1px solid rgba(15, 26, 54, 0.05);
        }
        
        .service-time {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .time-icon {
            width: 50px;
            height: 50px;
            background: rgba(0, 180, 216, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            font-size: 1.5rem;
        }
        
        .time-text h4 {
            color: var(--primary);
            font-size: 1.2rem;
            margin-bottom: 5px;
        }
        
        .time-text p {
            color: #666;
            font-size: 0.9rem;
        }
        
        .service-action .btn-primary {
            background: var(--gradient-accent);
            color: white;
            padding: 16px 36px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: var(--transition);
            box-shadow: 0 10px 30px rgba(0, 180, 216, 0.2);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        
        .service-action .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 180, 216, 0.3);
        }
        
        /* 服务比较表 */
        .comparison-section {
            background: rgba(248, 249, 255, 0.5);
            padding: 80px 0;
            border-radius: var(--border-radius);
            margin-top: 80px;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.8rem;
            color: var(--primary);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: var(--accent);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-title p {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.1rem;
        }
        
        .comparison-table {
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        
        .comparison-table table {
            width: 100%;
            border-collapse: collapse;
        }
        
        .comparison-table thead {
            background: var(--gradient-primary);
            color: white;
        }
        
        .comparison-table th {
            padding: 25px 20px;
            text-align: left;
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        .comparison-table th:first-child {
            width: 30%;
        }
        
        .comparison-table tbody tr {
            border-bottom: 1px solid rgba(15, 26, 54, 0.05);
        }
        
        .comparison-table tbody tr:last-child {
            border-bottom: none;
        }
        
        .comparison-table td {
            padding: 20px;
        }
        
        .comparison-table td:first-child {
            font-weight: 600;
            color: var(--primary);
        }
        
        .price-cell {
            font-weight: 800;
            color: var(--accent);
            font-size: 1.2rem;
        }
        
        .time-cell {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .time-cell i {
            color: var(--accent);
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .page-header-title {
                font-size: 2.8rem;
            }
            
            .service-info-grid {
                grid-template-columns: 1fr;
            }
            
            .service-cta {
                flex-direction: column;
                gap: 30px;
                align-items: flex-start;
            }
            
            .comparison-table {
                overflow-x: auto;
            }
            
            .comparison-table table {
                min-width: 800px;
            }
        }
        
        @media (max-width: 768px) {
            .page-header-title {
                font-size: 2.3rem;
            }
            
            .service-card-header {
                padding: 30px;
            }
            
            .service-title {
                font-size: 1.8rem;
            }
            
            .service-price-tag {
                position: relative;
                top: auto;
                right: auto;
                display: inline-block;
                margin-top: 20px;
            }
            
            .service-card-body {
                padding: 30px;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 480px) {
            .page-header-title {
                font-size: 2rem;
            }
            
            .filter-tags {
                justify-content: center;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
        }