/* ============================================================
   认证页样式 - 四只小猛犸闲置信息发布平台
   登录 / 注册 / 注册结果 共用
   ============================================================ */

/* ============================================================
   通用 Auth 表单元素
   ============================================================ */
.zh_auth_input {
    width: 100%;
    height: 46px;
    padding: 0 16px;
    border: 1px solid var(--zh-border);
    border-radius: var(--zh-radius-sm);
    font-size: 14px;
    color: var(--zh-text);
    background: #fff;
    transition: all .25s;
    font-family: inherit;
}
.zh_auth_input:focus {
    outline: none;
    border-color: var(--zh-accent);
    box-shadow: 0 0 0 3px var(--zh-accent-glow);
}
textarea.zh_auth_input {
    height: auto;
    min-height: 90px;
    padding: 12px 16px;
    line-height: 1.6;
    resize: vertical;
}

.zh_auth_input_wrap {
    position: relative;
}
.zh_auth_input_btn {
    position: absolute;
    right: 8px; top: 50%;
    transform: translateY(-50%);
    width: 32px; height: 32px;
    background: transparent;
    border: none;
    color: var(--zh-text-light);
    cursor: pointer;
    border-radius: 50%;
}
.zh_auth_input_btn:hover {
    color: var(--zh-primary);
    background: var(--zh-bg-light);
}

.zh_auth_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 48px;
    padding: 0 22px;
    background: var(--zh-gradient-cyan);
    color: #fff;
    border: none;
    border-radius: var(--zh-radius-sm);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s;
}
.zh_auth_btn:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(0,188,212,.35);
}
.zh_auth_btn_lg {
    height: 52px;
    font-size: 16px;
}
.zh_auth_btn_outline {
    background: #fff;
    color: var(--zh-primary);
    border: 1px solid var(--zh-primary);
}
.zh_auth_btn_outline:hover {
    background: var(--zh-primary);
    color: #fff;
    box-shadow: 0 6px 16px rgba(13,59,138,.25);
}

.zh_auth_alert {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 16px;
    border-radius: var(--zh-radius-sm);
    font-size: 13px;
    margin-bottom: 18px;
}
.zh_auth_alert > i { font-size: 16px; margin-top: 2px; }
.zh_auth_alert_danger {
    background: #fde7ea;
    color: #a82334;
    border-left: 3px solid #d83a4a;
}
.zh_auth_alert ul {
    margin: 6px 0 0;
    padding-left: 20px;
}
.zh_auth_alert li { margin-bottom: 2px; }

.zh_auth_check {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
    font-size: 13px;
    color: var(--zh-text-muted);
}
.zh_auth_check input[type="checkbox"] {
    width: 16px; height: 16px;
    accent-color: var(--zh-accent);
    cursor: pointer;
}
.zh_auth_check a {
    color: var(--zh-primary);
}
.zh_auth_check a:hover { color: var(--zh-accent-dark); }

/* ============================================================
   登录页 - 左右分栏
   ============================================================ */
.zh_auth_wrap {
    background: var(--zh-bg-light);
    min-height: calc(100vh - 200px);
    padding: 36px 0;
    display: flex;
    align-items: center;
}
.zh_auth_split {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    background: #fff;
    border-radius: var(--zh-radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(13,59,138,.12);
    min-height: 580px;
}

/* === 左侧品牌面板 === */
.zh_auth_brand {
    position: relative;
    overflow: hidden;
    color: #fff;
}
.zh_auth_brand_bg {
    position: absolute;
    inset: 0;
    background: var(--zh-gradient-hero);
}
.zh_auth_brand_bg::before,
.zh_auth_brand_bg::after {
    content: '';
    position: absolute;
    border-radius: 50%;
}
.zh_auth_brand_bg::before {
    top: -100px; right: -80px;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(0,188,212,.4), transparent 70%);
}
.zh_auth_brand_bg::after {
    bottom: -120px; left: -60px;
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(0,188,212,.2), transparent 70%);
}
.zh_auth_brand_inner {
    position: relative;
    z-index: 1;
    padding: 48px 44px;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.zh_auth_brand_logo {
    display: inline-block;
    margin-bottom: 36px;
}
.zh_auth_brand_logo img {
    height: 44px;
    filter: brightness(0) invert(1);
}
.zh_auth_brand_title {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 14px;
    color: #fff;
}
.zh_auth_brand_title span {
    color: var(--zh-accent-light);
    font-size: 22px;
}
.zh_auth_brand_desc {
    font-size: 14px;
    line-height: 1.85;
    color: rgba(255,255,255,.8);
    margin: 0 0 32px;
    max-width: 380px;
}
.zh_auth_brand_features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.zh_auth_brand_features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: rgba(255,255,255,.85);
}
.zh_auth_brand_features li i {
    width: 32px; height: 32px;
    background: rgba(0,188,212,.18);
    border: 1px solid rgba(0,188,212,.4);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--zh-accent-light);
    font-size: 13px;
    flex-shrink: 0;
}
.zh_auth_brand_foot {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.1);
    font-size: 13px;
    color: rgba(255,255,255,.7);
}
.zh_auth_brand_foot i {
    color: var(--zh-accent-light);
    margin-right: 6px;
}
.zh_auth_brand_foot strong {
    color: #fff;
    font-weight: 700;
    margin-left: 4px;
    letter-spacing: 0.5px;
}

/* === 右侧表单面板 === */
.zh_auth_form_panel {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 44px;
}
.zh_auth_form_inner {
    width: 100%;
    max-width: 380px;
}
.zh_auth_form_head {
    margin-bottom: 28px;
    text-align: center;
}
.zh_auth_form_head h1 {
    font-size: 26px;
    font-weight: 700;
    color: var(--zh-text);
    margin: 0 0 8px;
}
.zh_auth_form_head p {
    font-size: 14px;
    color: var(--zh-text-muted);
    margin: 0;
}

.zh_auth_form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.zh_auth_field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.zh_auth_label {
    font-size: 13px;
    font-weight: 600;
    color: var(--zh-text);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.zh_auth_label i {
    color: var(--zh-accent);
    font-size: 12px;
}

.zh_auth_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.zh_auth_link {
    font-size: 13px;
    color: var(--zh-accent-dark);
    transition: color .2s;
}
.zh_auth_link:hover { color: var(--zh-primary); }

.zh_auth_divider {
    text-align: center;
    margin: 18px 0;
    position: relative;
}
.zh_auth_divider::before {
    content: '';
    position: absolute;
    top: 50%; left: 0; right: 0;
    height: 1px;
    background: var(--zh-border);
}
.zh_auth_divider span {
    position: relative;
    padding: 0 16px;
    background: #fff;
    font-size: 12px;
    color: var(--zh-text-muted);
}

.zh_auth_terms {
    margin: 24px 0 0;
    font-size: 12px;
    color: var(--zh-text-light);
    text-align: center;
    line-height: 1.7;
}
.zh_auth_terms a { color: var(--zh-primary); }
.zh_auth_terms a:hover { color: var(--zh-accent-dark); }

/* ============================================================
   注册页
   ============================================================ */
.zh_register_wrap {
    background: var(--zh-bg-light);
    padding-bottom: 60px;
    min-height: calc(100vh - 200px);
}

.zh_register_header {
    position: relative;
    overflow: hidden;
    color: #fff;
    padding: 32px 0 36px;
    margin-bottom: 32px;
}
.zh_register_header_bg {
    position: absolute;
    inset: 0;
    background: var(--zh-gradient-hero);
}
.zh_register_header_bg::before {
    content: '';
    position: absolute;
    top: -100px; right: -50px;
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(0,188,212,.35), transparent 70%);
    border-radius: 50%;
}
.zh_register_header_inner {
    position: relative;
    z-index: 1;
}
.zh_register_header .zh_breadcrumb {
    margin-bottom: 14px;
    font-size: 13px;
}
.zh_register_header .zh_breadcrumb a {
    color: rgba(255,255,255,.75);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.zh_register_header .zh_breadcrumb a:hover { color: var(--zh-accent-light); }
.zh_register_header .zh_breadcrumb_sep {
    color: rgba(255,255,255,.4);
    margin: 0 4px;
}
.zh_register_header .zh_breadcrumb > span:last-child {
    color: var(--zh-accent-light);
    font-weight: 500;
}
.zh_register_title {
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 8px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}
.zh_register_title i { color: var(--zh-accent-light); }
.zh_register_subtitle {
    font-size: 14px;
    color: rgba(255,255,255,.85);
    margin: 0;
}

.zh_register_main {
    max-width: 880px;
}

/* 步骤指示器 */
.zh_register_steps {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid var(--zh-border-light);
    border-radius: var(--zh-radius);
    padding: 20px 28px;
    margin-bottom: 24px;
}
.zh_register_step {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}
.zh_register_step_num {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--zh-bg-light);
    color: var(--zh-text-muted);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    border: 2px solid var(--zh-border);
    flex-shrink: 0;
}
.zh_register_step:first-child .zh_register_step_num {
    background: var(--zh-gradient-cyan);
    color: #fff;
    border-color: var(--zh-accent);
    box-shadow: 0 0 0 4px var(--zh-accent-glow);
}
.zh_register_step_text strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--zh-text);
}
.zh_register_step_text span {
    display: block;
    font-size: 12px;
    color: var(--zh-text-muted);
    margin-top: 2px;
}
.zh_register_step_line {
    flex-shrink: 0;
    width: 40px;
    height: 2px;
    background: var(--zh-border);
    border-radius: 2px;
}

.zh_register_alert {
    margin-bottom: 24px;
}

/* 表单卡片 */
.zh_register_form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.zh_register_card {
    background: #fff;
    border: 1px solid var(--zh-border-light);
    border-radius: var(--zh-radius);
    padding: 28px 32px 32px;
    position: relative;
}
.zh_register_card_head {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px dashed var(--zh-border);
}
.zh_register_card_num {
    width: 44px; height: 44px;
    background: var(--zh-gradient-cyan);
    color: #fff;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 6px 14px rgba(0,188,212,.25);
}
.zh_register_card_head h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--zh-text);
    margin: 2px 0 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.zh_register_card_head h2 i {
    color: var(--zh-accent);
    font-size: 16px;
}
.zh_register_card_head p {
    font-size: 13px;
    color: var(--zh-text-muted);
    margin: 0;
}

.zh_register_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 24px;
}
.zh_register_field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.zh_register_field_full { grid-column: 1 / -1; }
.zh_register_label {
    font-size: 13px;
    font-weight: 600;
    color: var(--zh-text);
}
.zh_register_label em {
    color: #d83a4a;
    font-style: normal;
    margin-left: 2px;
}
.zh_register_hint {
    font-size: 12px;
    color: var(--zh-text-light);
    line-height: 1.5;
}

/* 上传组件 */
.zh_upload_box {
    position: relative;
    border: 2px dashed var(--zh-border);
    border-radius: var(--zh-radius-sm);
    background: var(--zh-bg-soft);
    overflow: hidden;
    min-height: 140px;
    transition: all .25s;
}
.zh_upload_box:hover {
    border-color: var(--zh-accent);
    background: rgba(0,188,212,.04);
}
.zh_upload_box.has-file {
    border-style: solid;
    border-color: var(--zh-accent);
}
.zh_upload_file {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}
.zh_upload_inner {
    padding: 24px 18px;
    text-align: center;
    color: var(--zh-text-muted);
}
.zh_upload_inner > i {
    font-size: 32px;
    color: var(--zh-accent);
    margin-bottom: 10px;
    opacity: .7;
}
.zh_upload_inner > p {
    margin: 0 0 4px;
    font-size: 14px;
    font-weight: 600;
    color: var(--zh-text);
}
.zh_upload_inner > span {
    font-size: 12px;
    color: var(--zh-text-light);
}
.zh_upload_id_front,
.zh_upload_id_back {
    background: linear-gradient(135deg, rgba(0,188,212,.05), rgba(13,59,138,.05));
    min-height: 140px;
}
.zh_upload_preview {
    position: absolute;
    inset: 0;
    background: #fff;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 8px;
    z-index: 3;
}
.zh_upload_box.has-file .zh_upload_preview {
    display: flex;
}
.zh_upload_box.has-file .zh_upload_inner {
    visibility: hidden;
}
.zh_upload_preview img {
    max-width: 100%;
    max-height: 130px;
    object-fit: contain;
    border-radius: 4px;
}
.zh_upload_clear {
    position: absolute;
    top: 6px; right: 6px;
    width: 24px; height: 24px;
    border: none;
    background: rgba(216,58,74,.85);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

/* 隐私提示卡 */
.zh_privacy_tip {
    margin-top: 20px;
    padding: 16px 20px;
    background: rgba(0,188,212,.06);
    border: 1px solid rgba(0,188,212,.2);
    border-radius: var(--zh-radius-sm);
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.zh_privacy_tip > i {
    color: var(--zh-accent);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}
.zh_privacy_tip strong {
    display: block;
    font-size: 14px;
    color: var(--zh-text);
    margin-bottom: 4px;
    font-weight: 700;
}
.zh_privacy_tip p {
    font-size: 13px;
    color: var(--zh-text-muted);
    margin: 0;
    line-height: 1.7;
}

/* 提交区 */
.zh_register_submit {
    background: #fff;
    border: 1px solid var(--zh-border-light);
    border-radius: var(--zh-radius);
    padding: 22px 28px;
    text-align: center;
}
.zh_register_submit_actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 18px 0 14px;
}
.zh_register_submit_actions .zh_btn,
.zh_register_submit_actions .zh_auth_btn {
    width: auto;
    min-width: 180px;
}
.zh_register_submit_note {
    font-size: 13px;
    color: var(--zh-text-muted);
    line-height: 1.7;
}
.zh_register_submit_note i { color: var(--zh-accent); margin-right: 4px; }
.zh_register_submit_note strong { color: var(--zh-primary); }
.zh_register_submit_note a {
    color: var(--zh-primary);
    font-weight: 600;
    margin-left: 4px;
}

/* ============================================================
   注册结果页
   ============================================================ */
.zh_result_wrap {
    background: var(--zh-bg-light);
    padding: 60px 0;
    min-height: calc(100vh - 200px);
}
.zh_result_card {
    max-width: 760px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--zh-border-light);
    border-radius: var(--zh-radius-lg);
    padding: 56px 48px;
    text-align: center;
    box-shadow: 0 16px 40px rgba(13,59,138,.08);
}

.zh_result_icon {
    position: relative;
    width: 96px; height: 96px;
    margin: 0 auto 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    color: #fff;
}
.zh_result_icon_success {
    background: linear-gradient(135deg, #0aa566 0%, #058048 100%);
    box-shadow: 0 12px 32px rgba(10,165,102,.3);
}
.zh_result_icon_info {
    background: linear-gradient(135deg, #f5a300 0%, #d97f00 100%);
    box-shadow: 0 12px 32px rgba(245,163,0,.25);
}
.zh_result_pulse {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(10,165,102,.4);
    animation: pulseRing 1.6s ease-out infinite;
}
@keyframes pulseRing {
    0% { transform: scale(.9); opacity: .8; }
    100% { transform: scale(1.4); opacity: 0; }
}

.zh_result_title {
    font-size: 26px;
    font-weight: 800;
    color: var(--zh-text);
    margin: 0 0 14px;
}
.zh_result_desc {
    font-size: 15px;
    color: var(--zh-text-muted);
    line-height: 1.85;
    margin: 0 0 36px;
}
.zh_result_desc strong { color: var(--zh-primary); font-weight: 700; }

/* 流程步骤条 */
.zh_result_steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 0 0 32px;
    padding: 24px 0;
    border-top: 1px solid var(--zh-border-light);
    border-bottom: 1px solid var(--zh-border-light);
}
.zh_result_step {
    text-align: center;
    position: relative;
}
.zh_result_step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 22px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: var(--zh-border);
}
.zh_result_step.done:not(:last-child)::after {
    background: #0aa566;
}
.zh_result_step_dot {
    position: relative;
    z-index: 1;
    width: 44px; height: 44px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background: var(--zh-bg-light);
    color: var(--zh-text-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border: 2px solid var(--zh-border);
}
.zh_result_step.done .zh_result_step_dot {
    background: #0aa566;
    color: #fff;
    border-color: #0aa566;
}
.zh_result_step.active .zh_result_step_dot {
    background: var(--zh-accent);
    color: #fff;
    border-color: var(--zh-accent);
    box-shadow: 0 0 0 6px var(--zh-accent-glow);
}
.zh_result_step strong {
    display: block;
    font-size: 13px;
    color: var(--zh-text);
    font-weight: 600;
}
.zh_result_step span {
    display: block;
    font-size: 12px;
    color: var(--zh-text-light);
    margin-top: 2px;
}
.zh_result_step.active strong { color: var(--zh-accent-dark); }

/* 温馨提示 */
.zh_result_tips {
    background: var(--zh-bg-soft);
    border: 1px solid var(--zh-border-light);
    border-radius: var(--zh-radius);
    padding: 20px 24px;
    margin-bottom: 32px;
    text-align: left;
}
.zh_result_tips h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--zh-text);
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.zh_result_tips h3 i { color: var(--zh-accent); }
.zh_result_tips ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.zh_result_tips li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 6px 0;
    font-size: 13px;
    color: var(--zh-text-muted);
    line-height: 1.7;
}
.zh_result_tips li i {
    color: var(--zh-accent);
    font-size: 12px;
    margin-top: 4px;
}
.zh_result_tips li strong { color: var(--zh-text); font-weight: 600; }

/* 操作按钮 */
.zh_result_actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.zh_result_actions .zh_btn,
.zh_result_actions .zh_auth_btn {
    width: auto;
    min-width: 180px;
}

/* 联系方式 */
.zh_result_contact {
    padding-top: 22px;
    border-top: 1px dashed var(--zh-border-light);
    font-size: 13px;
    color: var(--zh-text-muted);
}
.zh_result_contact i {
    color: var(--zh-accent);
    margin-right: 6px;
}
.zh_result_contact a {
    color: var(--zh-primary);
    font-weight: 600;
    margin: 0 4px;
}
.zh_result_contact a:hover { color: var(--zh-accent-dark); }

/* ============================================================
   响应式
   ============================================================ */
@media (max-width: 992px) {
    .zh_auth_split {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
        min-height: 0;
    }
    .zh_auth_brand {
        padding: 0;
    }
    .zh_auth_brand_inner {
        padding: 32px 28px;
    }
    .zh_auth_brand_features { display: none; }
    .zh_auth_brand_title { font-size: 22px; }
    .zh_auth_form_panel { padding: 32px 28px; }

    .zh_register_grid { grid-template-columns: 1fr; }
    .zh_register_steps { padding: 16px; gap: 4px; }
    .zh_register_step_text { display: none; }
    .zh_register_step_line { width: 24px; }
    .zh_register_card { padding: 22px 20px; }
    .zh_register_title { font-size: 22px; }

    .zh_result_card { padding: 40px 24px; }
    .zh_result_title { font-size: 22px; }
    .zh_result_steps { grid-template-columns: 1fr 1fr; gap: 16px; padding: 20px 0; }
    .zh_result_step:not(:last-child)::after { display: none; }
}
@media (max-width: 640px) {
    .zh_auth_brand_inner { padding: 24px 20px; }
    .zh_auth_brand_logo img { height: 36px; }
    .zh_auth_brand_title { font-size: 18px; }
    .zh_auth_brand_title span { font-size: 16px; }
    .zh_auth_form_panel { padding: 24px 20px; }
    .zh_auth_form_head h1 { font-size: 22px; }

    .zh_register_card { padding: 20px 16px; }
    .zh_register_card_head { gap: 12px; }
    .zh_register_card_num { width: 36px; height: 36px; font-size: 14px; }
    .zh_register_submit_actions { flex-direction: column; }
    .zh_register_submit_actions .zh_btn,
    .zh_register_submit_actions .zh_auth_btn { width: 100%; }

    .zh_result_card { padding: 32px 18px; }
    .zh_result_icon { width: 80px; height: 80px; font-size: 30px; }
    .zh_result_steps { grid-template-columns: 1fr; }
    .zh_result_actions { flex-direction: column; }
    .zh_result_actions .zh_btn,
    .zh_result_actions .zh_auth_btn { width: 100%; }
}
