/* =============================================================
   首页视觉改版样式（中文站 / 英文站共用）
   通过 .hm-home 作用域限定，且站点语种再挂 .hm-home / .home-en，
   不影响其它页面
   ============================================================= */
.hm-home {
    --hm-ink: #0f172a;
    --hm-muted: #64748b;
    --hm-line: #e6ecf7;
    --hm-brand: #2463eb;
    --hm-cyan: #0ea5c6;
}

/* ---------- 区块通用 ---------- */
.hm-home .hm-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin: 26px 0 14px;
}

.hm-home .hm-section-title {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0;
    font-size: 19px;
    font-weight: 800;
    letter-spacing: .01em;
    color: var(--hm-ink);
}

.hm-home .hm-section-title::before {
    content: '';
    width: 4px;
    height: 18px;
    border-radius: 3px;
    background: linear-gradient(180deg, #2f6df6, #12a5cd);
}

.hm-home .hm-section-sub {
    margin: 0;
    font-size: 13px;
    color: var(--hm-muted);
    text-align: right;
}

/* ---------- HERO 首屏已还原为最初版 Tabler 浅色布局 ----------
   深色渐变面板（hm-hero / hm-meta / hm-cta*）相关样式已全部移除，
   首屏卡片与提示框统一使用 Tabler 原生样式，不再有自定义配色。 */

/* ---------- 右侧实时找回动态（还原最初的单行滚动样式） ---------- */
.hm-home #div1 {
    width: 300px;
    height: 20px;
    overflow: hidden;
    position: relative;
}

.hm-home #div1 ul {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0;
}

.hm-home #div1 ul li {
    height: 20px;
    line-height: 20px;
    font-size: 14px;
    white-space: nowrap;
}

/* ---------- 三步流程 ---------- */
.hm-home .hm-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.hm-home .hm-step {
    padding: 20px 18px;
    border: 1px solid var(--hm-line);
    border-radius: 16px;
    background: #fff;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.hm-home .hm-step:hover {
    transform: translateY(-3px);
    border-color: #c9d9fb;
    box-shadow: 0 18px 34px -26px rgba(31, 73, 150, .95);
}

.hm-home .hm-step-no {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-bottom: 10px;
    border-radius: 11px;
    background: linear-gradient(135deg, #e8f0ff, #e0f7ff);
    color: var(--hm-brand);
    font-size: 14px;
    font-weight: 800;
}

.hm-home .hm-step h4 {
    margin: 0 0 6px;
    font-size: 15px;
    font-weight: 700;
    color: var(--hm-ink);
}

.hm-home .hm-step p {
    margin: 0;
    font-size: 13px;
    line-height: 1.75;
    color: var(--hm-muted);
}

/* ---------- 报价卡片 ---------- */
.hm-home .hm-plan {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--hm-line);
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.hm-home .hm-plan:hover {
    transform: translateY(-4px);
    border-color: #bfd4ff;
    box-shadow: 0 24px 42px -28px rgba(23, 60, 140, .9);
}

.hm-home .hm-plan .ribbon {
    z-index: 2;
}

.hm-home .hm-plan-tag {
    display: inline-block;
    padding: 3px 10px;
    margin-bottom: 8px;
    border-radius: 999px;
    background: #eaf1ff;
    color: var(--hm-brand);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
}

.hm-home .hm-plan-name {
    font-size: 13px;
    letter-spacing: .04em;
}

.hm-home .hm-plan-price {
    margin: 6px 0 12px;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(135deg, #1d4ed8, #0ea5c6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hm-home .hm-plan ul.list-unstyled {
    margin-bottom: 14px;
}

.hm-home .hm-plan .btn {
    width: 100%;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, #2f6df6, #12a5cd);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 12px 24px -16px rgba(18, 165, 205, .9);
    transition: transform .18s ease, filter .18s ease;
}

.hm-home .hm-plan .btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.06);
}

/* ---------- 核心能力 ---------- */
.hm-home .hm-features {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.hm-home .hm-feature {
    display: flex;
    gap: 12px;
    padding: 18px;
    border: 1px solid var(--hm-line);
    border-radius: 16px;
    background: #fff;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.hm-home .hm-feature:hover {
    transform: translateY(-3px);
    border-color: #c9d9fb;
    box-shadow: 0 18px 34px -26px rgba(31, 73, 150, .95);
}

.hm-home .hm-fi {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8f0ff, #e0f7ff);
    color: var(--hm-brand);
}

.hm-home .hm-fi .icon {
    width: 22px;
    height: 22px;
}

.hm-home .hm-feature h4 {
    margin: 0 0 4px;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--hm-ink);
}

.hm-home .hm-feature p {
    margin: 0;
    font-size: 12.5px;
    line-height: 1.7;
    color: var(--hm-muted);
}

/* ---------- 公告 / 资讯 ---------- */
.hm-home .hm-news {
    border: 1px solid var(--hm-line);
    border-radius: 16px;
    overflow: hidden;
}

.hm-home .hm-news-head {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 13px 18px;
    border-bottom: 1px solid var(--hm-line);
    background: linear-gradient(90deg, #f5f8ff, #ffffff);
    font-size: 15px;
    font-weight: 800;
    color: var(--hm-ink);
}

.hm-home .hm-news-head::before {
    content: '';
    width: 4px;
    height: 15px;
    border-radius: 3px;
    background: linear-gradient(180deg, #2f6df6, #12a5cd);
}

.hm-home .hm-news-list {
    padding: 8px 6px 12px;
}

.hm-home .hm-news-item {
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 10px;
    transition: background .15s ease;
}

.hm-home .hm-news-item:hover {
    background: #f4f8ff;
}

.hm-home .hm-news-item .badge {
    flex: 0 0 6px;
    width: 6px;
    height: 6px;
    padding: 0;
    margin: 0 !important;
    border-radius: 50%;
    background: #7aa7f7 !important;
}

.hm-home .hm-news-item a {
    color: #334155;
    text-decoration: none;
}

.hm-home .hm-news-item:hover a {
    color: var(--hm-brand);
}

.hm-home .hm-news-date {
    flex: 0 0 auto;
    font-size: 12px;
    color: #94a3b8;
    white-space: nowrap;
}

/* ---------- 底部面板（免责 / 联系 / 友情链接） ---------- */
.hm-home .hm-panel {
    border: 1px solid var(--hm-line);
    border-radius: 18px;
}

.hm-home .hm-panel .card-body .h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-weight: 800;
    color: var(--hm-ink);
}

/* ---------- 友情链接 ---------- */
.hm-home .hm-link-tabs {
    gap: 8px;
}

.hm-home .hm-link-tab {
    padding: 5px 13px;
    border: 1px solid var(--hm-line);
    border-radius: 999px;
    background: #f7faff;
    color: #475569;
    transition: border-color .15s ease, color .15s ease, background .15s ease;
}

.hm-home .hm-link-tab:hover {
    border-color: #bfd4ff;
    background: #eef4ff;
    color: var(--hm-brand);
}

.hm-home .hm-link-pill {
    display: inline-block;
    margin: 5px 6px 0 0;
    padding: 6px 12px;
    border-radius: 999px;
    background: #f1f6ff !important;
    color: #415571 !important;
    font-size: 12.5px;
    font-weight: 500;
    transition: background .15s ease, color .15s ease;
}

.hm-home .hm-link-pill:hover {
    background: linear-gradient(135deg, #2f6df6, #12a5cd) !important;
    color: #fff !important;
}

/* ---------- 响应式 ---------- */
@media (max-width: 992px) {
    .hm-home .hm-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hm-home .hm-steps {
        grid-template-columns: 1fr;
    }

    .hm-home .hm-section-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .hm-home .hm-section-sub {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .hm-home #div1 {
        width: 100%;
    }

    .hm-home .hm-plan-price {
        font-size: 26px;
    }

    .hm-home .hm-features {
        grid-template-columns: 1fr;
    }
}<｜hy_place▁holder▁no▁813｜><arg_key:opensource>explanation</arg_key:opensource><arg_value:opensource>创建中文首页专属样式表，统一首页视觉风格并突出解密专业性