/* 站长工具主题 - 全局样式 V2
   配色参考 52ce.com(#1cc088 青绿) + seo.chinaz.com(#1d8eff 亮蓝 / 白底清爽布局)
   主色：#1cc088  辅助：#1a5ae4  中性：白底浅灰 */

:root {
    --seo-primary: #1cc088;
    --seo-primary-dark: #12a074;
    --seo-primary-light: #e5f9f2;
    --seo-accent: #1a5ae4;
    --seo-accent-light: #eaf0fe;
    --seo-bg: #f7fbfc;
    --seo-card: #ffffff;
    --seo-text: #212121;
    --seo-text-sub: #56688a;
    --seo-text-mute: #9195a3;
    --seo-border: #e4e7eb;
    --seo-border-light: #eef1f5;
    --seo-success: #25c168;
    --seo-danger: #e54752;
    --seo-warn: #ff894d;
    --seo-radius: 10px;
    --seo-radius-sm: 8px;
    --seo-shadow: 0 1px 2px rgba(33,44,68,.04), 0 2px 8px rgba(33,44,68,.05);
    --seo-shadow-hover: 0 4px 12px rgba(28,192,136,.12), 0 12px 28px rgba(33,44,68,.08);
}

* { box-sizing: border-box; }

body {
    margin: 0;
    padding: 0;
    background: var(--seo-bg);
    color: var(--seo-text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    font-size: 14px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

.seo-container { max-width: 1180px; margin: 0 auto; padding: 0 16px; }
.seo-main { padding: 22px 16px 44px; }

/* ============ 头部：白底清爽（参考 chinaz） ============ */
.seo-header {
    background: #fff;
    border-bottom: 1px solid var(--seo-border);
    box-shadow: 0 1px 3px rgba(33,44,68,.04);
    position: sticky;
    top: 0;
    z-index: 300;
}
.seo-header-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    height: 60px;
}
.seo-logo a {
    font-size: 19px;
    font-weight: 700;
    color: var(--seo-text);
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -.2px;
}
.seo-logo img { max-height: 34px; }
/* 覆盖 CMS 默认橙色文字 LOGO，统一为主题主色 */
.seo-logo a span { color: var(--seo-primary) !important; font-size: 21px !important; letter-spacing: -.3px; }

.seo-nav { display: flex; align-items: center; gap: 2px; flex: 1; }
.seo-nav > a {
    padding: 8px 13px;
    border-radius: var(--seo-radius-sm);
    font-size: 14px;
    color: var(--seo-text-sub);
    white-space: nowrap;
    transition: all .18s;
    font-weight: 500;
}
.seo-nav > a:hover { color: var(--seo-primary); background: var(--seo-primary-light); }
.seo-nav > a.active { color: var(--seo-primary); background: var(--seo-primary-light); font-weight: 600; }

/* 下拉菜单 */
.seo-dropdown { position: relative; }
.seo-dropdown-toggle {
    padding: 8px 13px;
    border-radius: var(--seo-radius-sm);
    font-size: 14px;
    display: block;
    white-space: nowrap;
    color: var(--seo-text-sub);
    font-weight: 500;
    transition: all .18s;
}
.seo-dropdown:hover .seo-dropdown-toggle,
.seo-dropdown-toggle.active { color: var(--seo-primary); background: var(--seo-primary-light); font-weight: 600; }
.seo-nav-group .seo-dropdown-toggle { padding-left: 10px; padding-right: 10px; }
.seo-dropdown-toggle .fa-angle-down { font-size: 11px; margin-left: 3px; transition: transform .2s; }
.seo-dropdown:hover .fa-angle-down { transform: rotate(180deg); }

.seo-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #fff;
    min-width: 640px;
    border: 1px solid var(--seo-border);
    border-radius: var(--seo-radius);
    box-shadow: 0 8px 32px rgba(33,44,68,.12);
    padding: 18px;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    z-index: 310;
}
.seo-dropdown:hover .seo-dropdown-menu { display: grid; }
.seo-dropdown-menu-single {
    min-width: 250px;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px;
}
.seo-dropdown-menu-single .seo-dropdown-group { min-width: 0; }
.seo-dropdown-title {
    font-size: 12px;
    color: var(--seo-text-mute);
    font-weight: 600;
    margin-bottom: 9px;
    padding-bottom: 7px;
    border-bottom: 1px solid var(--seo-border-light);
    letter-spacing: .3px;
}
.seo-dropdown-menu a {
    display: block;
    padding: 6px 9px;
    border-radius: 6px;
    font-size: 13px;
    color: var(--seo-text-sub);
    transition: all .15s;
    margin-bottom: 1px;
}
.seo-dropdown-menu a:hover, .seo-dropdown-menu a.active {
    background: var(--seo-primary-light);
    color: var(--seo-primary-dark);
    font-weight: 500;
}
.seo-dropdown-menu a i { width: 15px; margin-right: 7px; opacity: .85; }

.seo-search-btn button {
    background: var(--seo-primary-light);
    border: none;
    color: var(--seo-primary-dark);
    width: 36px;
    height: 36px;
    border-radius: var(--seo-radius-sm);
    cursor: pointer;
    font-size: 14px;
    transition: all .18s;
}
.seo-search-btn button:hover { background: var(--seo-primary); color: #fff; }

.seo-search-section {
    display: none;
    background: #fff;
    border-top: 1px solid var(--seo-border-light);
    padding: 14px 0;
}
.seo-search-section.show { display: block; }
.seo-search-form { display: flex; gap: 8px; }
.seo-search-input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid var(--seo-border);
    border-radius: var(--seo-radius-sm);
    font-size: 14px;
    outline: none;
    transition: border-color .18s;
    font-family: inherit;
}
.seo-search-input:focus { border-color: var(--seo-primary); }
.seo-search-submit {
    padding: 10px 24px;
    background: var(--seo-primary);
    color: #fff;
    border: none;
    border-radius: var(--seo-radius-sm);
    font-weight: 500;
    cursor: pointer;
    font-size: 14px;
    transition: background .18s;
}
.seo-search-submit:hover { background: var(--seo-primary-dark); }

.seo-menu-toggle {
    display: none;
    background: var(--seo-primary-light);
    border: none;
    color: var(--seo-primary-dark);
    width: 36px;
    height: 36px;
    border-radius: var(--seo-radius-sm);
    cursor: pointer;
}

/* 移动端导航 */
.seo-mobile-nav {
    position: fixed;
    top: 0; left: 0; bottom: 0;
    width: 282px;
    background: #fff;
    transform: translateX(-100%);
    transition: transform .28s cubic-bezier(.4,0,.2,1);
    z-index: 1000;
    overflow-y: auto;
}
.seo-mobile-nav.show { transform: translateX(0); }
.seo-mobile-nav-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 18px;
    background: var(--seo-primary);
    color: #fff;
    font-weight: 600;
}
.seo-mobile-nav-head button { background: none; border: none; color: #fff; font-size: 18px; cursor: pointer; }
.seo-mobile-nav-body { padding: 8px 0 30px; }
.seo-mobile-nav-body a {
    display: block;
    padding: 11px 18px;
    font-size: 14px;
    color: var(--seo-text-sub);
    border-bottom: 1px solid var(--seo-border-light);
}
.seo-mobile-nav-body a i { width: 18px; margin-right: 9px; color: var(--seo-primary); }
.seo-mobile-group-title {
    padding: 13px 18px 7px;
    font-size: 12px;
    color: var(--seo-text-mute);
    font-weight: 600;
    background: #fafbfc;
    letter-spacing: .3px;
}
.seo-mobile-mask {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(33,44,68,.45);
    z-index: 999;
}
.seo-mobile-mask.show { display: block; }

/* ============ Hero：浅色渐变（参考 52ce） ============ */
.seo-hero {
    background: linear-gradient(180deg, #f2fbf7 0%, #f7fbfc 100%);
    border-bottom: 1px solid var(--seo-border-light);
    padding: 44px 16px 40px;
    text-align: center;
    /* 负边距抵消容器 padding，让搜索区通栏 */
    margin: -22px -32px 26px;
}
.seo-hero-inner { max-width: 780px; margin: 0 auto; }
.seo-hero-title {
    font-size: 30px;
    margin: 0 0 10px;
    font-weight: 700;
    color: var(--seo-text);
    letter-spacing: -.5px;
}
.seo-hero-title i { color: var(--seo-primary); margin-right: 8px; font-size: 26px; }
.seo-hero-desc { font-size: 14px; color: var(--seo-text-sub); margin: 0 0 26px; }
.seo-quick-form { max-width: 700px; margin: 0 auto; }
.seo-quick-input {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid var(--seo-border);
    border-radius: var(--seo-radius);
    padding: 0 18px;
    margin-bottom: 14px;
    transition: all .2s;
    box-shadow: var(--seo-shadow);
}
.seo-quick-input:focus-within {
    border-color: var(--seo-primary);
    box-shadow: 0 0 0 3px rgba(28,192,136,.1);
}
.seo-quick-input i { color: var(--seo-text-mute); margin-right: 11px; font-size: 15px; }
.seo-quick-input input {
    flex: 1;
    border: none;
    outline: none;
    padding: 14px 0;
    font-size: 15px;
    color: var(--seo-text);
    font-family: inherit;
}
.seo-quick-btns { display: flex; flex-wrap: wrap; gap: 9px; justify-content: center; }
.seo-quick-btn {
    background: #fff;
    border: 1px solid var(--seo-border);
    color: var(--seo-text-sub);
    padding: 8px 18px;
    border-radius: 18px;
    font-size: 13px;
    cursor: pointer;
    transition: all .18s;
    font-weight: 500;
    font-family: inherit;
}
.seo-quick-btn:hover {
    background: var(--seo-primary);
    color: #fff;
    border-color: var(--seo-primary);
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(28,192,136,.22);
}
.seo-hero-tip { font-size: 12.5px; color: var(--seo-text-mute); margin: 15px 0 0; }

/* Hero 统计条 */
.seo-hero-stats {
    display: flex;
    justify-content: center;
    gap: 34px;
    margin-top: 22px;
    flex-wrap: wrap;
}
.seo-stat-item { text-align: center; }
.seo-stat-num {
    font-size: 22px;
    font-weight: 700;
    color: var(--seo-primary);
    line-height: 1.2;
    letter-spacing: -.5px;
}
.seo-stat-label { font-size: 12.5px; color: var(--seo-text-sub); margin-top: 2px; }

/* ============ 分组与工具卡片 ============ */
.seo-section { margin-bottom: 34px; }
.seo-group { margin-bottom: 30px; }
.seo-group-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}
.seo-group-title {
    font-size: 17px;
    margin: 0;
    color: var(--seo-text);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}
.seo-group-title::before {
    content: '';
    width: 3px;
    height: 15px;
    background: var(--seo-primary);
    border-radius: 2px;
}
.seo-group-count { font-size: 12.5px; color: var(--seo-text-mute); }
.seo-group-more { font-size: 13px; color: var(--seo-primary); font-weight: 500; }

.seo-tool-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(228px, 1fr));
    gap: 14px;
}
.seo-tool-card {
    background: var(--seo-card);
    border: 1px solid var(--seo-border-light);
    border-radius: var(--seo-radius);
    padding: 20px 18px;
    box-shadow: var(--seo-shadow);
    transition: all .22s cubic-bezier(.4,0,.2,1);
    display: block;
    position: relative;
    overflow: hidden;
}
.seo-tool-card::after {
    content: '';
    position: absolute;
    left: 0; top: 0;
    width: 100%; height: 2px;
    background: linear-gradient(90deg, var(--seo-primary), var(--seo-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s;
}
.seo-tool-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--seo-shadow-hover);
    border-color: transparent;
}
.seo-tool-card:hover::after { transform: scaleX(1); }
.seo-tool-icon {
    width: 42px; height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--seo-primary) 0%, #3ddba3 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 13px;
    box-shadow: 0 3px 10px rgba(28,192,136,.25);
}
/* 分类图标配色（增强层次感） */
.seo-tool-icon.seo-icon-blue,
.seo-tool-head-icon.seo-icon-blue { background: linear-gradient(135deg,#1a5ae4,#4d86ff); box-shadow: 0 3px 10px rgba(26,90,228,.26); }
.seo-tool-icon.seo-icon-green,
.seo-tool-head-icon.seo-icon-green { background: linear-gradient(135deg,#1cc088,#3ddba3); box-shadow: 0 3px 10px rgba(28,192,136,.26); }
.seo-tool-icon.seo-icon-purple,
.seo-tool-head-icon.seo-icon-purple { background: linear-gradient(135deg,#981ae1,#b95ff0); box-shadow: 0 3px 10px rgba(152,26,225,.26); }
.seo-tool-icon.seo-icon-orange,
.seo-tool-head-icon.seo-icon-orange { background: linear-gradient(135deg,#ff894d,#ffab7d); box-shadow: 0 3px 10px rgba(255,137,77,.26); }
.seo-tool-icon.seo-icon-red,
.seo-tool-head-icon.seo-icon-red { background: linear-gradient(135deg,#e54752,#f0737c); box-shadow: 0 3px 10px rgba(229,71,82,.26); }

.seo-tool-name {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--seo-text);
    letter-spacing: -.2px;
}
.seo-tool-desc {
    font-size: 12.5px;
    color: var(--seo-text-sub);
    line-height: 1.6;
    min-height: 40px;
    margin-bottom: 11px;
}
.seo-tool-go {
    font-size: 12.5px;
    color: var(--seo-primary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}
.seo-tool-go i { transition: transform .2s; font-size: 11px; }
.seo-tool-card:hover .seo-tool-go i { transform: translateX(3px); }

/* ============ 工具页 ============ */
.seo-crumb { font-size: 13px; color: var(--seo-text-mute); margin-bottom: 16px; }
.seo-crumb a:hover { color: var(--seo-primary); }
.seo-crumb i { margin: 0 6px; font-size: 10px; }
.seo-crumb-cur { color: var(--seo-text-sub); }

.seo-tool-head {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--seo-card);
    border: 1px solid var(--seo-border-light);
    border-radius: var(--seo-radius);
    padding: 20px 22px;
    margin-bottom: 16px;
    box-shadow: var(--seo-shadow);
}
.seo-tool-head-icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--seo-primary) 0%, #3ddba3 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(28,192,136,.28);
}
.seo-tool-head-text h1 { font-size: 20px; margin: 0 0 5px; font-weight: 600; letter-spacing: -.3px; }
.seo-tool-head-text p { margin: 0; font-size: 13.5px; color: var(--seo-text-sub); }

.seo-query-card {
    background: var(--seo-card);
    border: 1px solid var(--seo-border-light);
    border-radius: var(--seo-radius);
    padding: 22px;
    box-shadow: var(--seo-shadow);
    margin-bottom: 18px;
}
.seo-query-fields {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 18px;
}
.seo-field label {
    display: block;
    font-size: 13px;
    margin-bottom: 6px;
    color: var(--seo-text);
    font-weight: 500;
}
.seo-field label em { color: var(--seo-danger); font-style: normal; margin-left: 2px; }
.seo-input {
    width: 100%;
    padding: 10px 13px;
    border: 1px solid var(--seo-border);
    border-radius: var(--seo-radius-sm);
    font-size: 14px;
    outline: none;
    transition: all .18s;
    font-family: inherit;
    background: #fff;
}
.seo-input:focus {
    border-color: var(--seo-primary);
    box-shadow: 0 0 0 3px rgba(28,192,136,.1);
}
.seo-query-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.seo-query-tip {
    margin-top: 13px;
    font-size: 12.5px;
    color: var(--seo-text-mute);
    background: #fafbfc;
    padding: 9px 13px;
    border-radius: var(--seo-radius-sm);
    border-left: 2px solid var(--seo-primary);
}
.seo-query-tip i { margin-right: 5px; color: var(--seo-primary); }

.seo-btn {
    padding: 10px 24px;
    border-radius: var(--seo-radius-sm);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all .18s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: inherit;
}
.seo-btn-primary {
    background: var(--seo-primary);
    color: #fff;
    box-shadow: 0 2px 8px rgba(28,192,136,.25);
}
.seo-btn-primary:hover {
    background: var(--seo-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(28,192,136,.32);
}
.seo-btn-plain { background: #f2f4f7; color: var(--seo-text-sub); }
.seo-btn-plain:hover { background: #e8ebf0; }

/* 结果区 */
.seo-result {
    background: var(--seo-card);
    border: 1px solid var(--seo-border-light);
    border-radius: var(--seo-radius);
    box-shadow: var(--seo-shadow);
    margin-bottom: 18px;
    overflow: hidden;
}
.seo-result-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid var(--seo-border-light);
    background: linear-gradient(180deg, #fafcfb, #fff);
}
.seo-result-head h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 7px;
}
.seo-result-head h3 i { color: var(--seo-primary); font-size: 14px; }
.seo-result-time { font-size: 12.5px; color: var(--seo-text-mute); }
.seo-result-body { padding: 18px 20px; overflow-x: auto; }

/* 键值表 */
.seo-kv-table { width: 100%; border-collapse: collapse; }
.seo-kv-table tr { border-bottom: 1px solid var(--seo-border-light); }
.seo-kv-table tr:last-child { border-bottom: none; }
.seo-kv-table th, .seo-kv-table td { padding: 10px 13px; text-align: left; font-size: 13.5px; vertical-align: top; }
.seo-kv-table th {
    width: 150px;
    color: var(--seo-text-sub);
    font-weight: 500;
    background: #fafbfc;
}
.seo-kv-table td { color: var(--seo-text); word-break: break-all; }

/* 列表表 */
.seo-list-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.seo-list-table thead th {
    background: linear-gradient(180deg, var(--seo-primary), var(--seo-primary-dark));
    color: #fff;
    padding: 10px 13px;
    text-align: left;
    font-weight: 500;
    white-space: nowrap;
    font-size: 13px;
}
.seo-list-table tbody tr { border-bottom: 1px solid var(--seo-border-light); transition: background .15s; }
.seo-list-table tbody tr:nth-child(even) { background: #fafcfb; }
.seo-list-table tbody tr:hover { background: var(--seo-primary-light); }
.seo-list-table tbody td { padding: 10px 13px; word-break: break-all; }
.seo-list-table tbody td a { color: var(--seo-accent); }
.seo-list-table tbody td a:hover { text-decoration: underline; }

.seo-badge-status { padding: 2px 9px; border-radius: 10px; font-size: 12px; font-weight: 500; display: inline-block; }
.seo-status-ok { background: #e5f9f2; color: #0d8a5f; }
.seo-status-bad { background: #fdecee; color: #c22b36; }
.seo-status-warn { background: #fff3e8; color: #c96a1f; }

.seo-result-empty, .seo-result-error {
    text-align: center;
    padding: 34px 20px;
    color: var(--seo-text-sub);
}
.seo-result-error { color: var(--seo-danger); }
.seo-result-empty i, .seo-result-error i { font-size: 30px; margin-bottom: 11px; display: block; opacity: .45; }

.seo-loading { text-align: center; padding: 40px; color: var(--seo-text-sub); }
.seo-spinner {
    width: 32px; height: 32px;
    border: 2.5px solid var(--seo-primary-light);
    border-top-color: var(--seo-primary);
    border-radius: 50%;
    margin: 0 auto 13px;
    animation: seo-spin .7s linear infinite;
}
@keyframes seo-spin { to { transform: rotate(360deg); } }

.seo-tool-related { margin-top: 32px; }

/* ============ 文章列表 ============ */
.seo-list-head { margin-bottom: 16px; }
.seo-list-head h1 { font-size: 20px; margin: 0 0 5px; font-weight: 600; }
.seo-list-head h1 i { color: var(--seo-primary); margin-right: 6px; }
.seo-list-head p { margin: 0; color: var(--seo-text-mute); font-size: 13px; }

.seo-cat-tabs { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 8px; margin-bottom: 16px; }
.seo-cat-tab {
    padding: 6px 15px;
    background: #fff;
    border-radius: 16px;
    font-size: 13px;
    white-space: nowrap;
    color: var(--seo-text-sub);
    border: 1px solid var(--seo-border);
    transition: all .18s;
}
.seo-cat-tab:hover { border-color: var(--seo-primary); color: var(--seo-primary); }
.seo-cat-tab.active {
    background: var(--seo-primary);
    color: #fff;
    border-color: var(--seo-primary);
}

.seo-two-col { display: grid; grid-template-columns: 1fr 296px; gap: 18px; }
.seo-col-main { min-width: 0; }

.seo-article-list { display: flex; flex-direction: column; gap: 12px; }
.seo-list-item {
    background: var(--seo-card);
    border: 1px solid var(--seo-border-light);
    border-radius: var(--seo-radius);
    padding: 15px;
    display: flex;
    gap: 15px;
    box-shadow: var(--seo-shadow);
    transition: all .2s;
}
.seo-list-item:hover { box-shadow: var(--seo-shadow-hover); border-color: transparent; }
.seo-list-thumb { flex-shrink: 0; width: 150px; }
.seo-list-thumb img { width: 150px; height: 96px; object-fit: cover; border-radius: var(--seo-radius-sm); }
.seo-list-body { flex: 1; min-width: 0; }
.seo-list-title { font-size: 15.5px; font-weight: 600; margin-bottom: 7px; line-height: 1.45; }
.seo-list-title a:hover { color: var(--seo-primary); }
.seo-badge { font-size: 11px; padding: 1px 7px; border-radius: 4px; margin-left: 5px; font-weight: 400; }
.seo-badge-rec { background: var(--seo-primary-light); color: var(--seo-primary-dark); }
.seo-badge-hot { background: #fdecee; color: #c22b36; }
.seo-list-desc { font-size: 13px; color: var(--seo-text-sub); margin-bottom: 9px; line-height: 1.6; }
.seo-list-meta { font-size: 12px; color: var(--seo-text-mute); display: flex; gap: 15px; }

.seo-side-card {
    background: var(--seo-card);
    border: 1px solid var(--seo-border-light);
    border-radius: var(--seo-radius);
    padding: 17px;
    margin-bottom: 14px;
    box-shadow: var(--seo-shadow);
}
.seo-side-card h3 {
    margin: 0 0 13px;
    font-size: 14.5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 7px;
}
.seo-side-card h3 i { color: var(--seo-primary); font-size: 13px; }
.seo-side-list { list-style: none; margin: 0; padding: 0; }
.seo-side-list li { padding: 7px 0; border-bottom: 1px dashed var(--seo-border-light); font-size: 13px; }
.seo-side-list li:last-child { border-bottom: none; }
.seo-side-list a {
    color: var(--seo-text-sub);
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color .15s;
}
.seo-side-list a:hover { color: var(--seo-primary); }

/* 首页文章卡 */
.seo-article-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 13px; }
.seo-article-card {
    background: var(--seo-card);
    border: 1px solid var(--seo-border-light);
    border-radius: var(--seo-radius);
    padding: 16px;
    box-shadow: var(--seo-shadow);
    transition: all .2s;
}
.seo-article-card:hover { box-shadow: var(--seo-shadow-hover); transform: translateY(-2px); }
.seo-article-title { font-size: 14.5px; font-weight: 600; margin-bottom: 9px; line-height: 1.45; }
.seo-article-meta { font-size: 12px; color: var(--seo-text-mute); display: flex; gap: 13px; }

/* ============ 文章详情 ============ */
.seo-article-detail {
    background: var(--seo-card);
    border: 1px solid var(--seo-border-light);
    border-radius: var(--seo-radius);
    padding: 26px;
    box-shadow: var(--seo-shadow);
}
.seo-article-detail h1 { font-size: 22px; margin: 0 0 13px; line-height: 1.4; font-weight: 600; letter-spacing: -.3px; }
.seo-article-meta {
    font-size: 12.5px;
    color: var(--seo-text-mute);
    display: flex;
    gap: 17px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--seo-border-light);
    margin-bottom: 18px;
}
.seo-article-content { font-size: 14.5px; line-height: 1.85; color: #3a4150; }
.seo-article-content img { border-radius: var(--seo-radius-sm); margin: 10px 0; }
.seo-article-content p { margin: 0 0 15px; }

.seo-readmore-overlay {
    position: relative;
    height: 110px;
    margin-top: -110px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), #fff 88%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    cursor: pointer;
}
.seo-readmore-overlay a { color: var(--seo-primary); text-align: center; display: block; padding-bottom: 6px; font-size: 13px; }
.seo-readmore-overlay i { display: block; font-size: 18px; animation: seo-bounce 1.4s infinite; }
@keyframes seo-bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(5px)} }
.seo-readmore-wrapper { text-align: center; margin-top: 18px; }

.seo-readmore-ad {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(33,44,68,.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}
.seo-readmore-ad.show { display: flex; }
.seo-readmore-ad-box { background: #fff; border-radius: var(--seo-radius); padding: 20px; max-width: 420px; width: 90%; }
.seo-ad-tip { text-align: center; font-size: 13.5px; color: var(--seo-text-sub); margin-bottom: 13px; }
.seo-ad-tip span { color: var(--seo-primary); font-weight: 700; font-size: 17px; }

.seo-article-tags { margin-top: 22px; font-size: 13.5px; color: var(--seo-text-sub); }
.seo-tag {
    display: inline-block;
    padding: 3px 12px;
    background: var(--seo-primary-light);
    color: var(--seo-primary-dark);
    border-radius: 13px;
    font-size: 12.5px;
}
.seo-article-nav {
    display: flex;
    justify-content: space-between;
    gap: 13px;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--seo-border-light);
    font-size: 13.5px;
}
.seo-article-nav a { flex: 1; color: var(--seo-text-sub); min-width: 0; }
.seo-article-nav a.next { text-align: right; }
.seo-article-nav a span { display: block; font-size: 12px; color: var(--seo-text-mute); margin-bottom: 3px; }
.seo-article-nav a:hover { color: var(--seo-primary); }

/* ============ 空状态 / 分页 ============ */
.seo-empty { text-align: center; padding: 56px 20px; color: var(--seo-text-mute); }
.seo-empty i { font-size: 40px; margin-bottom: 13px; opacity: .35; }
.seo-empty p { margin: 0 0 16px; }

.seo-pagination { display: flex; gap: 6px; justify-content: center; margin-top: 22px; flex-wrap: wrap; }
.seo-pagination a, .seo-pagination span {
    padding: 7px 13px;
    background: #fff;
    border: 1px solid var(--seo-border);
    border-radius: var(--seo-radius-sm);
    font-size: 13.5px;
    color: var(--seo-text-sub);
    transition: all .18s;
}
.seo-pagination a:hover { border-color: var(--seo-primary); color: var(--seo-primary); }
.seo-pagination .current { background: var(--seo-primary); color: #fff; border-color: var(--seo-primary); }

/* ============ 底部 ============ */
.seo-footer {
    background: #fff;
    border-top: 1px solid var(--seo-border);
    padding: 32px 0 22px;
    margin-top: 36px;
}
.seo-footer-tools { margin-bottom: 20px; }
.seo-footer-title { font-size: 13.5px; color: var(--seo-text); margin-bottom: 11px; font-weight: 600; }
.seo-footer-links { display: flex; flex-wrap: wrap; gap: 9px 16px; }
.seo-footer-links a { font-size: 12.5px; color: var(--seo-text-sub); transition: color .15s; }
.seo-footer-links a:hover { color: var(--seo-primary); }
.seo-footer p { margin: 5px 0; font-size: 12.5px; text-align: center; color: var(--seo-text-mute); }
.seo-footer-tip { font-size: 12px; }

.seo-float-ad {
    display: none;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    background: #fff;
    box-shadow: 0 -2px 14px rgba(33,44,68,.1);
    z-index: 900;
    padding: 9px;
}
.seo-float-close {
    position: absolute;
    right: 9px; top: 5px;
    background: none; border: none;
    font-size: 20px; color: var(--seo-text-mute);
    cursor: pointer; line-height: 1;
}
.seo-float-body { text-align: center; }

.seo-back-top {
    position: fixed;
    right: 18px; bottom: 64px;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: #fff;
    color: var(--seo-primary);
    border: 1px solid var(--seo-border);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all .25s;
    z-index: 800;
    font-size: 15px;
    box-shadow: var(--seo-shadow);
}
.seo-back-top.show { opacity: 1; visibility: visible; }
.seo-back-top:hover { background: var(--seo-primary); color: #fff; border-color: var(--seo-primary); }

/* ============ 综合查询（首页） ============ */
.seo-searchbar { margin: 0 auto; max-width: 660px; }
.seo-searchbar-box {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid var(--seo-border);
    border-radius: 10px;
    padding: 5px 5px 5px 18px;
    box-shadow: 0 2px 12px rgba(28,192,136,.08);
    transition: all .2s;
}
.seo-searchbar-box:focus-within {
    border-color: var(--seo-primary);
    box-shadow: 0 0 0 3px rgba(28,192,136,.12), 0 4px 16px rgba(28,192,136,.12);
}
.seo-searchbar-box > i { color: var(--seo-text-mute); margin-right: 10px; font-size: 16px; }
.seo-searchbar-box input {
    flex: 1;
    border: none;
    outline: none;
    padding: 13px 0;
    font-size: 16px;
    color: var(--seo-text);
    font-family: inherit;
    min-width: 0;
}
.seo-searchbar-box button {
    background: var(--seo-primary);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background .18s;
    font-family: inherit;
    white-space: nowrap;
}
.seo-searchbar-box button:hover { background: var(--seo-primary-dark); }
.seo-searchbar-box button:disabled { opacity: .6; cursor: not-allowed; }

.seo-overview { margin-bottom: 24px; }
.seo-ov-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #f2fbf7 0%, #ffffff 60%);
    border: 1px solid var(--seo-border-light);
    border-left: 3px solid var(--seo-primary);
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 13px;
    box-shadow: var(--seo-shadow);
    flex-wrap: wrap;
    gap: 8px;
}
.seo-ov-domain { font-size: 20px; font-weight: 700; color: var(--seo-text); letter-spacing: -.3px; }
.seo-ov-domain i { color: var(--seo-primary); margin-right: 9px; font-size: 18px; }
.seo-ov-time { font-size: 12.5px; color: var(--seo-text-mute); }
.seo-ov-right { display: flex; align-items: center; gap: 12px; }
.seo-ov-count {
    font-size: 12.5px;
    color: var(--seo-primary-dark);
    background: var(--seo-primary-light);
    padding: 3px 11px;
    border-radius: 12px;
    font-weight: 500;
}
.seo-ov-requery {
    background: #fff;
    border: 1px solid var(--seo-border);
    color: var(--seo-text-sub);
    padding: 5px 13px;
    border-radius: 7px;
    font-size: 12.5px;
    cursor: pointer;
    transition: all .18s;
    font-family: inherit;
}
.seo-ov-requery:hover { border-color: var(--seo-primary); color: var(--seo-primary); }

/* 与 seo.chinaz.com 一致：单列全宽纵向排布 */
.seo-ov-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.seo-ov-card {
    background: #fff;
    border: 1px solid var(--seo-border-light);
    border-radius: 10px;
    box-shadow: var(--seo-shadow);
    overflow: hidden;
}
.seo-ov-head {
    padding: 11px 18px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--seo-text);
    border-bottom: 1px solid var(--seo-border-light);
    border-left: 3px solid var(--seo-primary);
    background: linear-gradient(180deg,#fafcfb,#fff);
    display: flex;
    align-items: center;
    gap: 8px;
}
.seo-ov-head i { color: var(--seo-primary); font-size: 14px; }
.seo-ov-body { padding: 14px 18px; }
/* 综合查询内的键值表：标签列窄一些 + 右侧分隔线（chinaz 风格） */
.seo-ov-body .seo-kv-table th {
    width: 106px;
    border-right: 1px solid var(--seo-border-light);
    font-weight: 500;
}
.seo-ov-body .seo-kv-table th,
.seo-ov-body .seo-kv-table td { padding: 8px 12px; font-size: 13px; }
.seo-ov-card-fail .seo-ov-head { opacity: .7; }
.seo-ov-none { text-align: center; padding: 20px; color: var(--seo-text-mute); font-size: 13px; }
.seo-ov-foot { margin-top: 11px; font-size: 12.5px; color: var(--seo-text-mute); }
.seo-ov-more {
    color: var(--seo-primary);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    transition: gap .18s;
}
.seo-ov-more:hover { gap: 6px; text-decoration: underline; }
.seo-ov-more i { font-size: 10px; }
.seo-na { color: var(--seo-text-mute); }

/* 数字指标 */
.seo-metric-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(84px,1fr)); gap: 8px; }
.seo-metric {
    text-align: center;
    padding: 11px 4px;
    background: linear-gradient(180deg,#ffffff,#fafcfb);
    border: 1px solid var(--seo-border-light);
    border-radius: 8px;
    transition: all .18s;
}
.seo-metric:hover { border-color: var(--seo-primary); box-shadow: 0 2px 8px rgba(28,192,136,.1); }
.seo-metric-val { font-size: 21px; font-weight: 700; color: var(--seo-primary); line-height: 1.2; letter-spacing: -.4px; word-break: break-all; }
.seo-metric-label { font-size: 11.5px; color: var(--seo-text-sub); margin-top: 4px; }

/* ===== 结果标题 + 收录平排（对应 chinaz _chinaz-seo-new2） ===== */
.seo-ov-result {
    background: #fff;
    border: 1px solid var(--seo-border-light);
    border-radius: 8px;
    margin-bottom: 14px;
    overflow: hidden;
}
.seo-ov-result-tit {
    padding: 12px 18px;
    font-size: 15px;
    font-weight: 600;
    color: var(--seo-text);
    border-bottom: 1px solid var(--seo-border-light);
}
.seo-sl-flat { display: flex; flex-wrap: wrap; }
.seo-sl-item {
    flex: 1 1 12.5%;
    min-width: 96px;
    text-align: center;
    padding: 16px 6px;
    border-right: 1px solid var(--seo-border-light);
    transition: background .18s;
    text-decoration: none;
    display: block;
}
.seo-sl-item:last-child { border-right: none; }
a.seo-sl-item:hover { background: var(--seo-primary-light); }
.seo-sl-val {
    font-size: 20px;
    font-weight: 700;
    color: var(--seo-text-mute);
    line-height: 1.2;
}
.seo-sl-val.has { color: var(--seo-primary); }
.seo-sl-name { font-size: 12px; color: var(--seo-text-sub); margin-top: 6px; }

/* ===== 页面TDK信息（三列，对应 chinaz SeoMeatMain） ===== */
.seo-tdk-table { width: 100%; border-collapse: collapse; table-layout: fixed; }
.seo-tdk-table tr { border-bottom: 1px solid var(--seo-border-light); }
.seo-tdk-table tr:last-child { border-bottom: none; }
.seo-tdk-table td { padding: 11px 14px; font-size: 13px; vertical-align: top; }
.seo-tdk-name {
    width: 150px;
    color: var(--seo-text-sub);
    background: #fafbfc;
    border-right: 1px solid var(--seo-border-light);
    font-weight: 500;
    white-space: nowrap;
}
.seo-tdk-count { width: 230px; color: var(--seo-text-mute); font-size: 12.5px; white-space: nowrap; }
.seo-tdk-count b { color: var(--seo-accent); font-size: 14px; font-weight: 700; }
.seo-tdk-count b.over { color: var(--seo-danger); }
.seo-tdk-val { color: var(--seo-text); line-height: 1.7; word-break: break-all; }

/* ===== SEO信息（左标签 + 右内容，对应 chinaz _chinaz-seo-newt） ===== */
.seo-info-table { width: 100%; border-collapse: collapse; table-layout: fixed; }
.seo-info-table tr { border-bottom: 1px solid var(--seo-border-light); }
.seo-info-table tr:last-child { border-bottom: none; }
.seo-info-label {
    width: 130px;
    background: #f8fafb;
    color: var(--seo-text);
    font-weight: 600;
    font-size: 13.5px;
    padding: 14px 16px;
    border-right: 1px solid var(--seo-border-light);
    vertical-align: middle;
}
/* 内联 SVG 图标（不依赖字体库） */
.seo-svg { width: 15px; height: 15px; vertical-align: -2px; margin-right: 6px; color: var(--seo-primary); flex: none; }
.seo-brand { width: 16px; height: 16px; border-radius: 50%; flex: none; display: block; }
.seo-info-content { padding: 14px 16px; vertical-align: middle; }
.seo-uv-line { margin-bottom: 9px; font-size: 13px; }
.seo-uv-title { color: var(--seo-text-sub); }
.seo-direct-value { color: var(--seo-primary); font-size: 15px; font-weight: 700; margin-left: 5px; }
.seo-direct-rank { color: var(--seo-text-sub); font-size: 13px; margin-right: 10px; white-space: nowrap; }
.seo-direct-rank b { color: var(--seo-primary); font-size: 16px; margin-left: 3px; }
.seo-rank-line { display: flex; align-items: center; flex-wrap: wrap; gap: 7px 4px; }
.seo-rank-title { font-size: 13px; color: var(--seo-text-sub); margin-right: 6px; }

/* 权重项：可点击，带右侧箭头（对应 chinaz 的 iconzhankai1） */
.seo-rank-item {
    font-size: 13px;
    color: var(--seo-text-sub);
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 3px 9px;
    border-radius: 14px;
    transition: all .18s;
    white-space: nowrap;
}
.seo-rank-item b {
    color: var(--seo-text-mute);
    font-size: 15px;
    font-weight: 700;
    margin: 0 1px;
}
.seo-rank-item.has b { color: var(--seo-primary); }
.seo-rank-item > i { font-size: 9px; color: var(--seo-text-mute); opacity: .55; }
.seo-rank-item:hover {
    background: var(--seo-primary-light);
    color: var(--seo-primary-dark);
}
.seo-rank-item:hover b { color: var(--seo-primary-dark); }
.seo-rank-item:hover > i { opacity: 1; color: var(--seo-primary); }

.seo-rank-static { font-size: 13px; color: var(--seo-text-sub); margin-right: 20px; }
.seo-rank-static b { color: var(--seo-text); font-size: 14px; font-weight: 600; margin-left: 3px; }

/* 搜索引擎收录明细：chinaz seoItem 横向并排风格 */
.seo-engine-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
}
.seo-engine-box {
    background: #fff;
    border: 1px solid var(--seo-border-light);
    border-radius: 6px;
    overflow: hidden;
}
.seo-engine-title {
    padding: 9px 12px;
    background: #f8fafb;
    border-bottom: 1px solid var(--seo-border-light);
    font-size: 13px;
    color: var(--seo-text-sub);
}
.seo-engine-title strong { color: var(--seo-text); font-weight: 600; }
.seo-engine-data { padding: 10px 12px; font-size: 13px; line-height: 2; color: var(--seo-text-sub); }
.seo-engine-query { white-space: nowrap; }
.seo-engine-num {
    color: var(--seo-primary);
    font-weight: 700;
    font-size: 14px;
}
.seo-engine-num:hover { text-decoration: underline; }
.seo-engine-go {
    color: var(--seo-text-sub);
    font-size: 12.5px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border: 1px solid var(--seo-border);
    border-radius: 13px;
    transition: all .18s;
    white-space: nowrap;
}
.seo-engine-go:hover {
    background: var(--seo-primary);
    color: #fff;
    border-color: var(--seo-primary);
}
.seo-engine-go i { font-size: 9px; }

/* 权重 */
.seo-weight-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(104px,1fr)); gap: 9px; }
.seo-weight-item {
    text-align: center;
    padding: 12px 6px;
    background: linear-gradient(180deg,#ffffff,#fafcfb);
    border-radius: 8px;
    border: 1px solid var(--seo-border-light);
    transition: all .18s;
}
.seo-weight-item:hover { border-color: var(--seo-primary); box-shadow: 0 2px 8px rgba(28,192,136,.1); }
.seo-weight-name {
    font-size: 12.5px;
    color: var(--seo-text-sub);
    margin-bottom: 8px;
    font-weight: 600;
    padding-bottom: 6px;
    border-bottom: 1px dashed var(--seo-border-light);
}
.seo-weight-nums { display: flex; justify-content: center; gap: 10px; font-size: 12px; color: var(--seo-text-sub); }
.seo-weight-nums b { font-size: 20px; color: var(--seo-primary); font-weight: 700; display: block; line-height: 1.2; }
.seo-weight-ip { font-size: 11.5px; color: var(--seo-text-mute); margin-top: 6px; word-break: break-all; }

/* 安全检测 */
.seo-safe-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(104px,1fr)); gap: 9px; }
.seo-safe-item { text-align: center; padding: 13px 7px; border-radius: 8px; border: 1px solid; }
.seo-safe-item.ok { background: #e5f9f2; border-color: #b8ecd9; }
.seo-safe-item.bad { background: #fdecee; border-color: #f7c5ca; }
.seo-safe-name { font-size: 13px; color: var(--seo-text-sub); margin-bottom: 5px; font-weight: 500; }
.seo-safe-status { font-size: 16px; font-weight: 700; }
.seo-safe-item.ok .seo-safe-status { color: #0d8a5f; }
.seo-safe-item.bad .seo-safe-status { color: #c22b36; }
.seo-safe-msg { font-size: 11.5px; color: var(--seo-text-mute); margin-top: 4px; word-break: break-all; }

.seo-error {
    background: #fdecee;
    border: 1px solid #f7c5ca;
    color: #c22b36;
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 18px;
    font-size: 14px;
}
.seo-error i { margin-right: 7px; }

/* 单项工具入口（紧凑标签，非卡片） */
.seo-tool-entry {
    background: #fff;
    border: 1px solid var(--seo-border-light);
    border-radius: 10px;
    padding: 17px 20px;
    box-shadow: var(--seo-shadow);
    margin-bottom: 24px;
}
.seo-entry-head { margin-bottom: 12px; display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.seo-entry-title { font-size: 14.5px; font-weight: 600; color: var(--seo-text); }
.seo-entry-sub { font-size: 12.5px; color: var(--seo-text-mute); }
.seo-entry-links { display: flex; flex-wrap: wrap; gap: 8px; }
.seo-entry-links a {
    padding: 6px 13px;
    background: #fafbfc;
    border: 1px solid var(--seo-border);
    border-radius: 16px;
    font-size: 12.5px;
    color: var(--seo-text-sub);
    transition: all .18s;
}
.seo-entry-links a:hover {
    background: var(--seo-primary);
    color: #fff;
    border-color: var(--seo-primary);
}
.seo-entry-links a i { margin-right: 5px; font-size: 11px; }

/* ============ 响应式 ============ */
@media (max-width: 992px) {
    .seo-two-col { grid-template-columns: 1fr; }
    .seo-dropdown-menu { min-width: 460px; grid-template-columns: repeat(2, 1fr); }
    .seo-engine-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
    .seo-nav { display: none; }
    .seo-menu-toggle { display: block; }
    .seo-search-btn { display: none; }
    .seo-header-inner { gap: 12px; }
    .seo-hero { padding: 32px 16px 34px; }
    .seo-hero-title { font-size: 23px; }
    .seo-hero-desc { font-size: 13px; }
    .seo-tool-head { flex-direction: column; text-align: center; }
    .seo-tool-grid { grid-template-columns: 1fr; }
    .seo-query-fields { grid-template-columns: 1fr; }
    .seo-list-item { flex-direction: column; }
    .seo-list-thumb, .seo-list-thumb img { width: 100%; }
    .seo-list-thumb img { height: 170px; }
    .seo-article-detail { padding: 17px; }
    .seo-article-detail h1 { font-size: 19px; }
    .seo-article-nav { flex-direction: column; }
    .seo-article-nav a.next { text-align: left; }
    .seo-kv-table th { width: 104px; }
    .seo-footer p { text-align: left; }
    .seo-searchbar-box { flex-direction: column; align-items: stretch; padding: 12px; gap: 8px; }
    .seo-searchbar-box > i { display: none; }
    .seo-searchbar-box input { padding: 8px 0; font-size: 15px; }
    .seo-searchbar-box button { width: 100%; justify-content: center; }
    .seo-ov-summary { flex-direction: column; align-items: flex-start; }
    .seo-engine-grid { grid-template-columns: 1fr; }
    .seo-info-label { width: 96px; padding: 12px 10px; }
    .seo-info-content { padding: 12px 10px; }
    .seo-tdk-table, .seo-tdk-table tbody, .seo-tdk-table tr, .seo-tdk-table td { display: block; width: 100%; }
    .seo-tdk-name { border-right: none; }
    .seo-tdk-count { white-space: normal; }
}
