/* 多商家申请页面样式 */
.apply-container {
    max-width: 800px;
    margin: 40px auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    overflow: hidden;
}

.apply-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px 30px;
    text-align: center;
}

.apply-header h1 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 600;
}

.apply-header p {
    font-size: 16px;
    opacity: 0.9;
    margin: 0;
}

.apply-form {
    padding: 40px 30px;
}

.form-section {
    margin-bottom: 30px;
}

.section-title {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    color: #555;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-label .required {
    color: #e74c3c;
    margin-left: 4px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-control:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-control.textarea {
    resize: vertical;
    min-height: 100px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.notice-box {
    background: #f8f9fa;
    border-left: 4px solid #17a2b8;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 0 8px 8px 0;
}

.notice-box h4 {
    color: #17a2b8;
    margin-bottom: 10px;
    font-size: 16px;
}

.notice-box p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 200px;
    display: block;
    margin: 30px auto 0;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.error-message {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

.form-group.error .form-control {
    border-color: #e74c3c;
}

.form-group.error .error-message {
    display: block;
}

/* 联系信息样式 */
.contact-info-section {
    background: #f8fffe;
    border: 1px solid #e0f2f1;
    border-radius: 8px;
    padding: 25px;
}

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

.contact-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e8f5e8;
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: #4caf50;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.1);
}

.contact-item i {
    color: #4caf50;
    font-size: 18px;
    margin-right: 12px;
    width: 20px;
    text-align: center;
}

.contact-content {
    flex: 1;
}

.contact-content label {
    display: block;
    color: #666;
    font-size: 12px;
    margin-bottom: 4px;
    font-weight: 500;
}

.contact-content span {
    color: #333;
    font-size: 14px;
    font-weight: 600;
}

.contact-note {
    background: #e8f5e8;
    color: #388e3c;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
    text-align: center;
}

.contact-note i {
    margin-right: 8px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .apply-container {
        margin: 20px;
        border-radius: 8px;
    }
    
    .apply-header {
        padding: 30px 20px;
    }
    
    .apply-form {
        padding: 30px 20px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .submit-btn {
        width: 100%;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-item {
        padding: 12px;
    }
    
    .contact-info-section {
        padding: 20px 15px;
    }
} 