/* 银行选择页面的额外样式 */
.bank-selection-section {
    max-width: 1000px;
    margin: 0 auto;
}

.bank-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.bank-card {
    background: white;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.bank-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    border-color: #667eea;
}

.bank-card.selected {
    border-color: #667eea;
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
}

.bank-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    border-radius: 12px;
    object-fit: contain;
    padding: 10px;
    background: #f8f9fa;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.bank-name {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
    font-size: 16px;
}

.bank-status {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 500;
    margin-top: 5px;
}

.status-available {
    background: #d4edda;
    color: #155724;
}

.status-coming {
    background: #fff3cd;
    color: #856404;
}

.continue-btn {
    margin-top: 40px;
    padding: 15px 40px;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.form-section {
    display: none;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.back-btn {
    background: #6c757d;
    margin-bottom: 20px;
}

.back-btn:hover {
    background: #5a6268;
}

.bank-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.bank-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    object-fit: contain;
    background: white;
    padding: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.bank-info-text h3 {
    margin: 0;
    color: #2c3e50;
}

.bank-info-text p {
    margin: 5px 0 0;
    color: #6c757d;
    font-size: 14px;
}

.coming-soon-message {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-top: 30px;
}

.coming-soon-icon {
    font-size: 64px;
    color: #ffc107;
    margin-bottom: 20px;
}

.coming-soon-message h2 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.coming-soon-message p {
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

.progress-bar {
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    margin: 30px auto;
    max-width: 400px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    width: 0%;
    transition: width 1s ease;
    border-radius: 3px;
}

.step-indicator {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    position: relative;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e9ecef;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: #667eea;
    color: white;
    box-shadow: 0 4px 10px rgba(102, 126, 234, 0.3);
}

.step.completed .step-number {
    background: #10b981;
    color: white;
}

.step-line {
    position: absolute;
    top: 20px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: #e9ecef;
    z-index: 1;
}

.step-line-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #667eea;
    width: 0%;
    transition: width 0.5s ease;
}

.form-content-section {
    display: block;
}