/* 小红书入驻流程样式 */
.xhs-recruit-process {
    padding: 60px 0;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.xhs-process-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.xhs-process-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #ff2d55, #ff6b87);
    border-radius: 3px;
}

/* 流程步骤容器 */
.xhs-join-flow {
    display: flex;
    justify-content: center;
    align-items: stretch;
    margin: 40px auto;
    max-width: 1000px;
    position: relative;
}

/* 单个步骤样式 */
.xhs-join-step {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    padding: 30px 15px;
    margin: 0 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.xhs-join-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(255, 45, 85, 0.1);
}

/* 步骤序号 */
.xhs-join-number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #ff2d55 0%, #ff6b87 100%);
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(255, 45, 85, 0.25);
    position: relative;
}

/* 脉冲效果 */
.xhs-join-number::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: rgba(255, 45, 85, 0.15);
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
    100% {
        transform: scale(1);
        opacity: 0.6;
    }
}

/* 步骤标题 */
.xhs-join-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

/* 步骤描述 */
.xhs-join-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* 箭头指示器 */
.xhs-join-arrow {
    position: absolute;
    top: 40px;
    right: -10px;
    width: 20px;
    height: 20px;
    color: #ff2d55;
    z-index: 3;
}

/* 入驻按钮 */
.xhs-join-button {
    display: inline-block;
    margin-top: 40px;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #ff2d55 0%, #ff6b87 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(255, 45, 85, 0.2);
}

.xhs-join-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 45, 85, 0.3);
}

/* 连接线 */
.xhs-join-flow::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 80px;
    right: 80px;
    height: 2px;
    background: linear-gradient(90deg, 
        rgba(255, 45, 85, 0.1) 0%,
        rgba(255, 45, 85, 0.3) 20%, 
        rgba(255, 45, 85, 0.3) 80%,
        rgba(255, 45, 85, 0.1) 100%
    );
    z-index: 1;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .xhs-join-flow {
        flex-wrap: wrap;
    }
    
    .xhs-join-step {
        flex: 0 0 calc(50% - 20px);
        margin: 10px;
    }
    
    .xhs-join-flow::before {
        display: none;
    }
    
    .xhs-join-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .xhs-join-flow {
        flex-direction: column;
    }
    
    .xhs-join-step {
        width: 100%;
        margin: 10px 0;
    }
    
    .xhs-process-title {
        font-size: 28px;
    }
}

/* 小屏幕手机设备 */
@media (max-width: 480px) {
    .xhs-process-title {
        font-size: 24px;
    }
    
    .xhs-join-button {
        padding: 12px 30px;
        font-size: 15px;
    }
} 