:root {
  /* 离火运 · 朱砂主色 / 焰橙辅色 */
  --djq-brand: #C8102E;
  --djq-brand-dark: #9F0F24;
  --djq-brand-hot: #E85A4F;
  --djq-ember: #F0733A;
  --djq-brand-soft: #FFF1F0;
  --djq-brand-line: #FECACA;
  --djq-brand-mute: #FCA5A5;
  --djq-brand-ring: rgba(200, 16, 46, 0.12);
}

/* 预留纵向滚动条槽位，避免不同页面是否出现滚动条时整页（含 fixed 顶栏）横向微移 */
html {
    scrollbar-gutter: stable;
}

/* 与 Tailwind preflight 对齐，避免仅用静态 CSS 时表单/网格宽度异常 */
*, *::before, *::after {
    box-sizing: border-box;
}


/* 公共样式 - 基于首页标准 */
body { font-family: 'Inter', "Microsoft YaHei", sans-serif; background: #fff; scroll-behavior: smooth; overflow-x: hidden; opacity: 0; animation: _djq_pagein .18s ease .06s forwards; }
@keyframes _djq_pagein { to { opacity: 1; } }
/* 顶栏桌面菜单「首页…联系我们」：比原 text-xs 略大，现比上一版小一号（≈14px） */
nav.site-nav-grid .site-nav-links a.nav-link {
    font-size: 0.875rem;
    line-height: 1.25rem;
}
.nav-link { position: relative; transition: color 0.3s ease; white-space: nowrap; }
.nav-link::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -4px; left: 0; background-color: var(--djq-brand); transition: width 0.3s cubic-bezier(0.65, 0, 0.35, 1); }
.nav-link:hover { color: var(--djq-brand); }
.nav-link:hover::after { width: 100%; }
/* 桌面顶栏：三列网格，按类名对齐（避免 nth-child 受空白文本节点等影响导致个别页错位） */
@media (min-width: 768px) {
    nav.site-nav-grid {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
        align-items: center;
        column-gap: 1rem;
    }
    nav.site-nav-grid .site-nav-brand {
        justify-self: start;
        min-width: 0;
    }
    nav.site-nav-grid .site-nav-links {
        display: flex !important;
        justify-self: center;
        align-items: stretch;
        align-self: stretch;
        flex-wrap: nowrap;
        gap: calc(1.5rem - 5px);
        max-width: 100%;
        overflow: visible;
    }
    /* 顶栏链接整行可点，避免只有文字高度难瞄准 */
    nav.site-nav-grid .site-nav-links > a.nav-link,
    nav.site-nav-grid .site-nav-links .nav-item > .nav-link {
        display: flex;
        align-items: center;
        height: 100%;
        box-sizing: border-box;
    }
    nav.site-nav-grid .site-nav-tools {
        justify-self: end;
        min-width: 0;
        flex-shrink: 0;
    }
}
@media (max-width: 767px) {
    nav.site-nav-grid .site-nav-links {
        display: none !important;
    }
}
/* 移动菜单：不依赖 Tailwind md:hidden，用 CSS 媒体查询兜底 */
#mobile-menu {
    position: fixed; inset: 0; z-index: 60;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}
#mobile-menu.open {
    transform: translateX(0);
    pointer-events: auto;
}
@media (min-width: 768px) {
    #mobile-menu,
    #mobile-menu.open {
        display: none !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }
    nav.site-nav-grid .site-nav-tools button[aria-label="打开菜单"] {
        display: none !important;
    }
}
@media (max-width: 767px) {
    #mobile-menu {
        display: flex !important;
        flex-direction: column;
    }
}
.logo-animate { background: linear-gradient(to right, var(--djq-brand-dark), var(--djq-brand-hot), var(--djq-brand-dark)); background-size: 200% auto; -webkit-background-clip: text; -webkit-text-fill-color: transparent; animation: shine 3s linear infinite; font-weight: 900; letter-spacing: -0.05em; }
@keyframes shine { to { background-position: 200% center; } }
.shimmer-text { background: linear-gradient(90deg, var(--djq-brand-dark) 0%, var(--djq-brand-hot) 50%, var(--djq-brand-dark) 100%); background-size: 200% auto; -webkit-background-clip: text; -webkit-text-fill-color: transparent; animation: shimmer 5s linear infinite; }
@keyframes shimmer { to { background-position: 200% center; } }
/* 语言切换（与首页统一，全站一致） */
.lang-switch { display: flex; align-items: center; gap: 8px; font-weight: bold; cursor: pointer; font-size: 10px; letter-spacing: 0.1em; }
.lang-option { padding: 4px 8px; border-radius: 4px; transition: color 0.2s ease, background-color 0.2s ease; color: #6b7280; }
.lang-option.active { color: var(--djq-brand); background: rgba(200, 16, 46, 0.1); }
.lang-divider { color: #e5e7eb; }
.card-standard { transition: all 0.3s ease; border: 1px solid #f1f5f9; background: #f9fafb; }
.card-standard:hover { transform: translateY(-5px); background: #fff; border-color: var(--djq-brand); box-shadow: 0 20px 25px -5px rgba(200, 16, 46, 0.1); }
.fab-wrapper { display: none !important; }
.fab-wrapper.fab-wrapper--user-dismissed { display: none !important; }
.fab-main { width: 60px; height: 60px; background: var(--djq-brand-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 12px 30px rgba(159, 15, 36, 0.4); transition: 0.4s; color: transparent; font-size: 0; line-height: 0; position: relative; }
.fab-main::before,
.fab-main::after { content: ''; position: absolute; left: 50%; top: 50%; background: #fff; border-radius: 1px; }
.fab-main::before { width: 16px; height: 4px; margin: -2px 0 0 -8px; }
.fab-main::after { width: 4px; height: 16px; margin: -8px 0 0 -2px; }
.fab-main.active { transform: rotate(135deg); background: #1f2937; }
/* 不用 transform 做展开动画，否则其建立了包含块，子元素 position:fixed 无法相对视口，气泡与图片易异常 */
.fab-items { position: absolute; bottom: 60px; display: flex; flex-direction: column; gap: 15px; pointer-events: none; opacity: 0; transition: opacity 0.3s ease, bottom 0.3s ease; overflow: visible; }
.fab-items.open { pointer-events: auto; opacity: 1; bottom: 80px; }
.fab-item { width: 52px; height: 52px; background: white; border-radius: 16px; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 20px rgba(0,0,0,0.1); transition: 0.3s; cursor: pointer; border: 1px solid #f0f0f0; }
.fab-item:hover { transform: scale(1.1); border-color: var(--djq-brand-hot); }
/* 浮动客服：子项包装与左侧悬停气泡 */
.fab-item-wrap { position: relative; display: flex; flex-direction: column; align-items: center; overflow: visible; }
a.fab-item { text-decoration: none; color: inherit; }
button.fab-item {
    font: inherit;
    margin: 0;
    padding: 0;
    border: 1px solid #f0f0f0;
    -webkit-appearance: none;
    appearance: none;
    box-sizing: border-box;
}
.fab-dismiss { color: #64748b; }
.fab-dismiss:hover { color: #dc2626; border-color: #fecaca; }
.fab-dismiss:focus-visible { outline: 2px solid var(--djq-brand); outline-offset: 2px; }
/* 具体 left/top 由 js/fab-popover.js 在悬停时设为 position:fixed，浮现在按钮左侧、相对视口 */
.fab-popover {
    position: fixed;
    left: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s;
    z-index: 10050;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
    border: 1px solid #e2e8f0;
}
.fab-item-wrap.fab-popover-visible .fab-popover,
.fab-item-wrap:focus-within .fab-popover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.fab-popover--qr { padding: 10px; }
.fab-popover--qr img {
    display: block;
    width: 140px;
    height: auto;
    max-height: 160px;
    object-fit: contain;
}
.fab-popover--text {
    padding: 12px 16px;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 600;
    color: #0f172a;
    letter-spacing: 0.02em;
}
.fab-item--whatsapp { color: #25d366; }
.fab-item svg { width: 24px; height: 24px; flex-shrink: 0; }
.fab-icon-stroke svg { stroke: #334155; fill: none; stroke-width: 2; }
.fab-item--whatsapp svg { stroke: none; }

/* 快速询盘表单：离火运色系（首页 / 方案 / 案例等） */
.djq-inquiry-section {
    position: relative;
    padding: 5rem 2rem;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(ellipse 70% 80% at 12% 20%, rgba(232, 90, 79, 0.28), transparent 55%),
        radial-gradient(ellipse 55% 60% at 88% 75%, rgba(200, 16, 46, 0.22), transparent 50%),
        linear-gradient(145deg, #1c0a0e 0%, #120608 46%, #2a0c14 100%);
    border-top: 1px solid rgba(200, 16, 46, 0.28);
    border-bottom: 1px solid rgba(200, 16, 46, 0.22);
}
.djq-inquiry-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(240, 115, 58, 0.08), transparent);
    opacity: 0.7;
}
.djq-inquiry-wrap {
    position: relative;
    z-index: 1;
    max-width: 72rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
    gap: 2rem;
    align-items: center;
}
.djq-inquiry-wrap > div:first-child {
    margin-left: -17px;
}
.djq-inquiry-eyebrow {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--djq-brand-hot);
    margin-bottom: 0.875rem;
}
.djq-inquiry-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -0.04em;
    margin-bottom: 1rem;
    text-shadow: 0 0 28px rgba(232, 90, 79, 0.22);
}
.djq-inquiry-lead {
    color: #e7e5e4;
    line-height: 1.8;
    max-width: 36rem;
}
.djq-inquiry-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}
.djq-inquiry-points span {
    border: 1px solid rgba(232, 90, 79, 0.45);
    background: rgba(200, 16, 46, 0.18);
    color: #fecaca;
    border-radius: 999px;
    padding: 0.45rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
}
.djq-inquiry-form {
    background: #fff;
    color: #1c1917;
    border-radius: 1.25rem;
    padding: 1.5rem;
    border: 1px solid rgba(254, 202, 202, 0.65);
    box-shadow:
        0 24px 60px rgba(80, 10, 20, 0.35),
        0 0 0 1px rgba(200, 16, 46, 0.06);
}
.djq-inquiry-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.875rem;
}
.djq-inquiry-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.djq-inquiry-field--full { grid-column: 1 / -1; }
.djq-inquiry-label {
    font-size: 0.68rem;
    font-weight: 800;
    color: #78716c;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.djq-inquiry-input,
.djq-inquiry-textarea,
.djq-inquiry-select {
    width: 100%;
    border: 1px solid #e7e5e4;
    border-radius: 0.8rem;
    padding: 0.85rem 0.95rem;
    font-size: 0.875rem;
    outline: none;
    transition: border-color 0.18s, box-shadow 0.18s;
    background: #fff;
}
.djq-inquiry-input:focus,
.djq-inquiry-textarea:focus,
.djq-inquiry-select:focus {
    border-color: var(--djq-brand);
    box-shadow: 0 0 0 3px var(--djq-brand-ring);
}
.djq-inquiry-textarea { resize: vertical; min-height: 92px; }
.djq-inquiry-submit {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    border: 0;
    border-radius: 999px;
    padding: 0.95rem 1.25rem;
    margin-top: 1rem;
    /* 按钮落在白色表单上：默认朱砂底，避免与表单白底糊成一片 */
    background: var(--djq-brand);
    color: #fff;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
    box-shadow: 0 10px 24px rgba(200, 16, 46, 0.28);
}
.djq-inquiry-submit:hover {
    background: var(--djq-brand-dark);
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(159, 15, 36, 0.35);
}
.djq-inquiry-submit:disabled { opacity: 0.65; cursor: not-allowed; transform: none; box-shadow: none; }
.djq-inquiry-status {
    min-height: 1.25rem;
    margin-top: 0.75rem;
    font-size: 0.8rem;
    line-height: 1.5;
}
.djq-inquiry-status.is-success { color: #059669; }
.djq-inquiry-status.is-error { color: #dc2626; }
@media (max-width: 900px) {
    .djq-inquiry-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .djq-inquiry-section { padding: 4rem 1rem; }
    .djq-inquiry-form-grid { grid-template-columns: 1fr; }
}

/* ── 全站页脚：离火运色系 + 字体规范 ── */
footer.site-footer,
footer.site-footer.bg-black,
footer.bg-black {
    font-family: 'Inter', "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", sans-serif;
    font-size: 0.8125rem; /* 13px 正文基准 */
    line-height: 1.65;
    letter-spacing: 0.01em;
    -webkit-font-smoothing: antialiased;
    font-feature-settings: "kern" 1;
    /* 深赤火底，替代纯黑 */
    background:
        linear-gradient(180deg, rgba(200, 16, 46, 0.14) 0%, transparent 42%),
        linear-gradient(165deg, #1c0a0e 0%, #120608 48%, #1a0b10 100%) !important;
    color: #f3f4f6 !important;
    border-top: 1px solid rgba(200, 16, 46, 0.38);
    box-shadow: inset 0 1px 0 rgba(232, 90, 79, 0.16);
}

footer.site-footer h3,
footer.bg-black h3 {
    font-size: 1.375rem !important; /* 22px 品牌名，原 text-3xl 偏大 */
    font-weight: 800;
    font-style: italic;
    line-height: 1.25;
    letter-spacing: -0.02em;
    text-transform: none;
    margin-bottom: 1.25rem;
    color: #fff !important;
    text-shadow: 0 0 24px rgba(232, 90, 79, 0.35);
}

footer.site-footer .footer-col-title,
footer.bg-black .footer-col-title,
footer.site-footer h4,
footer.bg-black h4,
footer.site-footer h4.text-red-600,
footer.site-footer h4.text-red-500 {
    font-size: 0.8125rem !important; /* 13px 栏目标题 */
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.04em;
    text-transform: none !important; /* 英文不再强制 CONTACT 全大写 */
    margin-bottom: 0.875rem;
    color: var(--djq-brand-hot) !important;
}

footer.site-footer .footer-meta,
footer.bg-black p.text-gray-500,
footer.bg-black .footer-meta {
    font-size: 0.75rem !important; /* 12px 版权 / 备案 */
    line-height: 1.6;
    letter-spacing: 0.02em;
    text-transform: none !important;
    color: #a8a29e !important;
}

footer.site-footer .footer-meta-link,
footer.bg-black a.text-gray-500,
footer.bg-black .footer-meta-link {
    font-size: 0.75rem !important;
    line-height: 1.6;
    letter-spacing: 0.02em;
    text-transform: none !important;
    color: #a8a29e !important;
    transition: color 0.2s ease;
}
footer.site-footer .footer-meta-link:hover,
footer.bg-black .footer-meta-link:hover {
    color: var(--djq-brand-hot) !important;
}

footer.site-footer ul,
footer.bg-black ul.text-gray-400,
footer.bg-black ul {
    font-size: 0.8125rem !important;
    color: #d6d3d1 !important;
}

footer.site-footer ul li,
footer.bg-black ul li {
    font-size: inherit;
    line-height: 1.65;
}

footer.site-footer ul li span,
footer.bg-black ul li span {
    color: #a8a29e;
    font-weight: 500;
}

footer.site-footer .footer-solutions a,
footer.bg-black .grid a.text-gray-400,
footer.bg-black .footer-solutions a {
    font-size: 0.8125rem !important;
    line-height: 1.55;
    letter-spacing: 0.01em;
    text-transform: none;
    color: #d6d3d1 !important;
    transition: color 0.2s ease;
}
footer.site-footer .footer-solutions a:hover,
footer.bg-black .footer-solutions a:hover {
    color: var(--djq-brand-hot) !important;
}

footer.site-footer .footer-qr-caption,
footer.bg-black .footer-qr-caption {
    font-size: 0.6875rem !important; /* 11px 二维码说明 */
    line-height: 1.4;
    letter-spacing: 0.03em;
    text-transform: none !important;
    color: #a8a29e !important;
}

/* 二维码框：离火描边 */
footer.site-footer .w-20.h-20,
footer.bg-black .w-20.h-20 {
    border-color: rgba(200, 16, 46, 0.45) !important;
    box-shadow: 0 0 0 1px rgba(232, 90, 79, 0.12);
}

/* 英文页脚：联系项「标签: 内容」略区分层级 */
html[lang="en"] footer.site-footer ul li,
html[lang="en"] footer.bg-black ul li {
    font-size: 0.8125rem;
}

/* 资讯列表分类标签（首页快讯 / 行业洞察卡片） */
.news-tag-pill {
    display: inline-block;
    font-size: 0.6875rem; /* 11px */
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.03em;
    text-transform: none;
}
.news-tag-pill--on-dark {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: none;
}

/* 首页「快讯与洞察」列表：16:10 缩略图 + 可读正文（SVG 封面仅显示渐变+标签，不加载内嵌标题） */
.home-news-thumb {
    position: relative;
    flex-shrink: 0;
    width: 9.5rem;
    aspect-ratio: 16 / 10;
    border-radius: 1rem;
    overflow: hidden;
    background: linear-gradient(135deg, #e2e8f0, #f1f5f9);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
}
@media (min-width: 768px) {
    .home-news-thumb {
        width: 12rem;
    }
}
.home-news-thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.home-news-thumb--tag {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0.625rem 0.75rem;
    background: linear-gradient(135deg, var(--djq-ember) 0%, var(--djq-brand-dark) 100%);
}
.home-news-thumb--tag::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px);
    background-size: 12px 12px;
    pointer-events: none;
}
.home-news-thumb-label {
    position: relative;
    z-index: 1;
    display: inline-block;
    max-width: 100%;
    padding: 0.3rem 0.65rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.35;
    word-break: break-word;
}
.home-news-thumb-keywords {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    gap: 0.35rem;
    margin-top: 0.5rem;
    width: 100%;
    flex: 1;
}
.home-news-thumb-kw {
    display: inline-block;
    max-width: 100%;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.96);
    font-size: 0.625rem;
    font-weight: 600;
    line-height: 1.35;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
@media (min-width: 768px) {
    .home-news-thumb-kw {
        font-size: 0.6875rem;
        padding: 0.22rem 0.55rem;
    }
}
#news-insight-list .home-news-item {
    gap: 1.25rem;
}
@media (min-width: 768px) {
    #news-insight-list .home-news-item {
        gap: 1.5rem;
    }
}
#news-insight-list .home-news-item h3 {
    font-size: 1.125rem;
    font-weight: 800;
    line-height: 1.45;
    color: #0f172a;
    margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
    #news-insight-list .home-news-item h3 {
        font-size: 1.3125rem;
    }
}
#news-insight-list .home-news-excerpt {
    font-size: 0.875rem;
    line-height: 1.7;
    color: #64748b;
}
@media (min-width: 768px) {
    #news-insight-list .home-news-excerpt {
        font-size: 0.9375rem;
    }
}
#news-insight-list .home-news-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}
#news-insight-list .home-news-date {
    font-size: 0.7rem;
    font-weight: 600;
    color: #94a3b8;
    letter-spacing: 0.02em;
}

/* 顶栏下拉菜单（解决方案 / 工具软件） */
.site-nav-links .nav-item {
    position: relative;
    display: flex;
    align-items: center;
    align-self: stretch;
}
/* 父链接叠在下拉之上，悬停打开后仍可直接点进总览页 */
.site-nav-links .nav-item > .nav-link {
    position: relative;
    z-index: 130;
}
.site-nav-links .sol-dropdown,
.site-nav-links .tools-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 120;
}
.site-nav-links .sol-dropdown {
    width: 22rem; background: #fff; border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12); border-radius: 16px; padding: 0.75rem;
}
.site-nav-links .tools-dropdown {
    width: 24rem; background: #fff; border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12); border-radius: 16px; padding: 0.5rem;
}
/*
 * 桥接缝只覆盖当前触发项宽度，避免旧版「整块 mega 菜单宽」的 ::before
 * 盖住相邻「成功案例 / 工具软件」等链接导致难点、难定位。
 */
.site-nav-links .nav-item::after {
    content: '';
    position: absolute;
    left: -8px;
    right: -8px;
    top: 100%;
    height: 14px;
    z-index: 121;
    pointer-events: none;
}
.site-nav-links .nav-item:hover::after,
.site-nav-links .nav-item:focus-within::after {
    pointer-events: auto;
}
.site-nav-links .nav-item:hover .sol-dropdown,
.site-nav-links .nav-item:focus-within .sol-dropdown,
.site-nav-links .nav-item:hover .tools-dropdown,
.site-nav-links .nav-item:focus-within .tools-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.sol-dropdown a {
    display: flex; align-items: flex-start; gap: 10px; padding: 0.65rem 0.75rem;
    border-radius: 10px; text-decoration: none; transition: background 0.15s;
}
.sol-dropdown a:hover { background: #f8faff; }
.sol-dropdown .dd-num {
    flex-shrink: 0; width: 28px; height: 28px; border-radius: 8px; background: var(--djq-brand-soft);
    color: var(--djq-brand); font-size: 10px; font-weight: 800; display: flex; align-items: center; justify-content: center;
}
.sol-dropdown .dd-title,
.tools-dropdown .td-title {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #111827;
    line-height: 1.3;
    text-transform: none;
    letter-spacing: 0;
}
.sol-dropdown .dd-desc,
.tools-dropdown .td-desc {
    display: block;
    font-size: 10px;
    color: #6b7280;
    margin-top: 2px;
    line-height: 1.4;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}
.sol-dropdown .dd-all { border-top: 1px solid #f1f5f9; margin-top: 4px; padding-top: 8px; }

.tools-dropdown a {
    display: flex; align-items: flex-start; gap: 12px; padding: 0.65rem 0.75rem;
    border-radius: 10px; text-decoration: none; transition: background 0.15s;
}
.tools-dropdown a:hover { background: #f8faff; }
.td-icon {
    flex-shrink: 0; width: 36px; height: 36px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
}
.td-icon svg { width: 18px; height: 18px; }
.td-icon-green { background: #ecfdf5; color: #059669; }
.td-icon-orange { background: #fff7ed; color: #ea580c; }
.td-icon-blue { background: var(--djq-brand-soft); color: var(--djq-brand); }
.td-icon-purple { background: #f5f3ff; color: #7c3aed; }
.td-icon-pink { background: #fdf2f8; color: #db2777; }
.td-icon-red { background: #fef2f2; color: #dc2626; }
.td-icon-teal { background: #ccfbf1; color: #0d9488; }
.td-icon-slate { background: #f1f5f9; color: #334155; }

/* 行业洞察 · 静态选型指南页（版心同文章详情页 max-w-7xl，无额外收窄） */
.insight-guide-page .guide-kw-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}
.insight-guide-page .guide-kw {
    font-size: 11px;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    border-radius: 9999px;
    background: var(--djq-brand-soft);
    color: var(--djq-brand);
    letter-spacing: 0.03em;
}
.insight-guide-page .guide-link-box {
    margin: 2rem 0 0;
    padding: 1.25rem 1.5rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
}
.insight-guide-page .guide-link-box h3 {
    font-size: 0.875rem;
    font-weight: 800;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 0.75rem;
}
.insight-guide-page .guide-link-box a {
    display: block;
    padding: 0.65rem 0;
    color: #1e293b;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    border-bottom: 1px solid #e2e8f0;
}
.insight-guide-page .guide-link-box a:last-child { border-bottom: none; }
.insight-guide-page .guide-link-box a:hover { color: var(--djq-brand); }
