/* ============================================
   merchant-in.css — 商家入驻申请 + 结果页（服饰版）
   类名前缀：.zh_mc_reg_* / .zh_mc_res_*
   ============================================ */

/* ============================================
   ① 4 步入驻进度条
   ============================================ */
.zh_mc_reg_steps_bar {
    background: #fff;
    border-bottom: 1px solid var(--zh-line);
    padding: 24px 20px;
}

.zh_mc_reg_steps {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
}

.zh_mc_reg_step {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.zh_mc_reg_step_circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--zh-line);
    color: var(--zh-text-3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: all 0.25s;
}

.zh_mc_reg_step_text { display: flex; flex-direction: column; }
.zh_mc_reg_step_text strong { font-size: 14px; color: var(--zh-text); font-weight: 600; }
.zh_mc_reg_step_text span { font-size: 11.5px; color: var(--zh-text-3); margin-top: 2px; }

.zh_mc_reg_step_line {
    flex: 1;
    height: 2px;
    background: var(--zh-line);
    margin: 0 16px;
    min-width: 30px;
}

.zh_mc_reg_step_active .zh_mc_reg_step_circle {
    background: var(--zh-primary);
    border-color: var(--zh-primary);
    color: #fff;
    box-shadow: 0 0 0 4px var(--zh-primary-tint);
}

.zh_mc_reg_step_active .zh_mc_reg_step_text strong { color: var(--zh-primary); }

/* ============================================
   主区双栏：左表单 + 右粘性提示
   ============================================ */
.zh_mc_reg_wrap {
    background: var(--zh-bg);
    padding: 32px 0 56px;
}

.zh_mc_reg_grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 24px;
    align-items: start;
}

.zh_mc_reg_main {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* 提示条 */
.zh_mc_reg_alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    border-radius: var(--zh-radius-sm);
    font-size: 13.5px;
    line-height: 1.6;
}

.zh_mc_reg_alert > i { font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.zh_mc_reg_alert strong { display: block; margin-bottom: 6px; }
.zh_mc_reg_alert ul { margin: 0; padding-left: 18px; }

.zh_mc_reg_alert_err {
    background: #fff1ec;
    color: #b53d18;
    border-left: 3px solid var(--zh-accent);
}

.zh_mc_reg_alert_ok {
    background: #e6f7ee;
    color: #1c6b3a;
    border-left: 3px solid #2BB673;
}

/* 表单卡 */
.zh_mc_reg_card {
    background: #fff;
    border: 1px solid var(--zh-line);
    border-radius: var(--zh-radius-sm);
    overflow: hidden;
}

.zh_mc_reg_cardhd {
    padding: 14px 22px;
    background: var(--zh-bg-soft);
    border-bottom: 1px solid var(--zh-line);
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.zh_mc_reg_cardhd h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--zh-text);
    margin: 0;
    position: relative;
    padding-left: 12px;
    letter-spacing: 1px;
}

.zh_mc_reg_cardhd h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 14px;
    background: var(--zh-primary);
    border-radius: 2px;
}

.zh_mc_reg_cardhd small {
    font-size: 11px;
    color: var(--zh-text-3);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.zh_mc_reg_body { padding: 22px; }

/* 表单字段 */
.zh_mc_reg_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.zh_mc_reg_row_3 { grid-template-columns: 1fr 1fr 1fr; }

.zh_mc_reg_field { margin-bottom: 16px; }
.zh_mc_reg_row .zh_mc_reg_field { margin-bottom: 0; }

.zh_mc_reg_label {
    display: block;
    font-size: 13px;
    color: var(--zh-text);
    font-weight: 500;
    margin-bottom: 8px;
}

.zh_mc_reg_req { color: var(--zh-accent); margin-left: 2px; }

.zh_mc_reg_input,
.zh_mc_reg_textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--zh-line);
    border-radius: var(--zh-radius-sm);
    background: #fff;
    font-size: 14px;
    color: var(--zh-text);
    outline: none;
    transition: all 0.2s;
    font-family: inherit;
}

.zh_mc_reg_input:focus,
.zh_mc_reg_textarea:focus {
    border-color: var(--zh-primary);
    box-shadow: 0 0 0 3px var(--zh-primary-tint);
}

.zh_mc_reg_textarea {
    min-height: 100px;
    resize: vertical;
}

.zh_mc_reg_hint {
    font-size: 11.5px;
    color: var(--zh-text-3);
    margin-top: 6px;
}

/* 文件上传 */
.zh_mc_reg_upload {
    position: relative;
    border: 2px dashed var(--zh-line);
    border-radius: var(--zh-radius-sm);
    padding: 22px 14px;
    text-align: center;
    color: var(--zh-text-3);
    cursor: pointer;
    transition: all 0.25s;
    background: var(--zh-bg-soft);
    min-height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.zh_mc_reg_upload:hover {
    border-color: var(--zh-primary);
    color: var(--zh-primary);
    background: var(--zh-primary-tint);
}

.zh_mc_reg_upload input[type="file"] { display: none; }

.zh_mc_reg_upload > i {
    font-size: 30px;
    margin-bottom: 8px;
    transition: color 0.25s;
}

.zh_mc_reg_upload:hover > i { color: var(--zh-primary); }

.zh_mc_reg_upload_tip {
    font-size: 13px;
    font-weight: 600;
    color: var(--zh-text);
}

.zh_mc_reg_upload_hint {
    font-size: 11px;
    color: var(--zh-text-3);
    margin-top: 4px;
    line-height: 1.5;
}

.zh_mc_reg_upload_wide { padding: 28px 22px; min-height: 160px; }

/* 已上传（含预览图） */
.zh_mc_reg_upload_filled {
    padding: 0;
    background: #fff;
    border-style: solid;
    border-color: var(--zh-primary);
}

.zh_mc_reg_upload_filled img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    display: block;
}

.zh_mc_reg_upload_filled .zh_mc_reg_upload_hint {
    padding: 4px 0 10px;
    background: var(--zh-bg-soft);
    width: 100%;
    text-align: center;
}

/* 验证码 */
.zh_mc_reg_captcha {
    display: flex;
    gap: 10px;
    align-items: center;
}

.zh_mc_reg_captcha .zh_mc_reg_input { flex: 1; }

.zh_mc_reg_captcha img {
    height: 42px;
    border-radius: var(--zh-radius-sm);
    border: 1px solid var(--zh-line);
    cursor: pointer;
    flex-shrink: 0;
}

/* 同意 + 提交 */
.zh_mc_reg_agree {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 18px 0 16px;
    font-size: 13px;
    color: var(--zh-text-2);
    cursor: pointer;
    user-select: none;
}

.zh_mc_reg_agree input[type="checkbox"] {
    margin-top: 2px;
    accent-color: var(--zh-primary);
    cursor: pointer;
}

.zh_mc_reg_agree a {
    color: var(--zh-primary);
    text-decoration: underline;
}

.zh_mc_reg_submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 22px;
    background: var(--zh-primary);
    color: #fff;
    border: none;
    border-radius: var(--zh-radius-sm);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    box-shadow: 0 6px 18px rgba(242, 135, 43, 0.28);
}

.zh_mc_reg_submit:hover {
    background: var(--zh-primary-deep);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(242, 135, 43, 0.42);
}

.zh_mc_reg_tip {
    text-align: center;
    font-size: 12px;
    color: var(--zh-text-3);
    margin: 12px 0 0;
}

/* ============================================
   右侧 sticky 提示卡
   ============================================ */
.zh_mc_reg_aside {
    position: sticky;
    top: 80px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.zh_mc_reg_aside_card {
    background: #fff;
    border: 1px solid var(--zh-line);
    border-radius: var(--zh-radius-sm);
    padding: 20px 22px;
}

.zh_mc_reg_aside_h {
    font-size: 14px;
    font-weight: 700;
    color: var(--zh-text);
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--zh-line);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: 100%;
}

.zh_mc_reg_aside_h i { color: var(--zh-primary); }

.zh_mc_reg_aside_list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.zh_mc_reg_aside_item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.zh_mc_reg_aside_icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: var(--zh-radius-sm);
    background: var(--zh-primary-tint);
    color: var(--zh-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.zh_mc_reg_aside_item strong {
    display: block;
    font-size: 13px;
    color: var(--zh-text);
    font-weight: 600;
    margin-bottom: 3px;
}

.zh_mc_reg_aside_item p {
    font-size: 12px;
    color: var(--zh-text-2);
    line-height: 1.6;
    margin: 0;
}

/* 客服小卡 */
.zh_mc_reg_aside_help {
    background: linear-gradient(135deg, var(--zh-primary) 0%, var(--zh-accent) 100%);
    border-color: var(--zh-primary);
    color: #fff;
    text-align: center;
}

.zh_mc_reg_aside_help_icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.zh_mc_reg_aside_help h5 {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 4px;
    color: #fff;
}

.zh_mc_reg_aside_help p {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 8px;
}

.zh_mc_reg_aside_help strong {
    display: block;
    font-size: 20px;
    font-family: "Arial", sans-serif;
    color: #fff;
    margin-bottom: 12px;
}

.zh_mc_reg_aside_help_btn {
    display: inline-block;
    padding: 7px 18px;
    background: #fff;
    color: var(--zh-primary-deep);
    font-size: 12.5px;
    font-weight: 600;
    border-radius: var(--zh-radius-sm);
    transition: background 0.2s;
}

.zh_mc_reg_aside_help_btn:hover {
    background: var(--zh-dark);
    color: #fff;
}

/* 审核时长 */
.zh_mc_reg_aside_time {
    background: var(--zh-cyan-tint);
    border-color: var(--zh-cyan-soft);
}

.zh_mc_reg_aside_time h5 {
    font-size: 13px;
    font-weight: 600;
    color: var(--zh-cyan);
    margin: 0 0 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.zh_mc_reg_aside_time p {
    font-size: 12.5px;
    color: var(--zh-text-2);
    line-height: 1.7;
    margin: 0;
}

.zh_mc_reg_aside_time strong { color: var(--zh-cyan); }

/* ============================================
   入驻结果页 — 居中大对勾卡
   ============================================ */
.zh_mc_res_wrap {
    background: var(--zh-bg);
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 20px;
}

.zh_mc_res_card {
    background: #fff;
    border: 1px solid var(--zh-line);
    border-radius: var(--zh-radius-sm);
    padding: 48px 48px 36px;
    text-align: center;
    max-width: 720px;
    width: 100%;
    box-shadow: 0 18px 38px rgba(27, 31, 42, 0.06);
    border-top: 4px solid var(--zh-primary);
}

/* 大对勾图标 */
.zh_mc_res_icon {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: var(--zh-primary-tint);
    color: var(--zh-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
}

.zh_mc_res_icon::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid var(--zh-primary);
    opacity: 0.35;
}

.zh_mc_res_icon i { font-size: 48px; }

.zh_mc_res_title {
    font-size: 28px;
    font-weight: 700;
    color: var(--zh-text);
    margin: 0 0 10px;
}

.zh_mc_res_sub {
    font-size: 14px;
    color: var(--zh-text-2);
    line-height: 1.7;
    margin: 0 0 6px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.zh_mc_res_notice {
    font-size: 13px;
    color: var(--zh-text-3);
    margin: 0 0 32px;
}

.zh_mc_res_notice strong {
    color: var(--zh-primary);
    font-weight: 600;
}

/* 4 步进度（结果页用） */
.zh_mc_res_steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 24px 0;
    margin: 0 0 28px;
    background: var(--zh-bg-soft);
    border-radius: var(--zh-radius-sm);
    position: relative;
}

.zh_mc_res_step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 12px;
    position: relative;
}

.zh_mc_res_step + .zh_mc_res_step::before {
    content: '';
    position: absolute;
    top: 22px;
    left: 0;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background: var(--zh-line);
    z-index: 0;
}

.zh_mc_res_step_done + .zh_mc_res_step::before { background: var(--zh-primary); }

.zh_mc_res_step_circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--zh-line);
    color: var(--zh-text-3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    transition: all 0.25s;
}

.zh_mc_res_step_text { display: flex; flex-direction: column; gap: 4px; }
.zh_mc_res_step_text strong { font-size: 13px; color: var(--zh-text); font-weight: 600; }
.zh_mc_res_step_text span { font-size: 11px; color: var(--zh-text-3); }

.zh_mc_res_step_done .zh_mc_res_step_circle {
    background: var(--zh-primary);
    border-color: var(--zh-primary);
    color: #fff;
}
.zh_mc_res_step_done .zh_mc_res_step_text strong { color: var(--zh-primary); }

.zh_mc_res_step_active .zh_mc_res_step_circle {
    background: #fff;
    border-color: var(--zh-primary);
    color: var(--zh-primary);
    box-shadow: 0 0 0 4px var(--zh-primary-tint);
}
.zh_mc_res_step_active .zh_mc_res_step_text strong { color: var(--zh-primary); }

/* 操作按钮 */
.zh_mc_res_actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

/* 温馨提示 */
.zh_mc_res_tips {
    text-align: left;
    padding: 18px 22px;
    background: var(--zh-bg-soft);
    border-radius: var(--zh-radius-sm);
    border-left: 3px solid var(--zh-primary);
}

.zh_mc_res_tips h5 {
    font-size: 13px;
    font-weight: 600;
    color: var(--zh-text);
    margin: 0 0 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.zh_mc_res_tips h5 i { color: var(--zh-primary); }

.zh_mc_res_tips ul {
    margin: 0;
    padding-left: 18px;
    font-size: 12.5px;
    color: var(--zh-text-2);
    line-height: 1.85;
}

.zh_mc_res_tips ul strong {
    color: var(--zh-primary);
    font-family: "Arial", sans-serif;
    font-weight: 600;
}

/* ============================================
   响应式
   ============================================ */
@media (max-width: 1199px) {
    .zh_mc_reg_steps { max-width: 100%; }
    .zh_mc_reg_step_text strong { font-size: 13px; }
}

@media (max-width: 991px) {
    .zh_mc_reg_grid { grid-template-columns: 1fr; }
    .zh_mc_reg_aside { position: static; flex-direction: row; gap: 12px; flex-wrap: wrap; }
    .zh_mc_reg_aside_card { flex: 1; min-width: 220px; }

    .zh_mc_reg_steps_bar { padding: 18px 14px; overflow-x: auto; }
    .zh_mc_reg_steps { min-width: 720px; }

    .zh_mc_reg_row_3 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
    .zh_mc_reg_step_text { display: none; }
    .zh_mc_reg_step_circle { width: 36px; height: 36px; font-size: 14px; }
    .zh_mc_reg_steps { min-width: auto; max-width: 100%; }
    .zh_mc_reg_step_line { margin: 0 8px; }

    .zh_mc_reg_grid { padding: 0 12px; gap: 16px; }
    .zh_mc_reg_aside { flex-direction: column; }
    .zh_mc_reg_aside_help, .zh_mc_reg_aside_time { display: none; }

    .zh_mc_reg_body { padding: 18px 16px; }
    .zh_mc_reg_row { grid-template-columns: 1fr; gap: 12px; }
    .zh_mc_reg_row_3 { grid-template-columns: 1fr; }

    .zh_mc_res_card { padding: 36px 22px 24px; }
    .zh_mc_res_icon { width: 88px; height: 88px; }
    .zh_mc_res_icon i { font-size: 36px; }
    .zh_mc_res_title { font-size: 22px; }

    .zh_mc_res_steps { grid-template-columns: 1fr 1fr; row-gap: 18px; padding: 18px 0; }
    .zh_mc_res_step + .zh_mc_res_step::before { display: none; }
    .zh_mc_res_step_circle { width: 38px; height: 38px; font-size: 14px; }

    .zh_mc_res_actions .zh_pb_btn { flex: 1; justify-content: center; }
}
