/* 服务流程新设计样式 */
.service-process-container {
    padding: 20px 0;
    background: #fff;
}

.process-timeline {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.timeline-header {
    text-align: center;
    margin-bottom: 60px;
}

.timeline-header h3 {
    font-size: 36px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 15px;
}

.timeline-header p {
    font-size: 18px;
    color: #6c757d;
    margin: 0;
}

.process-swiper-container {
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.process-swiper {
    padding: 0 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.phase-group {
    padding: 40px 20px;
}

.phase-title {
    text-align: center;
    margin-bottom: 40px;
}

.phase-title h4 {
    font-size: 28px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 10px;
}

.phase-title p {
    font-size: 16px;
    color: #6c757d;
    margin: 0;
}

.phase-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.process-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 320px;
    display: flex;
    flex-direction: column;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
}

/* 不同阶段的顶部颜色 */
.phase-1 .process-card::before {
    background: linear-gradient(90deg, #4caf50, #45a049);
}

.phase-2 .process-card::before {
    background: linear-gradient(90deg, #2196f3, #1976d2);
}

.phase-3 .process-card::before {
    background: linear-gradient(90deg, #ff9800, #f57c00);
}

.phase-4 .process-card::before {
    background: linear-gradient(90deg, #9c27b0, #7b1fa2);
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-header {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.step-number {
    font-size: 22px;
    font-weight: bold;
    color: #4a90e2;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-card h4 {
    font-size: 20px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: center;
}

.process-card p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-icon {
    font-size: 32px;
    text-align: center;
    margin-top: auto;
}

/* Swiper导航样式 */
.process-swiper .swiper-button-prev,
.process-swiper .swiper-button-next {
    color: #4a90e2;
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

.process-swiper .swiper-button-prev:hover,
.process-swiper .swiper-button-next:hover {
    background: #4a90e2;
    color: white;
    transform: scale(1.1);
}

.process-swiper .swiper-button-prev:after,
.process-swiper .swiper-button-next:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-swiper .swiper-button-prev:after {
    content: '‹';
    transform: translate(-40%, -50%);
}

.process-swiper .swiper-button-next:after {
    content: '›';
    transform: translate(-60%, -50%);
}

.process-swiper .swiper-pagination {
    bottom: -50px;
}

.process-swiper .swiper-pagination-bullet {
    background: #4a90e2;
    width: 14px;
    height: 14px;
    opacity: 0.3;
    margin: 0 6px;
}

.process-swiper .swiper-pagination-bullet-active {
    background: #4a90e2;
    opacity: 1;
}

.process-cta {
    text-align: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    position: relative;
    font-size: 18px;
    line-height: 50px;
    color: #ffffff;
    text-align: center;
    padding: 0 30px;
    border-radius: 6px;
    background: #0c255d;
    text-decoration: none;
    font-weight: 600;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    box-shadow: 0 4px 15px rgba(12, 37, 93, 0.3);
}

.cta-button:after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 6px;
    background: #f0d27c;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.cta-button:hover {
    color: #0c255d;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(12, 37, 93, 0.4);
}

.cta-button:hover:after {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

.cta-button .arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.cta-button:hover .arrow {
    transform: translateX(5px);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .process-swiper {
        padding: 0 50px;
    }
    
    .phase-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 450px;
    }
    
    .process-card {
        padding: 25px;
        height: auto;
        min-height: 280px;
    }
    
    .timeline-header h3 {
        font-size: 28px;
    }
    
    .timeline-header p {
        font-size: 16px;
    }
    
    .phase-title h4 {
        font-size: 24px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .process-card h4 {
        font-size: 18px;
    }
    
    .process-card p {
        font-size: 13px;
    }
    
    .card-icon {
        font-size: 28px;
    }
    
    .cta-button {
        padding: 0 25px;
        font-size: 16px;
        line-height: 45px;
    }
}

@media (max-width: 480px) {
    .service-process-container {
        padding: 60px 0;
    }
    
    .process-timeline {
        padding: 0 15px;
    }
    
    .process-swiper {
        padding: 0 30px;
    }
    
    .timeline-header {
        margin-bottom: 40px;
    }
    
    .phase-group {
        padding: 30px 10px;
    }
    
    .process-card {
        padding: 15px;
        min-height: 220px;
    }
    
    .phase-title h4 {
        font-size: 20px;
    }
    
    .phase-title p {
        font-size: 14px;
    }
}

/* Seek2服务流程移动端优化 */
@media (max-width: 768px) {
    .seek2 .title {
        text-align: center;
        margin-bottom: 30px;
        padding: 0 20px;
    }
    
    .seek2 .title h2 {
        font-size: 20px;
        line-height: 1.4;
        color: #2c3e50;
        margin-bottom: 15px;
    }
    
    .seek2 .title img {
        max-width: 200px;
        height: auto;
        margin-bottom: 20px;
    }
    
    .service-process-container {
        padding: 15px 0;
    }
    
    .process-timeline {
        padding: 0 15px;
    }
    
    .process-swiper {
        padding: 0 40px;
    }
    
    .phase-group {
        padding: 25px 15px;
    }
    
    .phase-title {
        margin-bottom: 25px;
    }
    
    .phase-title h4 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .phase-title p {
        font-size: 14px;
    }
    
    .phase-cards {
        gap: 15px;
        max-width: 400px;
    }
    
    .process-card {
        padding: 20px 15px;
        min-height: 200px;
        border-radius: 15px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .process-card h4 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .process-card p {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 15px;
    }
    
    .card-icon {
        font-size: 24px;
    }
    
    .process-swiper .swiper-button-prev,
    .process-swiper .swiper-button-next {
        width: 50px;
        height: 50px;
    }
    
    .process-swiper .swiper-pagination {
        bottom: -40px;
    }
    
    .process-swiper .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        margin: 0 4px;
    }
}

@media (max-width: 480px) {
    .seek2 .title h2 {
        font-size: 18px;
        line-height: 1.3;
    }
    
    .seek2 .title img {
        max-width: 180px;
    }
    
    .service-process-container {
        padding: 10px 0;
    }
    
    .process-timeline {
        padding: 0 10px;
    }
    
    .process-swiper {
        padding: 0 25px;
    }
    
    .phase-group {
        padding: 20px 10px;
    }
    
    .phase-title h4 {
        font-size: 16px;
        margin-bottom: 6px;
    }
    
    .phase-title p {
        font-size: 13px;
    }
    
    .phase-cards {
        gap: 12px;
        max-width: 350px;
    }
    
    .process-card {
        padding: 15px 12px;
        min-height: 180px;
        border-radius: 12px;
    }
    
    .step-number {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .process-card h4 {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .process-card p {
        font-size: 12px;
        line-height: 1.4;
        margin-bottom: 12px;
    }
    
    .card-icon {
        font-size: 20px;
    }
    
    .process-swiper .swiper-button-prev,
    .process-swiper .swiper-button-next {
        width: 45px;
        height: 45px;
    }
    
    .process-swiper .swiper-pagination {
        bottom: -35px;
    }
    
    .process-swiper .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 0 3px;
    }
}

@media (max-width: 375px) {
    .seek2 .title h2 {
        font-size: 16px;
        line-height: 1.2;
    }
    
    .seek2 .title img {
        max-width: 160px;
    }
    
    .process-swiper {
        padding: 0 20px;
    }
    
    .phase-group {
        padding: 15px 8px;
    }
    
    .phase-title h4 {
        font-size: 15px;
        margin-bottom: 5px;
    }
    
    .phase-title p {
        font-size: 12px;
    }
    
    .phase-cards {
        gap: 10px;
        max-width: 320px;
    }
    
    .process-card {
        padding: 12px 10px;
        min-height: 160px;
        border-radius: 10px;
    }
    
    .step-number {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }
    
    .process-card h4 {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .process-card p {
        font-size: 11px;
        line-height: 1.3;
        margin-bottom: 10px;
    }
    
    .card-icon {
        font-size: 18px;
    }
    
    .process-swiper .swiper-button-prev,
    .process-swiper .swiper-button-next {
        width: 40px;
        height: 40px;
    }
    
    .process-swiper .swiper-pagination {
        bottom: -30px;
    }
    
    .process-swiper .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        margin: 0 2px;
    }
}
