/* 流程步骤卡片 */
        .step-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
            position: relative;
            border: 1px solid rgba(13, 110, 253, 0.1);
        }
        .step-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(13, 110, 253, 0.15);
            border-color: var(--anqie-primary);
        }
        .step-number {
            width: 60px;
            height: 60px;
            background: var(--anqie-primary);
            color: white;
            font-size: 1.8rem;
            font-weight: 700;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            box-shadow: 0 10px 20px rgba(13, 110, 253, 0.3);
        }
        .step-card h4 {
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--anqie-primary);
        }
        .step-card p {
            color: #666;
            margin-bottom: 0;
        }

        /* 流程时间线样式 (用于详细描述) */
        .timeline-process {
            position: relative;
            padding: 20px 0;
        }
        .timeline-process-item {
            display: flex;
            margin-bottom: 30px;
            align-items: flex-start;
        }
        .timeline-process-left {
            flex: 0 0 80px;
            text-align: center;
            position: relative;
        }
        .timeline-process-left .step-circle {
            width: 60px;
            height: 60px;
            background: var(--anqie-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.5rem;
            margin: 0 auto;
            box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
        }
        .timeline-process-left .step-line {
            position: absolute;
            top: 70px;
            left: 50%;
            width: 2px;
            height: calc(100% + 30px);
            background: linear-gradient(to bottom, var(--anqie-primary), rgba(13, 110, 253, 0.2));
            transform: translateX(-50%);
        }
        .timeline-process-item:last-child .step-line {
            display: none;
        }
        .timeline-process-right {
            flex: 1;
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            margin-left: 20px;
            border-left: 4px solid var(--anqie-primary);
        }
        .timeline-process-right h4 {
            font-weight: 700;
            color: var(--anqie-primary);
            margin-bottom: 10px;
        }
        .timeline-process-right p {
            color: #666;
            margin-bottom: 10px;
        }
        .timeline-process-right .step-time {
            display: inline-block;
            background: rgba(13, 110, 253, 0.1);
            color: var(--anqie-primary);
            padding: 3px 12px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        /* 服务承诺卡片 */
        .promise-card {
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
            text-align: center;
        }
        .promise-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }
        .promise-icon {
            width: 60px;
            height: 60px;
            background: rgba(13, 110, 253, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        .promise-icon i {
            font-size: 2rem;
            color: var(--anqie-primary);
        }
        .promise-card h4 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        .promise-card p {
            color: #666;
            margin-bottom: 0;
            font-size: 0.95rem;
        }