/* ============================================================
   ty-008 电竞体育游戏企业模板
   配色体系：紫电单色系（#8f6bff 主 / #6a3fe0 深 / #c9b3ff 亮）
   结构：电网格 HERO（背景电路网格流动 + 顶部光晕 + 紫色数据带）
        电轨标题（竖能量条-编号-轨道线-菱形端点）
        左图 + 能量参数行关于（label-虚线-value）
        双列行卡业务（对角分割图标方块）
        主推横幅文左图右 + 四小卡横排（含 CSS 加号引导卡）
        2x2 能量方格数据（大数字 + 底部能量条）
        竖向时间轴流程（发光节点）/ 3x3 编号角标荣誉网格
        特性行列表左 + 图右 APP / 徽章方格 4x2 伙伴
        焦点卡 + 迷你行动态 / 脉冲环 CTA
        顶部横幅条弹层（fixed top 全宽下拉 + 条目横排）
        卡片 hover 配方：外发光扩散（边框亮 + 紫光外扩 + 上浮）
        按钮语言：双线轨道（外框 + outline 双层描边，微圆角）
   ============================================================ */

/* ---------- 基础 ---------- */
body {
    font-family: "Microsoft YaHei", "PingFang SC", Tahoma, Helvetica, sans-serif;
    background-color: #0a0714;
    background-image:
        radial-gradient(ellipse at 50% -14%, rgba(143, 107, 255, .1), transparent 55%),
        linear-gradient(180deg, #0a0714 0%, #0d0918 100%);
    background-attachment: fixed;
    color: #f3edff;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
}

a { color: #c9b3ff; text-decoration: none; transition: color .15s ease, text-shadow .15s ease; }
a:hover { color: #8f6bff; text-decoration: none; text-shadow: 0 0 12px rgba(143, 107, 255, .5); }

img { max-width: 100%; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    box-sizing: border-box;
}

/* ---------- 顶部导航 ---------- */
.vl-header {
    background: linear-gradient(180deg, rgba(16, 12, 28, .98), rgba(10, 7, 20, .92));
    border-bottom: 1px solid rgba(143, 107, 255, .22);
    box-shadow: 0 4px 26px rgba(0, 0, 0, .6);
}

.vl-header-inner {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 6px;
    min-height: 64px;
}

.vl-logo {
    display: inline-flex;
    align-items: center;
    margin-right: 10px;
    line-height: 64px;
    white-space: nowrap;
    flex-shrink: 0;
}

.vl-logo .logo-badge {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    background: linear-gradient(135deg, #8f6bff, #6a3fe0);
    box-shadow: 0 0 18px rgba(143, 107, 255, .45);
    position: relative;
    top: 8px;
    border-radius: 3px;
}

.vl-logo .logo-badge::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 10px;
    height: 10px;
    margin: -5px 0 0 -5px;
    transform: rotate(45deg);
    background: #0a0714;
}

.vl-logo .logo-word {
    font-size: 19px;
    font-weight: 900;
    letter-spacing: 1px;
    color: #f3edff;
}

.vl-logo .logo-word:hover { color: #c9b3ff; text-shadow: 0 0 14px rgba(143, 107, 255, .55); }

.vl-nav {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    padding: 0;
    margin: 0;
    list-style: none;
}

.vl-nav > li { position: relative; }

.vl-nav > li > a {
    display: block;
    padding: 0 15px;
    font-size: 14px;
    line-height: 64px;
    color: #b3a3d6;
    position: relative;
    white-space: nowrap;
}

.vl-nav > li > a::after {
    content: "";
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 0;
    height: 2px;
    background: linear-gradient(90deg, #8f6bff, #c9b3ff);
    transform: scaleX(0);
    transition: transform .18s ease;
}

.vl-nav > li:hover > a,
.vl-nav > li.active > a { color: #f3edff; }

.vl-nav > li:hover > a::after,
.vl-nav > li.active > a::after { transform: scaleX(1); }

.vl-nav .drop-caret {
    display: inline-block;
    margin-left: 4px;
    font-size: 9px;
    color: #665886;
    transition: transform .18s ease;
}

.vl-nav-hasdrop:hover .drop-caret,
.vl-nav-hasdrop.open .drop-caret { transform: rotate(180deg); color: #8f6bff; }

/* 栏目中心下拉（桌面 hover + 触屏 .open 双通道） */
.vl-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 60;
    min-width: 200px;
    padding: 10px;
    background: rgba(16, 12, 28, .98);
    border: 1px solid rgba(143, 107, 255, .28);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .55), 0 0 20px rgba(143, 107, 255, .08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s;
}

.vl-nav-hasdrop:hover .vl-dropdown,
.vl-nav-hasdrop.open .vl-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.vl-dropdown-cols {
    width: 360px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px 10px;
}

.vl-dropdown li { list-style: none; }

.vl-dropdown li > a {
    display: block;
    padding: 9px 12px;
    font-size: 13px;
    color: #b3a3d6;
    border-left: 2px solid transparent;
    transition: all .15s ease;
}

.vl-dropdown li > a:hover {
    color: #c9b3ff;
    background: rgba(143, 107, 255, .08);
    border-left-color: #8f6bff;
}

.vl-dropdown-sub { padding: 2px 0 2px 10px; margin: 0; }

.vl-dropdown-sub li a {
    display: block;
    padding: 6px 10px;
    font-size: 12px;
    color: #665886;
}

.vl-dropdown-sub li a:hover { color: #c9b3ff; }

.vl-header-side {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
    flex-shrink: 0;
}

.vl-search { margin: 0; }

.vl-search form {
    display: flex;
    align-items: center;
    gap: 0;
}

.vl-search input[type="text"] {
    width: 150px;
    height: 34px;
    padding: 0 12px;
    box-sizing: border-box;
    font-size: 12px;
    color: #f3edff;
    background: rgba(143, 107, 255, .07);
    border: 1px solid rgba(143, 107, 255, .25);
    border-right: none;
    outline: none;
    border-radius: 3px 0 0 3px;
}

.vl-search input[type="text"]::placeholder { color: #665886; }

.vl-search input[type="text"]:focus {
    border-color: rgba(143, 107, 255, .6);
    background: rgba(143, 107, 255, .12);
}

.vl-search-btn {
    height: 34px;
    padding: 0 14px;
    font-size: 12px;
    color: #f3edff;
    font-weight: 700;
    background: linear-gradient(90deg, #8f6bff, #6a3fe0);
    border: none;
    cursor: pointer;
    border-radius: 0 3px 3px 0;
}

.vl-play-btn {
    display: inline-block;
    padding: 8px 22px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #f3edff;
    background: linear-gradient(135deg, #8f6bff, #6a3fe0);
    box-shadow: inset 0 0 0 1px rgba(243, 237, 255, .28), 0 0 16px rgba(143, 107, 255, .35);
    cursor: pointer;
    border-radius: 3px;
    transition: filter .15s ease;
}

.vl-play-btn:hover { filter: brightness(1.12); color: #f3edff; }

/* ---------- 通用按钮（双线轨道：外框 + outline 双层描边） ---------- */
.vl-btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-align: center;
    cursor: pointer;
    border-radius: 3px;
    transition: all .18s ease;
}

.vl-btn-main {
    color: #f3edff;
    background: linear-gradient(135deg, #8f6bff, #6a3fe0);
    box-shadow: inset 0 0 0 1px rgba(243, 237, 255, .3), 0 0 20px rgba(143, 107, 255, .3);
}

.vl-btn-main:hover { filter: brightness(1.12); color: #fff; text-shadow: none; }

.vl-btn-ghost {
    color: #c9b3ff;
    background: rgba(143, 107, 255, .05);
    border: 1px solid rgba(143, 107, 255, .6);
    outline: 1px solid rgba(143, 107, 255, .28);
    outline-offset: 3px;
}

.vl-btn-ghost:hover {
    background: linear-gradient(135deg, #8f6bff, #6a3fe0);
    color: #f3edff;
    border-color: rgba(143, 107, 255, .9);
    outline-offset: 2px;
    outline-color: rgba(201, 179, 255, .55);
    text-shadow: none;
}

/* ---------- HERO：电网格构图 ---------- */
.vl-hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 0;
    text-align: center;
    background-image:
        repeating-linear-gradient(0deg, rgba(143, 107, 255, .05) 0 1px, transparent 1px 44px),
        repeating-linear-gradient(90deg, rgba(143, 107, 255, .05) 0 1px, transparent 1px 44px);
    animation: vlGridShift 12s linear infinite;
}

@keyframes vlGridShift {
    from { background-position: 0 0, 0 0; }
    to { background-position: 44px 44px, 44px 44px; }
}

/* 顶部紫色光晕 */
.vl-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 230px;
    background: radial-gradient(ellipse at 50% 0%, rgba(143, 107, 255, .16), transparent 70%);
    pointer-events: none;
}

.vl-hero-in { position: relative; z-index: 2; }

.vl-hero-kicker {
    display: inline-block;
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 6px;
    color: #c9b3ff;
    padding: 6px 20px;
    border: 1px solid rgba(143, 107, 255, .4);
    border-radius: 3px;
    background: rgba(143, 107, 255, .07);
}

.vl-hero-title {
    margin: 20px 0 14px;
    font-size: 42px;
    font-weight: 900;
    letter-spacing: 3px;
    background: linear-gradient(180deg, #f3edff, #8f6bff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vl-hero-slogan {
    margin: 0 0 14px;
    font-size: 16px;
    letter-spacing: 8px;
    color: #c9b3ff;
}

.vl-hero-sub {
    max-width: 640px;
    margin: 0 auto 30px;
    font-size: 14px;
    line-height: 1.9;
    color: #b3a3d6;
}

.vl-hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 62px;
}

/* 贴底紫色数据带 */
.vl-hero-data {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(143, 107, 255, .28);
    background: linear-gradient(90deg, rgba(106, 63, 224, .2), rgba(143, 107, 255, .08));
}

.vl-data-row { display: flex; }

.vl-data-item {
    flex: 1 1 25%;
    padding: 22px 10px 24px;
    border-left: 1px solid rgba(243, 237, 255, .14);
    text-align: center;
}

.vl-data-item:first-child { border-left: none; }

.vl-data-item b {
    display: block;
    font-family: Arial, sans-serif;
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(90deg, #f3edff, #8f6bff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vl-data-item b i {
    font-style: normal;
    font-size: 14px;
    letter-spacing: 1px;
}

.vl-data-item span {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    letter-spacing: 3px;
    color: rgba(243, 237, 255, .72);
}

/* ---------- 章节头：电轨标题（竖能量条-编号-轨道线-菱形端点） ---------- */
.vl-sec { padding: 72px 0 64px; }

.vl-sec-dark {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(143, 107, 255, .06), transparent 60%),
        linear-gradient(180deg, #151024, #0d0918);
    border-top: 1px solid rgba(143, 107, 255, .1);
    border-bottom: 1px solid rgba(143, 107, 255, .1);
}

.vl-sec-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 40px;
}

.vl-sec-bar {
    flex-shrink: 0;
    width: 4px;
    height: 26px;
    background: linear-gradient(180deg, #8f6bff, #6a3fe0);
    box-shadow: 0 0 12px rgba(143, 107, 255, .5);
}

.vl-sec-title {
    margin: 0;
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    font-size: 21px;
    font-weight: 900;
    letter-spacing: 3px;
    color: #f3edff;
    white-space: nowrap;
}

.vl-sec-title i {
    font-style: normal;
    font-family: Arial, sans-serif;
    font-size: 17px;
    font-weight: 900;
    color: #8f6bff;
}

.vl-sec-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(143, 107, 255, .4), transparent);
}

.vl-sec-node {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    background: #8f6bff;
    transform: rotate(45deg);
    box-shadow: 0 0 10px rgba(143, 107, 255, .6);
}

/* ---------- 关于我们：左图 + 右能量参数行 ---------- */
.vl-about {
    display: grid;
    grid-template-columns: 1fr 1.08fr;
    gap: 52px;
    align-items: center;
}

.vl-about-fig {
    position: relative;
    padding: 12px;
    background: linear-gradient(160deg, rgba(143, 107, 255, .08), rgba(16, 12, 28, .5));
    border: 1px solid rgba(143, 107, 255, .24);
}

.vl-about-fig mip-img img { height: 340px !important; }

.vl-about-lead {
    margin: 0 0 22px;
    font-size: 15.5px;
    line-height: 2;
    color: #b3a3d6;
}

.vl-about-lead strong {
    color: #c9b3ff;
    font-weight: 700;
    text-shadow: 0 0 14px rgba(143, 107, 255, .35);
}

/* 能量参数行：label - 中虚线 - value */
.vl-params { margin: 0 0 30px; }

.vl-param {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px dashed rgba(143, 107, 255, .18);
}

.vl-param:first-child { border-top: 1px dashed rgba(143, 107, 255, .18); }

.vl-param span {
    flex-shrink: 0;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #c9b3ff;
}

.vl-param em {
    flex: 1;
    height: 0;
    border-top: 1px dashed rgba(143, 107, 255, .3);
}

.vl-param b {
    flex-shrink: 0;
    font-size: 13px;
    font-weight: 400;
    color: #8a7ab0;
}

/* ---------- 核心业务：双列行卡（对角分割图标方块） ---------- */
.vl-srv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.vl-srv-row {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px;
    background: linear-gradient(160deg, rgba(21, 16, 36, .92), rgba(16, 12, 28, .8));
    border: 1px solid rgba(143, 107, 255, .14);
    transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.vl-srv-row:hover {
    border-color: rgba(143, 107, 255, .55);
    box-shadow: 0 0 26px rgba(143, 107, 255, .16), inset 0 0 18px rgba(143, 107, 255, .05);
    transform: translateY(-4px);
}

/* 对角分割图标方块 */
.sr-ico {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border: 1px solid rgba(143, 107, 255, .4);
    background: linear-gradient(135deg, rgba(143, 107, 255, .25) 50%, rgba(21, 16, 36, .4) 50%);
    transition: all .25s ease;
}

.vl-srv-row:hover .sr-ico {
    border-color: rgba(143, 107, 255, .8);
    box-shadow: 0 0 14px rgba(143, 107, 255, .3);
}

.sr-body b {
    display: block;
    margin-bottom: 6px;
    font-size: 16px;
    letter-spacing: 1px;
    color: #f3edff;
}

.sr-body p {
    margin: 0;
    font-size: 12.5px;
    line-height: 1.8;
    color: #8a7ab0;
}

/* ---------- 游戏产品：主推横幅（文左图右）+ 四小卡横排 ---------- */
.vl-game-hero {
    display: flex;
    align-items: stretch;
    overflow: hidden;
    margin-bottom: 16px;
    background: linear-gradient(160deg, rgba(21, 16, 36, .94), rgba(16, 12, 28, .82));
    border: 1px solid rgba(143, 107, 255, .16);
    transition: border-color .22s ease, box-shadow .22s ease;
}

.vl-game-hero:hover {
    border-color: rgba(143, 107, 255, .55);
    box-shadow: 0 0 30px rgba(143, 107, 255, .14);
}

.vl-game-hero .gh-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    padding: 32px 36px;
}

.gh-tag {
    align-self: flex-start;
    padding: 4px 14px;
    margin-bottom: 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #f3edff;
    background: linear-gradient(90deg, #8f6bff, #6a3fe0);
    border-radius: 3px;
}

.gh-body b {
    display: block;
    margin-bottom: 10px;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 2px;
    color: #f3edff;
}

.gh-body i {
    font-style: normal;
    display: block;
    margin-bottom: 18px;
    font-size: 13.5px;
    line-height: 1.85;
    color: #b3a3d6;
}

.gh-btn {
    align-self: flex-start;
    padding: 9px 24px;
    font-style: normal;
    font-size: 12.5px;
    letter-spacing: 2px;
    color: #c9b3ff;
    border: 1px solid rgba(143, 107, 255, .55);
    outline: 1px solid rgba(143, 107, 255, .25);
    outline-offset: 3px;
    border-radius: 3px;
    transition: all .2s ease;
}

.vl-game-hero:hover .gh-btn {
    color: #f3edff;
    background: linear-gradient(135deg, #8f6bff, #6a3fe0);
}

.vl-game-hero .gh-fig { flex: 0 0 46%; overflow: hidden; }

.vl-game-hero .gh-fig mip-img img {
    height: 300px !important;
    transition: transform .35s ease;
}

.vl-game-hero:hover .gh-fig mip-img img { transform: scale(1.04); }

.vl-game-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.vl-game-mini {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 18px 14px;
    background: linear-gradient(160deg, rgba(21, 16, 36, .92), rgba(16, 12, 28, .8));
    border: 1px solid rgba(143, 107, 255, .14);
    transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.vl-game-mini:hover {
    border-color: rgba(143, 107, 255, .55);
    box-shadow: 0 0 24px rgba(143, 107, 255, .15);
    transform: translateY(-4px);
}

.vl-game-mini .gm-fig { overflow: hidden; }

.vl-game-mini .gm-fig mip-img img {
    height: 150px !important;
    transition: transform .35s ease;
}

.vl-game-mini:hover .gm-fig mip-img img { transform: scale(1.06); }

.vl-game-mini b {
    margin-top: 12px;
    font-size: 15px;
    letter-spacing: 1px;
    color: #f3edff;
}

.vl-game-mini span {
    margin-top: 4px;
    font-size: 12px;
    color: #8a7ab0;
}

/* 更多产品引导卡（CSS 加号，无图）——选择器需压过 .vl-game-mini span 的字号/颜色 */
.vl-game-mini .gm-plus {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 150px;
    box-sizing: border-box;
    font-size: 46px;
    font-weight: 300;
    line-height: 1;
    color: #8f6bff;
    border: 1px dashed rgba(143, 107, 255, .35);
    transition: all .25s ease;
}

.vl-game-mini.vl-game-more:hover .gm-plus {
    border-color: rgba(143, 107, 255, .8);
    color: #c9b3ff;
    transform: scale(1.06);
}

/* 防御：span 通用字号规则不得再侵入引导卡（特异性锁位） */
.vl-game-mini span.gm-plus { font-size: 46px; color: #8f6bff; }

/* ---------- 企业数据：2x2 能量方格（大数字 + 底部能量条） ---------- */
.vl-cells {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.vl-cell {
    position: relative;
    overflow: hidden;
    padding: 36px 26px 32px;
    text-align: center;
    background: linear-gradient(160deg, rgba(21, 16, 36, .94), rgba(16, 12, 28, .84));
    border: 1px solid rgba(143, 107, 255, .18);
    transition: border-color .22s ease, box-shadow .22s ease;
}

.vl-cell:hover {
    border-color: rgba(143, 107, 255, .55);
    box-shadow: 0 0 28px rgba(143, 107, 255, .15), inset 0 0 22px rgba(143, 107, 255, .05);
}

.vl-cell b {
    display: block;
    font-family: Arial, sans-serif;
    font-size: 40px;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(90deg, #f3edff, #8f6bff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vl-cell b i {
    font-style: normal;
    font-size: 16px;
    letter-spacing: 1px;
}

.vl-cell span {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    letter-spacing: 3px;
    color: #8a7ab0;
}

.cell-bar {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, #8f6bff, #6a3fe0, transparent);
    transition: filter .2s ease;
}

.vl-cell:hover .cell-bar { filter: brightness(1.4); }

/* ---------- 服务流程：竖向时间轴（发光节点） ---------- */
.vl-timeline {
    position: relative;
    max-width: 720px;
    padding: 0 0 0 34px;
    margin: 0;
    list-style: none;
}

.vl-timeline::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(180deg, #8f6bff, rgba(143, 107, 255, .1));
}

.vl-moment { position: relative; padding: 0 0 26px; }

.vl-moment:last-child { padding-bottom: 0; }

.tm-node {
    position: absolute;
    left: -31px;
    top: 4px;
    width: 14px;
    height: 14px;
    box-sizing: border-box;
    border-radius: 50%;
    background: #0d0918;
    border: 3px solid #8f6bff;
    box-shadow: 0 0 14px rgba(143, 107, 255, .6);
}

.tm-body {
    padding: 20px 24px;
    background: linear-gradient(160deg, rgba(21, 16, 36, .92), rgba(16, 12, 28, .8));
    border: 1px solid rgba(143, 107, 255, .16);
    transition: border-color .22s ease, box-shadow .22s ease;
}

.tm-body:hover {
    border-color: rgba(143, 107, 255, .5);
    box-shadow: 0 0 24px rgba(143, 107, 255, .14);
}

.tm-body b {
    display: block;
    margin-bottom: 6px;
    font-size: 16px;
    letter-spacing: 1px;
    color: #f3edff;
}

.tm-body p {
    margin: 0;
    font-size: 12.5px;
    line-height: 1.8;
    color: #8a7ab0;
}

/* ---------- 资质荣誉：3x3 编号角标网格 ---------- */
.vl-cert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.vl-cert {
    position: relative;
    background: #0a0714;
    border: 1px solid rgba(143, 107, 255, .15);
    transition: border-color .2s ease, box-shadow .2s ease;
}

.vl-cert:hover {
    border-color: rgba(143, 107, 255, .55);
    box-shadow: 0 0 22px rgba(143, 107, 255, .14);
}

.vl-cert i {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    padding: 3px 10px;
    font-style: normal;
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 900;
    color: #f3edff;
    background: linear-gradient(90deg, #8f6bff, #6a3fe0);
}

.vl-cert mip-img img {
    height: 140px !important;
    transition: filter .25s ease;
}

.vl-cert:hover mip-img img { filter: brightness(1.12); }

/* ---------- APP 客户端：特性行列表左 + 图右 ---------- */
.vl-app {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 44px;
    align-items: center;
}

.vl-app-list { display: flex; flex-direction: column; gap: 16px; }

.vl-li {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px;
    background: linear-gradient(160deg, rgba(21, 16, 36, .92), rgba(16, 12, 28, .8));
    border: 1px solid rgba(143, 107, 255, .14);
    transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.vl-li:hover {
    border-color: rgba(143, 107, 255, .55);
    box-shadow: 0 0 24px rgba(143, 107, 255, .15);
    transform: translateX(6px);
}

.li-ico {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(143, 107, 255, .4);
    background: linear-gradient(135deg, rgba(143, 107, 255, .25) 50%, rgba(21, 16, 36, .4) 50%);
    transition: all .25s ease;
}

.vl-li:hover .li-ico {
    border-color: rgba(143, 107, 255, .8);
    box-shadow: 0 0 14px rgba(143, 107, 255, .3);
}

.vl-li b {
    display: block;
    margin-bottom: 5px;
    font-size: 15px;
    color: #f3edff;
}

.vl-li p {
    margin: 0;
    font-size: 12.5px;
    line-height: 1.8;
    color: #8a7ab0;
}

.vl-app-fig {
    position: relative;
    padding: 12px;
    background: linear-gradient(160deg, rgba(143, 107, 255, .08), rgba(16, 12, 28, .5));
    border: 1px solid rgba(143, 107, 255, .24);
}

.vl-app-fig mip-img img { height: 380px !important; }

/* ---------- 合作伙伴：徽章方格 4x2 ---------- */
.vl-badge-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.vl-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 12px 20px;
    background: linear-gradient(160deg, rgba(21, 16, 36, .92), rgba(16, 12, 28, .8));
    border: 1px solid rgba(143, 107, 255, .14);
    transition: border-color .22s ease, box-shadow .22s ease;
}

.vl-badge:hover {
    border-color: rgba(143, 107, 255, .55);
    box-shadow: 0 0 24px rgba(143, 107, 255, .15);
}

.vl-badge .bd-fig mip-img img {
    width: 60px !important;
    height: 60px !important;
    filter: grayscale(1) opacity(.7);
    transition: all .25s ease;
}

.vl-badge:hover .bd-fig mip-img img { filter: grayscale(0) opacity(1); }

.vl-badge b {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #8a7ab0;
    transition: color .2s ease;
}

.vl-badge:hover b { color: #c9b3ff; }

/* ---------- 最新动态：焦点卡左 + 迷你行右 ---------- */
.vl-news {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 20px;
}

.vl-focus {
    grid-row: 1 / 6;
    grid-column: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    background: linear-gradient(160deg, rgba(21, 16, 36, .94), rgba(16, 12, 28, .84));
    border: 1px solid rgba(143, 107, 255, .18);
    border-left: 3px solid #8f6bff;
    transition: border-color .22s ease, box-shadow .22s ease;
}

.vl-focus:hover {
    border-color: rgba(143, 107, 255, .55);
    box-shadow: 0 0 26px rgba(143, 107, 255, .14);
}

.fc-date {
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #8f6bff;
}

.fc-title {
    display: block;
    margin: 14px 0 18px;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.7;
    color: #f3edff;
}

.fc-more { font-size: 12px; letter-spacing: 1px; color: #8a7ab0; }

.vl-focus:hover .fc-more { color: #c9b3ff; }

.vl-mini {
    grid-column: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 16px;
    border-bottom: 1px solid rgba(143, 107, 255, .12);
    transition: transform .2s ease, background .2s ease;
}

.vl-mini:first-of-type { border-top: 1px solid rgba(143, 107, 255, .12); }

.vl-mini:hover { transform: translateX(6px); background: rgba(143, 107, 255, .05); }

.mi-title {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
    color: #b3a3d6;
    transition: color .18s ease;
}

.vl-mini:hover .mi-title { color: #c9b3ff; }

.mi-date { flex-shrink: 0; font-size: 12px; color: #665886; }

.vl-news-more { margin-top: 26px; text-align: center; }

/* ---------- 合作 CTA：能量核心（脉冲环按钮） ---------- */
.vl-cta {
    position: relative;
    padding: 58px 30px 54px;
    text-align: center;
    border: 1px solid rgba(143, 107, 255, .28);
    background:
        radial-gradient(ellipse at 50% 0%, rgba(143, 107, 255, .1), transparent 65%),
        linear-gradient(180deg, rgba(21, 16, 36, .92), rgba(16, 12, 28, .92));
}

.vl-cta h2 {
    margin: 0 0 12px;
    font-size: 27px;
    font-weight: 900;
    letter-spacing: 3px;
    color: #f3edff;
}

.vl-cta p { margin: 0; font-size: 14px; color: #8a7ab0; }

.vl-cta-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 26px;
    margin-top: 30px;
}

/* 脉冲环容器 */
.vl-pulse { position: relative; display: inline-flex; padding: 7px; }

.vl-pulse::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(143, 107, 255, .55);
    animation: vlPulse 2.4s ease-out infinite;
}

@keyframes vlPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.3); opacity: 0; }
}

/* ---------- 首页功能速览：顶部横幅条弹层 ---------- */
.vl-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: linear-gradient(180deg, #151024, #100c1c);
    border-bottom: 1px solid rgba(143, 107, 255, .45);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .55);
    animation: vlBarIn .42s cubic-bezier(.22, .9, .32, 1);
}

@keyframes vlBarIn {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.vl-bar-in {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 12px 0;
}

.vl-bar-head { flex-shrink: 0; display: flex; flex-direction: column; }

.bar-kicker {
    font-family: Arial, sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #8a7ab0;
}

.bar-title {
    margin-top: 3px;
    font-size: 17px;
    font-weight: 900;
    letter-spacing: 2px;
    color: #f3edff;
}

.vl-bar-items {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 10px;
}

.bar-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 13px;
    font-size: 12.5px;
    color: #b3a3d6;
    border: 1px solid rgba(143, 107, 255, .25);
    background: rgba(143, 107, 255, .05);
    border-radius: 3px;
    transition: all .18s ease;
}

.bar-item i {
    font-style: normal;
    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: 900;
    color: #8f6bff;
}

.bar-item:hover {
    color: #f3edff;
    border-color: rgba(143, 107, 255, .65);
    background: rgba(143, 107, 255, .14);
    box-shadow: 0 0 14px rgba(143, 107, 255, .2);
}

.vl-bar-side { flex-shrink: 0; display: flex; align-items: center; gap: 12px; }

.bar-go { padding: 9px 18px; font-size: 12.5px; }

.bar-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
    color: #8a7ab0;
    border: 1px solid rgba(143, 107, 255, .3);
    border-radius: 3px;
    transition: all .18s ease;
}

.bar-close:hover {
    color: #f3edff;
    background: linear-gradient(135deg, #8f6bff, #6a3fe0);
}

/* ---------- footer ---------- */
.vl-footer {
    margin-top: 40px;
    padding: 34px 0 22px;
    border-top: 1px solid rgba(143, 107, 255, .16);
    background: linear-gradient(180deg, #100c1c, #0a0714);
}

.vl-foot-co {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(143, 107, 255, .12);
    flex-wrap: wrap;
}

.vl-foot-co .co-name {
    margin-bottom: 6px;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #c9b3ff, #8f6bff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vl-foot-co .co-intro p { margin: 0; color: #8a7ab0; font-size: 13px; }

.vl-foot-co .co-contact {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.vl-foot-co .co-contact li { color: #b3a3d6; font-size: 13px; }

.vl-friend {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    padding: 0;
    margin: 0 0 10px;
    list-style: none;
}

.vl-friend li { color: #4c4166; font-size: 12px; }

.vl-friend li.friend-label { color: #665886; }

.vl-friend a { color: #665886; font-size: 12px; }
.vl-friend a:hover { color: #8f6bff; }

.vl-copy { margin: 14px 0 0; color: #4c4166; font-size: 12px; }

.vl-copy a { color: #4c4166; }
.vl-copy a:hover { color: #8f6bff; }

/* ---------- 响应式 ---------- */
/* 中屏（992-1199px）：隐藏头部搜索框 */
@media (max-width: 1199px) {
    .vl-search { display: none; }
}

/* 平板及以下：第一行 logo+立即游玩，导航整行横向滑动，下拉变全宽面板 */
@media (max-width: 991px) {
    .vl-header-inner { flex-wrap: wrap; min-height: 56px; }
    .vl-logo { line-height: 56px; }
    .vl-nav { order: 3; flex: 1 1 100%; overflow-x: auto; scrollbar-width: none; }
    .vl-nav > li > a { padding: 0 10px; font-size: 13px; line-height: 44px; }
    .vl-nav > li > a::after { display: none; }
    .vl-nav > li.active > a { color: #8f6bff; }
    .vl-dropdown { position: fixed; left: 12px; right: 12px; top: 110px; max-height: 56vh; overflow-y: auto; }
    .vl-dropdown-cols { width: auto; grid-template-columns: 1fr 1fr; }
    .mipcms-main { padding-top: 109px !important; }
    .vl-hero { padding: 44px 0 0; }
    .vl-hero-title { font-size: 31px; }
    .vl-hero-slogan { font-size: 14px; letter-spacing: 5px; }
    .vl-hero-btns { margin-bottom: 46px; }
    .vl-data-item { flex: 1 1 50%; }
    .vl-data-item:nth-child(odd) { border-left: none; }
    .vl-data-item:nth-child(-n+2) { border-bottom: 1px solid rgba(243, 237, 255, .14); }
    .vl-sec { padding: 52px 0 46px; }
    .vl-sec-title { font-size: 18px; }
    .vl-about { grid-template-columns: 1fr; gap: 30px; }
    .vl-about-fig mip-img img { height: 250px !important; }
    .vl-srv-grid { grid-template-columns: 1fr; }
    .vl-game-hero { flex-direction: column; }
    .vl-game-hero .gh-fig { flex: auto; order: -1; }
    .vl-game-hero .gh-fig mip-img img { height: 240px !important; }
    .vl-game-hero .gh-body { padding: 24px 22px; }
    .vl-game-row { grid-template-columns: repeat(2, 1fr); }
    .vl-app { grid-template-columns: 1fr; gap: 30px; }
    .vl-app-fig mip-img img { height: 300px !important; }
    .vl-badge-grid { grid-template-columns: repeat(2, 1fr); }
    .vl-news { grid-template-columns: 1fr; }
    .vl-focus { grid-row: auto; margin-bottom: 14px; }
    .vl-cta h2 { font-size: 24px; }
    /* 顶部横幅条：换两行（头部+按钮一行，条目全宽） */
    .vl-bar-in { flex-wrap: wrap; gap: 10px 16px; }
    .vl-bar-items { flex-basis: 100%; order: 3; }
}

@media (max-width: 575px) {
    .vl-logo .logo-word { font-size: 17px; }
    .vl-hero { padding: 34px 0 0; }
    .vl-hero-kicker { font-size: 11px; letter-spacing: 4px; }
    .vl-hero-title { font-size: 26px; }
    .vl-hero-slogan { font-size: 13px; letter-spacing: 4px; }
    .vl-hero-btns { flex-direction: column; gap: 14px; margin-bottom: 38px; }
    .vl-hero-btns .vl-btn { width: 100%; box-sizing: border-box; }
    .vl-data-item { flex: 1 1 100%; border-left: none; border-bottom: 1px solid rgba(243, 237, 255, .14); }
    .vl-data-item:last-child { border-bottom: none; }
    .vl-sec { padding: 44px 0 40px; }
    .vl-sec-head { gap: 10px; margin-bottom: 26px; }
    .vl-sec-title { font-size: 16px; letter-spacing: 2px; }
    .vl-sec-title i { font-size: 14px; }
    .vl-about-fig mip-img img { height: 200px !important; }
    .vl-srv-row { padding: 18px 16px; gap: 14px; }
    .sr-ico { width: 48px; height: 48px; }
    .vl-game-hero .gh-fig mip-img img { height: 200px !important; }
    .vl-game-hero .gh-body { padding: 20px 18px; }
    .gh-body b { font-size: 21px; }
    .vl-game-row { grid-template-columns: 1fr; }
    .vl-game-mini .gm-fig mip-img img { height: 140px !important; }
    .gm-plus { height: 140px; }
    .vl-cells { grid-template-columns: 1fr; }
    .vl-cell b { font-size: 34px; }
    .vl-timeline { padding-left: 28px; }
    .tm-node { left: -27px; width: 12px; height: 12px; }
    .tm-body { padding: 16px 18px; }
    .vl-cert-grid { grid-template-columns: repeat(2, 1fr); }
    .vl-cert mip-img img { height: 125px !important; }
    .vl-app-feats { }
    .vl-app-fig mip-img img { height: 250px !important; }
    .vl-badge-grid { grid-template-columns: repeat(2, 1fr); }
    .vl-mini { flex-wrap: wrap; gap: 6px 12px; padding: 12px 10px; }
    .mi-title { flex-basis: 100%; order: 2; white-space: normal; }
    .mi-date { margin-left: auto; }
    .vl-cta { padding: 44px 18px; }
    .vl-cta h2 { font-size: 21px; }
    .vl-cta-btns { flex-direction: column; gap: 18px; }
    .vl-cta-btns .vl-btn { width: 100%; box-sizing: border-box; }
    /* 顶部横幅条：小屏整体可滚动，条目收紧 */
    .vl-bar { max-height: 100vh; overflow-y: auto; }
    .vl-bar-in { padding: 10px 0; }
    .bar-kicker { display: none; }
    .vl-bar-items { gap: 6px 8px; }
    .bar-item { padding: 6px 10px; font-size: 11.5px; }
    .bar-go { padding: 8px 12px; font-size: 11.5px; }
    .bar-close { width: 28px; height: 28px; font-size: 16px; }
}


/* ---------- 内页通用（面包屑/盒子/列表/标签/分页） ---------- */
.ty-crumb {
    padding: 18px 0 !important;
    margin: 0;
    list-style: none;
    font-size: 13px;
}

.ty-crumb a { color: #665886; }
.ty-crumb a:hover { color: #8f6bff; }

.ty-cat-banner {
    padding: 26px 22px;
    margin-bottom: 26px;
    border: 1px solid rgba(143, 107, 255, .18);
    background: rgba(143, 107, 255, .03);
    clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
}

.ty-cat-banner h1 { margin: 0 0 4px; font-size: 26px; font-weight: 900; color: #f3edff; }

.ty-cat-banner .cat-en {
    color: #4c4166;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
}

.ty-box {
    margin-bottom: 22px;
    border: 1px solid rgba(143, 107, 255, .14);
    background: rgba(21, 16, 36, .55);
}

.ty-box-head {
    padding: 12px 18px;
    border-bottom: 1px solid rgba(143, 107, 255, .14);
}

.ty-box-head h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 800;
    color: #8f6bff;
    letter-spacing: 1px;
}

.ty-box-body { padding: 18px; }

.ty-list-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px dashed rgba(143, 107, 255, .12);
}

.ty-list-item .item-media { flex: 0 0 168px; }

.ty-list-item .item-media mip-img img {
    width: 100% !important;
    height: 104px !important;
    object-fit: cover;
    border: 1px solid rgba(143, 107, 255, .15);
}

.ty-list-item .item-content { flex: 1 1 auto; min-width: 0; }

.ty-list-item h4 { margin: 0 0 8px; font-size: 16px; line-height: 1.5; }

.ty-list-item h4 a { color: #f3edff; }
.ty-list-item h4 a:hover { color: #8f6bff; }

.ty-list-item .description {
    margin: 0 0 8px;
    color: #665886;
    font-size: 13px;
    line-height: 1.8;
}

.ty-list-item .item-meta { margin: 0; color: #4c4166; font-size: 12px; }

.ty-side-list {
    padding: 0;
    margin: 0;
    list-style: none;
    counter-reset: gside;
}

.ty-side-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px dashed rgba(143, 107, 255, .1);
}

.ty-side-list li a {
    flex: 1 1 auto;
    min-width: 0;
    color: #8a7ab0;
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ty-side-list li a:hover { color: #8f6bff; }

.ty-side-list .rank {
    flex: 0 0 22px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    border: 1px solid rgba(143, 107, 255, .3);
    color: #8f6bff;
    font-size: 12px;
    font-weight: 800;
    counter-increment: gside;
}

.ty-side-list .rank::before { content: counter(gside); }

.ty-side-list li:nth-child(-n+3) .rank {
    background: #8f6bff;
    color: #180b33;
}

.ty-tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.ty-tags-cloud li a {
    display: inline-block;
    padding: 5px 14px;
    border: 1px solid rgba(143, 107, 255, .22);
    color: #8a7ab0;
    font-size: 13px;
    background: rgba(143, 107, 255, .03);
}

.ty-tags-cloud li a:hover {
    color: #180b33;
    background: #8f6bff;
    border-color: #8f6bff;
    text-shadow: none;
}

.ty-pagination {
    padding: 18px 0 6px;
    text-align: center;
}

.ty-pagination .pagination { justify-content: center; }

.ty-pagination li a,
.ty-pagination li span {
    color: #8a7ab0 !important;
    background: rgba(21, 16, 36, .8) !important;
    border: 1px solid rgba(143, 107, 255, .2) !important;
}

.ty-pagination li.active a,
.ty-pagination li.active span {
    color: #180b33 !important;
    background: #8f6bff !important;
    border-color: #8f6bff !important;
}

.ty-img-card {
    display: block;
    position: relative;
    margin-bottom: 18px;
    border: 1px solid rgba(143, 107, 255, .15);
    background: rgba(21, 16, 36, .6);
    overflow: hidden;
}

.ty-img-card mip-img img {
    width: 100% !important;
    height: 150px !important;
    object-fit: cover;
    transition: transform .25s ease;
}

.ty-img-card:hover mip-img img { transform: scale(1.04); }

.ty-img-card .img-card-title {
    margin: 0;
    padding: 10px 12px;
    color: #f3edff;
    font-size: 14px;
    border-top: 1px solid rgba(143, 107, 255, .12);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ---------- 详情页 ---------- */
.ty-detail-title { margin: 0 0 12px; font-size: 26px; font-weight: 900; color: #f3edff; line-height: 1.5; }

.ty-detail-info {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    padding-bottom: 14px;
    margin-bottom: 20px;
    border-bottom: 1px dashed rgba(143, 107, 255, .16);
    color: #665886;
    font-size: 13px;
}

.ty-detail-tags a {
    margin-right: 8px;
    padding: 2px 10px;
    border: 1px solid rgba(143, 107, 255, .3);
    color: #c9b3ff;
    font-size: 12px;
}

.ty-detail-tags a:hover { color: #180b33; background: #8f6bff; text-shadow: none; }

.ty-guess-title {
    margin: 30px 0 6px;
    padding-left: 12px;
    border-left: 3px solid #8f6bff;
    color: #f3edff;
    font-size: 16px;
    font-weight: 800;
}

.ty-updown {
    display: flex;
    gap: 16px;
    margin-top: 26px;
}

.ty-updown .updown-item {
    flex: 1 1 0;
    min-width: 0;
    padding: 12px 14px;
    border: 1px solid rgba(143, 107, 255, .14);
    background: rgba(143, 107, 255, .03);
}

.ty-updown .updown-item p { margin: 0 0 4px; color: #4c4166; font-size: 12px; letter-spacing: 1px; }

.ty-updown .updown-item a {
    display: block;
    color: #8a7ab0;
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ty-tag-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding-bottom: 16px;
    margin-bottom: 8px;
    border-bottom: 1px dashed rgba(143, 107, 255, .16);
}

.ty-tag-header .tag-badge {
    flex: 0 0 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border: 1px solid rgba(143, 107, 255, .35);
    color: #8f6bff;
    font-size: 20px;
    font-weight: 900;
}

.ty-tag-header h2 { margin: 0 0 6px; font-size: 22px; color: #f3edff; }

.ty-tag-header p { margin: 0; color: #665886; font-size: 13px; }

.ty-search-head h1 { margin: 0 0 4px; font-size: 22px; font-weight: 900; color: #f0fff8; }

.ty-search-head .search-tip { color: #665886; font-size: 13px; margin: 0; }

.ty-empty { padding: 40px 0; text-align: center; color: #4c4166; font-size: 14px; }

.ty-empty .empty-icon {
    display: block;
    margin-bottom: 10px;
    color: #8f6bff;
    font-size: 30px;
    font-weight: 900;
}

/* ---------- 正文排版 ---------- */
.mipcms-detail-body { color: #b3a3d6; font-size: 15px; line-height: 2; }

.mipcms-detail-body p { margin: 0 0 14px; }

.mipcms-detail-body h2, .mipcms-detail-body h3 {
    margin: 24px 0 12px;
    color: #f3edff;
    font-weight: 800;
}

.mipcms-detail-body mip-img { margin: 10px 0; }

.mipcms-detail-body mip-img img { border: 1px solid rgba(143, 107, 255, .12); }
