/* 企业认证样式 */

.verification-container {
    max-width: 800px;
    margin: 0 auto;
}

.verification-status-card,
.verification-form-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
    margin-bottom: 20px;
}

.verification-status-card h3,
.verification-form-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1f2937;
}

/* 状态卡片 */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.status-badge.pending {
    background: #FFF7E6;
    color: #FA8C16;
}

.status-badge.approved {
    background: #F0FDF4;
    color: #10B981;
}

.status-badge.rejected {
    background: #FEF2F2;
    color: #EF4444;
}

.status-badge svg {
    width: 16px;
    height: 16px;
}

.verification-info {
    margin-top: 20px;
}

.verification-info-row {
    display: flex;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
}

.verification-info-row:last-child {
    border-bottom: none;
}

.verification-info-label {
    flex: 0 0 150px;
    font-weight: 600;
    color: #6b7280;
}

.verification-info-value {
    flex: 1;
    color: #1f2937;
}

.reject-reason {
    margin-top: 20px;
    padding: 15px;
    background: #FEF2F2;
    border-left: 4px solid #EF4444;
    border-radius: 4px;
}

.reject-reason strong {
    color: #EF4444;
    display: block;
    margin-bottom: 8px;
}

.btn-start-verification,
.btn-resubmit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #FF6A00;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
}

.btn-start-verification:hover,
.btn-resubmit:hover {
    background: #E55D00;
    transform: translateY(-2px);
}

/* 表单样式 */
.verification-form-card .form-group {
    margin-bottom: 20px;
}

.verification-form-card label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #374151;
}

.verification-form-card .required {
    color: #EF4444;
}

.verification-form-card input[type="text"],
.verification-form-card input[type="tel"],
.verification-form-card textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.verification-form-card input:focus,
.verification-form-card textarea:focus {
    outline: none;
    border-color: #FF6A00;
}

.verification-form-card .form-help {
    margin-top: 6px;
    font-size: 13px;
    color: #6b7280;
}

/* 文件上传 */
.file-upload-wrapper {
    margin-top: 10px;
}

.btn-upload {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #f3f4f6;
    border: 2px dashed #d1d5db;
    border-radius: 8px;
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-upload:hover {
    background: #e5e7eb;
    border-color: #9ca3af;
    color: #374151;
}

.license-preview {
    margin-top: 15px;
    padding: 15px;
    background: #f9fafb;
    border-radius: 8px;
}

.license-preview img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

/* 提交按钮 */
.form-actions {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: #FF6A00;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #E55D00;
    transform: translateY(-2px);
}

.btn-submit:disabled {
    background: #d1d5db;
    cursor: not-allowed;
    transform: none;
}

/* 响应式 */
@media (max-width: 768px) {
    .verification-status-card,
    .verification-form-card {
        padding: 20px;
    }
    
    .verification-info-row {
        flex-direction: column;
        gap: 8px;
    }
    
    .verification-info-label {
        flex: none;
    }
}
