:root {
    --hl-red: #d20b22;
    --hl-red-dark: #c6041b;
    --hl-pink: #fff4f5;
    --hl-pink-strong: #ffd6d9;
    --hl-pink-chip: #fff0f2;
    --hl-gray: #f2f3f5;
    --hl-blue-gray: #eef3f7;
    --hl-text: #222;
    --hl-muted: #777;
    --hl-light: #aaa;
    --hl-border: #ecd4d7;
    --hl-green: #35b64a;
    --hl-blue: #3498d3;
    --hl-purple: #9b5bb5;
    --hl-orange: #f06a00;
    --hl-orange-dark: #d94a00;
    --hl-radius: 10px;
    --hl-header-height: 52px;
    --hl-footer-height: 64px;
    --hl-fixed-action-height: 84px;
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
    margin: 0;
    overflow-x: hidden;
}

body {
    color: var(--hl-text);
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
select,
textarea {
    max-width: 100%;
    font: inherit;
}

.h5-body {
    background: #fff;
}

.h5-body--pink {
    background: var(--hl-pink);
}

.h5-body--soft {
    background: #f7f7f7;
}

.h5-body--gray {
    background: var(--hl-gray);
}

.h5-body--bluegray {
    background: var(--hl-blue-gray);
}

.h5-loading-mask {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0);
    opacity: 0;
    transition: opacity 0.18s ease, background 0.18s ease;
    z-index: 9999;
}

.h5-loading-mask.is-visible {
    background: rgba(0, 0, 0, 0.24);
    opacity: 1;
}

.h5-loading-mask__panel {
    min-width: 140px;
    max-width: calc(100vw - 48px);
    padding: 18px 22px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--hl-text);
    font-size: 15px;
    line-height: 1.4;
}

.h5-loading-mask__spinner,
.h5-btn-spinner {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid rgba(210, 11, 34, 0.18);
    border-top-color: var(--hl-red);
    animation: h5-spin 0.8s linear infinite;
    flex: 0 0 auto;
}

.h5-loading-mask__text,
.h5-btn-text {
    display: inline-flex;
    align-items: center;
}

.h5-btn.is-busy {
    gap: 8px;
}

@keyframes h5-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.h5-body--fixed-action {
    padding-bottom: calc(var(--hl-fixed-action-height) + env(safe-area-inset-bottom));
}

.h5-page {
    width: 100%;
    max-width: 750px;
    min-height: 100vh;
    margin: 0 auto;
    padding-top: calc(var(--hl-header-height) + env(safe-area-inset-top));
    overflow-x: hidden;
}

.h5-page--has-footer {
    padding-bottom: 0;
}

.h5-page--has-footer main {
    padding-bottom: 24px;
}

.h5-body--fixed-action .h5-page {
    padding-bottom: calc(var(--hl-fixed-action-height) + env(safe-area-inset-bottom));
}

.brand-header,
.simple-red-header,
.h5-header {
    width: 100%;
    background: var(--hl-red);
    color: #fff;
}

.brand-header {
    display: flex;
    min-height: 66px;
    align-items: center;
    justify-content: center;
}

.brand-header--plain {
    background: transparent;
    color: var(--hl-red);
    min-height: 76px;
}

.brand-header h1,
.simple-red-header h1,
.h5-header h1 {
    min-width: 0;
    margin: 0;
    overflow: hidden;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: var(--hl-header-height);
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.simple-red-header {
    display: flex;
    min-height: 64px;
    align-items: center;
    justify-content: center;
}

.h5-header {
    position: relative;
    display: flex;
    height: calc(var(--hl-header-height) + env(safe-area-inset-top));
    min-height: calc(var(--hl-header-height) + env(safe-area-inset-top));
    max-height: calc(var(--hl-header-height) + env(safe-area-inset-top));
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: env(safe-area-inset-top);
}

.h5-header h1 {
    position: absolute;
    top: env(safe-area-inset-top);
    left: 50%;
    width: calc(100% - 120px);
    height: var(--hl-header-height);
    transform: translateX(-50%);
}

.h5-header__back,
.h5-header__side {
    width: 48px;
    height: var(--hl-header-height);
    min-height: var(--hl-header-height);
}

.h5-header__back {
    position: absolute;
    left: 0;
    top: env(safe-area-inset-top);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 500;
}

.h5-header__report {
    position: absolute;
    right: 58px;
    top: calc(env(safe-area-inset-top) + (var(--hl-header-height) / 2));
    transform: translateY(-50%);
    display: inline-flex;
    min-width: 42px;
    height: 38px;
    padding: 0 10px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 19px;
    background: rgba(255, 255, 255, .22);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 38px;
    white-space: nowrap;
}

.h5-header__report--right {
    right: 12px;
}

.h5-header__share {
    position: absolute;
    right: 12px;
    top: calc(env(safe-area-inset-top) + (var(--hl-header-height) / 2));
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .22);
    color: #fff;
    font-size: 18px;
    line-height: 1;
}

.brand-header,
.simple-red-header,
.h5-header {
    position: fixed;
    top: 0;
    left: 50%;
    z-index: 100;
    max-width: 750px;
    transform: translateX(-50%);
}

.brand-header--plain {
    background: var(--hl-pink);
}

.h5-card {
    background: #fff;
    border-radius: var(--hl-radius);
    box-shadow: 0 3px 14px rgba(202, 114, 125, .08);
}

.h5-btn {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 700;
    letter-spacing: 0;
    text-align: center;
    white-space: normal;
}

.h5-btn--primary {
    background: var(--hl-red);
    color: #fff;
    box-shadow: 0 5px 10px rgba(210, 11, 34, .14);
}

.h5-btn--pale {
    background: var(--hl-pink-strong);
    color: var(--hl-red-dark);
}

.h5-btn--outline {
    border: 1px solid #c24461;
    background: #fff;
    color: #c24461;
}

.h5-btn--block {
    width: 100%;
}

.h5-btn--short {
    min-width: 96px;
    min-height: 42px;
    padding: 0 26px;
}

.h5-btn--center {
    min-width: 144px;
    min-height: 42px;
    margin: 18px auto 0;
}

.home-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: calc(100% - 20px);
    margin: 12px auto 14px;
    overflow: hidden;
    border-radius: 7px;
    box-shadow: 0 1px 8px rgba(210, 11, 34, .08);
}

.home-tabs__item {
    display: flex;
    min-width: 0;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    white-space: nowrap;
}

.home-tabs__item--orange {
    background: #ef573f;
}

.home-tabs__item--green {
    background: #2f935b;
}

.home-tabs__item--red {
    background: var(--hl-red);
}

.home-stack {
    padding: 0 10px 0;
}

.search-card {
    min-height: 286px;
    margin: 0 auto 18px;
    padding: 20px 16px 24px;
}

.search-card--serial {
    min-height: 196px;
}

.home-search-form .form-row {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 9px;
    align-items: center;
}

.home-search-form .form-label {
    width: 88px;
    flex-basis: auto;
    text-align: left;
}

.home-search-form input[type="text"],
.home-search-form input[type="tel"],
.home-search-form select,
.home-search-form .control-wide {
    width: 100%;
}

.home-search-form .form-row--range {
    grid-template-columns: 88px minmax(0, 1fr) 18px minmax(0, 1fr) 36px;
}

.home-search-form .form-row--range span {
    text-align: center;
    white-space: nowrap;
}

.home-search-form .form-row--range .range-separator {
    justify-self: start;
    text-align: left;
}

.home-search-form .form-row--radio {
    grid-template-columns: 88px repeat(2, minmax(0, auto));
    column-gap: 18px;
    justify-content: start;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 18px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #c98f98;
    color: #bd1632;
    font-size: 19px;
    font-weight: 700;
}

.section-title span {
    color: var(--hl-red);
    font-size: 19px;
    line-height: 1;
}

.h5-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-row {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 8px;
    color: #333;
}

.form-row--range,
.form-row--date,
.form-row--wide-radio {
    flex-wrap: wrap;
}

.form-label {
    width: 88px;
    flex: 0 0 88px;
    color: #333;
}

.register-form .form-label,
.detail-form .form-label {
    width: 92px;
    flex-basis: 92px;
}

.h5-form input[type="text"],
.h5-form input[type="tel"],
.h5-form input[type="number"],
.h5-form select,
.plain-pay-form input {
    min-width: 0;
    height: 34px;
    border: 1px solid var(--hl-border);
    border-radius: 6px;
    background: #fffafa;
    color: #222;
    outline: none;
    padding: 0 12px;
}

.h5-form select {
    width: 94px;
    padding-right: 26px;
}

.h5-form .control-wide {
    width: 138px;
}

.h5-form input[type="text"],
.h5-form input[type="tel"] {
    width: 184px;
}

.radio-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-right: 18px;
    white-space: nowrap;
}

.form-row--wide-radio label:not(.form-label) {
    min-width: 74px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.form-row--date select {
    width: 62px;
}

.form-row--date select:first-of-type {
    width: 86px;
}

.mini-input {
    width: 96px !important;
}

.serial-form .form-row {
    grid-template-columns: 88px auto;
    justify-content: start;
    margin-bottom: 14px;
}

.serial-form input[name="serial_no"] {
    width: initial !important;
    flex: 0 0 auto;
}

.h5-footer {
    position: fixed;
    right: auto;
    bottom: 0;
    left: 50%;
    z-index: 100;
    display: flex;
    width: 100%;
    max-width: 750px;
    height: calc(var(--hl-footer-height) + env(safe-area-inset-bottom));
    align-items: center;
    justify-content: center;
    margin-top: 0;
    padding: 0 10px env(safe-area-inset-bottom);
    transform: translateX(-50%);
    background: var(--hl-red);
    color: rgba(255, 255, 255, .82);
    font-size: 13px;
    line-height: 1.35;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
}

.form-shell {
    padding: 12px 10px 24px;
}

.h5-page--gender {
    background: #fff8f8;
}

.gender-select-shell {
    display: flex;
    min-height: calc(100vh - var(--hl-header-height) - var(--hl-footer-height));
    align-items: flex-start;
    justify-content: center;
    padding: 28px 22px 42px;
}

.gender-select-panel {
    width: min(100%, 720px);
}

.gender-select-heading {
    margin: 0 auto 38px;
    text-align: center;
}

.gender-select-heading h1 {
    margin: 0;
    color: var(--hl-red);
    font-size: 29px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.25;
}

.gender-select-heading p {
    margin: 12px 0 0;
    color: #a69a9c;
    font-size: 16px;
    line-height: 1.5;
}

.gender-select-form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.gender-choice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.gender-choice-card {
    position: relative;
    display: block;
    min-width: 0;
    min-height: 208px;
    border: 2px solid #eceeef;
    border-radius: 15px;
    background: rgba(255, 255, 255, .58);
    box-shadow: 0 2px 8px rgba(204, 174, 178, .06);
    cursor: pointer;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease, background-color .18s ease;
}

.gender-choice-card:hover {
    border-color: #e4b9bd;
    background: #fff;
    transform: translateY(-2px);
}

.gender-choice-card:has(input:checked) {
    border-color: var(--hl-red);
    background: #fff;
    box-shadow: 0 8px 18px rgba(210, 11, 34, .12);
}

.gender-choice-card input {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.gender-choice-card input:focus-visible + .gender-choice-card__content {
    outline: 3px solid rgba(210, 11, 34, .24);
    outline-offset: -8px;
}

.gender-choice-card__content {
    display: flex;
    min-height: 204px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    border-radius: 13px;
}

.gender-choice-card__emoji {
    display: block;
    font-family: "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
    font-size: 54px;
    line-height: 1;
}

.gender-choice-card__label {
    color: #171717;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.gender-select-submit {
    width: 100%;
    min-height: 56px;
    margin-top: 54px;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 500;
}

@media (max-width: 420px) {
    .gender-select-shell {
        padding-right: 22px;
        padding-left: 22px;
    }

    .gender-select-heading {
        margin-bottom: 34px;
    }

    .gender-select-heading h1 {
        font-size: 27px;
    }

    .gender-select-heading p {
        font-size: 15px;
    }

    .gender-choice-grid {
        gap: 16px;
    }

    .gender-choice-card {
        min-height: 194px;
        border-radius: 13px;
    }

    .gender-choice-card__content {
        min-height: 190px;
        gap: 16px;
    }

    .gender-choice-card__emoji {
        font-size: 48px;
    }

    .gender-choice-card__label {
        font-size: 19px;
    }

    .gender-select-submit {
        min-height: 54px;
        margin-top: 48px;
        font-size: 17px;
    }
}

.register-card {
    padding: 22px 14px 30px;
}

.register-form {
    gap: 12px;
}

.register-form .form-row {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 9px;
    min-height: 37px;
    align-items: center;
}

.register-form .form-label {
    width: 92px;
    flex: 0 0 92px;
    font-weight: 600;
    line-height: 34px;
    text-align: left;
}

.register-form input[type="text"],
.register-form input[type="tel"],
.register-form select {
    height: 34px;
    border: 1px solid #ead1d4;
    border-radius: 7px;
    background-color: #fffafa;
    box-shadow: inset 0 1px 3px rgba(197, 75, 94, .08);
    font-size: 16px;
}

.register-form input[type="text"],
.register-form input[type="tel"] {
    width: 100%;
}

.register-form select {
    width: 100%;
    padding: 0 28px 0 12px;
    background-image: linear-gradient(45deg, transparent 50%, #222 50%), linear-gradient(135deg, #222 50%, transparent 50%);
    background-position: calc(100% - 16px) 14px, calc(100% - 11px) 14px;
    background-repeat: no-repeat;
    background-size: 5px 5px, 5px 5px;
    appearance: none;
    -webkit-appearance: none;
}

.register-form .form-row--date {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 9px;
    align-items: center;
}

.register-date-fields {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) 18px minmax(0, .85fr) 18px minmax(0, .85fr) 18px;
    gap: 4px;
    align-items: center;
    min-width: 0;
}

.register-date-fields select {
    width: 100%;
    padding-right: 20px;
    padding-left: 8px;
    font-size: 15px;
}

.register-date-fields span {
    color: #333;
    font-size: 15px;
    text-align: center;
    white-space: nowrap;
}

.register-form .form-row--wide-radio label:not(.form-label) {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    justify-content: flex-start;
}

.register-form .form-row--wide-radio {
    grid-template-columns: 92px repeat(3, minmax(0, auto));
    column-gap: 18px;
    justify-content: start;
}

.register-form .form-row--wide-radio input[type="radio"] {
    width: 15px;
    height: 15px;
    margin: 0 10px 0 0;
}

.register-detail-form .register-detail-range-row {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr) 14px minmax(0, 1fr) auto;
    gap: 7px;
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;
}

.register-detail-form .register-detail-range-row .form-label {
    width: 92px;
    flex-basis: auto;
}

.register-detail-form .form-label {
    white-space: nowrap;
}

.register-detail-form .form-label em {
    color: var(--hl-red);
    font-style: normal;
    font-weight: 700;
}

.register-detail-form .mini-input {
    width: 100% !important;
    max-width: none;
    height: 34px;
    padding-right: 8px;
    padding-left: 8px;
    border: 1px solid #ead1d4;
    border-radius: 7px;
    background-color: #fffafa;
    box-shadow: inset 0 1px 3px rgba(197, 75, 94, .08);
    font-size: 16px;
    text-align: center;
}

.register-detail-form .register-detail-range-row > span {
    white-space: nowrap;
    text-align: center;
}

.register-detail-help {
    margin: -2px 0 2px;
    color: var(--hl-muted);
    font-size: 14px;
    line-height: 1.55;
}

.register-detail-subtitle {
    margin: 2px 0 4px;
    padding: 9px 12px;
    border-radius: 7px;
    background: #ffe3e5;
    color: var(--hl-red);
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}

.register-detail-form .register-detail-checks input[type="checkbox"] {
    width: 15px;
    height: 15px;
    margin: 0 8px 0 0;
}

.register-detail-agree {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #444;
    font-size: 14px;
    line-height: 1.5;
}

.register-detail-agree input {
    width: 15px;
    height: 15px;
    flex: 0 0 15px;
    margin: 0;
}

.register-detail-agree a {
    color: var(--hl-red);
    font-weight: 700;
}

.register-detail-consents {
    margin: 12px 0 18px;
}

.register-detail-consents .register-detail-agree + .register-detail-agree {
    margin-top: 9px;
}

.register-detail-tip {
    margin: 12px 0 0;
    color: #4a4a4a;
    font-size: 14px;
    line-height: 1.7;
}

.register-detail-tip a {
    color: #1686d9;
    font-weight: 700;
}

.privacy-declaration-link {
    color: #1686d9 !important;
    font-weight: 700;
}

.bottom-red-line {
    width: 100%;
    height: 9px;
    border-top: 2px solid var(--hl-red);
    border-bottom: 2px solid var(--hl-red);
    background: #fff;
}

.register-detail-shell {
    padding: 12px 10px 24px;
}

.register-detail-card {
    overflow: hidden;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
}

.detail-form {
    padding: 24px 20px 32px;
    gap: 15px;
}

.detail-form input[type="text"],
.detail-form input[type="tel"],
.detail-form input[type="number"],
.detail-form select {
    width: 100%;
    height: 36px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    color: #333;
    font-size: 16px;
}

.detail-form select {
    padding-right: 28px;
    background-image: linear-gradient(45deg, transparent 50%, #222 50%), linear-gradient(135deg, #222 50%, transparent 50%);
    background-position: calc(100% - 16px) 15px, calc(100% - 11px) 15px;
    background-repeat: no-repeat;
    background-size: 5px 5px, 5px 5px;
    appearance: none;
    -webkit-appearance: none;
}

.upload-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin: 12px 0 20px;
    width: 100%;
}

.upload-slot {
    position: relative;
    display: flex;
    aspect-ratio: 1;
    min-width: 0;
    min-height: 96px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    border: 1px dashed #d8d8d8;
    color: #999;
    overflow: hidden;
    background: #fff;
}

.upload-slot input {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 3;
}

.upload-slot [data-h5-upload-preview] {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.upload-slot [data-h5-upload-preview] img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.upload-slot.is-filled .upload-plus,
.upload-slot.is-filled > span {
    position: relative;
    z-index: 2;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, .45);
}

.upload-plus {
    font-size: 23px;
    line-height: 1;
}

.target-title {
    margin: 8px 0 6px;
    padding: 10px 12px;
    background: #ffc6c9;
    color: #bd1632;
    font-weight: 700;
}

.detail-form .form-row--range {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr) 14px minmax(0, 1fr);
    gap: 7px;
}

.detail-form .form-row--range span:last-child {
    display: none;
}

.detail-form .mini-input {
    width: 100% !important;
    max-width: none;
    padding-right: 8px;
    padding-left: 8px;
    font-size: 14px;
}

.detail-form .form-row--wide-radio label:not(.form-label) {
    min-width: 118px;
    justify-content: center;
}

.detail-form .form-row--wide-radio input[type="radio"] {
    width: 15px;
    height: 15px;
    margin: 0 10px 0 0;
}

.agreement-line {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #444;
}

.agreement-line a,
.agreement-line strong,
.free-card span,
.vip-copy span {
    color: #bd1632;
    font-weight: 700;
}

.profile-page {
    background: #fff;
}

.profile-center {
    padding: 0 0 24px;
    background: #fff;
}

.profile-card {
    position: relative;
    display: flex;
    min-height: 125px;
    align-items: center;
    gap: 14px;
    padding: 20px 16px 22px;
    border-bottom: 1px solid #ededed;
    background: #fff;
}

.profile-card__avatar {
    width: 74px;
    height: 74px;
    flex: 0 0 74px;
    overflow: hidden;
    border-radius: 6px;
    background: #f1f1f1;
    color: #555;
}

.profile-card__avatar img,
.recommend-card__photo img,
.detail-summary__photo img,
.album-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-card__body {
    min-width: 0;
    padding-right: 116px;
}

.profile-card__body h2 {
    margin: 0 0 7px;
    color: #111;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.25;
}

.profile-card__body p {
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 1.4;
}

.edit-chip {
    position: absolute;
    top: 20px;
    right: 16px;
    padding: 9px 18px;
    border-radius: 4px;
    background: var(--hl-red);
    color: #fff;
    font-size: 14px;
    line-height: 1.2;
    white-space: nowrap;
}

.profile-menu {
    display: flex;
    height: 62px;
    align-items: center;
    justify-content: space-between;
    margin-top: 0;
    padding: 0 16px;
    border-bottom: 1px solid #ededed;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
    color: #333;
    font-size: 18px;
    font-weight: 400;
}

.profile-menu span {
    display: inline-flex;
    width: 20px;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 18px;
    text-align: center;
}

.profile-menu span i {
    line-height: 1;
}

.profile-upload-card {
    padding: 16px;
    border-bottom: 1px solid #ededed;
    background: #fff;
}

.profile-upload-row {
    display: grid;
    grid-template-columns: minmax(96px, 1fr) auto auto auto;
    gap: 6px;
    align-items: center;
}

.profile-upload-row h2 {
    min-width: 0;
    margin: 0;
    color: #111;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.25;
    white-space: nowrap;
}

.profile-upload-button,
.profile-upload-action {
    display: inline-flex;
    min-width: 78px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border: 1px solid #d4d4d4;
    border-radius: 4px;
    background: #f7f7f7;
    color: #111;
    font-size: 14px;
    line-height: 1;
    white-space: nowrap;
}

.profile-upload-button input {
    display: none;
}

.profile-upload-text {
    color: #888;
    font-size: 13px;
    white-space: nowrap;
}

.profile-upload-action {
    min-width: 78px;
    border-color: var(--hl-red);
    background: var(--hl-red);
    color: #fff;
    cursor: pointer;
}

.profile-upload-card.is-upload-limit-reached .profile-upload-action {
    border-color: #dddddd;
    background: #eeeeee;
    color: #999999;
}

.profile-upload-card--disabled .profile-upload-action {
    border-color: #cfcfcf;
    background: #cfcfcf;
    color: #555;
}

.profile-upload-card p {
    margin: 10px 0 0;
    color: #777;
    font-size: 13px;
    line-height: 1.45;
}

.profile-upload-card.is-filled {
    position: relative;
}

.profile-upload-card [data-h5-upload-preview] {
    display: none;
}

.profile-upload-card.is-filled [data-h5-upload-preview]:not(.profile-upload-grid),
.profile-upload-card .profile-upload-preview {
    position: relative;
    display: block;
    margin-top: 12px;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid #ebebeb;
    background: #f6f6f6;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .04);
}

.profile-upload-card .profile-upload-preview--document {
    aspect-ratio: 4 / 3;
    background: #fafafa;
}

.profile-upload-card .profile-upload-grid {
    display: grid;
    margin-top: 12px;
    width: 100%;
    aspect-ratio: auto;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.profile-upload-card .profile-upload-grid > .profile-upload-thumb,
.profile-upload-card .profile-upload-grid > .profile-upload-item {
    min-width: 0;
}

.profile-upload-item {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 8px;
}

.profile-upload-preview__button {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.profile-upload-card.is-filled [data-h5-upload-preview] img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-upload-card .profile-upload-preview--document img {
    object-fit: contain;
}

.profile-upload-thumb {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    background: #f6f6f6;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .04);
    cursor: pointer;
}

.profile-upload-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-upload-grid .profile-upload-thumb:not(.profile-upload-thumb--empty) {
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.profile-upload-thumb--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    border-style: dashed;
    background: #fafafa;
    color: #bd1632;
    box-shadow: none;
}

.profile-upload-thumb--empty span {
    font-size: 28px;
    line-height: 1;
    font-weight: 300;
}

.profile-upload-tools {
    position: absolute;
    right: 8px;
    bottom: 8px;
    left: 8px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    z-index: 2;
}

.profile-upload-tools button {
    height: 30px;
    border: 0;
    border-radius: 4px;
    background: rgba(210, 11, 34, .92);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 30px;
    text-align: center;
}

.profile-upload-tools button:last-child {
    background: rgba(0, 0, 0, .56);
}

.profile-upload-card.is-upload-limit-reached .profile-upload-thumb--empty {
    display: none;
}

.profile-upload-preview__button:active,
.profile-upload-thumb:active {
    opacity: .86;
}

@media (max-width: 360px) {
    .profile-upload-row {
        grid-template-columns: 1fr auto;
    }

    .profile-upload-text {
        display: none;
    }

    .profile-upload-card .profile-upload-grid {
        gap: 6px;
    }
}

.my-card-page {
    background: #f7f7f7;
}

.my-card-shell {
    min-height: calc(100vh - var(--hl-header-height) - var(--hl-footer-height));
    padding: 16px 14px 0;
    background: #f7f7f7;
}

.my-card-hero,
.my-card-entry {
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
}

.my-card-hero {
    position: relative;
    display: flex;
    min-height: 152px;
    align-items: flex-start;
    gap: 18px;
    padding: 20px;
}

.my-card-avatar {
    display: flex;
    width: 92px;
    height: 92px;
    flex: 0 0 92px;
    align-items: flex-start;
    justify-content: flex-start;
    overflow: hidden;
    border-radius: 8px;
    background: #eee;
    color: #222;
    font-size: 14px;
    line-height: 1.4;
}

.my-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.my-card-avatar span {
    padding: 4px;
}

.my-card-info {
    min-width: 0;
    padding-top: 12px;
    padding-right: 72px;
}

.my-card-info h2 {
    margin: 0 0 8px;
    overflow: hidden;
    color: #111;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.my-card-info p {
    margin: 4px 0 0;
    color: #666;
    font-size: 15px;
    line-height: 1.4;
}

.my-card-edit {
    position: absolute;
    top: 18px;
    right: 16px;
    display: inline-flex;
    min-width: 74px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--hl-red);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.my-card-edit .fa {
    margin-right: 5px;
    color: #ffd86a;
    font-size: 14px;
}

.my-card-entry {
    display: flex;
    height: 84px;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    padding: 0 20px;
    color: #222;
}

.my-card-entry__icon {
    display: inline-flex;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
    flex: 0 0 24px;
    font-size: 19px;
    line-height: 1;
}

.my-card-entry__icon--album {
    color: #10a6d8;
}

.my-card-entry__icon--profile {
    color: #1976d2;
}

.my-card-entry__icon--require {
    color: #ed1c24;
}

.my-card-entry strong {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.my-card-share-tip {
    display: flex;
    height: 54px;
    align-items: center;
    justify-content: center;
    margin: 18px -14px 0;
    background: var(--hl-red);
    color: #ffd6d8;
    font-size: 16px;
    line-height: 1.4;
    text-align: center;
}

.my-card-qrcode-tip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 84px;
    margin: 14px 0 0;
    padding: 12px 16px;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 1px 0 rgba(0, 0, 0, .02);
}

.my-card-qrcode-tip__text {
    min-width: 0;
    color: var(--hl-red);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.55;
}

.my-card-qrcode-tip__text p {
    margin: 0;
}

.my-card-qrcode-tip__image {
    display: flex;
    width: 84px;
    height: 84px;
    flex: 0 0 84px;
    align-items: center;
    justify-content: center;
    border: 1px solid #d9d9d9;
    background: #f5f5f5;
    color: #999;
    font-size: 14px;
    text-align: center;
}

.my-card-qrcode-tip__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-result-page {
    min-height: 100vh;
    background: #fff;
}

.card-result-shell {
    min-height: calc(100vh - var(--hl-header-height) - env(safe-area-inset-top));
    background: #fff;
}

.card-result-hero {
    height: 456px;
    min-height: 330px;
    max-height: 44vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px 112px;
    background: #050505;
    color: #fff;
    text-align: center;
}

.card-result-hero p {
    margin: 0;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.4;
}

.card-result-content {
    position: relative;
    min-height: 360px;
    padding: 0 20px 48px;
    background: #fff;
    text-align: center;
}

.card-result-qrcode {
    position: relative;
    z-index: 1;
    width: 280px;
    max-width: 74vw;
    aspect-ratio: 1 / 1;
    margin: -142px auto 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.card-result-qrcode img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card-result-qrcode__empty {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed #ddd;
    color: #999;
    font-size: 14px;
}

.card-result-content h2 {
    margin: 0;
    color: #333;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
}

.card-result-subtitle {
    margin: 12px 0 0;
    color: #9a9a9a;
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 360px) {
    .card-result-hero {
        min-height: 310px;
        padding-bottom: 96px;
    }

    .card-result-qrcode {
        margin-top: -118px;
        margin-bottom: 42px;
    }
}

.profile-flow-card {
    margin-top: 14px;
    padding: 18px 16px;
    border-radius: 7px;
}

.profile-flow-card strong {
    display: inline-flex;
    margin-bottom: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #fff0f2;
    color: var(--hl-red);
    font-size: 13px;
}

.profile-flow-card p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.8;
}

.share-tip {
    margin-top: 8px;
    padding: 16px 10px;
    background: var(--hl-red);
    color: rgba(255, 255, 255, .82);
    text-align: center;
}

.vip-shell {
    padding: 18px 12px 0;
}

.vip-card {
    padding: 18px 18px 26px;
    border-radius: 0;
}

.benefit-box {
    margin: 0 0 22px;
    padding: 14px 14px;
    border: 1px dashed #c75164;
    background: #fff6f8;
}

.benefit-box h2,
.vip-title,
.vip-status h3 {
    margin: 0 0 8px;
    font-size: 18px;
}

.benefit-box h2 {
    color: #bd1632;
}

.benefit-box p,
.vip-copy {
    margin: 0;
    color: #333;
    font-size: 15px;
    line-height: 1.9;
}

.vip-title {
    display: flex;
    gap: 8px;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px dashed #c98f98;
}

.vip-status {
    margin: 22px 0 24px;
}

.vip-status label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-right: 28px;
    color: #555;
}

.package-shell,
.free-shell,
.vip-form-shell,
.pay-result-shell {
    padding: 12px 10px 28px;
}

.page-packages-shot,
.page-register-shot,
.page-profile-shot,
.page-vip-shot {
    max-width: 750px;
    margin: 0 auto;
}

.page-packages-shot {
    background: #f3f3f3;
}

.page-register-shot {
    background: #fff;
}

.page-profile-shot {
    background: #f3f3f3;
    padding-bottom: 92px;
}

.page-vip-shot {
    background: #fff;
    padding-bottom: 34px;
}

.shot-package-shell,
.shot-register-shell,
.shot-profile-shell,
.shot-vip-shell {
    padding: 16px 12px 0;
}

.shot-package-form,
.shot-register-form,
.shot-profile-shell,
.shot-vip-shell {
    width: 100%;
}

.page-packages-shot,
.page-vip-shot {
    background: #fff;
}

.page-packages-shot .shot-package-shell {
    padding: 16px 14px 28px;
}

.shot-free-card,
.shot-package-card,
.shot-profile-card,
.shot-photo-card,
.shot-menu-row,
.shot-vip-topcard,
.shot-vip-package,
.shot-vip-warning {
    display: block;
    border-radius: 14px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, .02);
}

.shot-free-card {
    margin-bottom: 14px;
    padding: 16px 18px 18px;
    background: #3d97d8;
    color: #fff;
}

.shot-free-card strong,
.shot-package-card strong,
.shot-vip-topcard h2,
.shot-vip-package strong,
.shot-vip-warning h2 {
    display: block;
    margin-bottom: 14px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
}

.shot-free-card span,
.shot-package-card span,
.shot-vip-topcard p,
.shot-vip-package span,
.shot-vip-warning p {
    display: block;
    font-size: 15px;
    line-height: 1.65;
}

.shot-package-card {
    position: relative;
    margin-bottom: 12px;
    padding: 18px 54px 18px 18px;
    color: #fff;
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow .16s ease, transform .16s ease, filter .16s ease;
    border: 2px solid transparent;
}

.shot-package-card--green {
    background: #31b057;
}

.shot-package-card--red {
    background: #d91f2d;
}

.shot-package-card--purple {
    background: #9b59b6;
}

.shot-package-card--orange {
    background: #f08a1d;
}

.shot-package-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.shot-package-card.is-selected,
.shot-package-card.active,
.shot-package-card input:checked {
    border-color: rgba(255, 255, 255, .6);
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .16);
    transform: translateY(-1px);
    filter: saturate(1.03);
}

.shot-package-card__check {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .9);
    background: rgba(255, 255, 255, .14);
    color: transparent;
    line-height: 22px;
    text-align: center;
    font-size: 18px;
    opacity: 0;
}

.shot-package-card.is-selected .shot-package-card__check,
.shot-package-card.active .shot-package-card__check,
.shot-package-card input:checked ~ .shot-package-card__check {
    background: #fff;
    color: #f08a1d;
    opacity: 1;
}

.shot-package-card--green.is-selected .shot-package-card__check,
.shot-package-card--green.active .shot-package-card__check,
.shot-package-card--green input:checked ~ .shot-package-card__check {
    color: #31b057;
}

.shot-package-card--red.is-selected .shot-package-card__check,
.shot-package-card--red.active .shot-package-card__check,
.shot-package-card--red input:checked ~ .shot-package-card__check {
    color: #d91f2d;
}

.shot-package-card--purple.is-selected .shot-package-card__check,
.shot-package-card--purple.active .shot-package-card__check,
.shot-package-card--purple input:checked ~ .shot-package-card__check {
    color: #9b59b6;
}

.shot-package-card--orange.is-selected .shot-package-card__check,
.shot-package-card--orange.active .shot-package-card__check,
.shot-package-card--orange input:checked ~ .shot-package-card__check {
    color: #f08a1d;
}

.shot-package-card:not(.is-selected):not(.active) .shot-package-card__check {
    display: none;
}

.shot-package-note {
    margin: 10px 0 16px;
    color: #333;
    font-size: 15px;
    line-height: 1.4;
}

.shot-agree-line {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
    color: #333;
    font-size: 15px;
}

.shot-agree-line input {
    width: 18px;
    height: 18px;
}

.shot-agree-line a {
    color: #c33;
    font-weight: 700;
}

.shot-muted-note {
    margin: 10px 0 0;
    color: #aaa;
    font-size: 13px;
}

.shot-main-button,
.shot-vip-button {
    display: flex;
    width: 100%;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    margin-top: 22px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(90deg, #ee1e26 0%, #ff424a 100%);
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(238, 30, 38, .18);
}

.shot-register-form {
    padding: 0 6px;
}

.shot-field {
    display: block;
    margin-bottom: 16px;
}

.shot-field span {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-size: 18px;
}

.shot-field em {
    color: #d11b2d;
    font-style: normal;
}

.shot-field input {
    width: 100%;
    height: 80px;
    padding: 0 20px;
    border: 1px solid #d8d8d8;
    border-radius: 7px;
    background: #fff;
    font-size: 18px;
}

.shot-register-help {
    margin: 8px 0 18px;
    color: #5a5a5a;
    font-size: 15px;
}

.shot-target-title {
    margin: 8px 0 14px;
    padding: 14px 0;
    background: #f9d1d4;
    color: #c11f2d;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}

.shot-range-row,
.shot-choice-row {
    display: grid;
    gap: 10px;
    align-items: center;
    margin-bottom: 14px;
    color: #333;
    font-size: 17px;
}

.shot-range-row {
    grid-template-columns: 34px minmax(0, 1fr) 18px minmax(0, 1fr) 42px;
}

.shot-range-row span:first-child {
    text-align: center;
    line-height: 1.1;
}

.shot-range-row input {
    height: 56px;
    padding: 0 16px;
    border: 1px solid #d8d8d8;
    border-radius: 7px;
    background: #fff;
    font-size: 18px;
    text-align: center;
}

.shot-choice-row {
    grid-template-columns: 68px repeat(3, minmax(0, auto));
    gap: 16px;
}

.shot-choice-row span {
    white-space: nowrap;
}

.shot-choice-row label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.shot-choice-row input {
    width: 24px;
    height: 24px;
}

.shot-agree-line--register {
    margin-top: 4px;
    font-size: 16px;
}

.shot-profile-shell {
    padding-bottom: 0;
}

.shot-profile-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 148px;
    margin: 18px 12px 0;
    padding: 18px 16px;
    background: #fff;
}

.shot-profile-avatar {
    width: 154px;
    height: 154px;
    flex: 0 0 154px;
    border-radius: 8px;
    background: #e9e9e9;
    overflow: hidden;
}

.shot-profile-avatar img,
.shot-profile-avatar span {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: cover;
    color: #3a79db;
    font-size: 20px;
    font-weight: 700;
}

.shot-profile-meta {
    min-width: 0;
    padding-right: 126px;
}

.shot-profile-meta h2 {
    margin: 0 0 10px;
    font-size: 30px;
    line-height: 1.15;
}

.shot-profile-meta p {
    margin: 0;
    color: #666;
    font-size: 18px;
}

.shot-profile-card__button {
    position: absolute;
    top: 24px;
    right: 16px;
    padding: 16px 18px;
    border-radius: 8px;
    background: var(--hl-red);
    color: #fff;
    font-size: 18px;
}

.shot-photo-card {
    margin: 0 12px 0;
    padding: 20px 16px 18px;
    background: #fff;
    border-top: 1px solid #ececec;
    border-radius: 0;
}

.shot-photo-row {
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    gap: 14px;
    align-items: center;
}

.shot-photo-label {
    font-size: 32px;
    line-height: 1.1;
}

.shot-upload-button,
.shot-upload-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    min-width: 120px;
    border-radius: 5px;
    border: 1px solid #d2d2d2;
    background: #f4f4f4;
    color: #333;
    font-size: 14px;
}

.shot-upload-action {
    min-width: 118px;
    background: #e3413d;
    border-color: #e3413d;
    color: #fff;
    pointer-events: none;
}

.shot-upload-button input {
    display: none;
}

.shot-upload-text {
    color: #888;
    font-size: 14px;
}

.shot-photo-card p {
    margin: 16px 0 0;
    color: #777;
    font-size: 15px;
    line-height: 1.6;
}

.shot-photo-card--disabled .shot-upload-action {
    background: #d9d9d9;
    border-color: #d9d9d9;
    color: #666;
}

.shot-menu-row {
    margin: 0 12px;
    padding: 22px 8px;
    border-top: 1px solid #ececec;
    background: #fff;
    color: #333;
    font-size: 28px;
}

.shot-back-bar {
    position: fixed;
    left: 50%;
    bottom: 0;
    width: 100%;
    max-width: 750px;
    transform: translateX(-50%);
    background: var(--hl-red);
    color: #fff;
    text-align: center;
    font-size: 20px;
    line-height: 54px;
}

.shot-vip-shell {
    padding-top: 18px;
}

.shot-vip-topcard,
.shot-vip-warning {
    margin: 0 12px 22px;
    padding: 28px 18px;
    border: 1px dashed #ce7a84;
    background: #fff5f7;
}

.shot-vip-topcard {
    border-style: dotted;
}

.shot-vip-topcard h2,
.shot-vip-warning h2 {
    color: #b71c2e;
}

.shot-vip-package {
    position: relative;
    margin: 0 12px 16px;
    padding: 26px 18px 28px;
    color: #fff;
}

.shot-vip-package--green {
    background: #2eb05a;
}

.shot-vip-package--purple {
    background: #9d59b8;
}

.shot-vip-package--orange {
    background: #ec821d;
}

.shot-vip-check {
    position: absolute;
    right: 18px;
    top: 50%;
    width: 30px;
    height: 30px;
    margin-top: -15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    color: #c87f1d;
    font-size: 22px;
    line-height: 30px;
    text-align: center;
    font-weight: 700;
}

.shot-vip-text {
    margin: 18px 12px 22px;
    color: #333;
    font-size: 18px;
}

.shot-agree-line--vip {
    margin: 0 12px 0;
    font-size: 17px;
}

.shot-vip-button {
    margin: 24px 12px 0;
    background: linear-gradient(180deg, #ff3f49 0%, #e92f35 100%);
    color: #fff;
    box-shadow: 0 10px 20px rgba(233, 47, 53, .16);
}

.shot-vip-guide-shell {
    padding: 14px 18px 20px;
}

.shot-vip-guide-card {
    margin-bottom: 14px;
    border-radius: 9px;
}

.shot-vip-guide-card h2 {
    margin: 0 0 8px;
    color: #202124;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
}

.shot-vip-guide-card p {
    margin: 0;
    color: #333;
    font-size: 15px;
    line-height: 1.58;
}

.shot-vip-guide-card p + p {
    margin-top: 10px;
}

.shot-vip-guide-card strong {
    color: #bd1f2f;
}

.shot-vip-guide-card--benefit {
    padding: 16px 18px;
    border: 1px dashed #bd1f2f;
    background: #fff4f5;
}

.shot-vip-guide-card--benefit h2 {
    color: #bd1f2f;
}

.shot-vip-guide-card--advantage {
    padding: 16px 18px;
    background: #f9faff;
}

.shot-vip-guide-card--warning {
    padding: 16px 18px;
    border-left: 4px solid #ffc400;
    background: #fff9e9;
}

.shot-vip-guide-card--warning h2 {
    color: #c99600;
}

.shot-vip-guide-button {
    display: flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    margin: 4px 0 0;
    border-radius: 999px;
    background: linear-gradient(90deg, #ee1e26 0%, #ff424a 100%);
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    box-shadow: 0 10px 22px rgba(233, 44, 52, .2);
}

.package-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin: 0 auto;
}

.package-list--vip {
    gap: 12px;
    padding: 10px 8px 0;
}

.package-card {
    position: relative;
    display: block;
    min-height: 80px;
    overflow: hidden;
    border: 0;
    border-radius: 7px;
    color: #fff;
    cursor: pointer;
    padding: 17px 48px 16px 17px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
    transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
    overflow-wrap: anywhere;
}

.package-card.is-selected,
.package-card.active,
.package-card:has(input:checked) {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, .82), 0 0 0 4px rgba(240, 106, 0, .72), 0 8px 18px rgba(240, 106, 0, .18);
    transform: translateY(-1px);
}

.package-card--green {
    background: #37b84b;
}

.package-card--blue {
    background: var(--hl-blue);
}

.package-card--purple {
    background: var(--hl-purple);
}

.package-card--orange {
    background: linear-gradient(135deg, #ff9b18 0%, var(--hl-orange) 48%, var(--hl-orange-dark) 100%);
    box-shadow: 0 5px 12px rgba(240, 106, 0, .22);
}

.package-card--orange.is-selected,
.package-card--orange.active,
.package-card--orange:has(input:checked) {
    box-shadow: 0 0 0 3px rgba(240, 106, 0, .74), 0 9px 20px rgba(240, 106, 0, .28);
}

.package-card input {
    position: absolute;
    opacity: 0;
}

.package-card strong {
    display: block;
    margin-bottom: 7px;
    font-size: 17px;
    line-height: 1.25;
}

.package-card em {
    display: none;
    height: 2px;
    margin-bottom: 11px;
    background: rgba(255, 255, 255, .72);
}

.package-card span:not(.package-card__check),
.package-card small {
    display: block;
    color: rgba(255, 255, 255, .9);
    font-style: normal;
    font-size: 13px;
    line-height: 1.55;
    white-space: normal;
    overflow-wrap: anywhere;
}

.package-card__check {
    position: absolute;
    top: 14px;
    right: 14px;
    display: flex;
    width: 22px;
    height: 22px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .8);
    color: transparent;
    font-weight: 700;
    line-height: 1;
    box-shadow: none;
}

.package-card input:checked ~ .package-card__check,
.package-card.is-selected .package-card__check,
.package-card.active .package-card__check {
    color: #fff;
}

.agreement-line--compact {
    margin-top: 4px;
}

.free-entry-card {
    margin: 14px 8px 0;
    padding: 16px;
    border-radius: 7px;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
}

.free-entry-card strong {
    display: block;
    margin-bottom: 6px;
    color: #bd1632;
    font-size: 16px;
}

.free-entry-card p {
    margin: 0 0 12px;
    color: #666;
    font-size: 14px;
    line-height: 1.75;
}

.muted-note {
    margin: -2px 0 10px;
    color: #8f8f8f;
    font-size: 13px;
}

.free-card {
    margin: 10px 6px 64px;
    padding: 22px 16px;
    border-radius: 7px;
    background: #86d0e8;
    box-shadow: 0 6px 14px rgba(62, 146, 176, .14);
}

.free-card h2 {
    margin: 0 0 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .65);
    font-size: 17px;
}

.free-card p {
    margin: 0;
    color: #4a4a4a;
}

.free-card span {
    color: #bd1632;
    font-weight: 700;
}

.free-qr-shell {
    padding: 24px 17px 28px;
}

.free-qr-card {
    padding: 26px 17px 22px;
    border-radius: 6px;
    background: #83d3e5;
    box-shadow: 0 12px 24px rgba(54, 116, 132, .12);
}

.free-qr-card__title {
    margin-bottom: 16px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, .68);
    color: #1f3138;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.free-qr-card__image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    margin-bottom: 14px;
    border-radius: 10px;
    background: #f7f8fb;
    overflow: hidden;
}

.free-qr-card__image img {
    width: 100%;
    max-width: 320px;
    height: auto;
    object-fit: contain;
}

.free-qr-card__empty {
    color: #999;
    font-size: 15px;
}

.free-qr-card__tip {
    margin: 0;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, .68);
    color: #4f6670;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.55;
    text-align: justify;
}

.free-qr-card__stat {
    margin: 14px 0 0;
    color: #4f6670;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.55;
}

.free-qr-card__tip span,
.free-qr-card__stat span {
    color: #d20b22;
    font-weight: 700;
}

.free-qr-shell > .h5-btn {
    min-height: 50px;
    margin-top: 68px;
    font-size: 16px;
}

.free-qr-shell > .h5-btn + .h5-btn {
    margin-top: 12px;
}

.free-qr-shell > .h5-btn--pale {
    background: #ffd1d8;
    color: #d20b22;
    box-shadow: none;
}

.free-qr-shell > .h5-btn--outline {
    border-color: #c94f68;
    color: #c94f68;
}

.free-status-line {
    margin-top: 12px !important;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, .65);
}

.free-shell > .h5-btn + .h5-btn {
    margin-top: 12px;
}

.package-hero {
    min-height: 82px;
    margin: 12px 6px 28px;
    padding: 22px 18px;
    border-radius: 7px;
}

.package-hero--green {
    background: #37b84b;
    color: #fff;
}

.package-hero--purple {
    background: #9670dc;
    color: #fff;
}

.package-hero--orange {
    background: #ff8915;
    color: #fff;
}

.package-hero h2 {
    margin: 0 0 4px;
    font-size: 16px;
}

.package-hero p {
    margin: 0;
    font-size: 14px;
}

.plain-pay-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 6px;
}

.plain-pay-form label:not(.agreement-line) {
    color: #555;
}

.plain-pay-form input[type="text"],
.plain-pay-form input[type="tel"] {
    width: 100%;
    height: 42px;
    border-color: #dcdcdc;
    border-radius: 3px;
    background: #fff;
}

.agreement-line--pay {
    margin-top: 14px;
}

.vip-package-page {
    padding-top: 12px;
}

.vip-package-page .search-card {
    min-height: 0;
    margin-bottom: 0;
}

.vip-package-page .section-title {
    margin-bottom: 16px;
    font-size: 19px;
}

.vip-package-page .package-hero {
    margin: 0 0 16px;
    padding: 18px 16px;
}

.vip-package-page .package-hero h2 {
    font-size: 18px;
    line-height: 1.25;
}

.vip-package-page .package-hero p {
    font-size: 15px;
    line-height: 1.6;
}

.vip-form-panel {
    gap: 12px;
}

.vip-form-panel label:not(.agreement-line) {
    color: #333;
    font-size: 15px;
    font-weight: 600;
}

.vip-form-panel input[type="text"],
.vip-form-panel input[type="tel"] {
    width: 100%;
    height: 34px;
    border: 1px solid var(--hl-border);
    border-radius: 6px;
    background: #fffafa;
    color: #222;
    font-size: 16px;
}

.vip-form-panel .agreement-line--pay {
    margin-top: 6px;
    font-size: 15px;
}

.vip-form-panel .muted-note {
    margin: -2px 0 0;
    color: var(--hl-muted);
    font-size: 13px;
    line-height: 1.55;
}

.vip-form-button {
    margin-top: 14px;
}

.recommend-list {
    padding: 8px 0 26px;
    background: #fff;
}

.recommend-load-status {
    display: none;
    min-height: 42px;
    padding: 13px 16px 4px;
    color: #999;
    font-size: 13px;
    line-height: 1.4;
    text-align: center;
}

.recommend-load-status.is-visible {
    display: block;
}

.recommend-load-status.is-retryable {
    cursor: pointer;
    color: #bd1632;
}

.recommend-empty {
    margin: 18px 4px 0;
    padding: 28px 18px 30px;
    border-radius: 7px;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
    text-align: center;
}

.recommend-empty h2 {
    margin: 0 0 10px;
    color: #222;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
}

.recommend-empty p {
    margin: 0 0 18px;
    color: #777;
    font-size: 14px;
    line-height: 1.6;
}

.recommend-card {
    display: flex;
    align-items: center;
    min-height: 112px;
    gap: 10px;
    margin: 0;
    padding: 8px 8px;
    border-bottom: 1px solid #f2f2f2;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
}

.recommend-card__photo {
    width: 104px;
    height: 104px;
    flex: 0 0 104px;
    overflow: hidden;
    border-radius: 7px;
    background: linear-gradient(90deg, #fafafa, #e9e9e9, #fafafa);
}

.recommend-card__photo img {
    display: block;
    filter: none;
    transform: none;
}

.recommend-card__body {
    flex: 1 1 auto;
    min-width: 0;
}

.recommend-card__head {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    min-width: 0;
    margin-bottom: 8px;
    line-height: 1.1;
}

.recommend-card__serial {
    color: #a57a28;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0;
    white-space: nowrap;
}

.recommend-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 17px;
    padding: 0 5px;
    border-radius: 3px;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    line-height: 17px;
    white-space: nowrap;
}

.recommend-badge--gender {
    width: 17px;
    padding: 0;
    border-radius: 50%;
    background: #f7b7c7;
    color: #d54874;
    font-size: 12px;
}

.recommend-badge--gender.recommend-badge--male {
    background: #bfe4ff;
    color: #187fc4;
}

.recommend-badge--real {
    background: #45bff3;
}

.recommend-badge--edu {
    background: #69a7ff;
}

.recommend-badge--vip {
    padding: 0 6px;
    border-radius: 4px;
    background: linear-gradient(180deg, #2a2210 0%, #0f0d08 100%);
    color: #ffd34f;
    font-size: 11px;
    font-style: italic;
}

.recommend-card__meta {
    overflow: hidden;
    margin: 0;
    color: #8b8b8b;
    font-size: 14px;
    line-height: 1.55;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.recommend-card__meta span + span::before {
    content: "|";
    margin: 0 5px;
    color: #c8c8c8;
}

.recommend-card__meta--sub {
    margin-top: 2px;
    font-size: 14px;
}

.recommend-card__meta--sub span + span::before {
    content: "·";
    margin: 0 7px;
    color: #bdbdbd;
}

.tag-row,
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-row {
    margin: 7px 0 6px;
}

.tag-row span,
.tag-list span {
    max-width: 100%;
    border-radius: 5px;
    background: var(--hl-pink-chip);
    color: #c64a5f;
    font-weight: 700;
}

.tag-row span {
    padding: 3px 8px;
    font-size: 13px;
}

.tag-list span {
    padding: 6px 10px;
    font-size: 15px;
}

.detail-stack {
    padding: 0 10px 18px;
}

.page-member-detail .detail-stack {
    padding-top: 10px;
}

.page-member-detail .h5-page {
    padding-top: calc(var(--hl-header-height) + 10px + env(safe-area-inset-top));
}

.detail-summary {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 152px;
    padding: 20px 16px 22px;
}

.detail-summary__photo {
    width: 92px;
    height: 92px;
    flex: 0 0 92px;
    overflow: hidden;
    border-radius: 8px;
    background: #efefef;
}

.detail-summary__info {
    flex: 1 1 auto;
    min-width: 0;
}

.detail-summary__info h2 {
    margin: 0 0 8px;
    color: #111;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.25;
}

.detail-summary__info p {
    margin: 4px 0 0;
    color: #666;
    font-size: 15px;
    line-height: 1.4;
}

.detail-summary__info span {
    color: #ddd;
    padding: 0 6px;
}

.detail-summary__edit {
    flex: 0 0 auto;
    min-width: 58px;
    height: 34px;
    padding: 0 14px;
    border-radius: 17px;
    background: var(--hl-red);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 34px;
    text-align: center;
    white-space: nowrap;
}

.detail-section {
    margin-top: 14px;
    padding: 20px 16px 22px;
    overflow: hidden;
}

.detail-section__title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 18px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #c98f98;
    color: #bd1632;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.25;
}

.section-icon {
    display: inline-flex;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: #fff;
    font-size: 15px;
}

.section-icon--album {
    background: #ef6b6e;
}

.section-icon--basic {
    background: #34b06d;
}

.section-icon--heart {
    background: #ffc4bf;
}

.album-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.album-photo {
    display: block;
    width: 100%;
    padding: 0;
    border: 1px solid #eeeeee;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    background: #f6f6f6;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .04);
    cursor: pointer;
}

.detail-section .album-photo {
    min-width: 0;
}

.detail-qrcode-tip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 118px;
    margin: 18px 0 0;
    padding: 20px 18px;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .04);
}

.detail-qrcode-tip__copy {
    min-width: 0;
    color: var(--hl-red);
    font-size: 22px;
    font-weight: 800;
    line-height: 1.45;
}

.detail-qrcode-tip__copy p {
    margin: 0;
}

.detail-qrcode-tip__image {
    display: flex;
    width: 104px;
    height: 104px;
    flex: 0 0 104px;
    align-items: center;
    justify-content: center;
    border: 1px solid #d9d9d9;
    background: #f8f8f8;
    color: #999;
    font-size: 17px;
    line-height: 1.2;
    text-align: center;
}

.detail-qrcode-tip__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.detail-share-tip {
    display: flex;
    min-height: 62px;
    align-items: center;
    justify-content: center;
    margin: 18px -10px 0;
    padding: 12px 18px;
    background: var(--hl-red);
    color: #ffd6d8;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.35;
    text-align: center;
}

.album-photo--clickable {
    cursor: pointer;
}

.album-photo--clickable:focus-visible {
    outline: 2px solid #d20b22;
    outline-offset: 2px;
}

.album-photo span {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
}

.h5-modal {
    overflow: hidden;
    border: 1px solid #d11c2a;
    border-radius: 8px;
    background: #fff;
    color: #555;
}

.h5-modal__title {
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    margin: 0;
    background: #d71928;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
}

.h5-modal__body {
    padding: 28px 26px 4px;
    color: #5f6268;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.9;
    text-align: left;
}

.h5-modal__body p {
    margin: 0 0 22px;
}

.h5-modal__button {
    display: flex;
    width: calc(100% - 52px);
    min-height: 52px;
    align-items: center;
    justify-content: center;
    margin: 18px 26px 28px;
    border: 0;
    border-radius: 6px;
    background: #d81e26;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.h5-tip-modal .h5-modal__title {
    min-height: 54px;
}

.h5-tip-modal .h5-modal__body {
    padding-top: 28px;
    text-align: center;
}

.h5-tip-modal .h5-modal__body p {
    margin-bottom: 8px;
}

.h5-avatar-crop-modal {
    width: min(430px, calc(100vw - 32px));
}

.h5-avatar-cropper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.h5-avatar-cropper__viewport {
    position: relative;
    width: 300px;
    height: 300px;
    overflow: hidden;
    border-radius: 50%;
    background: #101010;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .18), 0 10px 28px rgba(0, 0, 0, .22);
    cursor: grab;
    touch-action: none;
}

.h5-avatar-cropper__viewport:active {
    cursor: grabbing;
}

.h5-avatar-cropper__image {
    position: absolute;
    max-width: none;
    max-height: none;
    user-select: none;
    pointer-events: none;
}

.h5-avatar-cropper__zoom {
    display: grid;
    width: 100%;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    color: #333;
    font-size: 14px;
}

.h5-avatar-cropper__zoom input {
    width: 100%;
    accent-color: var(--hl-red);
}

.h5-avatar-cropper__hint {
    margin: 0;
    color: #888;
    font-size: 13px;
    line-height: 1.4;
}

@media (max-width: 360px) {
    .h5-avatar-crop-modal {
        width: calc(100vw - 20px);
    }

    .h5-avatar-cropper__viewport {
        width: min(280px, calc(100vw - 58px));
        height: min(280px, calc(100vw - 58px));
    }
}

.h5-modal-open {
    overflow: hidden;
}

.h5-notice-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: rgba(0, 0, 0, .34);
}

.h5-user-notice-modal {
    overflow: hidden;
    width: min(100%, 478px);
    max-height: calc(100vh - 32px);
    border-radius: 10px;
    background: #fff;
    color: #4d4d4d;
    box-shadow: 0 14px 36px rgba(0, 0, 0, .16);
}

.h5-user-notice-modal__header {
    display: flex;
    min-height: 66px;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #d81e26 0%, #c8161f 100%);
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

.h5-user-notice-modal__body {
    padding: 20px 18px 10px;
}

.h5-user-notice-modal__text {
    margin: 0 0 22px;
    color: #555;
    font-size: 16px;
    line-height: 1.8;
}

.h5-user-notice-modal__button {
    display: flex;
    width: calc(100% - 30px);
    min-height: 48px;
    align-items: center;
    justify-content: center;
    margin: 0 15px 16px;
    border: 0;
    border-radius: 6px;
    background: linear-gradient(180deg, #df2229 0%, #c8181f 100%);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
}

.h5-user-notice-modal__button:active,
.h5-user-notice-modal__button:focus {
    outline: none;
}

.h5-logout-modal {
    overflow: hidden;
    width: min(100%, 640px);
    max-height: calc(100vh - 32px);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(0, 0, 0, .18);
}

.h5-logout-modal__header {
    display: flex;
    min-height: 78px;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #e4192a 0%, #d81022 100%);
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

.h5-logout-modal__body {
    padding: 24px 24px 16px;
}

.h5-logout-modal__lead {
    margin: 0 0 12px;
    color: #c12d36;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.6;
}

.h5-logout-modal__text,
.h5-logout-modal__ask {
    margin: 0 0 14px;
    color: #444;
    font-size: 18px;
    line-height: 1.75;
}

.h5-logout-modal__ask {
    margin-top: 8px;
    margin-bottom: 0;
}

.h5-logout-modal__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    border-top: 1px solid #eee;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.h5-logout-modal__btn {
    min-height: 72px;
    border: 0;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
}

.h5-logout-modal__btn--cancel {
    background: #fff;
    color: #666;
    border-right: 1px solid #eee;
}

.h5-logout-modal__btn--danger {
    background: #d81e26;
    color: #fff;
}

.h5-photo-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
}

.h5-photo-preview img {
    display: block;
    max-width: 100%;
    max-height: 72vh;
    border-radius: 10px;
    object-fit: contain;
}

.album-shell {
    padding: 14px 12px 28px;
}

.album-panel {
    padding: 18px 16px 22px;
}

.album-panel h2 {
    margin: 0 0 14px;
    color: #bd1632;
    font-size: 18px;
}

.album-grid--profile {
    margin-bottom: 18px;
}

.album-empty {
    display: flex;
    min-height: 108px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border: 1px dashed #dddddd;
    border-radius: 8px;
    background: #fafafa;
    color: #999999;
    font-size: 14px;
}

.target-copy {
    margin: 0;
    color: #555;
    font-size: 16px;
    line-height: 1.75;
}

.fixed-action-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    display: flex;
    gap: 10px;
    width: 100%;
    max-width: 750px;
    min-height: calc(var(--hl-fixed-action-height) + env(safe-area-inset-bottom));
    align-items: center;
    margin: 0 auto;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: #fff;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, .05);
}

.fixed-action {
    display: flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 20px;
    font-weight: 700;
}

.fixed-action--light {
    flex: 0 0 34%;
    background: #eee;
    color: #555;
}

.fixed-action--pink {
    flex: 1;
    background: #ffd9d9;
    color: #c74755;
}

.group-shell {
    min-height: calc(100vh - 52px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 34px 18px;
}

.group-card {
    width: min(280px, 100%);
    min-height: 420px;
    padding: 28px 22px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(104, 124, 140, .1);
    text-align: center;
}

.group-card h2 {
    margin: 0 0 20px;
    font-size: 16px;
    font-weight: 400;
}

.qr-box {
    width: 190px;
    height: 190px;
    margin: 0 auto 24px;
    overflow: hidden;
    background: linear-gradient(90deg, #fff, #f3f3f3, #fff);
}

.qr-box span {
    display: block;
    width: 100%;
    height: 100%;
}

.group-card p {
    margin: 7px 0;
    color: #777;
    font-size: 14px;
}

.group-card strong {
    color: #bd1632;
}

.group-card a {
    color: #bd1632;
    text-decoration: none;
}

.pay-result-shell {
    padding-top: 80px;
}

.pay-result-card {
    padding: 34px 22px;
    text-align: center;
}

.pay-result-icon {
    display: inline-flex;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #31b56a;
    color: #fff;
    font-size: 30px;
}

.pay-result-card h2 {
    margin: 18px 0 8px;
}

.pay-result-card p {
    margin: 0 0 24px;
    color: #777;
}

.pay-result-actions {
    display: grid;
    gap: 12px;
}

.contact-result-shell {
    min-height: calc(100vh - var(--hl-header-height) - var(--hl-fixed-action-height));
    padding: 22px 24px 120px;
    background: #f4f5f8;
}

.contact-result-title {
    margin: 0 0 24px;
    color: #d20b22;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.3;
}

.contact-safety-card {
    padding: 18px 18px 16px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(34, 36, 40, .05);
}

.contact-safety-card p {
    margin: 0;
    color: #4c5662;
    font-size: 15px;
    line-height: 1.85;
}

.contact-safety-card p + p {
    margin-top: 18px;
}

.contact-copy-tip {
    margin: 26px 0 30px;
    color: #4c5662;
    font-size: 16px;
    line-height: 1.7;
}

.contact-copy-tip span {
    color: #d20b22;
    font-weight: 700;
}

.contact-wechat-block h3 {
    margin: 0 0 14px;
    color: #222a35;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
}

.contact-copy-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 92px;
    overflow: hidden;
    border-radius: 5px;
    background: #e62226;
}

.contact-copy-row input {
    min-width: 0;
    height: 64px;
    padding: 0 26px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 21px;
    line-height: 64px;
}

.contact-copy-row button {
    height: 64px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.page-contact-result .fixed-action-bar {
    padding: 10px 16px calc(7px + env(safe-area-inset-bottom));
    background: #f4f5f8;
}

.page-contact-result .fixed-action {
    max-width: none;
    border-radius: 999px;
    font-size: 18px;
}

.agreement-shell {
    padding: 12px 10px 28px;
}

.agreement-card {
    padding: 20px 16px 24px;
    border-radius: 6px;
}

.agreement-card h2 {
    margin: 0 0 14px;
    color: #bd1632;
    font-size: 19px;
}

.agreement-card h3 {
    margin: 18px 0 6px;
    font-size: 16px;
}

.agreement-card h4 {
    margin: 14px 0 6px;
    color: #333;
    font-size: 15px;
}

.agreement-card p {
    margin: 0 0 8px;
    color: #555;
    font-size: 15px;
    line-height: 1.85;
}

.agreement-card ol {
    margin: 0 0 10px;
    padding-left: 20px;
    color: #555;
    font-size: 15px;
    line-height: 1.85;
}

.agreement-card li {
    margin: 0 0 5px;
}

@media (max-width: 430px) {
    body {
        font-size: 15px;
    }

    .brand-header h1,
    .simple-red-header h1,
    .h5-header h1 {
        font-size: 18px;
    }

    .search-card {
        padding-right: 14px;
        padding-left: 14px;
    }

    .home-search-form .form-row {
        grid-template-columns: 82px minmax(0, 1fr);
    }

    .home-search-form .form-label {
        width: 82px;
        flex-basis: auto;
    }

    .home-search-form input[type="text"],
    .home-search-form input[type="tel"],
    .home-search-form select,
    .home-search-form .control-wide {
        width: 100%;
    }

    .home-search-form .form-row--range {
        grid-template-columns: 82px minmax(0, 1fr) 16px minmax(0, 1fr) 36px;
        gap: 6px;
    }

    .home-search-form .form-row--radio {
        grid-template-columns: 82px repeat(2, minmax(0, auto));
        column-gap: 14px;
    }

    .form-label,
    .register-form .form-label,
    .detail-form .form-label {
        width: 82px;
        flex-basis: 82px;
    }

    .h5-form input[type="text"],
    .h5-form input[type="tel"] {
        width: 170px;
    }

    .h5-form select {
        width: 88px;
    }

    .h5-form .control-wide {
        width: 132px;
    }

    .form-row--date select {
        width: 58px;
    }

    .form-row--date select:first-of-type {
        width: 80px;
    }

    .mini-input {
        width: 86px !important;
    }

    .home-tabs__item {
        font-size: 16px;
    }

    .register-form .form-row--date {
        display: grid;
        grid-template-columns: 82px minmax(0, 1fr);
        gap: 9px;
    }

    .register-form .form-row {
        grid-template-columns: 82px minmax(0, 1fr);
    }

    .register-form .form-row--wide-radio {
        grid-template-columns: 82px repeat(3, minmax(0, auto));
        column-gap: 14px;
    }

    .register-form input[type="text"],
    .register-form input[type="tel"],
    .register-form select {
        width: 100%;
    }

    .register-form .form-row--date .form-label {
        width: 82px;
        flex-basis: auto;
    }

    .register-date-fields {
        grid-template-columns: minmax(0, 1.22fr) 16px minmax(0, .82fr) 16px minmax(0, .82fr) 16px;
        gap: 3px;
    }

    .register-date-fields select {
        width: 100%;
        padding-right: 18px;
        padding-left: 7px;
        font-size: 14px;
    }

    .register-date-fields span {
        font-size: 14px;
    }

    .register-form .form-row--wide-radio label:not(.form-label),
    .detail-form .form-row--wide-radio label:not(.form-label) {
        min-width: 86px;
        justify-content: flex-start;
    }

    .detail-form {
        padding-right: 14px;
        padding-left: 14px;
    }

    .upload-grid {
        gap: 8px;
    }

    .upload-slot {
        min-height: 96px;
        font-size: 14px;
    }

    .detail-form .form-row--range {
        display: grid;
        grid-template-columns: 82px minmax(0, 1fr) 14px minmax(0, 1fr) auto;
        gap: 7px;
    }

    .detail-form .form-row--range .form-label {
        width: 82px;
        flex-basis: auto;
    }

    .detail-form .mini-input {
        width: 100% !important;
        max-width: none;
        padding-right: 8px;
        padding-left: 8px;
        font-size: 14px;
    }

    .package-card {
        padding-right: 16px;
        padding-left: 16px;
    }

    .album-grid {
        gap: 8px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .detail-summary {
        gap: 18px;
    }

    .detail-summary__photo {
        width: 116px;
        height: 116px;
        flex-basis: 116px;
    }

    .fixed-action {
        font-size: 18px;
    }

    .shot-profile-card {
        margin-right: 0;
        margin-left: 0;
        gap: 12px;
        padding: 16px 12px;
    }

    .shot-profile-avatar {
        width: 96px;
        height: 96px;
        flex-basis: 96px;
    }

    .shot-profile-meta {
        padding-right: 0;
    }

    .shot-profile-meta h2 {
        max-width: 150px;
        font-size: 22px;
    }

    .shot-profile-card__button {
        top: 18px;
        right: 10px;
        padding: 10px 12px;
        font-size: 16px;
    }

    .shot-photo-card {
        margin-right: 0;
        margin-left: 0;
        padding: 18px 12px;
    }

    .shot-photo-row {
        grid-template-columns: 1fr auto;
        gap: 10px 12px;
    }

    .shot-photo-label {
        grid-column: 1 / -1;
        font-size: 24px;
    }

    .shot-upload-button,
    .shot-upload-action {
        min-width: 96px;
    }

    .shot-upload-text {
        font-size: 13px;
    }

    .shot-menu-row {
        margin-right: 0;
        margin-left: 0;
        font-size: 22px;
    }
}

@media (min-width: 600px) {
    .fixed-action-bar {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 430px) {
    .register-detail-form .register-detail-range-row {
        grid-template-columns: 82px minmax(0, 1fr) 14px minmax(0, 1fr) auto;
    }

    .register-detail-form .register-detail-range-row .form-label {
        width: 82px;
    }
}

.page-register-detail-shot {
    max-width: 430px;
    background: #fff;
}

.page-register-detail-shot .h5-header,
.page-register-detail-shot .h5-footer {
    max-width: 430px;
}

.page-register-detail-shot .shot-register-shell {
    padding: 10px 12px 28px;
}

.page-register-detail-shot .shot-register-form {
    padding: 0;
}

.page-register-detail-shot .shot-field {
    margin-bottom: 11px;
}

.page-register-detail-shot .shot-field span {
    margin-bottom: 5px;
    color: #333;
    font-size: 14px;
    line-height: 1.45;
}

.page-register-detail-shot .shot-field em {
    color: #e13030;
    font-weight: 700;
}

.page-register-detail-shot .shot-field input {
    height: 38px;
    padding: 0 10px;
    border: 1px solid #d0d0d0;
    border-radius: 3px;
    color: #333;
    font-size: 14px;
    line-height: 38px;
}

.page-register-detail-shot .shot-field input::placeholder,
.page-register-detail-shot .shot-range-row input::placeholder {
    color: #9a9a9a;
}

.page-register-detail-shot .shot-register-help {
    margin: 4px 0 12px;
    color: #666;
    font-size: 13px;
    line-height: 1.5;
}

.page-register-detail-shot .shot-target-title {
    margin: 0 0 14px;
    padding: 6px 0;
    border-radius: 2px;
    background: #ffe6e6;
    color: #e32323;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
}

.page-register-detail-shot .shot-range-row {
    grid-template-columns: 22px minmax(0, 1fr) 12px minmax(0, 1fr) 25px;
    gap: 8px;
    margin-bottom: 8px;
    color: #333;
    font-size: 15px;
}

.page-register-detail-shot .shot-range-row span:first-child {
    text-align: left;
}

.page-register-detail-shot .shot-range-row span:last-child {
    line-height: 1.25;
}

.page-register-detail-shot .shot-range-row b {
    font-weight: 400;
    text-align: center;
}

.page-register-detail-shot .shot-range-row input {
    height: 38px;
    padding: 0 8px;
    border: 1px solid #d0d0d0;
    border-radius: 3px;
    color: #333;
    font-size: 14px;
    line-height: 38px;
    text-align: center;
}

.page-register-detail-shot .shot-choice-row {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 8px;
    color: #333;
    font-size: 15px;
    line-height: 1.35;
}

.page-register-detail-shot .shot-choice-row span {
    flex: 0 0 auto;
}

.page-register-detail-shot .shot-choice-row label {
    gap: 4px;
}

.page-register-detail-shot .shot-choice-row input {
    width: 17px;
    height: 17px;
    margin: 0;
}

.page-register-detail-shot .shot-agree-line--register {
    gap: 6px;
    align-items: center;
    margin: 8px 0 0;
    color: #555;
    font-size: 13px;
    line-height: 1.4;
}

.page-register-detail-shot .shot-agree-line--register input {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
}

.page-register-detail-shot .shot-agree-line--register a {
    color: #e32323;
}

.page-register-detail-shot .shot-main-button {
    min-height: 42px;
    margin-top: 17px;
    border: 0;
    border-radius: 22px;
    background: #ffd1d3;
    color: #e32323;
    font-size: 16px;
    font-weight: 700;
    box-shadow: none;
}

.page-register-detail-shot .shot-main-button.is-disabled,
.page-register-detail-shot .shot-main-button:disabled {
    opacity: .55;
}

.page-report .report-page {
    padding: 18px 12px 24px;
}

.page-report .report-card {
    padding: 18px 16px 20px;
}

.page-report .report-title {
    margin: 0 0 16px;
    color: #bd1632;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.25;
}

.page-report .report-field {
    position: relative;
}

.page-report .report-field textarea {
    display: block;
    width: 100%;
    min-height: 236px;
    padding: 12px 14px 34px;
    border: 1px solid #d89a9f;
    border-radius: 12px;
    color: #333;
    font-size: 16px;
    line-height: 1.7;
    resize: none;
}

.page-report .report-field textarea::placeholder {
    color: #a7a7a7;
}

.page-report .report-count {
    margin-top: 8px;
    color: #b76a74;
    font-size: 14px;
    line-height: 1.25;
    text-align: right;
}

.page-report .report-submit {
    display: block;
    width: 100%;
    min-height: 58px;
    margin-top: 22px;
    border: 0;
    border-radius: 8px;
    background: linear-gradient(180deg, #d41a28 0%, #c71624 100%);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.register-detail-tip .privacy-declaration-link,
.register-detail-tip .privacy-declaration-link:visited,
.register-detail-tip .privacy-declaration-link:hover,
.register-detail-tip .privacy-declaration-link:active {
    color: #1686d9 !important;
    font-weight: 700;
    text-decoration: none !important;
}
.h5-inline-toast {
    position: fixed;
    left: 50%;
    bottom: 82px;
    z-index: 99999;
    max-width: calc(100vw - 48px);
    padding: 10px 14px;
    border-radius: 8px;
    background: rgba(35, 35, 35, 0.92);
    color: #fff;
    font-size: 14px;
    line-height: 1.45;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    opacity: 0;
    transform: translate(-50%, 10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
}

.h5-inline-toast.is-visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

.h5-inline-toast--success {
    background: rgba(33, 150, 83, 0.94);
}

.h5-inline-toast--warning {
    background: rgba(217, 119, 6, 0.94);
}

.h5-inline-toast--error {
    background: rgba(220, 38, 38, 0.94);
}
