/* ============================================================
   ty-010 电竞体育游戏企业模板
   配色体系：电光青单色系（#16e0e8 主 / #0aa8b8 深 / #7af0f4 亮）
   结构：全息雷达 HERO（同心雷达环 + 旋转扫描光 + 雷达点 + 数据带）
        雷达描点标题（双环圆点 + 虚线延伸）
        左图四角标 + 数据脉冲行关于
        3x2 蜂窝图标卡业务（六边形编号图标）
        主屏 + 侧信号条游戏展台
        半圆仪表盘数据（弧形刻度 + 指针）
        同心环步骤流程 / 3x3 全息角框荣誉网格
        屏幕造型 APP / 雷达点徽章伙伴
        雷达时间轴动态 / 全息扫描 CTA
        对角斜切全屏弹层（fixed 全屏 + 顶边斜切 + 斜入动画）
        卡片 hover 配方：角标框合拢（对角 L 角标亮起归位）
        按钮语言：上下双切角（clip-path 左上+右下角裁切）
   ============================================================ */

/* ---------- 基础 ---------- */
body {
    font-family: "Microsoft YaHei", "PingFang SC", Tahoma, Helvetica, sans-serif;
    background-color: #041012;
    background-image:
        radial-gradient(ellipse at 50% -14%, rgba(22, 224, 232, .08), transparent 55%),
        linear-gradient(180deg, #041012 0%, #06181c 100%);
    background-attachment: fixed;
    color: #e6fbfd;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
}

a { color: #7af0f4; text-decoration: none; transition: color .15s ease, text-shadow .15s ease; }
a:hover { color: #16e0e8; text-decoration: none; text-shadow: 0 0 12px rgba(22, 224, 232, .5); }

img { max-width: 100%; }

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

/* ---------- 顶部导航 ---------- */
.ce-header {
    background: linear-gradient(180deg, rgba(10, 34, 41, .98), rgba(4, 16, 18, .92));
    border-bottom: 1px solid rgba(22, 224, 232, .22);
    box-shadow: 0 4px 26px rgba(0, 0, 0, .6);
}

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

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

.ce-logo .logo-badge {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 12px;
    border: 2px solid #16e0e8;
    box-shadow: 0 0 16px rgba(22, 224, 232, .4), inset 0 0 8px rgba(22, 224, 232, .25);
    position: relative;
    top: 8px;
    border-radius: 50%;
}

.ce-logo .logo-badge::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 8px;
    height: 8px;
    margin: -4px 0 0 -4px;
    border-radius: 50%;
    background: #16e0e8;
    box-shadow: 0 0 10px rgba(22, 224, 232, .9);
}

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

.ce-logo .logo-word:hover { color: #7af0f4; text-shadow: 0 0 14px rgba(22, 224, 232, .55); }

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

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

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

.ce-nav > li > a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 18px;
    width: 5px;
    height: 5px;
    margin-left: -2.5px;
    border-radius: 50%;
    background: #16e0e8;
    box-shadow: 0 0 8px rgba(22, 224, 232, .8);
    opacity: 0;
    transform: scale(0);
    transition: opacity .18s ease, transform .18s ease;
}

.ce-nav > li:hover > a,
.ce-nav > li.active > a { color: #e6fbfd; }

.ce-nav > li:hover > a::after,
.ce-nav > li.active > a::after { opacity: 1; transform: scale(1); }

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

.ce-nav-hasdrop:hover .drop-caret,
.ce-nav-hasdrop.open .drop-caret { transform: rotate(180deg); color: #16e0e8; }

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

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

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

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

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

.ce-dropdown li > a:hover {
    color: #7af0f4;
    background: rgba(22, 224, 232, .08);
    border-left-color: #16e0e8;
}

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

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

.ce-dropdown-sub li a:hover { color: #7af0f4; }

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

.ce-search { margin: 0; }

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

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

.ce-search input[type="text"]::placeholder { color: #567e88; }

.ce-search input[type="text"]:focus {
    border-color: rgba(22, 224, 232, .6);
    background: rgba(22, 224, 232, .12);
}

.ce-search-btn {
    height: 34px;
    padding: 0 14px;
    font-size: 12px;
    color: #041012;
    font-weight: 700;
    background: linear-gradient(90deg, #16e0e8, #0aa8b8);
    border: none;
    cursor: pointer;
    border-radius: 0 3px 3px 0;
}

.ce-play-btn {
    display: inline-block;
    padding: 8px 22px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #041012;
    background: linear-gradient(135deg, #16e0e8, #0aa8b8);
    box-shadow: 0 0 18px rgba(22, 224, 232, .35);
    cursor: pointer;
    clip-path: polygon(9px 0, 100% 0, 100% calc(100% - 9px), calc(100% - 9px) 100%, 0 100%, 0 9px);
    transition: filter .15s ease;
}

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

/* ---------- 通用按钮（上下双切角：左上+右下 clip-path 裁切） ---------- */
.ce-btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-align: center;
    cursor: pointer;
    clip-path: polygon(11px 0, 100% 0, 100% calc(100% - 11px), calc(100% - 11px) 100%, 0 100%, 0 11px);
    transition: filter .18s ease, background .18s ease, color .18s ease;
}

.ce-btn-main {
    color: #041012;
    background: linear-gradient(135deg, #16e0e8, #0aa8b8);
}

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

.ce-btn-ghost {
    color: #7af0f4;
    background: rgba(22, 224, 232, .05);
    box-shadow: inset 0 0 0 1px rgba(22, 224, 232, .6);
}

.ce-btn-ghost:hover {
    background: linear-gradient(135deg, #16e0e8, #0aa8b8);
    color: #041012;
    text-shadow: none;
}

/* ---------- HERO：全息雷达构图 ---------- */
.ce-hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 0;
    background-image:
        radial-gradient(ellipse at 78% 30%, rgba(22, 224, 232, .1), transparent 52%),
        linear-gradient(180deg, #041012, #0a2229);
}

/* 雷达组（同心环 + 十字 + 扫描光 + 目标点） */
.ce-radar {
    position: absolute;
    right: -140px;
    top: -60px;
    width: 560px;
    height: 560px;
    pointer-events: none;
}

.rd-ring {
    position: absolute;
    border: 1px solid rgba(22, 224, 232, .3);
    border-radius: 50%;
}

.rd-ring.r1 { inset: 0; border-color: rgba(22, 224, 232, .38); }
.rd-ring.r2 { inset: 70px; border-style: dashed; }
.rd-ring.r3 { inset: 140px; }

.rd-cross {
    position: absolute;
    inset: 0;
}

.rd-cross::before,
.rd-cross::after {
    content: "";
    position: absolute;
    background: rgba(22, 224, 232, .22);
}

.rd-cross::before { left: 50%; top: 0; bottom: 0; width: 1px; }
.rd-cross::after { top: 50%; left: 0; right: 0; height: 1px; }

/* 扫描光（conic 扇形旋转） */
.rd-sweep {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(from 0deg, rgba(22, 224, 232, .32), rgba(22, 224, 232, .06) 52deg, transparent 78deg);
    animation: rdSweep 4.6s linear infinite;
}

@keyframes rdSweep {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* 雷达目标点（呼吸闪烁） */
.rd-dot {
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #7af0f4;
    box-shadow: 0 0 12px rgba(122, 240, 244, .9);
    animation: rdBlink 2.2s ease-in-out infinite;
}

.rd-dot.d1 { left: 31%; top: 38%; }
.rd-dot.d2 { left: 66%; top: 61%; animation-delay: .7s; }
.rd-dot.d3 { left: 55%; top: 24%; animation-delay: 1.4s; }

@keyframes rdBlink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .25; transform: scale(.6); }
}

.ce-hero-in {
    position: relative;
    z-index: 1;
    text-align: center;
    padding-bottom: 56px;
}

.ce-hero-kicker {
    display: inline-block;
    padding: 5px 18px;
    font-size: 11px;
    letter-spacing: 5px;
    color: #7af0f4;
    box-shadow: inset 0 0 0 1px rgba(22, 224, 232, .4);
    border-radius: 2px;
    margin-bottom: 20px;
}

.ce-hero-title {
    margin: 0 0 12px;
    font-size: 44px;
    font-weight: 900;
    letter-spacing: 4px;
    line-height: 1.2;
    background: linear-gradient(90deg, #e6fbfd, #7af0f4 55%, #16e0e8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ce-hero-slogan {
    margin: 0 0 14px;
    font-size: 16px;
    letter-spacing: 7px;
    color: #7af0f4;
}

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

.ce-hero-btns {
    display: flex;
    justify-content: center;
    gap: 22px;
}

/* 数据带（底部雷达读数条） */
.ce-hero-data {
    position: relative;
    z-index: 1;
    background: linear-gradient(90deg, rgba(22, 224, 232, .14), rgba(22, 224, 232, .03));
    border-top: 1px solid rgba(22, 224, 232, .35);
    border-bottom: 1px solid rgba(22, 224, 232, .18);
}

.ce-data-row {
    display: flex;
    align-items: stretch;
}

.ce-data-item {
    flex: 1;
    padding: 18px 12px;
    text-align: center;
    position: relative;
}

.ce-data-item + .ce-data-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 5px;
    height: 5px;
    margin-top: -2.5px;
    border-radius: 50%;
    background: rgba(122, 240, 244, .5);
    box-shadow: 0 0 8px rgba(122, 240, 244, .5);
}

.ce-data-item b {
    display: block;
    font-size: 30px;
    font-weight: 900;
    color: #16e0e8;
    line-height: 1;
    text-shadow: 0 0 18px rgba(22, 224, 232, .45);
}

.ce-data-item b i {
    font-style: normal;
    font-size: 15px;
    margin-left: 2px;
    color: #7af0f4;
}

.ce-data-item span {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    letter-spacing: 2px;
    color: #77a3ad;
}

/* ---------- 章节头：雷达描点标题（双环圆点 + 虚线延伸） ---------- */
.ce-sec { padding: 64px 0 60px; }

.ce-sec-dark {
    background: linear-gradient(180deg, rgba(10, 34, 41, .6), rgba(6, 24, 28, .8));
    border-top: 1px solid rgba(22, 224, 232, .12);
    border-bottom: 1px solid rgba(22, 224, 232, .12);
}

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

/* 左侧雷达描点（双环 + 中心点） */
.ce-sec-radar {
    position: relative;
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    border: 2px solid #16e0e8;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(22, 224, 232, .35);
}

.ce-sec-radar::before {
    content: "";
    position: absolute;
    inset: 4px;
    border: 1px dashed rgba(122, 240, 244, .6);
    border-radius: 50%;
}

.ce-sec-radar::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 6px;
    height: 6px;
    margin: -3px 0 0 -3px;
    border-radius: 50%;
    background: #7af0f4;
    box-shadow: 0 0 8px rgba(122, 240, 244, .9);
}

.ce-sec-title {
    margin: 0;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 3px;
    color: #e6fbfd;
    white-space: nowrap;
}

/* 右侧虚线延伸（雷达余波） */
.ce-sec-dash {
    flex: 1;
    height: 2px;
    min-width: 40px;
    background: repeating-linear-gradient(90deg, rgba(22, 224, 232, .55) 0 8px, transparent 8px 16px);
    position: relative;
}

.ce-sec-dash::after {
    content: "";
    position: absolute;
    right: 0;
    top: -3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 2px solid rgba(122, 240, 244, .7);
}

/* ---------- 关于我们：左图四角标 + 右数据脉冲行 ---------- */
.ce-about {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 40px;
    align-items: center;
}

.ce-about-fig {
    position: relative;
    padding: 12px;
    background: #0a2229;
    border: 1px solid rgba(22, 224, 232, .22);
}

.ce-about-fig mip-img img { height: 330px !important; object-fit: cover; }

/* 图四角 L 角标（全息取景框） */
.fig-corner {
    position: absolute;
    width: 18px;
    height: 18px;
    border-color: #16e0e8;
    border-style: solid;
    border-width: 0;
}

.fig-corner.c-tl { left: -2px; top: -2px; border-left-width: 3px; border-top-width: 3px; }
.fig-corner.c-tr { right: -2px; top: -2px; border-right-width: 3px; border-top-width: 3px; }
.fig-corner.c-bl { left: -2px; bottom: -2px; border-left-width: 3px; border-bottom-width: 3px; }
.fig-corner.c-br { right: -2px; bottom: -2px; border-right-width: 3px; border-bottom-width: 3px; }

.ce-about-copy { min-width: 0; }

.ce-about-lead {
    margin: 0 0 6px;
    font-size: 15px;
    line-height: 2;
    color: #9cc4cc;
}

.ce-about-lead strong { color: #7af0f4; }

.ce-pulses {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0 26px;
}

/* 数据脉冲行：雷达点 + 标签 + 说明 */
.ce-pulse {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(22, 224, 232, .04);
    border: 1px solid rgba(22, 224, 232, .18);
}

.pl-dot {
    position: relative;
    width: 10px;
    height: 10px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #16e0e8;
    box-shadow: 0 0 10px rgba(22, 224, 232, .8);
}

.pl-dot::after {
    content: "";
    position: absolute;
    inset: -6px;
    border: 1px solid rgba(122, 240, 244, .45);
    border-radius: 50%;
}

.ce-pulse b {
    font-size: 14px;
    font-weight: 700;
    color: #7af0f4;
    white-space: nowrap;
}

.ce-pulse i {
    font-style: normal;
    font-size: 13px;
    color: #77a3ad;
    margin-left: auto;
    text-align: right;
}

/* ---------- 核心业务：3x2 蜂窝图标卡（角标合拢 hover） ---------- */
.ce-srv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ce-srv-card {
    position: relative;
    padding: 26px 24px 30px;
    background: #0a2229;
    border: 1px solid rgba(22, 224, 232, .2);
    transition: background .18s ease, border-color .18s ease;
}

/* 角标框合拢：对角 L 角标默认分离隐没，hover 亮起归位 */
.ce-srv-card::before,
.ce-srv-card::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    border-color: #16e0e8;
    border-style: solid;
    border-width: 0;
    opacity: 0;
    transition: opacity .2s ease, left .2s ease, top .2s ease, right .2s ease, bottom .2s ease;
}

.ce-srv-card::before {
    left: 10px;
    top: 10px;
    border-left-width: 2px;
    border-top-width: 2px;
}

.ce-srv-card::after {
    right: 10px;
    bottom: 10px;
    border-right-width: 2px;
    border-bottom-width: 2px;
}

.ce-srv-card:hover {
    background: #0d2a33;
    border-color: rgba(22, 224, 232, .4);
}

.ce-srv-card:hover::before { opacity: 1; left: -2px; top: -2px; }
.ce-srv-card:hover::after { opacity: 1; right: -2px; bottom: -2px; }

/* 六边形图标（蜂窝语言） */
.ce-hex {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 58px;
    margin-bottom: 16px;
    background: linear-gradient(160deg, #16e0e8, #0aa8b8);
    clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}

.ce-hex i {
    font-style: normal;
    font-weight: 900;
    font-size: 15px;
    letter-spacing: 1px;
    color: #041012;
}

.ce-srv-card > b {
    display: block;
    margin-bottom: 8px;
    font-size: 17px;
    font-weight: 700;
    color: #e6fbfd;
    letter-spacing: 1px;
}

.ce-srv-card > p {
    margin: 0;
    font-size: 13px;
    line-height: 1.85;
    color: #77a3ad;
}


/* ---------- 游戏产品：左主屏 + 右侧信号条 ---------- */
.ce-game-wrap {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 20px;
    align-items: stretch;
}

.ce-game-main {
    position: relative;
    display: block;
    background: #0a2229;
    border: 1px solid rgba(22, 224, 232, .25);
    overflow: hidden;
    transition: border-color .18s ease;
}

.ce-game-main::before,
.ce-game-main::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border-color: #16e0e8;
    border-style: solid;
    border-width: 0;
    opacity: 0;
    z-index: 2;
    transition: opacity .2s ease;
}

.ce-game-main::before { left: 8px; top: 8px; border-left-width: 2px; border-top-width: 2px; }
.ce-game-main::after { right: 8px; bottom: 8px; border-right-width: 2px; border-bottom-width: 2px; }

.ce-game-main:hover { border-color: rgba(22, 224, 232, .55); }
.ce-game-main:hover::before,
.ce-game-main:hover::after { opacity: 1; }

.cm-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 5px 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #041012;
    background: linear-gradient(90deg, #16e0e8, #0aa8b8);
    clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}

.cm-fig mip-img img { height: 296px !important; object-fit: cover; }

.cm-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 18px 22px 22px;
}

.cm-body b {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 2px;
    color: #e6fbfd;
}

.cm-body i {
    font-style: normal;
    font-size: 13px;
    line-height: 1.8;
    color: #77a3ad;
}

.cm-go {
    font-style: normal;
    margin-top: 4px;
    font-size: 14px;
    font-weight: 700;
    color: #7af0f4;
}

.ce-game-main:hover .cm-go { color: #16e0e8; }

/* 右侧信号条 */
.ce-game-side {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ce-sig {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    background: #0a2229;
    border: 1px solid rgba(22, 224, 232, .2);
    overflow: hidden;
    transition: background .18s ease, border-color .18s ease;
}

/* 信号波纹（右缘声波弧） */
.sg-wave {
    position: absolute;
    right: 14px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #16e0e8;
    box-shadow: 0 0 0 3px rgba(22, 224, 232, .18), 0 0 0 7px rgba(22, 224, 232, .09);
}

.ce-sig:hover {
    background: #0d2a33;
    border-color: rgba(22, 224, 232, .5);
}

.sg-fig {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    overflow: hidden;
    border: 1px solid rgba(22, 224, 232, .25);
}

.sg-fig mip-img img { height: 64px !important; object-fit: cover; }

.sg-body b {
    display: block;
    margin-bottom: 3px;
    font-size: 15px;
    font-weight: 700;
    color: #e6fbfd;
    letter-spacing: 1px;
}

.sg-body i {
    font-style: normal;
    font-size: 12px;
    color: #77a3ad;
}

/* ---------- 企业数据：半圆仪表盘 ---------- */
.ce-gauges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.ce-gauge {
    text-align: center;
    padding: 26px 16px 24px;
    background: #0a2229;
    border: 1px solid rgba(22, 224, 232, .2);
}

/* 半圆表盘（弧形底 + 弧形读数 + 指针） */
.gg-dial {
    position: relative;
    width: 130px;
    height: 66px;
    margin: 0 auto 14px;
    border-radius: 130px 130px 0 0;
    border: 2px solid rgba(22, 224, 232, .18);
    border-bottom: none;
    overflow: hidden;
}

/* 弧形读数填充（半圆色块按比例） */
.gg-dial em {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(122, 240, 244, .9), rgba(10, 168, 184, .55));
    border-radius: 130px 130px 0 0;
}

.gg-dial.g1 em { height: 62%; }
.gg-dial.g2 em { height: 78%; }
.gg-dial.g3 em { height: 88%; }
.gg-dial.g4 em { height: 96%; }

/* 指针 */
.gg-needle {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 2px;
    height: 50px;
    margin-left: -1px;
    background: #e6fbfd;
    box-shadow: 0 0 8px rgba(230, 251, 253, .7);
    transform-origin: bottom center;
    transform: rotate(-58deg);
    transition: transform .4s ease;
}

.gg-dial.g2 .gg-needle { transform: rotate(-20deg); }
.gg-dial.g3 .gg-needle { transform: rotate(2deg); }
.gg-dial.g4 .gg-needle { transform: rotate(20deg); }

.ce-gauge > b {
    display: block;
    font-size: 32px;
    font-weight: 900;
    color: #16e0e8;
    line-height: 1;
    text-shadow: 0 0 18px rgba(22, 224, 232, .4);
}

.ce-gauge > b i {
    font-style: normal;
    font-size: 15px;
    margin-left: 2px;
    color: #7af0f4;
}

.gg-label {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    letter-spacing: 2px;
    color: #77a3ad;
}

/* ---------- 服务流程：同心环步骤 ---------- */
.ce-rings {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.ce-ring {
    position: relative;
    text-align: center;
    padding: 28px 18px 26px;
    background: #0a2229;
    border: 1px solid rgba(22, 224, 232, .2);
    transition: border-color .18s ease, background .18s ease;
}

.ce-ring:hover {
    border-color: rgba(22, 224, 232, .55);
    background: #0d2a33;
}

/* 同心环编号核 */
.rg-core {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    margin-bottom: 16px;
    border: 2px solid #16e0e8;
    border-radius: 50%;
    box-shadow: 0 0 16px rgba(22, 224, 232, .3);
}

.rg-core::before {
    content: "";
    position: absolute;
    inset: 7px;
    border: 1px dashed rgba(122, 240, 244, .5);
    border-radius: 50%;
}

.rg-core i {
    font-style: normal;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 1px;
    color: #7af0f4;
}

.ce-ring > b {
    display: block;
    margin-bottom: 6px;
    font-size: 16px;
    font-weight: 700;
    color: #e6fbfd;
    letter-spacing: 1px;
}

.ce-ring > p {
    margin: 0;
    font-size: 13px;
    line-height: 1.8;
    color: #77a3ad;
}

/* ---------- 资质荣誉：3x3 全息角框证书 ---------- */
.ce-cert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.ce-cert {
    position: relative;
    padding: 14px;
    background: #0a2229;
    border: 1px solid rgba(22, 224, 232, .2);
    transition: border-color .18s ease, background .18s ease;
}

/* 四角 L 角标常显（全息取景框语言，hover 亮） */
.ce-cert .ct {
    position: absolute;
    width: 14px;
    height: 14px;
    border-color: rgba(122, 240, 244, .55);
    border-style: solid;
    border-width: 0;
    transition: border-color .18s ease;
}

.ce-cert .ct.tl { left: 4px; top: 4px; border-left-width: 2px; border-top-width: 2px; }
.ce-cert .ct.tr { right: 4px; top: 4px; border-right-width: 2px; border-top-width: 2px; }
.ce-cert .ct.bl { left: 4px; bottom: 4px; border-left-width: 2px; border-bottom-width: 2px; }
.ce-cert .ct.br { right: 4px; bottom: 4px; border-right-width: 2px; border-bottom-width: 2px; }

.ce-cert:hover { background: #0d2a33; border-color: rgba(22, 224, 232, .45); }
.ce-cert:hover .ct { border-color: #16e0e8; }

.ce-cert mip-img img { height: 150px !important; object-fit: cover; }

/* ---------- APP 客户端：屏幕造型图 + 特性列表 ---------- */
.ce-app {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* 屏幕造型（顶栏 + 屏幕） */
.ce-app-fig {
    padding: 12px;
    background: #0a2229;
    border: 1px solid rgba(22, 224, 232, .25);
    position: relative;
}

.ce-app-fig::before {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    top: 12px;
    height: 10px;
    background: rgba(22, 224, 232, .12);
    border-bottom: 1px solid rgba(22, 224, 232, .25);
}

.ce-app-fig mip-img img { height: 340px !important; object-fit: cover; }

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

.ce-li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    background: rgba(22, 224, 232, .04);
    border: 1px solid rgba(22, 224, 232, .18);
}

/* 雷达环图标 */
.li-ring {
    position: relative;
    width: 16px;
    height: 16px;
    margin-top: 4px;
    flex-shrink: 0;
    border: 2px solid #16e0e8;
    border-radius: 50%;
}

.li-ring::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 4px;
    height: 4px;
    margin: -2px 0 0 -2px;
    border-radius: 50%;
    background: #7af0f4;
}

.ce-li b {
    display: block;
    margin-bottom: 4px;
    font-size: 15px;
    font-weight: 700;
    color: #e6fbfd;
    letter-spacing: 1px;
}

.ce-li p {
    margin: 0;
    font-size: 13px;
    line-height: 1.75;
    color: #77a3ad;
}

/* ---------- 合作伙伴：雷达点徽章 4x2 ---------- */
.ce-badge-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.ce-badge {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 22px 14px 18px;
    background: #0a2229;
    border: 1px solid rgba(22, 224, 232, .2);
    transition: border-color .18s ease, background .18s ease;
}

/* 顶部雷达弧（徽章上方弧线） */
.bd-arc {
    position: absolute;
    top: 8px;
    left: 50%;
    width: 34px;
    height: 17px;
    margin-left: -17px;
    border: 2px solid rgba(122, 240, 244, .5);
    border-bottom: none;
    border-radius: 34px 34px 0 0;
}

.ce-badge:hover {
    background: #0d2a33;
    border-color: rgba(22, 224, 232, .55);
}

.ce-badge:hover .bd-arc { border-color: #16e0e8; }

.bd-fig {
    width: 52px;
    height: 52px;
    overflow: hidden;
}

.bd-fig mip-img img { height: 52px !important; object-fit: contain; }

.ce-badge b {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #9cc4cc;
    white-space: nowrap;
}

.ce-badge:hover b { color: #e6fbfd; }

/* ---------- 最新动态：雷达时间轴行 ---------- */
.ce-news-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
}

/* 竖向时间连线 */
.ce-news-list::before {
    content: "";
    position: absolute;
    left: 9px;
    top: 18px;
    bottom: 18px;
    width: 1px;
    background: repeating-linear-gradient(180deg, rgba(22, 224, 232, .4) 0 6px, transparent 6px 12px);
}

.ce-news-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 13px 18px 13px 8px;
    background: #0a2229;
    border: 1px solid rgba(22, 224, 232, .16);
    margin-left: 0;
    transition: background .18s ease, border-color .18s ease;
}

/* 雷达时间点 */
.nw-dot {
    position: relative;
    width: 10px;
    height: 10px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #16e0e8;
    box-shadow: 0 0 10px rgba(22, 224, 232, .8);
    margin-left: 4px;
}

.nw-dot::after {
    content: "";
    position: absolute;
    inset: -5px;
    border: 1px solid rgba(122, 240, 244, .4);
    border-radius: 50%;
}

.ce-news-row:hover {
    background: #0d2a33;
    border-color: rgba(22, 224, 232, .5);
}

.nw-date {
    font-size: 12px;
    letter-spacing: 1px;
    color: #567e88;
    flex-shrink: 0;
}

.nw-title {
    flex: 1;
    min-width: 0;
    font-size: 14px;
    font-weight: 700;
    color: #e6fbfd;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ce-news-row:hover .nw-title { color: #7af0f4; }

.nw-arrow {
    font-size: 16px;
    color: #3d5c65;
    transition: color .18s ease, transform .18s ease;
}

.ce-news-row:hover .nw-arrow { color: #16e0e8; transform: translateX(4px); }

.ce-news-more {
    margin-top: 24px;
    text-align: center;
}

/* ---------- 合作 CTA：全息扫描框 ---------- */
.ce-cta {
    position: relative;
    text-align: center;
    padding: 52px 40px;
    border: 1px solid rgba(22, 224, 232, .3);
    outline: 1px solid rgba(22, 224, 232, .14);
    outline-offset: 5px;
    background: linear-gradient(135deg, #0a2229, #04333a);
    overflow: hidden;
}

/* 扫描光带（横向扫过） */
.cta-scan {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #7af0f4, transparent);
    box-shadow: 0 0 16px rgba(122, 240, 244, .7);
    animation: ctaScan 3.2s ease-in-out infinite;
}

@keyframes ctaScan {
    0% { top: 0; opacity: 0; }
    12% { opacity: 1; }
    88% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

.ce-cta h2 {
    position: relative;
    margin: 0 0 10px;
    font-size: 30px;
    font-weight: 900;
    letter-spacing: 3px;
    color: #e6fbfd;
}

.ce-cta p {
    position: relative;
    margin: 0 0 26px;
    font-size: 14px;
    letter-spacing: 1px;
    color: #9cc4cc;
}

.ce-cta-btns {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ---------- 首页功能速览：对角斜切全屏弹层 ---------- */
.ce-slash {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(4, 16, 18, .94);
    background-image:
        repeating-linear-gradient(135deg, rgba(22, 224, 232, .04) 0 2px, transparent 2px 60px);
    clip-path: polygon(0 0, 100% 72px, 100% 100%, 0 100%);
    animation: ceSlashIn .4s cubic-bezier(.2, .8, .25, 1) both;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes ceSlashIn {
    from { opacity: 0; transform: translateY(-26px); }
    to { opacity: 1; transform: translateY(0); }
}

.ce-slash-in {
    width: 720px;
    max-width: 92vw;
    padding: 34px 30px 30px;
    background: #0a2229;
    border: 1px solid rgba(22, 224, 232, .35);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%);
}

.ce-slash-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 16px;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(22, 224, 232, .2);
}

.sl-kicker {
    font-size: 10px;
    letter-spacing: 2px;
    color: #567e88;
}

.sl-title {
    font-size: 17px;
    font-weight: 900;
    letter-spacing: 3px;
    color: #e6fbfd;
    margin-right: auto;
}

.sl-close {
    width: 30px;
    height: 30px;
    line-height: 28px;
    text-align: center;
    font-size: 17px;
    color: #7af0f4;
    border: 1px solid rgba(22, 224, 232, .35);
    transition: background .15s ease, color .15s ease;
}

.sl-close:hover { background: rgba(22, 224, 232, .15); color: #e6fbfd; }

.ce-slash-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.sl-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #9cc4cc;
    background: rgba(22, 224, 232, .04);
    border: 1px solid rgba(22, 224, 232, .18);
    transition: background .15s ease, color .15s ease, border-color .15s ease;
}

.sl-item i {
    font-style: normal;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    color: #7af0f4;
    border: 1px solid rgba(122, 240, 244, .4);
    border-radius: 50%;
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sl-item span { font-size: 13.5px; letter-spacing: 1px; }

.sl-item:hover {
    color: #e6fbfd;
    background: rgba(22, 224, 232, .12);
    border-color: rgba(22, 224, 232, .5);
}

.ce-slash-foot {
    margin-top: 20px;
    text-align: center;
}

.sl-go em { font-style: normal; }

/* ---------- footer ---------- */
.ce-footer {
    margin-top: 40px;
    padding: 34px 0 22px;
    border-top: 1px solid rgba(22, 224, 232, .16);
    background: linear-gradient(180deg, #081c22, #041012);
}

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

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

.ce-foot-co .co-intro p { margin: 0; color: #77a3ad; font-size: 13px; }

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

.ce-foot-co .co-contact li { color: #9cc4cc; font-size: 13px; }

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

.ce-friend li { color: #2b434b; font-size: 12px; }

.ce-friend li.friend-label { color: #567e88; }

.ce-friend a { color: #567e88; font-size: 12px; }
.ce-friend a:hover { color: #16e0e8; }

.ce-copy { margin: 14px 0 0; color: #2b434b; font-size: 12px; }

.ce-copy a { color: #2b434b; }
.ce-copy a:hover { color: #16e0e8; }

/* ---------- 响应式 ---------- */
@media (max-width: 1199px) {
    .ce-search { display: none; }
}

@media (max-width: 991px) {
    .ce-header-inner { flex-wrap: wrap; min-height: 56px; }
    .ce-logo { line-height: 56px; }
    .ce-nav { order: 3; flex: 1 1 100%; overflow-x: auto; scrollbar-width: none; }
    .ce-nav > li > a { padding: 0 10px; font-size: 13px; line-height: 44px; }
    .ce-nav > li > a::after { display: none; }
    .ce-nav > li.active > a { color: #16e0e8; }
    .ce-dropdown { position: fixed; left: 12px; right: 12px; top: 110px; max-height: 56vh; overflow-y: auto; }
    .ce-dropdown-cols { width: auto; grid-template-columns: 1fr 1fr; }
    .mipcms-main { padding-top: 109px !important; }
    .ce-hero { padding: 44px 0 0; }
    .ce-hero-title { font-size: 31px; }
    .ce-hero-slogan { font-size: 14px; letter-spacing: 5px; }
    .ce-hero-in { padding-bottom: 40px; }
    .ce-radar { right: -220px; top: -40px; transform: scale(.8); }
    .ce-data-item { flex: 1 1 50%; }
    .ce-data-item:nth-child(-n+2) { border-bottom: 1px solid rgba(22, 224, 232, .22); }
    .ce-data-item:nth-child(odd)::before { display: none; }
    .ce-sec { padding: 52px 0 46px; }
    .ce-sec-title { font-size: 18px; }
    .ce-about { grid-template-columns: 1fr; gap: 30px; }
    .ce-about-fig mip-img img { height: 250px !important; }
    .ce-srv-grid { grid-template-columns: repeat(2, 1fr); }
    .ce-game-wrap { grid-template-columns: 1fr; }
    .cm-fig mip-img img { height: 240px !important; }
    .ce-gauges { grid-template-columns: repeat(2, 1fr); }
    .ce-rings { grid-template-columns: repeat(2, 1fr); }
    .ce-cert-grid { grid-template-columns: repeat(2, 1fr); }
    .ce-app { grid-template-columns: 1fr; gap: 30px; }
    .ce-app-fig mip-img img { height: 300px !important; }
    .ce-badge-grid { grid-template-columns: repeat(2, 1fr); }
    .ce-cta { padding: 40px 26px; }
    .ce-cta h2 { font-size: 24px; }
}

@media (max-width: 575px) {
    .ce-logo .logo-word { font-size: 17px; }
    .ce-hero { padding: 34px 0 0; }
    .ce-hero-kicker { font-size: 11px; letter-spacing: 4px; }
    .ce-hero-title { font-size: 26px; }
    .ce-hero-slogan { font-size: 13px; letter-spacing: 4px; }
    .ce-hero-btns { flex-direction: column; gap: 14px; }
    .ce-hero-btns .ce-btn { width: 100%; box-sizing: border-box; }
    .ce-radar { right: -300px; transform: scale(.6); }
    .ce-data-item { flex: 1 1 100%; border-bottom: 1px solid rgba(22, 224, 232, .22); }
    .ce-data-item::before { display: none; }
    .ce-data-item:last-child { border-bottom: none; }
    .ce-sec { padding: 44px 0 40px; }
    .ce-sec-head { gap: 10px; margin-bottom: 26px; }
    .ce-sec-radar { width: 22px; height: 22px; }
    .ce-sec-title { font-size: 16px; letter-spacing: 2px; }
    .ce-about-fig mip-img img { height: 200px !important; }
    .ce-srv-grid { grid-template-columns: 1fr; }
    .ce-srv-card { padding: 20px 18px 24px; }
    .cm-fig mip-img img { height: 200px !important; }
    .cm-body { padding: 16px 18px 20px; }
    .cm-body b { font-size: 20px; }
    .ce-gauges { grid-template-columns: 1fr; }
    .ce-rings { grid-template-columns: 1fr; }
    .ce-cert-grid { grid-template-columns: repeat(2, 1fr); }
    .ce-cert mip-img img { height: 125px !important; }
    .ce-app-fig mip-img img { height: 250px !important; }
    .ce-badge-grid { grid-template-columns: repeat(2, 1fr); }
    .ce-news-row { flex-wrap: wrap; gap: 8px 12px; }
    .nw-title { flex-basis: 100%; order: 2; white-space: normal; }
    .nw-arrow { margin-left: auto; }
    .ce-cta { padding: 36px 18px; }
    .ce-cta h2 { font-size: 21px; }
    .ce-cta-btns { flex-direction: column; gap: 16px; }
    .ce-cta-btns .ce-btn { width: 100%; box-sizing: border-box; }
    /* 斜切全屏层：小屏条目单列 + 顶边斜切收窄 */
    .ce-slash { clip-path: polygon(0 0, 100% 40px, 100% 100%, 0 100%); align-items: flex-start; overflow-y: auto; }
    .ce-slash-in { padding: 24px 18px 22px; margin-top: 40px; }
    .ce-slash-items { grid-template-columns: 1fr; }
    .sl-item { padding: 10px 14px; }
}


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

.ty-crumb a { color: #567e88; }
.ty-crumb a:hover { color: #16e0e8; }

.ty-cat-banner {
    padding: 26px 22px;
    margin-bottom: 26px;
    border: 1px solid rgba(22, 224, 232, .18);
    background: rgba(22, 224, 232, .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: #e6fbfd; }

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

.ty-box {
    margin-bottom: 22px;
    border: 1px solid rgba(22, 224, 232, .14);
    background: rgba(10, 34, 41, .55);
}

.ty-box-head {
    padding: 12px 18px;
    border-bottom: 1px solid rgba(22, 224, 232, .14);
}

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

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

.ty-list-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px dashed rgba(22, 224, 232, .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(22, 224, 232, .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: #e6fbfd; }
.ty-list-item h4 a:hover { color: #16e0e8; }

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

.ty-list-item .item-meta { margin: 0; color: #3d5c65; 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(22, 224, 232, .1);
}

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

.ty-side-list li a:hover { color: #16e0e8; }

.ty-side-list .rank {
    flex: 0 0 22px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    border: 1px solid rgba(22, 224, 232, .3);
    color: #16e0e8;
    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: #16e0e8;
    color: #04333a;
}

.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(22, 224, 232, .22);
    color: #77a3ad;
    font-size: 13px;
    background: rgba(22, 224, 232, .03);
}

.ty-tags-cloud li a:hover {
    color: #04333a;
    background: #16e0e8;
    border-color: #16e0e8;
    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: #77a3ad !important;
    background: rgba(10, 34, 41, .8) !important;
    border: 1px solid rgba(22, 224, 232, .2) !important;
}

.ty-pagination li.active a,
.ty-pagination li.active span {
    color: #04333a !important;
    background: #16e0e8 !important;
    border-color: #16e0e8 !important;
}

.ty-img-card {
    display: block;
    position: relative;
    margin-bottom: 18px;
    border: 1px solid rgba(22, 224, 232, .15);
    background: rgba(10, 34, 41, .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: #e6fbfd;
    font-size: 14px;
    border-top: 1px solid rgba(22, 224, 232, .12);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ---------- 详情页 ---------- */
.ty-detail-title { margin: 0 0 12px; font-size: 26px; font-weight: 900; color: #e6fbfd; 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(22, 224, 232, .16);
    color: #567e88;
    font-size: 13px;
}

.ty-detail-tags a {
    margin-right: 8px;
    padding: 2px 10px;
    border: 1px solid rgba(22, 224, 232, .3);
    color: #7af0f4;
    font-size: 12px;
}

.ty-detail-tags a:hover { color: #04333a; background: #16e0e8; text-shadow: none; }

.ty-guess-title {
    margin: 30px 0 6px;
    padding-left: 12px;
    border-left: 3px solid #16e0e8;
    color: #e6fbfd;
    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(22, 224, 232, .14);
    background: rgba(22, 224, 232, .03);
}

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

.ty-updown .updown-item a {
    display: block;
    color: #77a3ad;
    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(22, 224, 232, .16);
}

.ty-tag-header .tag-badge {
    flex: 0 0 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border: 1px solid rgba(22, 224, 232, .35);
    color: #16e0e8;
    font-size: 20px;
    font-weight: 900;
}

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

.ty-tag-header p { margin: 0; color: #567e88; 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: #567e88; font-size: 13px; margin: 0; }

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

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

/* ---------- 正文排版 ---------- */
.mipcms-detail-body { color: #9cc4cc; 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: #e6fbfd;
    font-weight: 800;
}

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

.mipcms-detail-body mip-img img { border: 1px solid rgba(22, 224, 232, .12); }
