/* 定做流程样式 */

.custom-process {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.process-intro {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(106, 17, 203, 0.2), rgba(37, 117, 252, 0.2));
    border-radius: 10px;
    border-left: 4px solid #6a11cb;
}

.process-intro p {
    font-size: 1.2rem;
    color: #e0e0ff;
    margin: 0;
    line-height: 1.6;
}

.process-intro i {
    color: #6a11cb;
    margin-right: 10px;
    font-size: 1.4rem;
}

.process-steps h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(106, 17, 203, 0.5);
}

.process-steps h3 i {
    color: #6a11cb;
    margin-right: 10px;
}

.step-item {
    display: flex;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-item:hover {
    background: rgba(106, 17, 203, 0.1);
    border-color: rgba(106, 17, 203, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(106, 17, 203, 0.2);
}

.step-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(to bottom, #6a11cb, #2575fc);
    border-radius: 2px;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 20px;
    box-shadow: 0 4px 10px rgba(106, 17, 203, 0.4);
}

.step-content {
    flex: 1;
}

.step-content h4 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.step-content h4 i {
    color: #6a11cb;
    margin-right: 10px;
    font-size: 1.2rem;
}

.step-content p {
    color: #b0b0ff;
    line-height: 1.6;
    margin: 0;
    font-size: 1.05rem;
}

.process-contact {
    margin-top: 50px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(37, 117, 252, 0.1), rgba(106, 17, 203, 0.1));
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(106, 17, 203, 0.2);
}

.process-contact h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.process-contact h3 i {
    color: #2575fc;
    margin-right: 10px;
}

.process-contact > p {
    color: #b0b0ff;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.contact-info p {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 8px;
    color: #e0e0ff;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-info p:hover {
    background: rgba(106, 17, 203, 0.2);
    transform: translateY(-2px);
}

.contact-info i {
    color: #6a11cb;
    margin-right: 10px;
    font-size: 1.2rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .custom-process {
        padding: 20px;
    }
    
    .step-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .step-number {
        margin-bottom: 15px;
        margin-right: 0;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .process-intro p {
        font-size: 1.1rem;
    }
    
    .step-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .custom-process {
        padding: 15px;
    }
    
    .step-item {
        padding: 15px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .step-content h4 {
        font-size: 1.2rem;
    }
    
    .contact-info p {
        font-size: 1rem;
        padding: 12px;
    }
}