/* ============================================
   merchant-in.css — 商家入驻申请 / 结果
   ============================================ */

.zh_mi_wrap {
    max-width: 1240px;
    margin: 28px auto 60px;
    padding: 0 20px;
}

/* ========== 权益条 ========== */
.zh_mi_benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 24px;
}

.zh_mi_benefit {
    background: #fff;
    border: 1px solid var(--zh-line);
    border-radius: var(--zh-radius-lg);
    padding: 24px 22px;
    text-align: center;
    transition: all 0.3s;
}
.zh_mi_benefit:hover {
    transform: translateY(-4px);
    border-color: var(--zh-gold);
    box-shadow: var(--zh-shadow);
}

.zh_mi_benefit_icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--zh-grad-gold);
    color: var(--zh-primary-deep);
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.zh_mi_benefit h4 { font-size: 15px; font-weight: 700; color: var(--zh-primary); margin-bottom: 6px; }
.zh_mi_benefit p { font-size: 12px; color: var(--zh-text-3); line-height: 1.7; }

/* ========== 表单 ========== */
.zh_mi_form_card {
    background: #fff;
    border: 1px solid var(--zh-line);
    border-radius: var(--zh-radius-lg);
    padding: 36px 44px;
    box-shadow: var(--zh-shadow-sm);
}

.zh_mi_form_section {
    margin-bottom: 30px;
}

.zh_mi_form_section_title {
    font-size: 16px;
    font-weight: 700;
    color: var(--zh-primary);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--zh-line);
    display: flex;
    align-items: center;
    gap: 10px;
}
.zh_mi_form_section_title::before {
    content: '';
    width: 4px;
    height: 18px;
    background: var(--zh-gold);
    border-radius: 2px;
}

/* 文件上传 */
.zh_mi_upload {
    border: 2px dashed var(--zh-line);
    border-radius: var(--zh-radius);
    background: var(--zh-bg-soft);
    padding: 24px 20px;
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: all 0.2s;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.zh_mi_upload:hover {
    border-color: var(--zh-primary);
    background: #fff;
}

.zh_mi_upload input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.zh_mi_upload i {
    font-size: 28px;
    color: var(--zh-gold);
}

.zh_mi_upload_tip { font-size: 13px; color: var(--zh-text-2); font-weight: 500; }
.zh_mi_upload_hint { font-size: 11px; color: var(--zh-text-3); }

.zh_mi_upload img {
    max-width: 100%;
    max-height: 140px;
    border-radius: var(--zh-radius-sm);
}

/* ========== 结果页 ========== */
.zh_mres_wrap {
    max-width: 720px;
    margin: 48px auto 80px;
}

.zh_mres_card {
    background: #fff;
    border: 1px solid var(--zh-line);
    border-radius: var(--zh-radius-lg);
    padding: 60px 48px 48px;
    text-align: center;
    box-shadow: var(--zh-shadow);
    position: relative;
    overflow: hidden;
}

.zh_mres_card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: var(--zh-grad-gold);
}

.zh_mres_icon {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: var(--zh-grad-primary);
    color: #fff;
    font-size: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 26px;
    border: 4px solid var(--zh-gold);
    box-shadow: 0 12px 36px rgba(27,58,107,0.25);
}

.zh_mres_title {
    font-size: 28px;
    font-weight: 700;
    color: var(--zh-primary);
    margin-bottom: 10px;
}

.zh_mres_sub {
    font-size: 14px;
    color: var(--zh-text-2);
    line-height: 1.8;
    margin-bottom: 32px;
}

.zh_mres_steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 24px 20px;
    margin: 0 0 32px;
    background: var(--zh-bg-soft);
    border-radius: var(--zh-radius);
}

.zh_mres_btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== 响应式 ========== */
@media (max-width: 991px) {
    .zh_mi_benefits { grid-template-columns: repeat(2, 1fr); }
    .zh_mi_form_card { padding: 28px 26px; }
    .zh_mres_card { padding: 44px 30px 36px; }
    .zh_mres_title { font-size: 22px; }
}

@media (max-width: 767px) {
    .zh_mi_wrap { margin-top: 16px; }
    .zh_mi_benefits { grid-template-columns: 1fr; gap: 12px; }
    .zh_mi_form_card { padding: 22px 18px; }
}
