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

.query-form {
    margin-top: 10px;
}

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

.query-result-list {
    display: grid;
    gap: 18px;
}

.query-order-card {
    background: linear-gradient(135deg, #ffffff, #f8fbff);
    border: 1px solid rgba(223, 230, 244, .9);
    border-radius: 26px;
    padding: 24px;
    box-shadow: 0 16px 36px rgba(37, 54, 94, .08);
}

.query-order-head {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 16px;
}

.query-order-head h3 {
    margin: 0;
    font-size: 28px;
}

.query-order-head p {
    margin: 8px 0 0;
    color: #6f7a92;
}

.query-order-price {
    text-align: right;
}

.query-order-price strong {
    display: block;
    color: #ff5f45;
    font-size: 28px;
}

.query-order-price span {
    display: inline-flex;
    margin-top: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 118, 82, .12);
    color: #ff5f45;
    font-weight: 600;
}

.query-order-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-bottom: 18px;
    color: #51607f;
}

.query-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.query-info-card {
    padding: 18px 20px;
    border-radius: 22px;
    border: 1px solid rgba(228, 234, 246, .95);
    background: #fbfcff;
}

.query-info-card strong,
.query-trace strong,
.query-materials strong {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
}

.query-info-card p,
.query-trace,
.query-materials {
    color: #546179;
}

.query-trace,
.query-materials {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(230, 235, 245, .9);
}

.query-trace ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.query-trace li {
    display: grid;
    gap: 4px;
    padding: 14px 16px;
    border-radius: 18px;
    background: #f7f9ff;
    border: 1px solid rgba(226, 233, 245, .85);
}

.query-trace li span {
    color: #2a3857;
    font-weight: 600;
}

.query-trace li small {
    color: #71809a;
}

.query-material-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.query-material-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(227, 233, 244, .95);
    background: #fff;
    color: #31405f;
}

.query-material-item:hover {
    color: #ff6b53;
    border-color: rgba(255, 107, 83, .25);
}

.empty-state {
    padding: 36px 24px;
    border-radius: 24px;
    background: #fbfcff;
    border: 1px dashed rgba(225, 231, 244, .9);
    color: #7a8499;
    text-align: center;
}

.reupload-card-page .apply-form {
    gap: 20px;
}

.pay-page-card {
    display: grid;
    gap: 18px;
}

.pay-alert {
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 97, 73, 0.2);
    background: rgba(255, 97, 73, 0.08);
    color: #ca3a41;
    font-weight: 600;
}

.pay-action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

@media (max-width: 991px) {
    .query-grid {
        grid-template-columns: 1fr;
    }

    .query-info-grid {
        grid-template-columns: 1fr;
    }

    .query-order-head {
        flex-direction: column;
    }

    .query-order-price {
        text-align: left;
    }
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --bg: #f4f6fb;
    --panel: rgba(255, 255, 255, 0.92);
    --panel-strong: #ffffff;
    --text: #1e2433;
    --muted: #6c7486;
    --line: rgba(33, 42, 62, 0.08);
    --shadow: 0 18px 48px rgba(32, 43, 71, 0.12);
    --brand: #ff5e4d;
    --brand-deep: #d92f45;
    --accent-purple: #7b68ff;
    --accent-blue: #4b8dff;
    --accent-orange: #ff9d4d;
    --success: #2cb470;
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --max-width: 1280px;
    --font-stack: "SourceHanSansK-Regular", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

body {
    background:
        radial-gradient(circle at top left, rgba(255, 137, 107, 0.18), transparent 32%),
        radial-gradient(circle at top right, rgba(112, 106, 255, 0.14), transparent 26%),
        linear-gradient(180deg, #eef2ff 0%, #f7f8fc 38%, #eef1f7 100%);
    color: var(--text);
    font-family: var(--font-stack);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.modal-open {
    overflow: hidden;
}

a,
button,
input,
textarea {
    font: inherit;
}

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

button {
    border: 0;
    background: none;
    cursor: pointer;
}

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

.haoka-page {
    padding-bottom: 0;
}

.site-shell {
    width: min(var(--max-width), calc(100% - 24px));
    margin: 0 auto;
    padding: 10px 0 42px;
}

.hero-panel,
.section-card {
    background: var(--panel);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: var(--shadow);
}

.hero-panel {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    padding: 22px;
}

.hero-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 10%, rgba(255, 116, 103, 0.22), transparent 24%),
        radial-gradient(circle at 88% 12%, rgba(89, 110, 255, 0.18), transparent 24%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.24));
    pointer-events: none;
}

.hero-topbar,
.hero-main,
.quick-nav,
.content-shell,
.apply-dialog {
    position: relative;
    z-index: 1;
}

.hero-topbar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    align-items: center;
}

.hero-city,
.hero-service,
.hero-search,
.quick-nav a,
.stats-card,
.category-item,
.package-card,
.service-card,
.process-item,
.footer-cta,
.apply-dialog {
    border-radius: var(--radius-lg);
}

.hero-city,
.hero-service {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.84);
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 18px;
    color: #d63d45;
    font-weight: 700;
}

.hero-service {
    justify-content: center;
    width: 52px;
    padding: 0;
    font-size: 18px;
}

.hero-search {
    min-height: 52px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.9);
    padding: 6px 8px 6px 18px;
}

.hero-search i {
    color: #a2a7b7;
}

.hero-search input {
    flex: 1;
    border: 0;
    background: transparent;
    outline: none;
    color: var(--text);
}

.hero-search button,
.hero-btn-primary,
.apply-btn,
.submit-btn {
    background: linear-gradient(135deg, #ff9053, var(--brand));
    color: #fff;
    box-shadow: 0 12px 26px rgba(255, 94, 77, 0.24);
}

.hero-search button {
    min-width: 92px;
    height: 40px;
    border-radius: 999px;
    font-weight: 700;
}

.hero-main {
    display: grid;
    grid-template-columns: 1.25fr 0.95fr;
    gap: 22px;
    margin-top: 22px;
}

.hero-copy {
    padding: 12px 10px 10px 4px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 94, 77, 0.12);
    color: var(--brand-deep);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.hero-copy h1,
.section-head h2,
.footer-cta h2,
.apply-head h2 {
    margin: 0;
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.hero-copy h1 {
    margin-top: 18px;
    font-size: clamp(2.1rem, 4vw, 3.8rem);
}

.hero-copy p,
.section-head p,
.footer-cta p,
.apply-head p,
.package-header p,
.process-item p,
.service-card p {
    color: var(--muted);
}

.hero-copy p {
    margin: 18px 0 0;
    max-width: 640px;
    font-size: 1rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.hero-btn {
    min-height: 50px;
    padding: 0 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.72);
    color: var(--text);
    border: 1px solid rgba(50, 60, 88, 0.08);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    align-content: start;
}

.stats-card {
    min-height: 148px;
    padding: 22px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stats-card small {
    font-size: 13px;
    opacity: 0.9;
}

.stats-card strong {
    font-size: clamp(1.4rem, 2vw, 2rem);
    line-height: 1.2;
}

.accent-orange {
    background: linear-gradient(135deg, #ffb25f, #ff6d54);
}

.accent-purple {
    background: linear-gradient(135deg, #8b72ff, #5d56ff);
}

.accent-blue {
    background: linear-gradient(135deg, #5da8ff, #3d64ff);
}

.hero-stats .stats-card:last-child {
    grid-column: 1 / -1;
}

.quick-nav {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.quick-nav a {
    min-height: 46px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.7);
    color: #2c354d;
    font-weight: 600;
}

.content-shell {
    display: grid;
    gap: 20px;
    margin-top: 22px;
}

.section-card {
    padding: 24px;
}

.section-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.section-head h2 {
    font-size: clamp(1.4rem, 2vw, 2rem);
}

.section-head p {
    margin: 10px 0 0;
    font-size: 0.98rem;
}

.section-tip {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(123, 104, 255, 0.12);
    color: var(--accent-purple);
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
}

.category-item {
    padding: 18px 14px;
    text-align: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 255, 0.92));
    border: 1px solid var(--line);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.category-item:hover,
.category-item.is-active {
    transform: translateY(-4px);
    box-shadow: 0 18px 32px rgba(67, 78, 109, 0.12);
    border-color: rgba(0, 0, 0, 0.02);
}

.category-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 14px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 24px;
    background: linear-gradient(135deg, var(--accent), #ffcf99);
    box-shadow: 0 10px 24px rgba(29, 39, 66, 0.14);
}

.category-item strong,
.package-header h3,
.process-item h3,
.service-card h3 {
    display: block;
    margin: 0;
}

.category-item small {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    line-height: 1.6;
}

.filter-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.filter-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-chip {
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    background: #f3f5fb;
    color: #4e5770;
    font-weight: 600;
    transition: all 0.2s ease;
}

.filter-chip.is-active,
.filter-chip:hover {
    background: linear-gradient(135deg, rgba(255, 112, 90, 0.14), rgba(255, 112, 90, 0.2));
    color: var(--brand-deep);
}

.filter-summary {
    color: var(--muted);
    font-size: 0.95rem;
}

.filter-summary span {
    color: var(--brand-deep);
    font-weight: 800;
}

.package-list {
    display: grid;
    gap: 16px;
}

.package-card {
    display: grid;
    grid-template-columns: 200px minmax(0, 1fr);
    gap: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 248, 253, 0.94));
    border: 1px solid var(--line);
    padding: 16px;
}

.package-card.is-share-active {
    border-color: rgba(255, 94, 77, 0.22);
    box-shadow: 0 20px 40px rgba(255, 94, 77, 0.12);
}

.package-cover {
    position: relative;
    overflow: hidden;
    padding: 16px;
    border-radius: 20px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 170px;
}

.package-cover img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-cover.has-image {
    padding: 0;
    background: #fff;
}

.package-cover.has-image::after {
    display: none;
}

.package-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(21, 29, 44, 0.04), rgba(21, 29, 44, 0.58));
}

.package-cover > * {
    position: relative;
    z-index: 1;
}

.operator-unicom .package-cover {
    background: linear-gradient(145deg, #ffb33f, #ff564a);
}

.operator-mobile .package-cover {
    background: linear-gradient(145deg, #4fb6ff, #3f64ff);
}

.operator-telecom .package-cover {
    background: linear-gradient(145deg, #8f73ff, #5c5ef8);
}

.operator-broadband .package-cover,
.operator-custom .package-cover {
    background: linear-gradient(145deg, #ff8c71, #ff5760);
}

.cover-rank,
.cover-operator {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    font-size: 12px;
    font-weight: 700;
}

.cover-operator {
    margin-top: 10px;
}

.package-cover strong {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    line-height: 1;
    letter-spacing: -0.06em;
}

.package-cover small {
    font-size: 15px;
}

.package-body {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 0;
}

.package-header {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.package-header h3 {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
}

.package-header p {
    margin: 10px 0 0;
    line-height: 1.7;
}

.package-price {
    flex-shrink: 0;
    text-align: right;
}

.package-price strong {
    color: var(--brand-deep);
    font-size: clamp(1.6rem, 2vw, 2rem);
    line-height: 1;
}

.package-price span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
}

.package-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    color: #5a6378;
    font-size: 0.92rem;
}

.package-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: #f4f6fb;
}

.tag-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    background: rgba(76, 141, 255, 0.1);
    color: var(--accent-blue);
    font-size: 12px;
    font-weight: 700;
}

.tag.hot {
    background: rgba(255, 94, 77, 0.12);
    color: var(--brand-deep);
}

.package-footer {
    margin-top: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
}

.apply-count {
    color: var(--muted);
    min-width: 0;
}

.apply-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    justify-self: end;
    min-width: 148px;
    height: 46px;
    padding: 0 26px;
    line-height: 46px;
    text-align: center;
    font-size: 16px;
    white-space: nowrap;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 0.01em;
    color: #fff !important;
    position: static;
    transform: none !important;
    overflow: hidden;
}

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

.process-list,
.service-list {
    display: grid;
    gap: 14px;
}

.process-item {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 16px;
    padding: 18px;
    background: #f6f8fd;
}

.process-index {
    width: 74px;
    height: 74px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(255, 137, 107, 0.18), rgba(123, 104, 255, 0.14));
    color: var(--brand-deep);
    font-size: 1.2rem;
    font-weight: 900;
}

.process-item p,
.service-card p {
    margin: 8px 0 0;
    line-height: 1.75;
}

.service-card {
    padding: 18px;
    background: #f6f8fd;
}

.support-contact {
    margin-top: 18px;
    padding: 18px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    background: linear-gradient(135deg, rgba(255, 139, 110, 0.1), rgba(80, 141, 255, 0.1));
}

.support-contact strong {
    display: block;
    margin-bottom: 6px;
}

.support-contact span {
    color: var(--muted);
}

.support-contact img {
    width: 108px;
    height: 108px;
    border-radius: 18px;
    object-fit: cover;
    background: #fff;
    padding: 8px;
}

.footer-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    background:
        radial-gradient(circle at top right, rgba(75, 141, 255, 0.14), transparent 28%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(249, 250, 255, 0.9));
}

.footer-cta p {
    margin: 12px 0 0;
    max-width: 720px;
    line-height: 1.8;
}

.footer-cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.apply-modal {
    position: fixed;
    inset: 0;
    z-index: 60;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.22s ease;
}

.apply-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.apply-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(18, 24, 38, 0.48);
}

.apply-dialog {
    position: absolute;
    right: min(40px, 4vw);
    bottom: min(108px, 8vw);
    width: min(520px, calc(100% - 24px));
    padding: 24px;
    background:
        radial-gradient(circle at top right, rgba(80, 157, 255, 0.18), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(243, 248, 255, 0.98));
    border-radius: 28px;
    border: 1px solid rgba(197, 216, 255, 0.82);
    box-shadow: 0 28px 60px rgba(30, 67, 149, 0.22);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: translateY(20px);
    transition: transform 0.22s ease;
}

.apply-modal.is-open .apply-dialog {
    transform: translateY(0);
}

.haoka-detail-page .apply-dialog {
    left: 50%;
    top: 50%;
    right: auto;
    bottom: auto;
    width: min(640px, calc(100% - 24px));
    max-height: calc(100vh - 24px);
    padding: 28px;
    transform: translate(-50%, calc(-50% + 20px));
}

.haoka-detail-page .apply-modal.is-open .apply-dialog {
    transform: translate(-50%, -50%);
}

.haoka-detail-v2 .apply-dialog {
    left: 50%;
    top: 50%;
    right: auto;
    bottom: auto;
    width: min(640px, calc(100% - 24px));
    max-height: calc(100vh - 24px);
    padding: 28px;
    overflow-y: auto;
    transform: translate(-50%, calc(-50% + 20px));
}

.haoka-detail-v2 .apply-modal.is-open .apply-dialog {
    transform: translate(-50%, -50%);
}

body.modal-open .detail-fixed-cta,
body.modal-open .detail-floatbar {
    opacity: 0;
    pointer-events: none;
}

.apply-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #eef4ff;
    color: #4773d5;
}

.apply-head h2 {
    margin-top: 14px;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.apply-head p {
    margin: 12px 0 0;
    line-height: 1.8;
    color: var(--muted);
}

.apply-head-steps {
    margin-top: 16px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.apply-head-steps span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(75, 134, 255, 0.14);
    color: #5d6d90;
    font-size: 12px;
    font-weight: 700;
}

.apply-form {
    margin-top: 18px;
    display: grid;
    gap: 16px;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 8px;
    scrollbar-gutter: stable;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

.apply-form::-webkit-scrollbar {
    width: 8px;
}

.apply-form::-webkit-scrollbar-thumb {
    background: rgba(122, 132, 153, 0.28);
    border-radius: 999px;
}

.apply-form::-webkit-scrollbar-track {
    background: transparent;
}

.apply-section {
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid #edf1f6;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.apply-section-order {
    background: linear-gradient(135deg, rgba(237, 245, 255, 0.98), rgba(255, 255, 255, 0.94));
    border-color: rgba(75, 134, 255, 0.14);
}

.apply-section-head {
    margin-bottom: 14px;
}

.apply-section-head h3 {
    margin: 0;
    font-size: 1.06rem;
    color: #1f2a3d;
}

.apply-section-head p {
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.8;
    font-size: 13px;
}

.apply-summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.apply-summary.is-single {
    grid-template-columns: 1fr;
}

.apply-summary-item {
    padding: 14px 16px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.94));
    border: 1px solid rgba(75, 134, 255, 0.12);
}

.apply-summary-item span {
    display: block;
    color: var(--muted);
    font-size: 13px;
}

.apply-summary-item strong {
    display: block;
    margin-top: 8px;
    color: var(--brand-deep);
    font-size: 1.08rem;
}

.apply-section > .form-row + .form-row,
.apply-section > .form-grid + .form-row,
.apply-section > .form-row + .form-grid,
.apply-section > .form-row + .apply-summary,
.apply-section > .apply-summary + .form-row {
    margin-top: 14px;
}

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

.form-grid-third {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.form-row label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.92rem;
    font-weight: 700;
    color: #47516a;
}

.form-row input,
.form-row textarea {
    width: 100%;
    border: 1px solid rgba(45, 54, 76, 0.08);
    border-radius: 16px;
    background: #f7f9fd;
    padding: 14px 16px;
    outline: none;
    color: var(--text);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-row input:focus,
.form-row textarea:focus {
    border-color: rgba(75, 134, 255, 0.42);
    box-shadow: 0 0 0 4px rgba(75, 134, 255, 0.12);
}

.region-picker-wrap {
    position: relative;
}

.haoyi-region-panel {
    display: none;
}

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

.haoyi-region-select {
    width: 100%;
    min-height: 52px;
    border: 1px solid rgba(45, 54, 76, 0.08);
    border-radius: 16px;
    background: #f7f9fd;
    padding: 0 16px;
    outline: none;
    color: var(--text);
    font-size: 16px;
    line-height: 1.4;
    -webkit-appearance: none;
    appearance: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.default-region-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'%3E%3Cpath fill='%23B2BACB' d='M1.65.97a1 1 0 0 1 1.4.08L7 5.32 10.95 1.05a1 1 0 1 1 1.47 1.36l-4.68 5.06a1 1 0 0 1-1.47 0L1.58 2.41A1 1 0 0 1 1.65.97Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 16px) 50%;
    background-size: 14px 8px;
    padding-right: 42px;
}

.haoyi-region-select:focus {
    border-color: rgba(75, 134, 255, 0.42);
    box-shadow: 0 0 0 4px rgba(75, 134, 255, 0.12);
}

.haoyi-region-panel .layui-form-select {
    width: 100%;
}

.haoyi-region-panel .layui-form-select .layui-input {
    height: 52px;
    padding: 0 40px 0 16px;
    border: 1px solid rgba(45, 54, 76, 0.08);
    border-radius: 16px;
    background: #f7f9fd;
    color: var(--text);
    font-size: 16px;
}

.haoyi-region-panel .layui-form-select dl {
    border-radius: 16px;
    max-height: 280px;
}

.haoyi-region-panel .layui-form-select dl dd,
.haoyi-region-panel .layui-form-select dl dt {
    line-height: 42px;
    font-size: 15px;
}

.haoyi-region-tip {
    margin: 10px 2px 0;
    color: #7d8598;
    font-size: 13px;
    line-height: 1.6;
}

.region-picker-wrap .city-picker-span {
    border: 1px solid rgba(45, 54, 76, 0.08);
    border-radius: 16px;
    background: #f7f9fd;
    color: var(--text);
}

.region-picker-wrap .city-picker-input {
    opacity: 0 !important;
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    pointer-events: none !important;
}

.region-picker-wrap .city-picker-dropdown {
    z-index: 999999;
    border-radius: 22px;
    overflow: hidden;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
}

.region-picker-wrap .city-picker-span.focus,
.region-picker-wrap .city-picker-span.open {
    border-color: rgba(75, 134, 255, 0.42);
    box-shadow: 0 0 0 4px rgba(75, 134, 255, 0.12);
}

.region-picker-wrap .city-picker-span > .placeholder,
.region-picker-wrap .city-picker-span > .title {
    padding-left: 16px;
    color: #7d8598;
}

.region-picker-wrap .city-picker-span > .title {
    color: #24314f;
    font-weight: 600;
}

.region-picker-wrap .city-picker-span > .title > span {
    padding: 0;
    margin-right: 0;
    background: transparent;
    color: inherit;
}

.region-picker-wrap .city-picker-span > .title > span + span::before {
    content: "/";
    margin: 0 8px;
    color: #9ca7bd;
}

.region-picker-wrap .city-picker-span > .arrow {
    right: 18px;
    width: 10px;
    height: 10px;
    margin-top: -6px;
    border-right: 2px solid #8ea4d9;
    border-bottom: 2px solid #8ea4d9;
    background: none;
    transform: rotate(45deg);
    transition: transform 0.18s ease, border-color 0.18s ease;
}

.region-picker-wrap .city-picker-span.open > .arrow {
    border-color: #4b86ff;
    transform: rotate(-135deg);
    margin-top: -1px;
}

.region-picker-wrap .city-select-wrap {
    border: 1px solid rgba(75, 134, 255, 0.14);
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(245, 248, 255, 0.98));
    box-shadow: 0 24px 50px rgba(30, 67, 149, 0.18);
}

.region-picker-wrap .city-select-tab {
    display: flex;
    gap: 10px;
    padding: 12px;
    background: linear-gradient(180deg, rgba(241, 246, 255, 0.98), rgba(236, 243, 255, 0.96));
    border: 0;
}

.region-picker-wrap .city-select-tab > a {
    flex: 1;
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid rgba(75, 134, 255, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.85);
    color: #64748f;
    font-size: 14px;
    font-weight: 700;
    line-height: 38px;
    margin: 0;
    transition: all 0.18s ease;
}

.region-picker-wrap .city-select-tab > a:first-child,
.region-picker-wrap .city-select-tab > a:last-child.active {
    border-left: 1px solid rgba(75, 134, 255, 0.12);
    border-right: 1px solid rgba(75, 134, 255, 0.12);
}

.region-picker-wrap .city-select-tab > a.active {
    background: linear-gradient(135deg, #4c8dff, #2dc3ea);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 12px 24px rgba(75, 134, 255, 0.24);
}

.region-picker-wrap .city-select-content {
    padding: 16px 18px 18px;
    background: transparent;
}

.region-picker-wrap .city-select dl {
    padding: 0;
}

.region-picker-wrap .city-select dt {
    position: static;
    display: block;
    width: auto;
    margin-bottom: 8px;
    text-align: left;
    color: #7b88a4;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.4;
}

.region-picker-wrap .city-select dd {
    margin-left: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
    padding-bottom: 8px;
}

.region-picker-wrap .city-select.province dd {
    margin-left: 0;
}

.region-picker-wrap .city-select a {
    min-height: 34px;
    padding: 0 12px;
    margin: 0;
    border-radius: 12px;
    background: rgba(75, 134, 255, 0.08);
    color: #334155;
    font-size: 14px;
    line-height: 34px;
    transition: all 0.16s ease;
}

.region-picker-wrap .city-select a:hover,
.region-picker-wrap .city-select a:focus {
    background: rgba(75, 134, 255, 0.14);
    color: #295fcd;
    border-radius: 12px;
}

.region-picker-wrap .city-select a.active {
    background: linear-gradient(135deg, #4c8dff, #2dc3ea);
    color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(75, 134, 255, 0.22);
}

@media (max-width: 767px) {
    .haoyi-region-grid {
        grid-template-columns: 1fr;
    }

    .haoyi-region-select {
        min-height: 56px;
        padding: 0 18px;
        font-size: 17px;
        border-radius: 18px;
    }

    .haoyi-region-panel .layui-form-select .layui-input {
        height: 56px;
        padding: 0 42px 0 18px;
        border-radius: 18px;
        font-size: 17px;
    }

    .haoyi-region-panel .layui-form-select dl {
        max-height: 56vh;
    }

    .haoyi-region-panel .layui-form-select dl dd,
    .haoyi-region-panel .layui-form-select dl dt {
        line-height: 46px;
        font-size: 16px;
    }

    .haoyi-region-tip {
        font-size: 14px;
    }

    .region-picker-wrap .city-picker-span {
        min-height: 56px;
        line-height: 55px !important;
        border-radius: 18px;
    }

    .region-picker-wrap .city-picker-dropdown {
        width: calc(100vw - 48px) !important;
        min-width: 0 !important;
        max-width: calc(100vw - 48px) !important;
    }

    .region-picker-wrap .city-select-wrap {
        border-radius: 18px;
        overflow: hidden;
        box-shadow: 0 16px 40px rgba(24, 46, 94, 0.20);
    }

    .region-picker-wrap .city-select-tab {
        padding: 10px;
        gap: 8px;
    }

    .region-picker-wrap .city-select-tab > a {
        min-height: 38px;
        padding: 0 10px;
        font-size: 13px;
        line-height: 36px;
        border-radius: 12px;
    }

    .region-picker-wrap .city-select-content {
        max-height: 42vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 14px 14px 16px;
    }

    .region-picker-wrap .city-select dt {
        position: static;
        width: auto;
        margin-bottom: 8px;
        line-height: 1.4;
    }

    .region-picker-wrap .city-select dd,
    .region-picker-wrap .city-select.province dd {
        margin-left: 0;
        gap: 8px;
    }

    .region-picker-wrap .city-select a {
        min-height: 32px;
        padding: 0 10px;
        font-size: 13px;
        line-height: 32px;
    }
}

.apply-materials-block {
    display: none;
    background: linear-gradient(135deg, rgba(245, 248, 255, 0.98), rgba(255, 255, 255, 0.98));
}

.apply-materials-grid {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.material-card {
    padding: 16px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 250, 255, 0.96));
    border: 1px solid #e8eef9;
    box-shadow: 0 14px 30px rgba(33, 43, 79, 0.07);
}

.material-card-badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(75, 134, 255, 0.10);
    color: #4b86ff;
    font-size: 12px;
    font-weight: 700;
}

.material-card-head {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.material-card-head strong {
    font-size: 0.96rem;
    color: #253047;
}

.material-upload-status {
    font-size: 12px;
    color: #4f8f67;
    background: rgba(70, 176, 112, 0.10);
    border-radius: 999px;
    padding: 4px 8px;
}

.material-card:not(.is-uploaded) .material-upload-status {
    color: #7d8598;
    background: rgba(125, 133, 152, 0.10);
}

.material-card p {
    margin: 10px 0 0;
    min-height: 46px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

.material-upload-preview {
    margin-top: 12px;
    min-height: 120px;
    border-radius: 16px;
    border: 1px dashed #d7dfef;
    background: #f7f9fd;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.material-upload-preview img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
}

.material-empty {
    color: #a4afc4;
    font-size: 13px;
}

.material-upload-trigger {
    position: relative;
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(75, 134, 255, 0.12), rgba(40, 196, 255, 0.18));
    color: #2b74ff;
    font-weight: 700;
    cursor: pointer;
}

.material-upload-trigger input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    display: block;
}

.apply-submit-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(238, 246, 255, 0.94));
    border: 1px solid rgba(75, 134, 255, 0.12);
    box-shadow: 0 16px 36px rgba(43, 89, 186, 0.09);
}

.apply-submit-copy {
    display: grid;
    gap: 6px;
}

.apply-submit-copy strong {
    color: #1f2a3d;
    font-size: 1rem;
}

.apply-submit-copy span {
    color: var(--muted);
    line-height: 1.7;
    font-size: 13px;
}

.apply-submit-bar .submit-btn {
    min-width: 180px;
    margin: 0;
}

.submit-btn {
    min-height: 52px;
    border-radius: 18px;
    font-size: 1rem;
    font-weight: 800;
}

.detail-shell {
    width: min(1200px, calc(100% - 28px));
    margin: 0 auto;
    padding: 18px 0 28px;
}

.detail-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.74);
    color: var(--text);
    font-weight: 700;
}

.detail-hero {
    margin-top: 16px;
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
    padding: 26px;
}

.detail-cover-stage {
    display: grid;
    gap: 14px;
}

.detail-cover-card {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    border-radius: 28px;
}

.detail-cover-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.detail-cover-card.has-image {
    min-height: 0;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    background: linear-gradient(160deg, rgba(255,255,255,0.98), rgba(246,248,255,0.95));
    border: 1px solid rgba(229, 235, 245, 0.95);
    box-shadow: 0 24px 46px rgba(34, 45, 74, 0.10);
}

.detail-cover-card.has-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
    background: #fff;
}

.detail-cover-card.has-image.operator-unicom,
.detail-cover-card.has-image.operator-mobile,
.detail-cover-card.has-image.operator-telecom,
.detail-cover-card.has-image.operator-broadband,
.detail-cover-card.has-image.operator-custom {
    background: linear-gradient(160deg, rgba(255,255,255,0.98), rgba(246,248,255,0.95));
}

.detail-cover-caption {
    min-height: 48px;
    padding: 0 16px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(226, 232, 242, 0.9);
    color: #687389;
    font-size: 13px;
    font-weight: 700;
}

.detail-main {
    display: grid;
    gap: 16px;
    align-content: start;
}

.detail-hero-topline {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.detail-origin-chip {
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(75, 141, 255, 0.10);
    color: #4168d8;
    font-size: 13px;
    font-weight: 700;
}

.detail-cover-card.operator-unicom {
    background: linear-gradient(145deg, #ffb33f, #ff564a);
}

.detail-cover-card.operator-mobile {
    background: linear-gradient(145deg, #4fb6ff, #3f64ff);
}

.detail-cover-card.operator-telecom {
    background: linear-gradient(145deg, #8f73ff, #5c5ef8);
}

.detail-cover-card.operator-broadband,
.detail-cover-card.operator-custom {
    background: linear-gradient(145deg, #ff8c71, #ff5760);
}

.detail-cover-fallback {
    height: 100%;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
}

.detail-cover-fallback span {
    align-self: flex-start;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.18);
    font-weight: 700;
}

.detail-cover-fallback strong {
    font-size: clamp(3rem, 7vw, 4.8rem);
    line-height: 1;
    letter-spacing: -0.06em;
}

.detail-main h1 {
    margin: 0;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.detail-subtitle {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8;
}

.detail-price-row,
.detail-meta-grid,
.detail-highlight-grid,
.detail-content-grid,
.detail-rule-grid,
.detail-form-grid {
    display: grid;
    gap: 14px;
}

.detail-sales-strip {
    display: grid;
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    gap: 14px;
    align-items: stretch;
}

.detail-main .tag-row {
    margin-top: 2px;
    padding-top: 0;
}

.detail-sales-card,
.detail-sales-note,
.detail-meta-item,
.detail-highlight-item {
    padding: 16px 18px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(247,248,253,0.94));
    border: 1px solid var(--line);
}

.detail-sales-card small,
.detail-sales-note span,
.detail-meta-item span,
.detail-highlight-item span {
    display: block;
    color: var(--muted);
    font-size: 13px;
}

.detail-sales-card strong,
.detail-sales-note strong,
.detail-meta-item strong,
.detail-highlight-item strong {
    display: block;
    margin-top: 8px;
    font-size: 1.15rem;
    line-height: 1.5;
}

.detail-sales-card {
    padding: 18px 20px;
    background: linear-gradient(135deg, rgba(255, 248, 244, 0.98), rgba(255, 255, 255, 0.98));
    border-color: rgba(255, 94, 77, 0.16);
}

.detail-sales-card strong {
    margin-top: 10px;
    color: var(--brand-deep);
    font-size: 2rem;
    line-height: 1;
    letter-spacing: -0.05em;
}

.detail-sales-card span {
    display: block;
    margin-top: 12px;
    color: #6f7890;
    line-height: 1.7;
    font-size: 13px;
}

.detail-sales-note {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.detail-sales-note em {
    margin-top: 10px;
    color: #7b859b;
    line-height: 1.7;
    font-size: 13px;
    font-style: normal;
}

.detail-meta-grid {
    margin-top: 2px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.detail-share-box {
    margin-top: 6px;
    padding: 0;
    border: 0;
    background: transparent;
}

.detail-share-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.detail-content-grid {
    margin-top: 24px;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
    align-items: start;
}

.detail-order-strip {
    position: static;
    width: 100%;
    margin-top: 24px;
    padding: 24px 26px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px) auto;
    gap: 18px;
    align-items: center;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.76);
    box-shadow: 0 22px 52px rgba(28, 39, 68, 0.18);
}

.detail-order-spacer {
    display: none;
}

.detail-order-copy h2 {
    margin: 14px 0 0;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    line-height: 1.15;
}

.detail-order-mobile-summary {
    display: none;
}

.detail-order-copy p {
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.8;
}

.detail-order-kpis {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.detail-order-button {
    min-width: 180px;
}

.detail-highlight-grid {
    margin-top: 6px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.detail-rule-grid {
    margin-top: 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.detail-summary {
    margin-top: 20px;
    padding: 20px 22px;
    border-radius: 24px;
    background: #f7f9fd;
    border: 1px solid #edf1f6;
}

.detail-summary h3 {
    margin: 0;
    font-size: 1.1rem;
}

.detail-summary p {
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.9;
}

.detail-media-section {
    margin-top: 24px;
    padding-top: 6px;
}

.detail-media-head {
    margin-bottom: 16px;
}

.detail-copy-list,
.detail-gallery {
    display: grid;
    gap: 16px;
}

.detail-copy-card {
    padding: 18px 20px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(247, 249, 253, 0.98), rgba(255, 255, 255, 0.95));
    border: 1px solid #edf1f6;
}

.detail-copy-card p {
    margin: 0;
    color: #4e586f;
    line-height: 1.95;
}

.detail-gallery {
    margin-top: 16px;
}

.detail-gallery-item {
    margin: 0;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid #edf1f6;
    background: #fff;
    box-shadow: 0 16px 36px rgba(32, 43, 71, 0.08);
}

.detail-gallery-item img {
    width: 100%;
    display: block;
}

.detail-process-card {
    min-height: 0;
}

.detail-process-card .process-list {
    display: grid;
    gap: 16px;
}

.detail-process-card .process-item {
    background: linear-gradient(135deg, rgba(247, 249, 253, 0.98), rgba(241, 244, 251, 0.95));
}

.detail-apply-section {
    margin-top: 24px;
    padding: 28px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,249,255,0.95));
}

.detail-apply-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 560px);
    gap: 18px;
    align-items: start;
}

.detail-apply-intro h2 {
    margin: 14px 0 0;
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    line-height: 1.12;
}

.detail-apply-intro p {
    margin: 14px 0 0;
    color: var(--muted);
    line-height: 1.9;
    font-size: 1rem;
}

.detail-apply-kpis {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.detail-form-card {
    position: static;
    margin-top: 22px;
    padding: 24px;
    border-radius: 28px;
    background: linear-gradient(135deg, #f8faff, #ffffff);
    border: 1px solid #edf1f6;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.detail-form-card .apply-head h3 {
    margin: 0;
    font-size: 1.45rem;
}

.detail-form-card .apply-head p {
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.8;
}

.detail-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.detail-form-full {
    width: 100%;
}

.detail-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 6px;
}

.detail-form-tips {
    display: grid;
    gap: 8px;
    min-width: 0;
}

.detail-form-tips strong {
    font-size: 1rem;
}

.detail-form-tips span {
    color: var(--muted);
    line-height: 1.8;
}

.detail-form-footer .submit-btn {
    min-width: 220px;
    flex-shrink: 0;
}

@media (max-width: 1120px) {
    .hero-main,
    .dual-grid,
    .category-grid,
    .detail-hero,
    .detail-content-grid,
    .detail-order-strip {
        grid-template-columns: 1fr;
    }

    .category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 860px) {
    .site-shell {
        width: min(var(--max-width), calc(100% - 12px));
        padding-top: 8px;
    }

    .hero-panel,
    .section-card {
        border-radius: 26px;
    }

    .detail-cover-card.has-image {
        aspect-ratio: 1 / 1;
        padding: 6px;
    }

    .haoka-detail-page {
        padding-bottom: 0;
    }

    .detail-shell {
        padding-bottom: 24px;
    }

    .haoka-detail-page .apply-dialog {
        left: 8px;
        right: 8px;
        top: 8px;
        bottom: 8px;
        width: auto;
        max-height: none;
        padding: 18px 16px 20px;
        transform: translateY(20px);
    }

    .haoka-detail-page .apply-modal.is-open .apply-dialog {
        transform: translateY(0);
    }

    .haoka-detail-v2 .apply-dialog {
        left: 8px;
        right: 8px;
        top: 8px;
        bottom: 8px;
        width: auto;
        max-height: none;
        padding: 18px 16px 20px;
        transform: translateY(20px);
    }

    .haoka-detail-v2 .apply-modal.is-open .apply-dialog {
        transform: translateY(0);
    }

    .hero-topbar,
    .hero-main,
    .package-card,
    .form-grid,
    .apply-summary,
    .apply-materials-grid,
    .detail-sales-strip,
    .detail-meta-grid,
    .detail-highlight-grid,
    .detail-rule-grid,
    .detail-form-grid,
    .detail-order-kpis {
        grid-template-columns: 1fr;
    }

    .detail-hero,
    .detail-content-grid {
        display: flex;
        flex-direction: column;
    }

    .detail-hero {
        padding: 18px;
        gap: 18px;
    }

    .detail-main {
        gap: 14px;
    }

    .detail-info-card,
    .detail-process-card,
    .detail-cover-stage {
        width: 100%;
        min-width: 0;
    }

    .detail-form-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .apply-section {
        padding: 16px;
        border-radius: 20px;
    }

    .apply-head-steps {
        gap: 8px;
    }

    .apply-submit-bar {
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
    }

    .apply-submit-bar .submit-btn {
        width: 100%;
        min-width: 0;
    }

    .detail-form-footer .submit-btn {
        min-width: 0;
        width: 100%;
    }

    .detail-content-grid {
        gap: 16px;
    }

    .detail-info-card,
    .detail-process-card {
        min-height: 0;
        height: auto;
    }

    .detail-order-strip {
        position: fixed;
        left: 8px;
        right: 8px;
        bottom: calc(8px + env(safe-area-inset-bottom, 0px));
        width: auto;
        margin-top: 0;
        padding: 12px 12px 12px 14px;
        gap: 12px;
        transform: none;
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .detail-order-spacer {
        display: block;
        height: calc(146px + env(safe-area-inset-bottom, 0px));
    }

    .detail-order-button {
        width: auto;
        min-width: 144px;
        min-height: 54px;
        padding: 0 24px;
        font-size: 1rem;
        box-shadow: 0 14px 28px rgba(58, 90, 255, 0.26);
        background: linear-gradient(135deg, #2e6cff, #533dff);
    }

    .detail-order-copy,
    .detail-order-kpis {
        display: none;
    }

    .detail-order-mobile-summary {
        min-width: 0;
        display: grid;
        gap: 6px;
        flex: 1;
    }

    .detail-order-mobile-status {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        color: #3ca26a;
        font-size: 0.84rem;
        font-weight: 700;
    }

    .detail-order-mobile-price {
        display: grid;
        gap: 2px;
        min-width: 0;
    }

    .detail-order-mobile-price strong {
        color: #ef3d3d;
        font-size: 2rem;
        line-height: 1;
        letter-spacing: -0.04em;
    }

    .detail-order-mobile-price span {
        color: #7d8598;
        font-size: 0.82rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .hero-city,
    .hero-service {
        min-height: 46px;
    }

    .hero-service {
        width: 46px;
    }

    .hero-copy {
        padding: 6px 2px 0;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .package-card {
        padding: 14px;
    }

    .package-cover {
        min-height: 150px;
    }

    .package-cover.has-image {
        min-height: 0;
        height: auto;
        padding: 0;
        background: #fff;
        overflow: hidden;
    }

    .package-cover.has-image img {
        position: static;
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .package-header {
        flex-direction: column;
    }

    .package-price {
        text-align: left;
    }
}

@media (max-width: 640px) {
    .hero-panel {
        padding: 14px;
    }

    .hero-topbar {
        grid-template-columns: 1fr 46px;
        gap: 10px;
    }

    .hero-city {
        display: none;
    }

    .hero-search {
        grid-column: 1 / 2;
        min-height: 48px;
        padding-left: 14px;
    }

    .hero-search button {
        min-width: 76px;
        height: 36px;
    }

    .quick-nav {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .quick-nav a:last-child {
        grid-column: 1 / -1;
    }

    .section-card {
        padding: 18px;
    }

    .section-head {
        flex-direction: column;
        margin-bottom: 14px;
    }

    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .category-item {
        padding: 16px 12px;
    }

    .category-icon {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }

    .package-meta span,
    .tag {
        font-size: 11px;
    }

    .package-footer {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .apply-btn {
        width: 100%;
        justify-self: stretch;
    }

    .process-item {
        grid-template-columns: 56px 1fr;
        padding: 14px;
    }

    .process-index {
        width: 56px;
        height: 56px;
        border-radius: 18px;
    }

    .support-contact {
        flex-direction: column;
        align-items: flex-start;
    }

    .support-contact img {
        width: 90px;
        height: 90px;
    }

    .apply-dialog {
        right: 50%;
        bottom: 10px;
        transform: translate(50%, 20px);
        width: calc(100% - 14px);
        padding: 18px;
    }

    .apply-modal.is-open .apply-dialog {
        transform: translate(50%, 0);
    }
}

/* 2026-04 visual refresh inspired by hff66.cn */
:root {
    --bg: #f5f7fb;
    --panel: #ffffff;
    --panel-strong: #ffffff;
    --text: #23283a;
    --muted: #6e7891;
    --line: rgba(28, 39, 67, 0.08);
    --shadow: 0 18px 40px rgba(20, 31, 58, 0.08);
    --brand: #f04695;
    --brand-deep: #db347f;
    --accent-purple: #7f6bff;
    --accent-blue: #1e73be;
    --accent-orange: #ff8e3c;
    --success: #24b36b;
    --max-width: 1200px;
}

body {
    background:
        radial-gradient(circle at 12% 8%, rgba(240, 70, 149, 0.10), transparent 20%),
        radial-gradient(circle at 86% 4%, rgba(30, 115, 190, 0.10), transparent 18%),
        linear-gradient(180deg, #fbfcff 0%, #f5f7fb 45%, #f7f8fc 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: radial-gradient(rgba(30, 115, 190, 0.07) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.45;
    pointer-events: none;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.16), transparent 70%);
}

.site-shell,
.detail-shell {
    width: min(var(--max-width), calc(100% - 24px));
}

.site-shell {
    padding: 18px 0 60px;
}

.hero-panel,
.section-card,
.detail-order-strip,
.detail-hero {
    background: #fff;
    border: 1px solid rgba(223, 229, 242, 0.92);
    box-shadow: 0 16px 36px rgba(34, 47, 82, 0.08);
    backdrop-filter: none;
}

.hero-panel {
    border-radius: 30px;
    padding: 18px 22px 26px;
}

.hero-panel::before {
    background:
        radial-gradient(circle at 6% 12%, rgba(240, 70, 149, 0.11), transparent 24%),
        radial-gradient(circle at 92% 10%, rgba(30, 115, 190, 0.12), transparent 25%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.98));
}

.hero-topbar {
    grid-template-columns: auto auto 1fr auto;
    gap: 12px;
    align-items: center;
}

.hero-brand {
    min-height: 56px;
    padding: 0 18px 0 12px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.95));
    border: 1px solid rgba(225, 232, 243, 0.92);
    box-shadow: 0 10px 24px rgba(30, 47, 92, 0.06);
}

.hero-brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 900;
    font-size: 18px;
    background: linear-gradient(135deg, #fa4c9b, #6d65ff);
    box-shadow: 0 10px 18px rgba(240, 70, 149, 0.24);
}

.hero-brand-copy {
    display: grid;
    gap: 3px;
}

.hero-brand-copy strong {
    font-size: 16px;
    line-height: 1.1;
}

.hero-brand-copy small {
    color: var(--muted);
    line-height: 1.1;
}

.hero-city,
.hero-service,
.hero-search,
.quick-nav a {
    background: #fff;
    border: 1px solid rgba(225, 232, 243, 0.92);
    box-shadow: 0 10px 20px rgba(26, 39, 70, 0.05);
}

.hero-city,
.hero-service {
    color: var(--accent-blue);
}

.hero-search {
    min-height: 56px;
    border-radius: 18px;
}

.hero-search button,
.hero-btn-primary,
.apply-btn,
.submit-btn,
.detail-order-button {
    background: linear-gradient(135deg, #ff7a59, #f04695);
    box-shadow: 0 14px 28px rgba(240, 70, 149, 0.22);
}

.hero-main {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 430px);
    gap: 26px;
    margin-top: 24px;
}

.hero-copy {
    padding: 12px 6px 6px 2px;
}

.hero-badge,
.section-tip,
.tag,
.tag.hot {
    border-radius: 999px;
    font-weight: 700;
}

.hero-badge {
    background: rgba(240, 70, 149, 0.10);
    color: var(--brand-deep);
}

.apply-dialog .hero-badge {
    background: linear-gradient(135deg, rgba(75, 134, 255, 0.12), rgba(40, 196, 255, 0.16));
    color: #2d6dff;
    box-shadow: inset 0 0 0 1px rgba(75, 134, 255, 0.08);
}

.apply-dialog .submit-btn,
.apply-submit-bar .submit-btn {
    background: linear-gradient(135deg, #4b86ff, #24c4ff);
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(75, 134, 255, 0.24);
}

.apply-dialog .submit-btn:hover,
.apply-dialog .submit-btn:focus,
.apply-submit-bar .submit-btn:hover,
.apply-submit-bar .submit-btn:focus {
    background: linear-gradient(135deg, #437dff, #1fbaff);
    color: #ffffff;
}

.hero-copy h1 {
    margin-top: 16px;
    font-size: clamp(2.3rem, 4vw, 3.8rem);
}

.hero-copy p {
    max-width: 760px;
    font-size: 1.02rem;
}

.hero-stats {
    grid-template-columns: 1fr 1fr;
}

.stats-card {
    min-height: 132px;
    border-radius: 24px;
    box-shadow: 0 20px 36px rgba(31, 47, 91, 0.14);
}

.quick-nav {
    gap: 10px;
    margin-top: 18px;
}

.quick-nav a {
    min-height: 42px;
    color: #44506a;
    font-size: 14px;
}

.section-card {
    border-radius: 28px;
    padding: 24px;
}

.section-head h2,
.detail-media-head h2,
.detail-summary h3 {
    position: relative;
    padding-left: 16px;
}

.section-head h2::before,
.detail-media-head h2::before,
.detail-summary h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.2em;
    width: 5px;
    height: 1.1em;
    border-radius: 999px;
    background: linear-gradient(180deg, #ff7a59, #f04695);
    box-shadow: 0 0 0 4px rgba(240, 70, 149, 0.08);
}

.category-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.category-item {
    border-radius: 22px;
    box-shadow: 0 14px 28px rgba(27, 39, 68, 0.06);
}

.site-shell .package-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.site-shell .package-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 14px;
    border-radius: 24px;
    box-shadow: 0 14px 30px rgba(28, 39, 67, 0.07);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.site-shell .package-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 42px rgba(28, 39, 67, 0.12);
}

.site-shell .package-cover {
    min-height: 208px;
    border-radius: 18px;
    padding: 18px;
}

.site-shell .package-header {
    flex-direction: column;
    gap: 10px;
}

.site-shell .package-header h3 {
    font-size: 1.16rem;
    line-height: 1.45;
}

.site-shell .package-header p {
    font-size: 13px;
    line-height: 1.7;
    margin-top: 6px;
}

.site-shell .package-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    text-align: left;
}

.site-shell .package-price strong {
    font-size: 1.9rem;
}

.site-shell .package-price span {
    margin-top: 0;
}

.site-shell .package-meta {
    gap: 8px;
}

.site-shell .package-meta span {
    min-height: 34px;
    padding: 0 12px;
    background: #f7f9fd;
    font-size: 12px;
}

.site-shell .package-footer {
    grid-template-columns: 1fr;
    gap: 12px;
}

.site-shell .apply-btn {
    width: 100%;
    justify-self: stretch;
}

.dual-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 18px;
}

.process-item,
.service-card {
    background: linear-gradient(180deg, #ffffff, #f8fafe);
    border: 1px solid rgba(229, 235, 245, 0.95);
}

.support-contact {
    background: linear-gradient(135deg, rgba(30, 115, 190, 0.07), rgba(240, 70, 149, 0.08));
    border: 1px solid rgba(218, 227, 242, 0.95);
}

.footer-cta {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: linear-gradient(135deg, #1f2b53, #2d4f8e 55%, #f04695 130%);
    border-color: transparent;
    box-shadow: 0 26px 50px rgba(34, 48, 92, 0.18);
}

.footer-cta::before {
    content: "";
    position: absolute;
    inset: -20% auto auto -10%;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    filter: blur(4px);
}

.footer-cta > * {
    position: relative;
    z-index: 1;
}

.footer-cta h2,
.footer-cta p {
    color: #fff;
}

.footer-cta .hero-btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.18);
}

.detail-shell {
    padding: 22px 0 44px;
}

.detail-back {
    background: #fff;
    border: 1px solid rgba(225, 232, 243, 0.92);
    box-shadow: 0 12px 22px rgba(25, 37, 66, 0.06);
}

.detail-hero {
    border-radius: 30px;
    grid-template-columns: 400px minmax(0, 1fr);
}

.detail-sales-card,
.detail-sales-note,
.detail-meta-item,
.detail-highlight-item,
.detail-summary,
.detail-copy-card,
.detail-process-card .process-item {
    background: linear-gradient(180deg, #ffffff, #f8fafe);
    border: 1px solid rgba(229, 235, 245, 0.95);
}

.detail-order-strip {
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.98));
}

.detail-origin-chip {
    background: rgba(30, 115, 190, 0.08);
    color: var(--accent-blue);
}

.apply-dialog {
    border-radius: 30px;
}

.site-floatbar {
    position: fixed;
    right: 18px;
    bottom: 24px;
    z-index: 40;
    display: grid;
    gap: 10px;
}

.float-tool {
    width: 64px;
    min-height: 64px;
    padding: 8px 6px;
    display: grid;
    place-items: center;
    gap: 4px;
    border-radius: 20px;
    background: rgba(31, 43, 83, 0.92);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 14px 28px rgba(17, 25, 48, 0.18);
    font-size: 11px;
    line-height: 1.1;
}

.float-tool i {
    font-size: 18px;
}

.float-tool-top {
    background: linear-gradient(135deg, #ff7a59, #f04695);
}

@media (max-width: 1199px) {
    .site-shell .package-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .detail-hero {
        grid-template-columns: 340px minmax(0, 1fr);
    }
}

@media (max-width: 860px) {
    .hero-topbar {
        grid-template-columns: 1fr auto;
    }

    .hero-brand {
        grid-column: 1 / -1;
    }

    .hero-city {
        display: none;
    }

    .hero-main,
    .dual-grid,
    .detail-hero,
    .detail-content-grid,
    .detail-sales-strip,
    .detail-order-strip {
        grid-template-columns: 1fr;
    }

    .detail-order-kpis {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .site-shell .package-list {
        grid-template-columns: 1fr;
    }

    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-brand-copy small {
        display: none;
    }

    .site-floatbar {
        right: 10px;
        bottom: 12px;
    }

    .float-tool {
        width: 56px;
        min-height: 56px;
        border-radius: 18px;
    }
}

.portal-stage {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    border-radius: 28px;
    background: linear-gradient(135deg, #232e59, #355ca0 55%, #f04695 130%);
    box-shadow: 0 24px 48px rgba(30, 43, 82, 0.18);
}

.portal-stage-cover,
.portal-stage-mask,
.portal-stage-copy {
    position: absolute;
    inset: 0;
}

.portal-stage-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portal-stage-fallback {
    width: 100%;
    height: 100%;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
}

.portal-stage-fallback span {
    align-self: flex-start;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.16);
    font-weight: 700;
}

.portal-stage-fallback strong {
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    line-height: 1;
    letter-spacing: -0.06em;
}

.portal-stage-mask {
    background:
        linear-gradient(135deg, rgba(20, 27, 53, 0.86), rgba(37, 61, 111, 0.42) 48%, rgba(240, 70, 149, 0.40)),
        linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
}

.portal-stage-copy {
    z-index: 2;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
}

.portal-stage-copy .hero-badge {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.portal-stage-copy h1 {
    margin: 16px 0 0;
    color: #fff;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 1.14;
}

.portal-stage-copy p {
    margin: 14px 0 0;
    max-width: 700px;
    color: rgba(255, 255, 255, 0.88);
}

.portal-stage-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.portal-stage-meta span {
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

.portal-main {
    display: grid;
    gap: 14px;
    min-width: 0;
}

.portal-sidebar {
    display: grid;
    gap: 14px;
    align-content: start;
    min-width: 0;
}

.portal-side-top {
    display: grid;
    gap: 12px;
}

.portal-side-bottom {
    min-height: 104px;
}

.portal-mini-list {
    display: grid;
    gap: 12px;
}

.portal-mini-list-inline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.portal-mini-card {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff, #f8fafe);
    border: 1px solid rgba(227, 233, 244, 0.95);
    box-shadow: 0 12px 24px rgba(26, 39, 68, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.portal-mini-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 32px rgba(26, 39, 68, 0.10);
}

.portal-mini-cover {
    position: relative;
    min-height: 104px;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(145deg, #ffb25f, #ff6d54);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 14px;
}

.portal-mini-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portal-mini-cover.has-image {
    padding: 0;
}

.portal-mini-rank {
    align-self: flex-start;
    min-height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.16);
    font-size: 12px;
    font-weight: 700;
}

.portal-mini-cover strong {
    font-size: 1.8rem;
    line-height: 1;
}

.portal-mini-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.portal-mini-copy h3 {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
}

.portal-mini-copy p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

.portal-mini-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 12px;
    color: #74809a;
    font-size: 12px;
}

.portal-mini-meta span {
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    background: #f3f7fd;
}

.portal-mini-meta em {
    font-style: normal;
}

.filter-section .package-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.package-card-extra {
    display: none;
}

.package-index-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    background: rgba(19, 25, 43, 0.55);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    z-index: 2;
}

.home-more-row {
    margin-top: 18px;
    display: flex;
    justify-content: center;
}

.home-more-btn {
    min-width: 180px;
}

.ranking-list {
    display: grid;
    gap: 12px;
}

.portal-ranking-list {
    max-height: 620px;
    overflow: auto;
    padding-right: 4px;
}

.ranking-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 14px;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff, #f8fafe);
    border: 1px solid rgba(227, 233, 244, 0.95);
    box-shadow: 0 10px 22px rgba(28, 39, 67, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ranking-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 28px rgba(28, 39, 67, 0.10);
}

.ranking-no {
    min-width: 56px;
    height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff7a59, #f04695);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

.ranking-copy {
    min-width: 0;
}

.ranking-copy strong {
    display: block;
    font-size: 14px;
    line-height: 1.55;
}

.ranking-copy p {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 12px;
}

.ranking-views {
    color: var(--accent-blue);
    font-size: 13px;
    font-weight: 800;
}

@media (max-width: 860px) {
    .portal-mini-list-inline,
    .filter-section .package-list {
        grid-template-columns: 1fr;
    }

    .portal-mini-card {
        grid-template-columns: 96px minmax(0, 1fr);
    }

    .portal-ranking-list {
        max-height: none;
        overflow: visible;
        padding-right: 0;
    }
}

/* Homepage portal redesign based on layui layout */
.haoka-home-v2 {
    background: #f3f5fb;
    color: #2b3245;
}

.haoka-home-v2-shell {
    min-height: 100vh;
}

.haoka-home-v2 .layui-container {
    width: 1200px;
}

.haoka-home-v2 .v2-hero {
    position: relative;
    min-height: 530px;
    padding: 18px 0 88px;
    background: linear-gradient(135deg, #a58d85 0%, #5b647f 24%, #233f89 58%, #162d63 100%);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.haoka-home-v2 .v2-hero::before,
.haoka-home-v2 .v2-hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(14px);
    opacity: 0.34;
    pointer-events: none;
}

.haoka-home-v2 .v2-hero::before {
    width: 340px;
    height: 340px;
    left: -80px;
    top: 40px;
    background: rgba(255, 230, 215, 0.12);
}

.haoka-home-v2 .v2-hero::after {
    width: 280px;
    height: 280px;
    right: -40px;
    bottom: 60px;
    background: rgba(84, 126, 255, 0.16);
}

.haoka-home-v2 .v2-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 14% 10%, rgba(255, 243, 236, 0.14), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(9, 19, 44, 0.16));
}

.haoka-home-v2 .v2-hero-container {
    position: relative;
    z-index: 2;
}

.haoka-home-v2 .v2-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #fff;
}

.haoka-home-v2 .v2-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.haoka-home-v2 .v2-brand:hover {
    color: #fff;
}

.haoka-home-v2 .v2-brand-mark,
.haoka-home-v2 .v2-profile-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #57d676, #2faa44);
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(31, 123, 64, 0.32);
}

.haoka-home-v2 .v2-brand-copy strong,
.haoka-home-v2 .v2-brand-copy small {
    display: block;
}

.haoka-home-v2 .v2-brand-copy strong {
    font-size: 18px;
    line-height: 1.2;
}

.haoka-home-v2 .v2-brand-copy small {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
}

.haoka-home-v2 .v2-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.haoka-home-v2 .v2-nav a,
.haoka-home-v2 .v2-action-pill,
.haoka-home-v2 .v2-city-pill {
    color: rgba(255, 255, 255, 0.92);
    font-size: 13px;
}

.haoka-home-v2 .v2-nav a:hover,
.haoka-home-v2 .v2-nav a.is-active,
.haoka-home-v2 .v2-action-pill:hover {
    color: #fff;
}

.haoka-home-v2 .v2-top-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.haoka-home-v2 .v2-city-pill,
.haoka-home-v2 .v2-action-pill {
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(6px);
}

.haoka-home-v2 .v2-hero-copy {
    max-width: 760px;
    margin: 82px auto 0;
    text-align: center;
    color: #fff;
}

.haoka-home-v2 .v2-hero-badge {
    min-height: 32px;
    padding: 0 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.18);
    font-size: 13px;
    font-weight: 600;
}

.haoka-home-v2 .v2-hero-copy h1 {
    margin: 22px 0 0;
    color: #fff;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
}

.haoka-home-v2 .v2-hero-copy p {
    margin: 14px auto 0;
    max-width: 620px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 1.85;
}

.haoka-home-v2 .v2-search {
    width: 100%;
    max-width: 640px;
    margin: 28px auto 0;
    padding: 10px 14px 10px 18px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 32px rgba(14, 23, 52, 0.16);
}

.haoka-home-v2 .v2-search i {
    color: #8b96ae;
    font-size: 16px;
}

.haoka-home-v2 .v2-search input {
    flex: 1;
    min-width: 0;
    height: 42px;
    border: 0;
    background: transparent;
    color: #303a55;
    font-size: 14px;
}

.haoka-home-v2 .v2-search input:focus {
    outline: none;
}

.haoka-home-v2 .v2-search button {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #497dff, #60a9ff);
    color: #fff;
    box-shadow: 0 10px 20px rgba(73, 125, 255, 0.3);
}

.haoka-home-v2 .v2-search-tags {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.haoka-home-v2 .v2-hero-tag {
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.88);
    color: #51607e;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 6px 14px rgba(28, 38, 68, 0.08);
}

.haoka-home-v2 .v2-entry-wrap {
    position: relative;
    margin-top: 25px;
    z-index: 5;
}

.haoka-home-v2 .v2-entry-row {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 15px;
    width: 100%;
}

.haoka-home-v2 .v2-entry-cell {
    min-width: 0;
    width: 100%;
}

.haoka-home-v2 .v2-entry-row > div {
    width: auto;
}

.haoka-home-v2 .v2-entry-card {
    height: 100%;
    padding: 16px 18px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 14px 28px rgba(28, 42, 76, 0.12);
    border: 1px solid rgba(235, 240, 248, 0.95);
}

.haoka-home-v2 .v2-entry-card:hover {
    transform: translateY(-3px);
}

.haoka-home-v2 .v2-entry-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    background: linear-gradient(135deg, #ff8c63, #ff5d95);
    flex-shrink: 0;
}

.haoka-home-v2 .v2-entry-copy {
    min-width: 0;
}

.haoka-home-v2 .v2-entry-copy strong,
.haoka-home-v2 .v2-entry-copy p,
.haoka-home-v2 .v2-entry-copy span {
    display: block;
}

.haoka-home-v2 .v2-entry-copy strong {
    color: #38435c;
    font-size: 15px;
}

.haoka-home-v2 .v2-entry-copy p {
    margin: 4px 0 0;
    color: #66748e;
    font-size: 12px;
    line-height: 1.45;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.haoka-home-v2 .v2-entry-copy span {
    margin-top: 6px;
    color: #f36b4f;
    font-size: 12px;
}

.haoka-home-v2 .v2-notice-bar,
.haoka-home-v2 .v2-channel-wrap,
.haoka-home-v2 .v2-main {
    position: relative;
    z-index: 3;
}

.haoka-home-v2 .v2-notice-card {
    margin-top: 16px;
    padding: 10px 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff7f8;
    border: 1px solid #ffe3e7;
}

.haoka-home-v2 .v2-notice-text {
    color: #ea5874;
    font-size: 13px;
}

.haoka-home-v2 .v2-channel-wrap {
    margin-top: 16px;
}

.haoka-home-v2 .v2-channel-card {
    width: 100%;
    min-height: 80px;
    padding: 10px 10px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(236, 239, 245, 0.98);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    background: #ffffff;
    box-shadow: 0 10px 22px rgba(28, 39, 68, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.55);
    -webkit-backdrop-filter: blur(16px) saturate(135%);
    backdrop-filter: blur(16px) saturate(135%);
    text-align: center;
}

.haoka-home-v2 .v2-channel-card::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 9px;
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.18) 24%, rgba(255, 255, 255, 0) 46%),
        linear-gradient(135deg, rgba(246, 249, 255, 0.12) 0%, rgba(255, 255, 255, 0) 62%, rgba(236, 241, 249, 0.16) 100%);
    opacity: 1;
    pointer-events: none;
}

.haoka-home-v2 .v2-channel-card > * {
    position: relative;
    z-index: 1;
}

.haoka-home-v2 .v2-channel-card:hover,
.haoka-home-v2 .v2-channel-card.is-active {
    transform: translateY(-3px);
    border-color: rgba(222, 228, 239, 1);
    box-shadow: 0 14px 26px rgba(28, 39, 68, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.haoka-home-v2 .v2-entry-wrap .v2-channel-card {
    min-height: 84px;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 12px 24px rgba(28, 39, 68, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.haoka-home-v2 .v2-channel-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 22px;
    margin: 0 auto 4px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 1;
    line-height: 1;
}

.haoka-home-v2 .v2-channel-icon.is-nationwide {
    background-image: url("../img/yys/quanguo.png");
}

.haoka-home-v2 .v2-channel-icon.is-mobile {
    background-image: url("../img/yys/china_mobile.png");
}

.haoka-home-v2 .v2-channel-icon.is-telecom {
    background-image: url("../img/yys/china_dianxin.png");
}

.haoka-home-v2 .v2-channel-icon.is-unicom {
    background-image: url("../img/yys/china_liantong.png");
}

.haoka-home-v2 .v2-channel-icon.is-guangdian {
    background-image: url("../img/yys/china_guangdian.png");
}

.haoka-home-v2 .v2-channel-icon.is-broadband {
    background-image: url("../img/yys/kuandai.png");
}

.haoka-home-v2 .v2-channel-icon.is-default {
    background-image: none;
}

.haoka-home-v2 .v2-channel-title {
    color: #3f4d6c;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0;
}

.haoka-home-v2 .v2-channel-card small {
    color: #8b95ab;
    font-size: 12px;
}

.haoka-home-v2 .v2-main {
    padding: 20px 0 36px;
}

.haoka-home-v2 .v2-feature-banner,
.haoka-home-v2 .v2-feed-card,
.haoka-home-v2 .v2-side-card,
.haoka-home-v2 .v2-bottom-banner,
.haoka-home-v2 .v2-info-card,
.haoka-home-v2 .v2-side-foot,
.haoka-home-v2 .v2-mini-card {
    border: 0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(28, 39, 68, 0.08);
}

.haoka-home-v2 .v2-feature-banner {
    padding: 0;
    background: transparent;
    border-radius: 18px;
}

.haoka-home-v2 .v2-feature-panel {
    position: relative;
    display: block;
    min-height: 208px;
    padding: 16px 20px 14px;
    border-radius: 18px;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(90deg, #2f6fff 0%, #4c86ff 30%, #8a96b3 67%, #f3a23a 100%);
}

.haoka-home-v2 .v2-feature-panel::before {
    content: "";
    position: absolute;
    right: -30px;
    top: -18px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.12), rgba(255,255,255,0));
    pointer-events: none;
}

.haoka-home-v2 .v2-feature-panel::after {
    content: "";
    position: absolute;
    right: 28px;
    top: 18px;
    width: 170px;
    height: 170px;
    border-radius: 28px;
    border: 16px solid rgba(255,255,255,0.08);
    transform: rotate(12deg);
    pointer-events: none;
}

.haoka-home-v2 .v2-feature-panel-head,
.haoka-home-v2 .v2-feature-panel-stats,
.haoka-home-v2 .v2-feature-panel-foot {
    position: relative;
    z-index: 1;
}

.haoka-home-v2 .v2-feature-panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.haoka-home-v2 .v2-feature-panel-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 800;
}

.haoka-home-v2 .v2-feature-panel-brand em {
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    font-style: normal;
    font-size: 12px;
    font-weight: 700;
    background: rgba(255,255,255,0.18);
}

.haoka-home-v2 .v2-feature-panel-share {
    min-width: 56px;
    min-height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.24);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12);
}

.haoka-home-v2 .v2-feature-panel h2 {
    position: relative;
    z-index: 1;
    margin: 10px 0 0;
    max-width: 72%;
    font-size: 24px;
    line-height: 1.32;
    color: #fff;
}

.haoka-home-v2 .v2-feature-panel-stats {
    margin-top: 12px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
}

.haoka-home-v2 .v2-feature-panel-flow {
    display: inline-flex;
    align-items: flex-end;
    gap: 4px;
    font-size: 74px;
    font-weight: 900;
    line-height: 0.88;
    letter-spacing: -2px;
    text-shadow: 0 8px 22px rgba(0,0,0,0.08);
}

.haoka-home-v2 .v2-feature-panel-flow span {
    line-height: 0.88;
}

.haoka-home-v2 .v2-feature-panel-flow small {
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
    opacity: 0.92;
}

.haoka-home-v2 .v2-feature-panel-price {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 6px;
    white-space: nowrap;
}

.haoka-home-v2 .v2-feature-panel-price small,
.haoka-home-v2 .v2-feature-panel-price span {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.haoka-home-v2 .v2-feature-panel-price strong {
    font-size: 44px;
    line-height: 0.95;
    font-weight: 900;
}

.haoka-home-v2 .v2-feature-panel-line {
    position: relative;
    z-index: 1;
    margin-top: 12px;
    height: 1px;
    background: rgba(255,255,255,0.18);
}

.haoka-home-v2 .v2-feature-panel-foot {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.haoka-home-v2 .v2-feature-panel-tips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.haoka-home-v2 .v2-feature-panel-tips span {
    min-height: 36px;
    padding: 0 16px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.14);
    font-size: 13px;
    font-weight: 700;
}

.haoka-home-v2 .v2-feature-panel-pill {
    min-height: 38px;
    padding: 0 18px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #274f9f;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 12px 22px rgba(22, 45, 99, 0.12);
}

.haoka-home-v2 .v2-mini-section {
    margin-top: 16px;
}

.haoka-home-v2 .v2-mini-card {
    height: 100%;
    background: #fff;
}

.haoka-home-v2 .v2-mini-cover {
    height: 142px;
    padding: 18px;
    background: linear-gradient(135deg, #ffb165, #ff6f64);
    color: #fff;
}

.haoka-home-v2 .v2-mini-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.haoka-home-v2 .v2-mini-cover.has-image {
    padding: 0;
}

.haoka-home-v2 .v2-mini-cover span,
.haoka-home-v2 .v2-mini-cover strong {
    display: block;
}

.haoka-home-v2 .v2-mini-cover strong {
    margin-top: 48px;
    font-size: 28px;
}

.haoka-home-v2 .v2-mini-body {
    padding: 14px 16px 18px;
}

.haoka-home-v2 .v2-mini-body h3 {
    margin: 0;
    font-size: 16px;
    line-height: 1.55;
}

.haoka-home-v2 .v2-mini-body p {
    margin: 8px 0 0;
    color: #76839e;
    line-height: 1.7;
}

.haoka-home-v2 .v2-feed-card {
    margin-top: 16px;
    padding: 18px;
    background: #fff;
}

.haoka-home-v2 .v2-feed-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 16px;
}

.haoka-home-v2 .v2-feed-head strong {
    margin-left: 10px;
    font-size: 18px;
    color: #2e3750;
}

.haoka-home-v2 .v2-feed-summary {
    color: #76839e;
    font-size: 13px;
}

.haoka-home-v2 .package-search-empty {
    padding: 26px 18px 20px;
    border-radius: 14px;
    text-align: center;
    background: linear-gradient(180deg, #f8fbff, #ffffff);
    border: 1px dashed #d9e6fb;
}

.haoka-home-v2 .package-search-empty strong {
    display: block;
    color: #33415f;
    font-size: 18px;
}

.haoka-home-v2 .package-search-empty p {
    margin: 10px 0 14px;
    color: #7c89a4;
    font-size: 13px;
}

.haoka-home-v2 .v2-operator-tabs {
    margin-bottom: 26px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-bottom: 4px;
}

.haoka-home-v2 .v2-operator-tab {
    min-width: 108px;
    min-height: 38px;
    padding: 0 18px;
    border: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f3f6fb;
    color: #4d5b77;
    font-size: 14px;
    font-weight: 700;
    box-shadow: none;
}

.haoka-home-v2 .v2-operator-tab.is-active,
.haoka-home-v2 .v2-operator-tab:hover {
    background: linear-gradient(135deg, #4b86ff, #69aaff);
    color: #fff;
    box-shadow: 0 12px 22px rgba(75, 134, 255, 0.24);
}

.haoka-home-v2 .v2-package-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.haoka-home-v2 .v2-package-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #edf1f7;
    box-shadow: 0 12px 20px rgba(25, 35, 66, 0.06);
}

.haoka-home-v2 .v2-package-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 28px rgba(25, 35, 66, 0.12);
}

.haoka-home-v2 .v2-package-cover {
    position: relative;
    height: auto;
    min-height: 0;
    display: block;
    overflow: hidden;
    padding: 0;
    box-sizing: border-box;
    background: transparent;
}

.haoka-home-v2 .v2-package-cover img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 8px 8px 0 0;
}

.haoka-home-v2 .v2-package-fallback {
    width: 100%;
    height: 100%;
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
}

.haoka-home-v2 .v2-package-fallback span {
    align-self: flex-start;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.16);
    font-size: 12px;
}

.haoka-home-v2 .v2-package-fallback strong {
    font-size: 28px;
    line-height: 1.15;
}

.haoka-home-v2 .v2-package-rank {
    position: absolute;
    top: 12px;
    left: 12px;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #ff7b68, #ff529f);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
}

.haoka-home-v2 .v2-package-body {
    padding: 14px 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.haoka-home-v2 .v2-package-body h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
    min-height: calc(1.5em * 2);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.haoka-home-v2 .v2-package-body h3 a {
    color: #2d354b;
}

.haoka-home-v2 .v2-package-body p {
    display: none;
}

.haoka-home-v2 .v2-package-meta,
.haoka-home-v2 .v2-package-desc {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.haoka-home-v2 .v2-package-desc span {
    color: #6f7b95;
    font-size: 12px;
}

.haoka-home-v2 .v2-package-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.haoka-home-v2 .v2-package-price strong {
    color: #ff6f48;
    font-size: 26px;
    line-height: 1;
}

.haoka-home-v2 .v2-package-price strong.free-text {
    font-size: 22px;
}

.haoka-home-v2 .v2-package-price small {
    color: #7a859d;
    font-size: 12px;
}

.haoka-home-v2 .home-more-row {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.haoka-home-v2 #package-pagination {
    min-height: 38px;
    width: 100%;
    display: flex;
    justify-content: center;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
    padding: 0 6px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.haoka-home-v2 #package-pagination::-webkit-scrollbar {
    display: none;
}

.haoka-home-v2 .layui-laypage {
    margin: 0;
    display: inline-flex;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
    min-width: max-content;
}

.haoka-home-v2 .layui-laypage a,
.haoka-home-v2 .layui-laypage span {
    min-width: 34px;
    height: 34px;
    padding: 0 8px;
    border-radius: 10px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1;
}

.haoka-home-v2 .layui-laypage .layui-laypage-prev,
.haoka-home-v2 .layui-laypage .layui-laypage-next {
    min-width: 44px;
    padding: 0 8px;
}

.haoka-home-v2 .layui-laypage .layui-laypage-curr {
    padding: 0;
    overflow: hidden;
    position: relative;
}

.haoka-home-v2 .layui-laypage .layui-laypage-curr em {
    font-style: normal;
}

.haoka-home-v2 .layui-laypage .layui-laypage-curr em:not(.layui-laypage-em) {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.haoka-home-v2 .layui-laypage .layui-laypage-curr .layui-laypage-em {
    border-radius: 10px;
}

.haoka-home-v2 .v2-side-card {
    margin-bottom: 16px;
    padding: 18px 16px;
    background: #fff;
}

.haoka-home-v2 .v2-side-head {
    margin-bottom: 16px;
}

.haoka-home-v2 .v2-profile-card {
    text-align: center;
    background: linear-gradient(180deg, #f9f1d5, #ffffff 42%);
}

.haoka-home-v2 .v2-profile-avatar {
    margin: 10px auto 0;
    width: 76px;
    height: 76px;
    font-size: 36px;
}

.haoka-home-v2 .v2-profile-card h3 {
    margin: 14px 0 0;
    font-size: 20px;
}

.haoka-home-v2 .v2-profile-card p {
    margin: 10px 0 0;
    color: #78849c;
}

.haoka-home-v2 .v2-profile-actions {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.haoka-home-v2 .v2-qr-card {
    background: linear-gradient(180deg, #f0fbff, #ffffff);
}

.haoka-home-v2 .v2-qr-box {
    padding: 12px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #e6eff8;
}

.haoka-home-v2 .v2-qr-box img {
    width: 100%;
    display: block;
    border-radius: 8px;
}

.haoka-home-v2 .v2-qr-fallback {
    min-height: 170px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4da3ff, #88d2ff);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.haoka-home-v2 .v2-side-copy {
    margin-top: 14px;
}

.haoka-home-v2 .v2-side-copy strong {
    display: block;
    font-size: 15px;
}

.haoka-home-v2 .v2-side-copy p {
    margin: 8px 0 0;
    color: #77839d;
    line-height: 1.75;
}

.haoka-home-v2 .v2-rank-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.haoka-home-v2 .v2-rank-item {
    padding: 12px;
    border-radius: 12px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    background: #fff6f0;
    border: 1px solid #ffe0ce;
}

.haoka-home-v2 .v2-rank-no {
    min-width: 54px;
    height: 26px;
    padding: 0 8px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff855d, #ff5b80);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.haoka-home-v2 .v2-rank-copy strong {
    display: block;
    color: #2d354b;
    font-size: 14px;
    line-height: 1.6;
}

.haoka-home-v2 .v2-rank-copy p {
    margin: 4px 0 0;
    color: #8a95ad;
    font-size: 12px;
}

.haoka-home-v2 .v2-bottom-row {
    margin-top: 8px;
}

.haoka-home-v2 .v2-bottom-banner {
    padding: 20px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    background: linear-gradient(135deg, #3f69ff, #3e87ff 42%, #ffae46);
    color: #fff;
}

.haoka-home-v2 .v2-bottom-banner-copy strong {
    display: block;
    font-size: 24px;
    line-height: 1.3;
}

.haoka-home-v2 .v2-bottom-banner-copy p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.75;
}

.haoka-home-v2 .v2-bottom-banner-actions {
    display: flex;
    gap: 12px;
}

.haoka-detail-v2 .v2-detail-main {
    padding-top: 18px;
}

.haoka-detail-v2 .v2-article-card,
.haoka-detail-v2 .v2-related-card {
    padding: 20px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 12px 24px rgba(25, 35, 66, 0.06);
}

.haoka-detail-v2 .v2-related-card {
    margin-top: 18px;
}

.haoka-detail-v2 .v2-article-head h1 {
    margin: 12px 0 0;
    color: #24304c;
    font-size: 34px;
    line-height: 1.28;
}

.haoka-detail-v2 .v2-article-subtitle {
    margin: 12px 0 0;
    color: #6c7893;
    font-size: 15px;
    line-height: 1.9;
}

.haoka-detail-v2 .v2-article-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.haoka-detail-v2 .v2-article-chip {
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f4f7fd;
    color: #58709d;
    font-size: 12px;
    font-weight: 600;
}

.haoka-detail-v2 .v2-article-stage {
    margin-top: 18px;
    display: grid;
    grid-template-columns: minmax(320px, 430px) minmax(0, 1fr);
    gap: 16px;
}

.haoka-detail-v2 .v2-article-cover {
    min-height: 420px;
    max-height: 420px;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #f6f9ff, #edf3ff);
}

.haoka-detail-v2 .v2-article-cover img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.haoka-detail-v2 .v2-article-cover-fallback {
    width: 100%;
    height: 100%;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
}

.haoka-detail-v2 .v2-article-cover-fallback span {
    align-self: flex-start;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.16);
}

.haoka-detail-v2 .v2-article-cover-fallback strong {
    font-size: 42px;
    line-height: 1.05;
}

.haoka-detail-v2 .v2-article-summary {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.haoka-detail-v2 .v2-article-service-card,
.haoka-detail-v2 .v2-article-fact,
.haoka-detail-v2 .v2-article-intro-card,
.haoka-detail-v2 .v2-article-copy-card,
.haoka-detail-v2 .v2-article-process-item {
    background: linear-gradient(180deg, #ffffff, #f8fafe);
    border: 1px solid rgba(229, 235, 245, 0.95);
}

.haoka-detail-v2 .v2-article-service-card {
    min-height: 78px;
    padding: 14px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: linear-gradient(135deg, #fff7f3, #ffffff);
    border-color: rgba(255, 126, 91, 0.26);
}

.haoka-detail-v2 .v2-article-service-copy {
    min-width: 0;
}

.haoka-detail-v2 .v2-article-service-card span,
.haoka-detail-v2 .v2-article-fact span {
    display: block;
    color: #8090ab;
    font-size: 12px;
}

.haoka-detail-v2 .v2-article-service-card strong {
    display: block;
    color: #ff6e48;
    font-size: 24px;
    line-height: 1;
    white-space: nowrap;
}

.haoka-detail-v2 .v2-article-service-card p {
    margin: 7px 0 0;
    color: #66748f;
    font-size: 13px;
    line-height: 1.55;
}

.haoka-detail-v2 .v2-article-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.haoka-detail-v2 .v2-article-fact {
    padding: 12px 14px;
    border-radius: 8px;
}

.haoka-detail-v2 .v2-article-fact strong {
    display: block;
    margin-top: 6px;
    color: #2e3954;
    font-size: 15px;
    line-height: 1.45;
}

.haoka-detail-v2 .v2-article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.haoka-detail-v2 .v2-article-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.haoka-detail-v2 .v2-detail-action-btn {
    width: 100%;
    min-width: 0;
    height: 40px;
    padding: 0 12px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    text-align: center;
    line-height: 1;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 600;
    transition: all .2s ease;
}

.haoka-detail-v2 .v2-detail-action-primary {
    background: linear-gradient(135deg, #3497ff, #2c84ee);
    color: #fff;
    border: 1px solid #3497ff;
    box-shadow: 0 10px 20px rgba(52, 151, 255, 0.18);
}

.haoka-detail-v2 .v2-detail-action-secondary {
    background: #fff;
    color: #5d6983;
    border: 1px solid #d9e1ee;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.4);
}

.haoka-detail-v2 .v2-article-section {
    margin-top: 20px;
}

.haoka-detail-v2 .v2-article-section-head {
    margin-bottom: 14px;
}

.haoka-detail-v2 .v2-article-section-head h2 {
    margin: 0;
    color: #283350;
    font-size: 22px;
}

.haoka-detail-v2 .v2-article-section-head p {
    margin: 8px 0 0;
    color: #7c88a2;
    line-height: 1.8;
}

.haoka-detail-v2 .v2-article-intro {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.haoka-detail-v2 .v2-package-info-panel {
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(46, 129, 255, 0.20);
    background:
        radial-gradient(circle at top right, rgba(58, 151, 255, 0.18), transparent 36%),
        linear-gradient(180deg, #ffffff, #f6faff);
    box-shadow: 0 18px 46px rgba(40, 116, 220, 0.12);
}

.haoka-detail-v2 .v2-package-info-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(46, 129, 255, 0.14);
    background: linear-gradient(135deg, rgba(30, 118, 255, 0.10), rgba(110, 185, 255, 0.10));
}

.haoka-detail-v2 .v2-package-info-top span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(28, 119, 255, 0.12);
    color: #1d6fe8;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.haoka-detail-v2 .v2-package-info-top strong {
    color: #26314f;
    font-size: 18px;
    line-height: 1.45;
    text-align: right;
}

.haoka-detail-v2 .v2-package-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 6px 18px 18px;
}

.haoka-detail-v2 .v2-package-info-item {
    min-width: 0;
    padding: 14px 12px;
    border-bottom: 1px dashed rgba(122, 157, 211, 0.24);
    background: transparent;
}

.haoka-detail-v2 .v2-package-info-item.is-wide {
    grid-column: 1 / -1;
}

.haoka-detail-v2 .v2-package-info-item:nth-last-child(1),
.haoka-detail-v2 .v2-package-info-item:nth-last-child(2):not(.is-wide) {
    border-bottom-color: transparent;
}

.haoka-detail-v2 .v2-package-info-item span {
    display: block;
    margin-bottom: 7px;
    color: #5273a5;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.haoka-detail-v2 .v2-package-info-item strong {
    display: block;
    color: #2c3753;
    font-size: 15px;
    line-height: 1.75;
    word-break: break-word;
}

.haoka-detail-v2 .v2-article-intro-card,
.haoka-detail-v2 .v2-article-copy-card {
    padding: 16px 18px;
    border-radius: 16px;
}

.haoka-detail-v2 .v2-article-intro-card h3 {
    margin: 0;
    color: #2d3854;
    font-size: 18px;
}

.haoka-detail-v2 .v2-article-intro-card p,
.haoka-detail-v2 .v2-article-copy-card p {
    margin: 10px 0 0;
    color: #697791;
    line-height: 1.9;
}

.haoka-detail-v2 .v2-article-copy-list {
    display: grid;
    gap: 12px;
}

.haoka-detail-v2 .v2-article-gallery {
    margin-top: 14px;
    display: grid;
    gap: 12px;
}

.haoka-detail-v2 .v2-article-gallery-item {
    margin: 0;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid #edf1f7;
    background: #fff;
}

.haoka-detail-v2 .v2-article-gallery-item img {
    width: 100%;
    display: block;
}

.haoka-detail-v2 .v2-article-process {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.haoka-detail-v2 .v2-article-process-item {
    padding: 16px;
    border-radius: 16px;
}

.haoka-detail-v2 .v2-article-process-item span {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff7a59, #f04695);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.haoka-detail-v2 .v2-article-process-item strong {
    display: block;
    margin-top: 12px;
    color: #2f3953;
    font-size: 16px;
}

.haoka-detail-v2 .v2-article-process-item p {
    margin: 10px 0 0;
    color: #707d97;
    line-height: 1.75;
}

.haoka-detail-v2 .v2-related-grid {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.haoka-detail-v2 .v2-related-item {
    overflow: hidden;
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff, #f8fafe);
    border: 1px solid rgba(229, 235, 245, 0.95);
    box-shadow: 0 10px 22px rgba(26, 39, 68, 0.05);
}

.haoka-detail-v2 .v2-related-cover {
    min-height: 180px;
    background: linear-gradient(135deg, #4b86ff, #6bb6ff);
}

.haoka-detail-v2 .v2-related-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.haoka-detail-v2 .v2-related-copy {
    padding: 14px;
}

.haoka-detail-v2 .v2-related-copy strong {
    display: block;
    color: #2d3750;
    line-height: 1.55;
}

.haoka-detail-v2 .v2-related-copy p {
    margin: 8px 0 0;
    color: #75819a;
    font-size: 13px;
    line-height: 1.65;
}

.detail-fixed-cta {
    display: none;
    position: fixed;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    z-index: 96;
    width: min(920px, calc(100% - 24px));
}

.detail-fixed-cta-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(224, 231, 243, 0.96);
    box-shadow: 0 14px 32px rgba(23, 34, 63, 0.14);
    backdrop-filter: blur(12px);
}

.detail-fixed-cta-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(75, 134, 255, 0.08), rgba(255, 170, 64, 0.08));
    pointer-events: none;
}

.detail-fixed-cta-copy,
.detail-fixed-cta .layui-btn {
    position: relative;
    z-index: 1;
}

.detail-fixed-cta-copy span {
    display: block;
    color: #8290aa;
    font-size: 12px;
}

.detail-fixed-cta-copy em {
    display: block;
    margin-top: 6px;
    color: #7f8798;
    font-size: 15px;
    font-style: normal;
    line-height: 1.25;
}

.detail-fixed-cta-copy strong {
    display: block;
    margin-top: 4px;
    color: #ff6e48;
    font-size: 24px;
    line-height: 1;
}

.detail-fixed-cta-copy .detail-fixed-cta-status,
.detail-fixed-cta-copy .detail-fixed-cta-status i {
    color: #24a167;
}

.detail-fixed-cta .layui-btn {
    min-width: 220px;
    height: 42px;
    padding: 0 18px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.haoka-home-v2 .v2-info-card,
.haoka-home-v2 .v2-side-foot {
    margin-top: 16px;
    padding: 18px 20px;
    background: #fff;
}

.haoka-home-v2 .v2-section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eef2f7;
}

.haoka-home-v2 .v2-section-title strong {
    color: #2d354b;
    font-size: 18px;
}

.haoka-home-v2 .v2-section-title span {
    color: #91a0ba;
    font-size: 12px;
}

.haoka-home-v2 .v2-info-list {
    margin: 14px 0 0;
    padding: 0 0 0 18px;
    color: #5f6c87;
    line-height: 2;
}

.haoka-home-v2 .v2-side-foot-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.haoka-home-v2 .v2-side-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-radius: 14px;
}

.haoka-home-v2 .v2-side-foot-brand p {
    margin: 6px 0 0;
    color: #75829d;
}

.haoka-home-v2 .v2-side-foot-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 18px;
    color: #5f6c87;
    font-size: 14px;
}

.haoka-home-v2 .site-floatbar {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 98;
}

.haoka-home-v2 .float-tool {
    width: 54px;
    min-height: 54px;
    padding: 8px 0;
    border: 0;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: #fff;
    color: #65728d;
    box-shadow: 0 12px 24px rgba(28, 39, 68, 0.12);
}

.haoka-home-v2 .float-tool:hover {
    color: #3e83ff;
}

.haoka-home-v2 .float-tool i {
    font-size: 18px;
}

.haoka-home-v2 .float-tool span {
    font-size: 12px;
}

@media (max-width: 1240px) {
    .haoka-home-v2 .layui-container {
        width: auto;
        margin: 0 16px;
    }

    .haoka-home-v2 .v2-entry-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .haoka-home-v2 .v2-package-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .haoka-home-v2 .v2-topbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .haoka-home-v2 .v2-nav,
    .haoka-home-v2 .v2-top-actions {
        width: 100%;
    }

    .haoka-home-v2 .v2-feature-main {
        grid-template-columns: 1fr;
    }

    .haoka-home-v2 .v2-bottom-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .haoka-home-v2 .v2-side-foot {
        flex-direction: column;
        align-items: flex-start;
    }

    .haoka-home-v2 .v2-side-foot-contact {
        justify-content: flex-start;
    }

    .haoka-home-v2 .site-floatbar {
        right: 14px;
    }

    .haoka-detail-v2 .v2-article-stage,
    .haoka-detail-v2 .v2-article-intro,
    .haoka-detail-v2 .v2-article-process,
    .haoka-detail-v2 .v2-related-grid {
        grid-template-columns: 1fr;
    }

    .haoka-detail-v2 .v2-article-cover {
        min-height: 340px;
        max-height: 340px;
    }

    .detail-fixed-cta {
        width: min(720px, calc(100% - 24px));
    }
}

@media (max-width: 767px) {
    .haoka-home-v2 .layui-container {
        width: auto;
        margin: 0;
        padding-left: 4px;
        padding-right: 4px;
    }

    .haoka-home-v2 .layui-row.layui-col-space20 {
        margin: 0;
    }

    .haoka-home-v2 .layui-row.layui-col-space20 > [class*="layui-col-"] {
        padding: 0;
    }

    .haoka-home-v2 .v2-hero {
        min-height: 290px;
        padding: 10px 0 30px;
        border-radius: 0;
    }

    .haoka-home-v2 .v2-topbar {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .haoka-home-v2 .v2-nav {
        display: none;
    }

    .haoka-home-v2 .v2-top-actions {
        width: auto;
        gap: 8px;
    }

    .haoka-home-v2 .v2-city-pill {
        display: none;
    }

    .haoka-home-v2 .v2-action-pill {
        min-width: 34px;
        min-height: 34px;
        padding: 0 10px;
        font-size: 0;
    }

    .haoka-home-v2 .v2-action-pill::before {
        content: "\f002";
        font-family: FontAwesome;
        font-size: 14px;
        line-height: 1;
    }

    .haoka-home-v2 .v2-brand-mark {
        width: 34px;
        height: 34px;
        font-size: 18px;
    }

    .haoka-home-v2 .v2-brand-copy strong {
        font-size: 15px;
    }

    .haoka-home-v2 .v2-brand-copy small {
        font-size: 11px;
    }

    .haoka-home-v2 .v2-hero-copy {
        margin-top: 28px;
    }

    .haoka-home-v2 .v2-hero-copy h1 {
        font-size: 22px;
        line-height: 1.3;
    }

    .haoka-home-v2 .v2-hero-copy p {
        max-width: 290px;
        font-size: 12px;
        line-height: 1.6;
    }

    .haoka-home-v2 .v2-hero-badge {
        min-height: 28px;
        padding: 0 10px;
        font-size: 11px;
    }

    .haoka-home-v2 .v2-search {
        max-width: 100%;
        margin-top: 16px;
        padding: 6px 8px 6px 12px;
        border-radius: 18px;
    }

    .haoka-home-v2 .v2-search input {
        height: 34px;
        font-size: 13px;
    }

    .haoka-home-v2 .v2-search button {
        width: 34px;
        height: 34px;
    }

    .haoka-home-v2 .v2-search-tags {
        margin-top: 12px;
        gap: 6px;
    }

    .haoka-home-v2 .v2-hero-tag {
        min-height: 24px;
        padding: 0 8px;
        font-size: 10px;
    }

    .haoka-home-v2 .v2-entry-wrap {
        margin-top: 25px;
    }

    .haoka-home-v2 .v2-entry-row {
        display: grid;
        gap: 8px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .haoka-home-v2 .v2-entry-cell,
    .haoka-home-v2 .v2-entry-row > div {
        width: auto;
        max-width: none;
        min-width: 0;
        margin: 0;
        padding: 0;
    }

    .haoka-home-v2 .v2-entry-wrap .v2-channel-card {
        min-height: 70px;
        padding: 8px 8px;
        border-radius: 8px;
        box-shadow: 0 8px 16px rgba(28, 39, 68, 0.08);
    }

    .haoka-home-v2 .v2-channel-icon {
        width: 30px;
        height: 18px;
        margin-bottom: 2px;
    }

    .haoka-home-v2 .v2-entry-wrap .v2-channel-title {
        font-size: 15px;
        line-height: 1.2;
        letter-spacing: 0;
    }

    .haoka-home-v2 .v2-entry-wrap .v2-channel-card small {
        margin-top: 3px;
        font-size: 10px;
        line-height: 1.2;
    }

    .haoka-home-v2 .v2-notice-card {
        margin-top: 10px;
        padding: 10px 10px;
        gap: 8px;
        border-radius: 12px;
    }

    .haoka-home-v2 .v2-notice-text {
        font-size: 12px;
        line-height: 1.5;
    }

    .haoka-home-v2 .v2-main {
        padding: 10px 0 22px;
    }

    .haoka-detail-v2 .v2-detail-main {
        padding-top: 10px;
    }

    .haoka-detail-v2 .v2-article-card,
    .haoka-detail-v2 .v2-related-card {
        padding: 12px;
        border-radius: 14px;
    }

    .haoka-detail-v2 .v2-article-head h1 {
        font-size: 22px;
    }

    .haoka-detail-v2 .v2-article-subtitle {
        font-size: 13px;
        line-height: 1.7;
    }

    .haoka-detail-v2 .v2-article-stage,
    .haoka-detail-v2 .v2-article-facts,
    .haoka-detail-v2 .v2-article-intro,
    .haoka-detail-v2 .v2-package-info-grid,
    .haoka-detail-v2 .v2-article-process,
    .haoka-detail-v2 .v2-related-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .haoka-detail-v2 .v2-package-info-grid {
        gap: 0;
        padding: 4px 14px 14px;
    }

    .haoka-detail-v2 .v2-package-info-item,
    .haoka-detail-v2 .v2-package-info-item:nth-last-child(2):not(.is-wide) {
        border-bottom-color: rgba(122, 157, 211, 0.24);
    }

    .haoka-detail-v2 .v2-package-info-item:last-child {
        border-bottom-color: transparent;
    }

    .haoka-detail-v2 .v2-article-cover {
        min-height: 0;
        max-height: none;
        border-radius: 12px;
        background: transparent;
        align-items: flex-start;
    }

    .haoka-detail-v2 .v2-article-cover.has-image img {
        width: 100%;
        height: auto;
        max-height: none;
        object-fit: contain;
    }

    .haoka-detail-v2 .v2-article-cover-fallback {
        padding: 14px;
    }

    .haoka-detail-v2 .v2-article-cover-fallback strong {
        font-size: 30px;
    }

    .haoka-detail-v2 .v2-article-service-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .haoka-detail-v2 .v2-article-service-card strong {
        font-size: 22px;
    }

    .haoka-detail-v2 .v2-package-info-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .haoka-detail-v2 .v2-package-info-top strong {
        text-align: left;
        font-size: 16px;
    }

    .haoka-detail-v2 .v2-article-actions {
        gap: 8px;
        grid-template-columns: 1fr;
    }

    .haoka-detail-v2 .v2-detail-action-btn {
        width: 100%;
        min-width: 0;
        height: 36px;
        padding: 0 10px;
        border-radius: 8px;
        font-size: 12px;
    }

    .haoka-detail-v2 .v2-related-cover {
        min-height: 140px;
    }

    .detail-fixed-cta {
        display: block;
        width: calc(100% - 16px);
        bottom: calc(8px + env(safe-area-inset-bottom, 0px));
    }

    .detail-fixed-cta-inner {
        padding: 12px 14px;
        gap: 12px;
        border-radius: 24px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 251, 255, 0.96));
        border: 1px solid rgba(236, 239, 248, 0.96);
        box-shadow: 0 18px 40px rgba(32, 48, 84, 0.16);
        backdrop-filter: blur(20px);
    }

    .detail-fixed-cta-copy {
        flex: 1;
        min-width: 0;
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .detail-fixed-cta-copy span {
        color: #24a167;
        font-size: 14px;
        font-weight: 700;
        line-height: 1;
    }

    .detail-fixed-cta-status {
        display: inline-flex !important;
        align-items: center;
        gap: 8px;
    }

    .detail-fixed-cta-status i {
        font-size: 16px;
    }

    .detail-fixed-cta-copy em {
        font-size: 13px;
    }

    .detail-fixed-cta .layui-btn {
        min-width: 168px;
        height: 58px;
        padding: 0 18px;
        border-radius: 999px;
        font-size: 15px;
        font-weight: 700;
        border: none;
        background: linear-gradient(135deg, #2d7dff, #4a35ff);
        box-shadow: 0 14px 28px rgba(54, 90, 255, 0.28);
    }

    .haoka-detail-v2 .detail-floatbar {
        bottom: 70px;
    }

    .haoka-home-v2 .v2-feature-banner {
        overflow: hidden;
        padding: 0;
        border-radius: 12px;
    }

    .haoka-home-v2 .v2-feature-panel {
        min-height: 132px;
        padding: 8px 10px 8px;
        border-radius: 10px;
    }

    .haoka-home-v2 .v2-feature-panel::after {
        right: 8px;
        top: 10px;
        width: 76px;
        height: 76px;
        border-width: 8px;
        border-radius: 18px;
    }

    .haoka-home-v2 .v2-feature-panel-brand {
        gap: 8px;
        font-size: 13px;
    }

    .haoka-home-v2 .v2-feature-panel-brand em {
        min-height: 20px;
        padding: 0 8px;
        font-size: 10px;
    }

    .haoka-home-v2 .v2-feature-panel-share {
        min-width: 38px;
        min-height: 38px;
        font-size: 9px;
    }

    .haoka-home-v2 .v2-feature-panel h2 {
        margin-top: 6px;
        max-width: 80%;
        font-size: 14px;
        line-height: 1.3;
    }

    .haoka-home-v2 .v2-feature-panel-stats {
        margin-top: 6px;
        gap: 6px;
    }

    .haoka-home-v2 .v2-feature-panel-flow {
        font-size: 38px;
        letter-spacing: -2px;
    }

    .haoka-home-v2 .v2-feature-panel-flow small {
        font-size: 14px;
    }

    .haoka-home-v2 .v2-feature-panel-price {
        gap: 2px;
    }

    .haoka-home-v2 .v2-feature-panel-price small,
    .haoka-home-v2 .v2-feature-panel-price span {
        font-size: 12px;
    }

    .haoka-home-v2 .v2-feature-panel-price strong {
        font-size: 20px;
    }

    .haoka-home-v2 .v2-feature-panel-line {
        margin-top: 6px;
    }

    .haoka-home-v2 .v2-feature-panel-foot {
        margin-top: 6px;
        gap: 6px;
    }

    .haoka-home-v2 .v2-feature-panel-tips {
        gap: 6px;
    }

    .haoka-home-v2 .v2-feature-panel-tips span {
        min-height: 22px;
        padding: 0 7px;
        font-size: 9px;
    }

    .haoka-home-v2 .v2-feature-panel-pill {
        min-height: 24px;
        padding: 0 9px;
        border-radius: 9px;
        font-size: 10px;
    }

    .haoka-home-v2 .v2-feed-card {
        margin-top: 12px;
        padding: 4px;
        border-radius: 14px;
    }

    .haoka-home-v2 .v2-feed-head {
        flex-direction: row;
        align-items: center;
        margin-bottom: 10px;
    }

    .haoka-home-v2 .v2-feed-head strong {
        margin-left: 6px;
        font-size: 15px;
    }

    .haoka-home-v2 .v2-feed-summary {
        font-size: 11px;
    }

    .haoka-home-v2 .v2-operator-tabs {
        margin-bottom: 12px;
        flex-wrap: nowrap;
        gap: 8px;
        overflow-x: auto;
        padding-bottom: 2px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .haoka-home-v2 .v2-operator-tabs::-webkit-scrollbar {
        display: none;
    }

    .haoka-home-v2 .v2-operator-tab {
        min-width: 86px;
        min-height: 32px;
        padding: 0 12px;
        font-size: 12px;
        white-space: nowrap;
    }

    .haoka-home-v2 .v2-package-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 4px;
    }

    .haoka-home-v2 .v2-package-card {
        border-radius: 7px;
        box-shadow: 0 8px 18px rgba(25, 35, 66, 0.08);
    }

    .haoka-home-v2 .v2-package-cover {
        height: auto;
        min-height: 0;
        border-radius: 8px 8px 0 0;
        padding: 0;
        background: transparent;
    }

    .haoka-home-v2 .v2-package-cover.has-image img {
        width: 100%;
        height: auto;
        margin: 0;
        max-width: 100%;
        transform: none;
        object-fit: contain;
        background: transparent;
        display: block;
        border-radius: 8px 8px 0 0;
    }

    .haoka-home-v2 .v2-package-rank {
        top: 8px;
        left: 8px;
        min-height: 22px;
        padding: 0 7px;
        font-size: 10px;
    }

    .haoka-home-v2 .v2-package-body {
        padding: 7px 6px 8px;
        gap: 4px;
    }

    .haoka-home-v2 .v2-package-body h3 {
        font-size: 12px;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .haoka-home-v2 .v2-package-body p {
        display: none;
    }

    .haoka-home-v2 .v2-package-meta,
    .haoka-home-v2 .v2-package-desc {
        display: none;
    }

    .haoka-home-v2 .v2-package-footer {
        margin-top: 2px;
        align-items: stretch;
        justify-content: stretch;
        gap: 0;
    }

    .haoka-home-v2 .v2-package-price {
        display: none;
    }

    .haoka-home-v2 .v2-package-footer .layui-btn,
    .haoka-home-v2 .v2-package-footer .hero-btn,
    .haoka-home-v2 .v2-package-footer a,
    .haoka-home-v2 .v2-package-footer button {
        min-height: 32px;
        height: 32px;
        padding: 0 10px;
        border-radius: 10px;
        font-size: 12px;
        line-height: 32px;
    }

    .haoka-home-v2 .v2-package-footer .layui-btn {
        width: 100%;
        height: 28px;
        line-height: 28px;
        padding: 0 10px;
        font-size: 11px;
        border-radius: 8px;
    }

    .haoka-home-v2 .home-more-row {
        margin-top: 14px;
    }

    .haoka-home-v2 #package-pagination {
        width: 100%;
        justify-content: center;
        padding-bottom: 2px;
    }

    .haoka-home-v2 .layui-laypage a,
    .haoka-home-v2 .layui-laypage span {
        min-width: 28px;
        height: 28px;
        padding: 0 6px;
        margin: 0 2px;
        font-size: 11px;
    }

    .haoka-home-v2 .layui-laypage .layui-laypage-prev,
    .haoka-home-v2 .layui-laypage .layui-laypage-next {
        min-width: 38px;
        padding: 0 6px;
    }

    .haoka-home-v2 .v2-side-card {
        display: none;
    }

    .haoka-home-v2 .v2-bottom-row {
        margin-top: 4px;
    }

    .haoka-home-v2 .v2-bottom-banner,
    .haoka-home-v2 .v2-info-card,
    .haoka-home-v2 .v2-side-foot {
        margin-top: 12px;
        padding: 10px;
        border-radius: 10px;
    }

    .haoka-home-v2 .v2-bottom-banner-copy strong {
        font-size: 16px;
    }

    .haoka-home-v2 .v2-bottom-banner-copy p,
    .haoka-home-v2 .v2-info-list {
        font-size: 12px;
        line-height: 1.65;
    }

    .haoka-home-v2 .v2-side-foot-brand {
        gap: 10px;
    }

    .haoka-home-v2 .v2-side-foot-contact {
        gap: 10px;
        font-size: 12px;
    }

    .haoka-home-v2 .site-floatbar {
        right: 4px;
        bottom: 78px;
        top: auto;
        transform: none;
        gap: 6px;
    }

    .haoka-home-v2 .float-tool {
        width: 38px;
        min-height: 38px;
        padding: 4px 0;
        border-radius: 10px;
    }

    .haoka-home-v2 .float-tool i {
        font-size: 14px;
    }

    .haoka-home-v2 .float-tool span {
        font-size: 9px;
    }
}
