/* 首页：门户式布局
   ① 首屏 banner + 右侧自营/工具  ② 免责声明条  ③ 推荐商品条  ④ 收录平台密排网格
   目标是一屏尽量多给信息，所以网格用小格子、行高压紧。 */

/* 宽度不单独写死，跟随 .home-container 的 1440px，
   这样首页正文和顶栏、广告条永远对齐 */
.hp { padding: 18px 28px 56px; }

/* 作者样式里的 display 会盖掉浏览器默认的 [hidden]{display:none}，
   分类筛选靠 hidden 属性控制显隐，这里必须显式兜底 */
.hp [hidden] { display: none !important; }

/* ---------- ① 首屏 ---------- */
.hp-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 16px;
    align-items: stretch;
}

.hp-hero {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    min-height: 316px;
}
.hp-slide { display: none; height: 100%; }
.hp-slide.is-on { display: block; }
.hp-slide img { width: 100%; height: 316px; object-fit: cover; display: block; }
.hp-slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: rgba(16, 23, 22, .42);
    color: #fff;
    cursor: pointer;
    opacity: 0;
    transition: opacity .15s;
}
.hp-hero:hover .hp-slide-arrow { opacity: 1; }
.hp-slide-arrow.prev { left: 12px; }
.hp-slide-arrow.next { right: 12px; }
.hp-dots {
    position: absolute;
    left: 0; right: 0; bottom: 12px;
    display: flex;
    justify-content: center;
    gap: 6px;
}
.hp-dots span {
    width: 16px; height: 3px;
    border-radius: 2px;
    background: rgba(255, 255, 255, .5);
    cursor: pointer;
}
.hp-dots span.is-on { background: #fff; }

.hp-hero-blank {
    height: 100%;
    min-height: 316px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 46px;
    background: linear-gradient(135deg, var(--primary) 0%, #163e6f 100%);
    color: #fff;
}
.hp-hero-blank h1 { font-size: 29px; font-weight: 700; line-height: 1.4; letter-spacing: -.3px; }
.hp-hero-blank p { margin-top: 12px; font-size: 14.5px; color: rgba(255, 255, 255, .78); }
.hp-hero-stat { display: flex; gap: 26px; margin-top: 24px; font-size: 13px; color: rgba(255, 255, 255, .72); }
.hp-hero-stat b { font-size: 22px; font-weight: 700; color: #fff; margin-right: 4px; font-variant-numeric: tabular-nums; }
.hp-hero-go {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    align-self: flex-start;
    margin-top: 26px;
    height: 38px;
    padding: 0 18px;
    border-radius: var(--radius-sm);
    background: #fff;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
}

/* 右侧栏 */
.hp-side { display: grid; grid-template-rows: auto minmax(0, 1fr); gap: 12px; min-width: 0; }
.hp-panel {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 16px;
    min-width: 0;
}
.hp-panel-hd {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-light);
}
.hp-panel-hd h2 { font-size: 15px; font-weight: 650; }
.hp-panel-hd span { font-size: 11px; color: #fff; background: var(--accent); padding: 2px 6px; border-radius: 3px; }
.hp-panel-empty { padding: 26px 4px; font-size: 12.5px; line-height: 1.8; color: var(--text-muted); }

.hp-mine-list { list-style: none; margin: 0; padding: 0; }
.hp-mine-list a {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    padding: 9px 6px;
    margin: 0 -6px;
    border-radius: var(--radius-sm);
    border-bottom: 1px solid var(--border-light);
}
.hp-mine-list li:last-child a { border-bottom: 0; }
.hp-mine-list a:hover { background: var(--primary-light); }
.hp-mine-list img, .hp-mine-ph {
    width: 34px; height: 34px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    object-fit: cover;
    display: grid;
    place-items: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    background: var(--primary-light);
}
.hp-mine-txt { min-width: 0; }
.hp-mine-txt strong {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.hp-mine-txt strong em {
    font-style: normal;
    margin-left: 5px;
    font-size: 10.5px;
    font-weight: 600;
    color: var(--accent);
    background: #fbeade;
    padding: 1px 4px;
    border-radius: 2px;
}
.hp-mine-txt small {
    display: block;
    margin-top: 2px;
    font-size: 11.5px;
    color: var(--text-muted);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.hp-mine-price { text-align: right; white-space: nowrap; }
.hp-mine-price b { display: block; font-size: 14px; font-weight: 700; color: var(--accent); }
.hp-mine-price s { font-size: 11px; color: var(--text-muted); }

.hp-tool {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--primary-light);
    border-color: var(--primary-soft);
}
.hp-tool-hd strong { display: block; font-size: 14px; font-weight: 650; color: var(--primary); }
.hp-tool-hd span { display: block; margin-top: 4px; font-size: 11.5px; color: var(--text-secondary); }
.hp-tool-form { display: flex; gap: 7px; margin-top: 11px; }
.hp-tool-form input {
    flex: 1;
    min-width: 0;
    height: 34px;
    padding: 0 10px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg-card);
    font-size: 12.5px;
    outline: 0;
}
.hp-tool-form input:focus { border-color: var(--primary); }
.hp-tool-form button {
    height: 34px;
    padding: 0 15px;
    border: 0;
    border-radius: var(--radius-sm);
    background: var(--primary);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}
.hp-tool-form button:hover { background: var(--primary-hover); }
.hp-tool-links { display: flex; gap: 16px; margin-top: 11px; font-size: 12px; }
.hp-tool-links a { color: var(--text-secondary); }
.hp-tool-links a:hover { color: var(--primary); }

/* ---------- ② 免责声明条 ---------- */
.hp-notice {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 14px;
    padding: 0 16px;
    height: 46px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.hp-notice:hover { border-color: var(--primary); }
.hp-notice-tag {
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    padding-right: 14px;
    border-right: 1px solid var(--border);
}
.hp-notice-txt {
    flex: 1;
    min-width: 0;
    font-size: 13px;
    color: var(--text-secondary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.hp-notice-more { flex-shrink: 0; font-size: 12px; color: var(--text-muted); }

/* ---------- ④ 收录平台网格 ---------- */
.hp-sec-hd {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}
.hp-sec-hd h2 {
    font-size: 17px;
    font-weight: 700;
    padding-left: 11px;
    border-left: 3px solid var(--primary);
    line-height: 1.3;
}
.hp-sec-more { margin-left: auto; font-size: 12.5px; color: var(--text-muted); }
.hp-sec-more:hover { color: var(--primary); }

.hp-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}
.hp-cell {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    align-items: center;
    gap: 11px;
    padding: 12px 13px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}
.hp-cell:hover { border-color: var(--primary); background: var(--primary-light); }
.hp-cell-ico {
    width: 36px; height: 36px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    object-fit: contain;
    background: var(--bg-card);
    display: grid;
    place-items: center;
}
.hp-cell-txt { min-width: 0; }
.hp-cell-txt strong {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.hp-cell-txt small {
    display: block;
    margin-top: 3px;
    font-size: 11.5px;
    line-height: 1.6;
    color: var(--text-muted);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hp a:focus-visible, .hp button:focus-visible, .hp input:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* ---------- 窄屏 ---------- */
@media (max-width: 1180px) {
    .hp-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .hp-top { grid-template-columns: minmax(0, 1fr) 300px; }
}
@media (max-width: 980px) {
    .hp-top { grid-template-columns: minmax(0, 1fr); }
    .hp-side { grid-template-rows: auto auto; }
    .hp-hero, .hp-hero-blank { min-height: 240px; }
    .hp-slide img { height: 240px; }
    .hp-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
    .hp { padding: 14px 16px 44px; }
    .hp-hero, .hp-hero-blank { min-height: 180px; }
    .hp-slide img { height: 180px; }
    .hp-hero-blank { padding: 26px 22px; }
    .hp-hero-blank h1 { font-size: 21px; }
    .hp-hero-blank p { font-size: 13px; }
    .hp-hero-stat { gap: 16px; font-size: 11.5px; margin-top: 16px; }
    .hp-hero-stat b { font-size: 17px; }
    .hp-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
    .hp-cell { padding: 10px; gap: 9px; grid-template-columns: 32px minmax(0, 1fr); }
    .hp-cell-ico { width: 32px; height: 32px; }
    .hp-notice { height: auto; padding: 11px 13px; gap: 10px; }
    .hp-notice-txt { white-space: normal; font-size: 12.5px; line-height: 1.7; }
    .hp-notice-more { display: none; }
    .hp-strip-label strong { font-size: 14px; }
    .hp-sec-hd { gap: 12px; }
    .hp-sec-hd h2 { font-size: 16px; }
    .hp-tool-form input { font-size: 16px; }
}

/* ---------- ⑤ 精选副业 ---------- */
.hp-sh { margin-top: 26px; }
.hp-sec-note {
    font-size: 12.5px;
    color: var(--text-muted);
}
.hp-sh-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 14px;
}
.hp-sh-card {
    display: flex;
    flex-direction: column;
    padding: 16px 17px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}
.hp-sh-card:hover { border-color: var(--primary); background: #f7faff; }
.hp-sh-badge {
    align-self: flex-start;
    padding: 2px 7px;
    border-radius: 3px;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
}
.hp-sh-card h3 {
    margin-top: 10px;
    font-size: 15px;
    font-weight: 650;
    line-height: 1.65;
    color: #232a31;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.hp-sh-card:hover h3 { color: var(--primary); }
.hp-sh-card p {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.85;
    color: #4f555c;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.hp-sh-foot {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: auto;
    padding-top: 13px;
    font-size: 11.5px;
    color: var(--text-muted);
}
.hp-sh-foot img { width: 22px; height: 22px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.hp-sh-author {
    color: var(--text-secondary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.hp-sh-foot time { margin-left: auto; flex-shrink: 0; font-variant-numeric: tabular-nums; }

@media (max-width: 980px) {
    .hp-sh-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
    .hp-sh-grid { grid-template-columns: minmax(0, 1fr); gap: 9px; }
    .hp-sh-card { padding: 13px 14px 12px; }
    .hp-sec-note { display: none; }
}

.hp-ad-tag { font-size: 10px; color: var(--text-muted); }
.hp-ad-empty { width: 100%; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 9px; background: var(--primary-light); border-radius: 9px; color: var(--text-secondary); }
.hp-ad-empty strong { font-size: 16px; font-weight: 500; }
.hp-ad-empty span { font-size: 12px; }
.hp-grid { gap: 14px; }
.hp-cell { min-height: 108px; padding: 16px; grid-template-columns: 44px minmax(0, 1fr); gap: 12px; border-radius: 12px; box-shadow: 0 3px 12px rgba(20, 40, 65, .045); }
.hp-cell-ico { width: 44px; height: 44px; border-radius: 9px; }
.hp-cell-txt strong { font-size: 15px; }
.hp-cell-txt small { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; white-space: normal; margin-top: 5px; font-size: 12px; line-height: 1.65; color: var(--text-secondary); }
@media (max-width: 700px) {
    .hp-strip-label strong { font-size: 16px; }
    .hp-ad-empty { padding: 14px 8px; text-align: center; }
    .hp-ad-empty span { font-size: 11px; }
    .hp-cell { padding: 12px; grid-template-columns: 32px minmax(0, 1fr); gap: 8px; min-height: 108px; }
    .hp-cell-ico { width: 32px; height: 32px; }
    .hp-cell-txt strong { font-size: 13px; }
    .hp-grid { gap: 8px; }
}

/* 浅蓝主题：大面积背景减轻，蓝色仅用于操作与重点 */
.hp-hero-blank { background: #eaf3ff; color: #243f60; }
.hp-hero-blank p { color: #607794; }
.hp-hero-stat { color: #607794; }
.hp-hero-stat b { color: #1d75df; }
.hp-hero-go { background: #3484e5; color: #fff; }
.hp-ad-empty { background: #f6fafe; }
.hp-cell { box-shadow: 0 3px 12px rgba(45, 85, 135, .04); }

/* 展示内容与文章阅读预览 */
.hp-sh-empty { padding: 30px; margin-top: 14px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; color: var(--text-secondary); }
.hp-demo-dialog { position: relative; margin: auto; width: min(560px, calc(100% - 32px)); max-height: 85vh; overflow: auto; padding: 26px 28px 24px; border: 1px solid var(--border); border-radius: 16px; color: var(--text-primary); box-shadow: 0 20px 80px #24324733; }
.hp-demo-dialog::backdrop { background: #182a4766; }
.hp-demo-dialog h2 { font-size: 21px; line-height: 1.5; margin: 0 0 16px; }
.hp-demo-dialog p { font-size: 15px; line-height: 1.9; }
.hp-demo-dialog small { display: block; margin-top: 22px; padding-top: 15px; border-top: 1px solid var(--border); font-size: 12.5px; line-height: 1.8; color: var(--text-secondary); }
/* 关闭按钮从浮动改成绝对定位：float 会挤在标题那一行的行盒里，
   把「居中」的标题顶得偏左，看着就是歪的 */
.hp-demo-close { position: absolute; top: 18px; right: 18px; z-index: 1; border: 1px solid var(--border); background: #fff; color: var(--text-secondary); padding: 5px 12px; border-radius: 6px; font: inherit; font-size: 13px; line-height: 1.5; cursor: pointer; }
.hp-demo-close:hover { border-color: var(--primary); color: var(--primary); }

/* ---------- ③ 广告推广：外框保留，内部固定两行三列 ---------- */
.hp-strip {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    margin-top: 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}
.hp-strip-label {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 9px;
    padding: 22px;
    background: var(--primary-light);
    border-right: 1px solid var(--border);
}
.hp-strip-label strong {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--primary);
    white-space: nowrap;
}
.hp-strip-label > span { font-size: 12px; color: var(--text-muted); }
.hp-strip-label a { font-size: 12px; color: var(--primary); }
.hp-strip-label a:hover { text-decoration: underline; }
.hp-strip-buy {
    align-self: flex-start;
    padding: 6px 14px;
    border: 0;
    border-radius: 6px;
    background: var(--primary);
    color: #fff;
    font: inherit;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}
.hp-strip-buy:hover { background: var(--primary-hover); }

/* 二维码类弹窗：整体居中，标题两侧留出关闭按钮的宽度，保证视觉上真的居中 */
.hp-qr-dialog,
.hp-trial-dialog { text-align: center; }
.hp-qr-dialog h2,
.hp-trial-dialog h2 { padding: 0 58px; }
.hp-qr-dialog p,
.hp-trial-dialog p { font-size: 14px; color: var(--text-secondary); }
.hp-qr-img,
.hp-trial-dialog img {
    display: block;
    width: 200px;
    height: auto;
    max-width: 100%;
    margin: 16px auto 14px;
    padding: 8px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
}
.hp-trial-dialog img { width: 220px; }
.hp-qr-dialog small,
.hp-trial-dialog small { text-align: center; }

.hp-strip-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding: 18px;
}
.hp-strip-item {
    position: relative;
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 12px 14px 13px;
    border: 1px solid var(--border);
    border-radius: 9px;
    background: var(--bg-card);
}
.hp-strip-item:hover { border-color: var(--primary); background: var(--primary-light); }
.hp-strip-txt { min-width: 0; }

/* 六个广告位使用固定装饰图标，与广告标题和内容无关。 */
.hp-strip-ico {
    display: block;
    width: 46px;
    height: 46px;
    object-fit: contain;
    flex-shrink: 0;
    filter: none;
}

.hp-ad-tag {
    position: absolute;
    top: 10px;
    right: 11px;
    padding: 1px 6px;
    border-radius: 3px;
    background: #fdeee6;
    color: var(--accent);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: .5px;
    pointer-events: none;
}
.hp-strip-item strong {
    padding-right: 62px;
    font-size: 14.5px;
    font-weight: 650;
    line-height: 1.5;
    color: #232a31;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.hp-strip-item:hover strong { color: var(--primary); }
.hp-strip-item small {
    margin-top: 6px;
    font-size: 12.5px;
    line-height: 1.7;
    color: #4f555c;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.hp-strip-item-vacant { background: var(--bg-page); border-style: dashed; }
.hp-strip-item-vacant strong { color: var(--text-muted); }
.hp-strip-item-vacant small { color: var(--text-muted); }

@media (max-width: 980px) {
    .hp-strip { grid-template-columns: minmax(0, 1fr); }
    .hp-strip-item { grid-template-columns: 42px minmax(0, 1fr); gap: 10px; }
    .hp-strip-ico { width: 42px; height: 42px; }
    .hp-strip-label {
        flex-direction: row;
        align-items: baseline;
        gap: 12px;
        padding: 14px 18px;
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }
    .hp-strip-label strong { font-size: 17px; }
    .hp-strip-buy { align-self: center; margin-left: auto; }
    .hp-strip-label a { margin-left: 0; }
    .hp-strip-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 14px; }
}
@media (max-width: 700px) {
    .hp-strip-grid { grid-template-columns: minmax(0, 1fr); gap: 9px; padding: 12px; }
}

/* 收录平台：每个分类独立成块 */
.hp-cat-sec { margin-top: 24px; }
.hp-cat-sec .hp-grid { margin-top: 14px; }

/* 自适应双页轮播：生图底图 + 实时文字，避免整图缩放裁切文案。 */
.hp-hero { display: grid; isolation: isolate; }
.hp-hero > .hp-slide { grid-area: 1 / 1; display: flex; visibility: hidden; pointer-events: none; min-height: 380px; height: auto; padding-bottom: 58px; }
.hp-hero > .hp-slide.is-on { visibility: visible; pointer-events: auto; }
.hp-supply { align-items: center; padding: 30px 36px 58px; background: #eff7ff url('/static/images/banner/supply-platform-bg-v1.png') center / cover no-repeat; }
.hp-supply-copy { width: min(100%, 650px); }
.hp-supply-kicker { display: inline-block; margin-bottom: 10px; font-size: 13px; font-weight: 650; letter-spacing: 2px; color: #3975c5; }
.hp-supply h1 { font-size: clamp(29px, 3vw, 42px); line-height: 1.25; letter-spacing: -1px; color: #182a59; }
.hp-supply h1 em { margin-right: 9px; font-style: normal; color: #1976e9; }
.hp-supply h2 { margin-top: 10px; font-size: clamp(18px, 1.75vw, 25px); line-height: 1.45; font-weight: 700; color: #263759; }
.hp-supply-benefits { margin-top: 14px; font-size: 14px; font-weight: 650; color: #1674df; }
.hp-supply-desc { max-width: 560px; margin-top: 7px; font-size: 13px; line-height: 1.7; color: #66738a; }
.hp-supply-actions { display: flex; gap: 9px; flex-wrap: wrap; margin-top: 20px; }
.hp-supply-actions a { display: inline-flex; align-items: center; justify-content: center; min-height: 40px; padding: 9px 15px; border: 1px solid #c7daf5; border-radius: 7px; background: #ffffffeb; color: #315477; font-size: 13px; font-weight: 600; }
.hp-supply-actions .hp-supply-main { border-color: #3281e6; background: #3281e6; color: #fff; }
.hp-supply-actions a:hover { border-color: #176bcf; }
.hp-discover { align-items: center; padding: 30px 36px 58px; background: #fff7ec url('/static/images/banner/sidehustle-bg-v1.png') center / cover no-repeat; }
.hp-discover-copy { width: min(100%, 640px); }
.hp-discover-kicker { display: inline-block; margin-bottom: 12px; font-size: 13px; font-weight: 650; letter-spacing: 2px; color: #a95623; }
.hp-discover h2 { font-size: clamp(25px, 2.5vw, 36px); line-height: 1.3; letter-spacing: -.6px; color: #253348; }
.hp-discover h2 em { font-style: normal; color: #d95c12; }
.hp-discover p { max-width: 590px; margin-top: 16px; font-size: 14px; line-height: 1.9; color: #49566a; }
.hp-discover p strong { color: #a94816; font-weight: 700; }
.hp-discover-actions { display: flex; gap: 9px; flex-wrap: wrap; margin-top: 22px; }
.hp-discover-actions a, .hp-discover-actions button { display: inline-flex; align-items: center; justify-content: center; min-height: 40px; padding: 9px 14px; border: 1px solid #e5cdb8; border-radius: 7px; background: #fffaf5; color: #6e4a33; font: inherit; font-size: 13px; font-weight: 600; cursor: pointer; }
.hp-discover-actions .hp-discover-main { background: #da601e; border-color: #da601e; color: white; }
.hp-discover-actions a:hover, .hp-discover-actions button:hover { border-color: #ba4b10; }
.hp-carousel-controls { position: absolute; left: 50%; bottom: 17px; transform: translateX(-50%); z-index: 2; }
.hp-carousel-controls .hp-dots { position: static; display: flex; gap: 9px; }
.hp-dots button { display: block; width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%; background: #bdc8d7; box-shadow: 0 0 0 4px #ffffffa6; cursor: pointer; }
.hp-dots button.is-on { background: #3484e5; }
.hp-trial-dialog { text-align: center; }
.hp-trial-dialog > img { display: block; margin: 22px auto 0; max-width: 100%; height: auto; }
@media (max-width: 1180px) and (min-width: 981px) { .hp-discover { padding-left: 26px; padding-right: 26px; } .hp-discover p { font-size: 13px; } }
@media (max-width: 700px) {
 .hp-hero > .hp-slide { min-height: 430px; }
 .hp-supply { padding: 26px 22px 64px; background-position: 28% center; }
 .hp-supply h1 { font-size: 29px; }
 .hp-supply h2 { font-size: 19px; }
 .hp-supply-benefits { max-width: 270px; font-size: 13px; line-height: 1.7; }
 .hp-supply-desc { max-width: 275px; font-size: 12.5px; }
 .hp-supply-actions { gap: 8px; margin-top: 17px; }
 /* 主按钮独占一行，下面两个各分一半，把整行撑满——原来它们只占左半边，右边空一块 */
 .hp-supply-actions a { flex: 1 1 0; min-width: 0; padding: 9px 11px; font-size: 12px; white-space: nowrap; }
 .hp-supply-actions .hp-supply-main { flex: 0 0 100%; width: 100%; }
 .hp-discover { padding: 26px 22px 64px; background-position: 25% center; }
 .hp-discover h2 { font-size: 27px; }
 .hp-discover p { font-size: 13px; line-height: 1.85; }
 .hp-discover-actions { gap: 8px; margin-top: 18px; }
 /* 第二张轮播同理：主按钮占一行，下面两个各分一半 */
 .hp-discover-actions a, .hp-discover-actions button { flex: 1 1 0; min-width: 0; font-size: 12px; padding: 9px 11px; white-space: nowrap; }
 .hp-discover-actions .hp-discover-main { flex: 0 0 100%; width: 100%; }
}
