/* ============================================================
   ty-007 电竞体育游戏企业模板
   配色体系：铂银白单色系（#e8eef5 主 / #aebccd 深 / #ffffff 亮）
   结构：中轴对称双柱 HERO（左右光柱呼吸 + 细线框 + 银色数据带）
        夹线标题（横线-方块-描边编号-方块-横线 对称结构）
        三列图标卡业务（CSS 图标窗 + 顶线展开 hover）
        1+3 杂志式游戏（全宽横版首卡 + 三竖卡）
        表格式数据（标签-银线-大数字行）/ 大编号描边步骤
        胶片条荣誉（上下打孔带 + 3x3 帧）/ 全宽图 APP + 三格特性
        文字名录伙伴（双列小银点 + 右移 hover）/ 编号列表动态
        信笺 CTA（细银框 + 顶部印章圆点）
        全屏接管弹层（整屏覆盖 + 中央八宫格入口 + 淡入上移）
        卡片 hover 配方：银线顶线展开 + 上浮（transform scaleX 0→1）
        按钮语言：方形锐角（全站零圆角，银底深字工业感）
   ============================================================ */

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

a { color: #e8eef5; text-decoration: none; transition: color .15s ease, text-shadow .15s ease; }
a:hover { color: #ffffff; text-decoration: none; text-shadow: 0 0 12px rgba(232, 238, 245, .5); }

img { max-width: 100%; }

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

/* ---------- 顶部导航（方形锐角语言） ---------- */
.ag-header {
    background: linear-gradient(180deg, rgba(13, 16, 21, .98), rgba(11, 13, 16, .92));
    border-bottom: 1px solid rgba(232, 238, 245, .2);
    box-shadow: 0 4px 26px rgba(0, 0, 0, .6);
}

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

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

.ag-logo .logo-badge {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    background: linear-gradient(135deg, #e8eef5, #aebccd);
    box-shadow: 0 0 18px rgba(232, 238, 245, .35);
    position: relative;
    top: 8px;
}

.ag-logo .logo-badge::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 10px;
    height: 10px;
    margin: -5px 0 0 -5px;
    background: #0b0d10;
}

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

.ag-logo .logo-word:hover { color: #ffffff; text-shadow: 0 0 14px rgba(232, 238, 245, .6); }

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

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

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

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

.ag-nav > li:hover > a,
.ag-nav > li.active > a { color: #f2f6fa; }

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

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

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

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

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

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

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

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

.ag-dropdown li > a:hover {
    color: #ffffff;
    background: rgba(232, 238, 245, .08);
    border-left-color: #e8eef5;
}

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

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

.ag-dropdown-sub li a:hover { color: #e8eef5; }

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

.ag-search { margin: 0; }

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

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

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

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

.ag-search-btn {
    height: 34px;
    padding: 0 14px;
    font-size: 12px;
    color: #0b0d10;
    font-weight: 700;
    background: linear-gradient(90deg, #e8eef5, #aebccd);
    border: none;
    cursor: pointer;
    border-radius: 0;
}

.ag-play-btn {
    display: inline-block;
    padding: 8px 22px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #0b0d10;
    background: linear-gradient(135deg, #e8eef5, #aebccd);
    box-shadow: 0 0 16px rgba(232, 238, 245, .3);
    cursor: pointer;
    border-radius: 0;
    transition: filter .15s ease;
}

.ag-play-btn:hover { filter: brightness(1.1); color: #0b0d10; }

/* ---------- 通用按钮（方形锐角，银底深字） ---------- */
.ag-btn {
    display: inline-block;
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-align: center;
    cursor: pointer;
    border-radius: 0;
    transition: all .18s ease;
}

.ag-btn-main {
    color: #0b0d10;
    background: linear-gradient(135deg, #e8eef5, #aebccd);
    box-shadow: 0 0 20px rgba(232, 238, 245, .25);
}

/* 防御：Bootstrap a:not([href]):not([tabindex]) 的 color:inherit 特异性 (0,2,1) 会覆盖银底深字按钮，
   无 href 的实底按钮必须锁定深色文字（HTML 已同步补 href，此为双保险） */
a.ag-btn-main, a.ag-play-btn { color: #0b0d10 !important; }

.ag-btn-main:hover { filter: brightness(1.1); color: #0b0d10; text-shadow: none; }

.ag-btn-ghost {
    color: #e8eef5;
    background: rgba(232, 238, 245, .05);
    box-shadow: inset 0 0 0 1px rgba(232, 238, 245, .55);
}

.ag-btn-ghost:hover {
    background: linear-gradient(135deg, #e8eef5, #aebccd);
    color: #0b0d10;
    box-shadow: inset 0 0 0 1px rgba(232, 238, 245, 0);
    text-shadow: none;
}

/* ---------- HERO：中轴对称双柱构图 ---------- */
.ag-hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 0;
    text-align: center;
}

/* 左右光柱（垂直银光带 + 中线，呼吸明暗） */
.ag-pillar {
    position: absolute;
    top: 7%;
    bottom: 20%;
    width: 150px;
    pointer-events: none;
    background: linear-gradient(180deg, transparent, rgba(232, 238, 245, .09) 26%, rgba(232, 238, 245, .17) 50%, rgba(232, 238, 245, .09) 74%, transparent);
}

.ag-pillar.p-l { left: 5%; animation: agPillarFlow 9s ease-in-out infinite; }
.ag-pillar.p-r { right: 5%; animation: agPillarFlow 9s ease-in-out infinite reverse; }

.ag-pillar::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    margin-left: -.5px;
    background: linear-gradient(180deg, transparent, rgba(232, 238, 245, .5), transparent);
}

@keyframes agPillarFlow {
    0%, 100% { opacity: .55; }
    50% { opacity: 1; }
}

/* 中央细线框（四角对角小方块装饰） */
.ag-hero-frame {
    position: relative;
    z-index: 2;
    box-sizing: border-box;
    border: 1px solid rgba(232, 238, 245, .22);
    padding: 54px 30px 48px;
    margin-bottom: 60px;
}

.ag-hero-frame::before,
.ag-hero-frame::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #e8eef5, #aebccd);
}

.ag-hero-frame::before { left: -5px; top: -5px; }
.ag-hero-frame::after { right: -5px; bottom: -5px; }

.ag-hero-kicker {
    display: inline-block;
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 6px;
    color: #b8c4d2;
    padding: 6px 20px;
    border: 1px solid rgba(232, 238, 245, .35);
    background: rgba(232, 238, 245, .05);
}

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

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

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

.ag-hero-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* 贴底银色数据带 */
.ag-hero-data {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(232, 238, 245, .22);
    background: linear-gradient(90deg, rgba(174, 188, 205, .14), rgba(232, 238, 245, .07));
}

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

.ag-data-item {
    flex: 1 1 25%;
    padding: 22px 10px 24px;
    border-left: 1px solid rgba(242, 246, 250, .14);
    text-align: center;
}

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

.ag-data-item .dt-num {
    display: block;
    font-family: Arial, sans-serif;
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
    color: #f2f6fa;
}

.ag-data-item .dt-num i {
    font-style: normal;
    font-size: 14px;
    letter-spacing: 1px;
    color: #aebccd;
}

.ag-data-item .dt-lab {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    letter-spacing: 3px;
    color: rgba(242, 246, 250, .72);
}

/* ---------- 章节头：夹线标题（横线-方块-描边编号-方块-横线） ---------- */
.ag-sec { padding: 72px 0 64px; }

.ag-sec-dark {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(232, 238, 245, .05), transparent 60%),
        linear-gradient(180deg, #141821, #0d1015);
    border-top: 1px solid rgba(232, 238, 245, .08);
    border-bottom: 1px solid rgba(232, 238, 245, .08);
}

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

.ag-sec-dash { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, rgba(232, 238, 245, .35)); }

.ag-sec-dash:first-child { background: linear-gradient(90deg, transparent, rgba(232, 238, 245, .35)); }
.ag-sec-dash:last-child { background: linear-gradient(90deg, rgba(232, 238, 245, .35), transparent); }

.ag-sec-square {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #e8eef5, #aebccd);
}

.ag-sec-title {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 3px;
    color: #f2f6fa;
    white-space: nowrap;
}

.ag-sec-title i {
    font-style: normal;
    font-family: Arial, sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(232, 238, 245, .6);
}

/* ---------- 关于我们：左要点列表 + 右银框图 ---------- */
.ag-about {
    display: grid;
    grid-template-columns: 1.08fr 1fr;
    gap: 52px;
    align-items: center;
}

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

.ag-about-lead strong {
    color: #e8eef5;
    font-weight: 700;
}

.ag-points {
    padding: 0;
    margin: 0 0 30px;
    list-style: none;
}

.ag-points li {
    position: relative;
    padding: 0 0 0 24px;
    margin-bottom: 16px;
}

.ag-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #e8eef5, #aebccd);
}

.ag-points li b {
    display: block;
    margin-bottom: 4px;
    font-size: 15px;
    color: #f2f6fa;
}

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

.ag-about-fig {
    position: relative;
    padding: 12px;
    background: linear-gradient(160deg, rgba(232, 238, 245, .07), rgba(13, 16, 21, .5));
    border: 1px solid rgba(232, 238, 245, .24);
}

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

/* ---------- 核心业务：三列图标卡（CSS 图标窗） ---------- */
.ag-srv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.ag-srv-card {
    position: relative;
    overflow: hidden;
    padding: 26px 24px;
    background: linear-gradient(160deg, rgba(20, 24, 33, .92), rgba(16, 20, 27, .8));
    border: 1px solid rgba(232, 238, 245, .14);
    transition: border-color .22s ease, transform .22s ease;
}

.ag-srv-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #e8eef5, #aebccd);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .3s ease;
}

.ag-srv-card:hover { border-color: rgba(232, 238, 245, .5); transform: translateY(-5px); }
.ag-srv-card:hover::before { transform: scaleX(1); }

/* CSS 图标窗：方形边框 + 左上小方块 + 右下三角 */
.sc-icon {
    display: block;
    position: relative;
    width: 46px;
    height: 46px;
    box-sizing: border-box;
    margin-bottom: 16px;
    border: 1px solid rgba(232, 238, 245, .42);
    background: linear-gradient(135deg, rgba(232, 238, 245, .1), transparent 60%);
    transition: all .25s ease;
}

.sc-icon::before {
    content: "";
    position: absolute;
    left: 7px;
    top: 7px;
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #e8eef5, #aebccd);
}

.sc-icon::after {
    content: "";
    position: absolute;
    right: 5px;
    bottom: 5px;
    width: 0;
    height: 0;
    border-bottom: 13px solid rgba(232, 238, 245, .35);
    border-left: 13px solid transparent;
}

.ag-srv-card:hover .sc-icon {
    border-color: rgba(232, 238, 245, .75);
    box-shadow: 0 0 16px rgba(232, 238, 245, .12);
}

.ag-srv-card b {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    letter-spacing: 1px;
    color: #f2f6fa;
}

.ag-srv-card p {
    margin: 0;
    font-size: 12.5px;
    line-height: 1.8;
    color: #8a98a8;
}

/* ---------- 游戏产品：1+3 杂志式（全宽横版首卡 + 三竖卡） ---------- */
.ag-game-lead {
    position: relative;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    margin-bottom: 18px;
    background: linear-gradient(160deg, rgba(20, 24, 33, .94), rgba(16, 20, 27, .82));
    border: 1px solid rgba(232, 238, 245, .16);
    transition: border-color .22s ease;
}

.ag-game-lead::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #e8eef5, #aebccd);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .3s ease;
    z-index: 2;
}

.ag-game-lead:hover { border-color: rgba(232, 238, 245, .5); }
.ag-game-lead:hover::before { transform: scaleX(1); }

.ag-game-lead .gl-fig { flex: 0 0 46%; overflow: hidden; }

.ag-game-lead .gl-fig mip-img img {
    height: 300px !important;
    transition: transform .35s ease;
}

.ag-game-lead:hover .gl-fig mip-img img { transform: scale(1.04); }

.ag-game-lead .gl-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    padding: 30px 34px;
}

.gl-tag {
    align-self: flex-start;
    padding: 4px 14px;
    margin-bottom: 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #0b0d10;
    background: linear-gradient(90deg, #e8eef5, #aebccd);
}

.gl-body b {
    display: block;
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 2px;
    color: #f2f6fa;
}

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

.gl-btn {
    align-self: flex-start;
    padding: 9px 24px;
    font-style: normal;
    font-size: 12.5px;
    letter-spacing: 2px;
    color: #e8eef5;
    box-shadow: inset 0 0 0 1px rgba(232, 238, 245, .55);
    transition: all .2s ease;
}

.ag-game-lead:hover .gl-btn {
    color: #0b0d10;
    background: linear-gradient(135deg, #e8eef5, #aebccd);
    box-shadow: inset 0 0 0 1px rgba(232, 238, 245, 0);
}

.ag-game-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.ag-game-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: linear-gradient(160deg, rgba(20, 24, 33, .92), rgba(16, 20, 27, .8));
    border: 1px solid rgba(232, 238, 245, .14);
    transition: border-color .22s ease, transform .22s ease;
}

.ag-game-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #e8eef5, #aebccd);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .3s ease;
    z-index: 2;
}

.ag-game-card:hover { border-color: rgba(232, 238, 245, .5); transform: translateY(-4px); }
.ag-game-card:hover::before { transform: scaleX(1); }

.ag-game-card .gc-fig { overflow: hidden; }

.ag-game-card .gc-fig mip-img img {
    height: 190px !important;
    transition: transform .35s ease;
}

.ag-game-card:hover .gc-fig mip-img img { transform: scale(1.05); }

.ag-game-card .gc-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 18px 20px;
}

.gc-body b {
    display: block;
    margin-bottom: 7px;
    font-size: 16px;
    letter-spacing: 1px;
    color: #f2f6fa;
}

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

/* ---------- 企业数据：表格式（标签-银线-大数字） ---------- */
.ag-table {
    padding: 8px 30px;
    background: linear-gradient(160deg, rgba(20, 24, 33, .94), rgba(16, 20, 27, .84));
    border: 1px solid rgba(232, 238, 245, .2);
}

.ag-tr {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 23px 0;
    border-bottom: 1px dashed rgba(232, 238, 245, .16);
    transition: background .2s ease;
}

.ag-tr:last-child { border-bottom: none; }

.ag-tr:hover { background: rgba(232, 238, 245, .04); }

.tr-lab {
    flex-shrink: 0;
    font-size: 15px;
    letter-spacing: 1px;
    color: #b8c4d2;
    transition: color .2s ease;
}

.ag-tr:hover .tr-lab { color: #f2f6fa; }

.tr-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(232, 238, 245, .3), rgba(232, 238, 245, .08));
}

.tr-num {
    flex-shrink: 0;
    font-family: Arial, sans-serif;
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(90deg, #ffffff, #aebccd);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: filter .2s ease;
}

.tr-num i {
    font-style: normal;
    font-size: 15px;
    letter-spacing: 1px;
}

.ag-tr:hover .tr-num { filter: brightness(1.2); }

/* ---------- 服务流程：大编号描边步骤横排 ---------- */
.ag-steps {
    display: flex;
    padding: 0 0 22px;
    margin: 0;
    list-style: none;
}

.ag-step {
    position: relative;
    flex: 1;
    padding: 0 22px;
    text-align: center;
}

.ag-step::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -18px;
    width: 30px;
    height: 3px;
    margin-left: -15px;
    background: linear-gradient(90deg, #e8eef5, #aebccd);
    transform: scaleX(0);
    transition: transform .28s ease;
}

.ag-step:hover::after { transform: scaleX(1); }

.st-no {
    display: block;
    margin-bottom: 12px;
    font-family: Arial, sans-serif;
    font-size: 52px;
    font-weight: 900;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(232, 238, 245, .42);
    transition: all .25s ease;
}

.ag-step:hover .st-no {
    color: #e8eef5;
    -webkit-text-stroke: 0;
    text-shadow: 0 0 22px rgba(232, 238, 245, .25);
}

.ag-step b {
    display: block;
    margin-bottom: 8px;
    font-size: 16.5px;
    letter-spacing: 1px;
    color: #f2f6fa;
}

.ag-step p {
    margin: 0;
    font-size: 12.5px;
    line-height: 1.8;
    color: #8a98a8;
}

/* ---------- 资质荣誉：胶片条（上下打孔带 + 3x3 帧） ---------- */
.ag-film {
    overflow: hidden;
    background: #10141b;
    border: 1px solid rgba(232, 238, 245, .2);
}

.ag-film-in {
    position: relative;
    padding: 26px 20px;
}

/* 上下打孔带（横向重复圆点） */
.ag-film-in::before,
.ag-film-in::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 22px;
    background: radial-gradient(circle, rgba(232, 238, 245, .22) 2.5px, transparent 3px) repeat-x;
    background-size: 24px 22px;
    background-position: center;
}

.ag-film-in::before { top: 4px; }
.ag-film-in::after { bottom: 4px; }

.ag-film-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.ag-frame {
    background: #0b0d10;
    border: 1px solid rgba(232, 238, 245, .15);
    transition: border-color .2s ease;
}

.ag-frame:hover { border-color: rgba(232, 238, 245, .55); }

.ag-frame mip-img img { height: 130px !important; }

/* ---------- APP 客户端：全宽图上 + 三格特性下 ---------- */
.ag-app-fig {
    position: relative;
    padding: 12px;
    background: linear-gradient(160deg, rgba(232, 238, 245, .07), rgba(13, 16, 21, .5));
    border: 1px solid rgba(232, 238, 245, .24);
}

.ag-app-fig mip-img img { height: 400px !important; }

.ag-app-feats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.ag-feat {
    position: relative;
    overflow: hidden;
    padding: 22px 20px;
    background: linear-gradient(160deg, rgba(20, 24, 33, .92), rgba(16, 20, 27, .8));
    border: 1px solid rgba(232, 238, 245, .14);
    transition: border-color .22s ease, transform .22s ease;
}

.ag-feat::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #e8eef5, #aebccd);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .3s ease;
}

.ag-feat:hover { border-color: rgba(232, 238, 245, .5); transform: translateY(-4px); }
.ag-feat:hover::before { transform: scaleX(1); }

.ag-feat b {
    display: block;
    margin-bottom: 6px;
    font-size: 15px;
    color: #f2f6fa;
}

.ag-feat p {
    margin: 0;
    font-size: 12.5px;
    line-height: 1.8;
    color: #8a98a8;
}

/* ---------- 合作伙伴：文字名录（双列小银点，极简无图） ---------- */
.ag-roster {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 40px;
}

.ag-roster-col { padding: 6px 0; }

.ag-roster-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 6px;
    border-bottom: 1px dashed rgba(232, 238, 245, .14);
    transition: all .2s ease;
}

.ag-roster-item i {
    flex-shrink: 0;
    width: 7px;
    height: 7px;
    background: rgba(232, 238, 245, .45);
    transition: background .2s ease;
}

.ag-roster-item .rs-name {
    flex: 1;
    font-family: Arial, sans-serif;
    font-size: 14.5px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #b8c4d2;
    transition: color .2s ease;
}

.ag-roster-item .rs-region {
    flex-shrink: 0;
    font-size: 12px;
    color: #667488;
}

.ag-roster-item:hover { transform: translateX(8px); border-bottom-color: rgba(232, 238, 245, .4); }
.ag-roster-item:hover .rs-name { color: #f2f6fa; }
.ag-roster-item:hover i { background: #e8eef5; }

/* ---------- 最新动态：编号列表（描边大编号 + 右移 hover） ---------- */
.ag-nline {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 15px 6px;
    border-bottom: 1px solid rgba(232, 238, 245, .12);
    transition: background .2s ease, transform .2s ease;
}

.ag-nline:first-child { border-top: 1px solid rgba(232, 238, 245, .12); }

.ag-nline:hover { background: rgba(232, 238, 245, .04); transform: translateX(8px); }

.nl-no {
    flex-shrink: 0;
    font-family: Arial, sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(232, 238, 245, .4);
    transition: all .22s ease;
}

.ag-nline:hover .nl-no { color: #e8eef5; -webkit-text-stroke: 0; }

.nl-main {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14.5px;
    color: #b8c4d2;
    transition: color .18s ease;
}

.ag-nline:hover .nl-main { color: #f2f6fa; }

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

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

/* ---------- 合作 CTA：信笺式（细银框 + 顶部印章圆点） ---------- */
.ag-cta {
    position: relative;
    padding: 58px 30px 54px;
    text-align: center;
    border: 1px solid rgba(232, 238, 245, .32);
    background:
        radial-gradient(ellipse at 50% 0%, rgba(232, 238, 245, .07), transparent 65%),
        linear-gradient(180deg, rgba(20, 24, 33, .9), rgba(13, 16, 21, .92));
}

.ag-cta-seal {
    position: absolute;
    top: -10px;
    left: 50%;
    width: 20px;
    height: 20px;
    margin-left: -10px;
    box-sizing: border-box;
    border: 1px solid rgba(232, 238, 245, .6);
    background: #0d1015;
}

.ag-cta-seal::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 8px;
    height: 8px;
    margin: -4px 0 0 -4px;
    background: linear-gradient(135deg, #e8eef5, #aebccd);
}

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

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

.ag-cta-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 28px;
}

/* ---------- 首页功能速览：全屏接管弹层 ---------- */
.ag-cover {
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow-y: auto;
    background: linear-gradient(180deg, rgba(11, 13, 16, .97), rgba(20, 24, 33, .97));
    animation: agCvFade .3s ease;
}

@keyframes agCvFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

.ag-cover-close {
    position: fixed;
    top: 18px;
    right: 22px;
    z-index: 2;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    line-height: 1;
    color: #b8c4d2;
    background: rgba(11, 13, 16, .8);
    border: 1px solid rgba(232, 238, 245, .4);
    transition: all .2s ease;
}

.ag-cover-close:hover {
    color: #0b0d10;
    background: linear-gradient(135deg, #e8eef5, #aebccd);
    text-shadow: none;
}

.ag-cv-in {
    max-width: 900px;
    margin: 0 auto;
    padding: 84px 20px 60px;
    animation: agCvIn .4s cubic-bezier(.22, .9, .32, 1);
}

@keyframes agCvIn {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: none; }
}

.ag-cv-head { text-align: center; }

.cv-kicker {
    display: block;
    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 5px;
    color: #8a98a8;
}

.cv-title {
    margin: 10px 0 8px;
    font-size: 30px;
    font-weight: 900;
    letter-spacing: 4px;
    color: #f2f6fa;
}

.cv-sub {
    margin: 0;
    font-size: 13px;
    letter-spacing: 2px;
    color: #667488;
}

.ag-cv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 36px;
}

.ag-cv-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    overflow: hidden;
    padding: 22px;
    background: linear-gradient(160deg, rgba(20, 24, 33, .94), rgba(16, 20, 27, .85));
    border: 1px solid rgba(232, 238, 245, .16);
    transition: border-color .22s ease, transform .22s ease;
}

.ag-cv-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #e8eef5, #aebccd);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .3s ease;
}

.ag-cv-item:hover { border-color: rgba(232, 238, 245, .55); transform: translateY(-4px); }
.ag-cv-item:hover::before { transform: scaleX(1); }

.ag-cv-item i {
    flex-shrink: 0;
    font-style: normal;
    font-family: Arial, sans-serif;
    font-size: 26px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(232, 238, 245, .5);
    transition: all .25s ease;
}

.ag-cv-item:hover i { color: #e8eef5; -webkit-text-stroke: 0; }

.ag-cv-item span b {
    display: block;
    margin-bottom: 4px;
    font-size: 15.5px;
    color: #f2f6fa;
}

.ag-cv-item span em {
    font-style: normal;
    font-size: 12px;
    color: #8a98a8;
}

.ag-cv-foot { margin-top: 34px; text-align: center; }

.ag-cv-btn { }

.ag-cv-tip {
    margin: 12px 0 0;
    font-size: 11px;
    letter-spacing: 1px;
    color: #667488;
}

/* ---------- footer ---------- */
.ag-footer {
    margin-top: 40px;
    padding: 34px 0 22px;
    border-top: 1px solid rgba(232, 238, 245, .16);
    background: linear-gradient(180deg, #10141b, #0b0d10);
}

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

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

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

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

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

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

.ag-friend li { color: #4c586a; font-size: 12px; }

.ag-friend li.friend-label { color: #667488; }

.ag-friend a { color: #667488; font-size: 12px; }
.ag-friend a:hover { color: #e8eef5; }

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

.ag-copy a { color: #4c586a; }
.ag-copy a:hover { color: #e8eef5; }

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

/* 平板及以下：第一行 logo+立即游玩，导航整行横向滑动，下拉变全宽面板 */
@media (max-width: 991px) {
    .ag-header-inner { flex-wrap: wrap; min-height: 56px; }
    .ag-logo { line-height: 56px; }
    .ag-nav { order: 3; flex: 1 1 100%; overflow-x: auto; scrollbar-width: none; }
    .ag-nav > li > a { padding: 0 10px; font-size: 13px; line-height: 44px; }
    .ag-nav > li > a::after { display: none; }
    .ag-nav > li.active > a { color: #e8eef5; }
    .ag-dropdown { position: fixed; left: 12px; right: 12px; top: 110px; max-height: 56vh; overflow-y: auto; }
    .ag-dropdown-cols { width: auto; grid-template-columns: 1fr 1fr; }
    .mipcms-main { padding-top: 109px !important; }
    .ag-hero { padding: 44px 0 0; }
    .ag-pillar { width: 70px; }
    .ag-pillar.p-l { left: 3%; }
    .ag-pillar.p-r { right: 3%; }
    .ag-hero-frame { padding: 36px 18px 32px; margin-bottom: 42px; }
    .ag-hero-title { font-size: 31px; }
    .ag-hero-slogan { font-size: 14px; letter-spacing: 5px; }
    .ag-data-item { flex: 1 1 50%; }
    .ag-data-item:nth-child(odd) { border-left: none; }
    .ag-data-item:nth-child(-n+2) { border-bottom: 1px solid rgba(242, 246, 250, .14); }
    .ag-sec { padding: 52px 0 46px; }
    .ag-sec-title { font-size: 19px; }
    .ag-sec-title i { font-size: 17px; }
    .ag-about { grid-template-columns: 1fr; gap: 30px; }
    .ag-about-fig mip-img img { height: 250px !important; }
    .ag-srv-grid { grid-template-columns: repeat(2, 1fr); }
    .ag-game-lead { flex-direction: column; }
    .ag-game-lead .gl-fig { flex: auto; }
    .ag-game-lead .gl-fig mip-img img { height: 240px !important; }
    .ag-game-grid { grid-template-columns: repeat(2, 1fr); }
    .ag-game-card .gc-fig mip-img img { height: 175px !important; }
    .ag-table { padding: 6px 18px; }
    .ag-steps { flex-wrap: wrap; gap: 18px 0; }
    .ag-step { flex: 1 1 50%; }
    .ag-step::after { display: none; }
    .st-no { font-size: 44px; }
    .ag-film-grid { grid-template-columns: repeat(2, 1fr); }
    .ag-frame mip-img img { height: 150px !important; }
    .ag-app-fig mip-img img { height: 320px !important; }
    .ag-roster { grid-template-columns: 1fr; gap: 0; }
    .ag-cta h2 { font-size: 24px; }
    .ag-cv-in { padding-top: 74px; }
    .ag-cv-grid { gap: 12px; }
}

@media (max-width: 575px) {
    .ag-logo .logo-word { font-size: 17px; }
    .ag-hero { padding: 34px 0 0; }
    .ag-hero-kicker { font-size: 11px; letter-spacing: 4px; }
    .ag-hero-title { font-size: 26px; }
    .ag-hero-slogan { font-size: 13px; letter-spacing: 4px; }
    .ag-hero-frame { padding: 30px 14px 28px; margin-bottom: 34px; }
    .ag-hero-btns { flex-direction: column; gap: 10px; }
    .ag-hero-btns .ag-btn { width: 100%; box-sizing: border-box; }
    .ag-data-item { flex: 1 1 100%; border-left: none; border-bottom: 1px solid rgba(242, 246, 250, .14); }
    .ag-data-item:last-child { border-bottom: none; }
    .ag-sec { padding: 44px 0 40px; }
    .ag-sec-head { gap: 10px; margin-bottom: 26px; flex-wrap: wrap; justify-content: center; }
    .ag-sec-dash { display: none; }
    .ag-sec-title { font-size: 17px; }
    .ag-sec-title i { font-size: 15px; }
    .ag-about-fig mip-img img { height: 200px !important; }
    .ag-points li p { font-size: 12px; }
    .ag-srv-grid { grid-template-columns: 1fr; }
    .ag-game-lead .gl-fig mip-img img { height: 210px !important; }
    .ag-game-lead .gl-body { padding: 22px 18px; }
    .gl-body b { font-size: 20px; }
    .ag-game-grid { grid-template-columns: 1fr; }
    .ag-game-card .gc-fig mip-img img { height: 165px !important; }
    .ag-tr { flex-wrap: wrap; gap: 8px 12px; padding: 18px 0; }
    .tr-line { display: none; }
    .tr-lab { flex-basis: 100%; }
    .tr-num { font-size: 30px; }
    .ag-step { padding: 0 10px; }
    .st-no { font-size: 40px; }
    .ag-film-in { padding: 22px 14px; }
    .ag-frame mip-img img { height: 130px !important; }
    .ag-app-feats { grid-template-columns: 1fr; }
    .ag-app-fig mip-img img { height: 260px !important; }
    .ag-nline { flex-wrap: wrap; gap: 8px 12px; padding: 12px 4px; }
    .nl-main { flex-basis: 100%; order: 2; white-space: normal; }
    .nl-date { margin-left: auto; }
    .ag-cta { padding: 44px 18px; }
    .ag-cta h2 { font-size: 21px; }
    .ag-cta-btns { flex-direction: column; align-items: center; }
    .ag-cta-btns .ag-btn { width: 100%; box-sizing: border-box; }
    /* 全屏接管层：条目单列 + 关闭钮内收 */
    .ag-cover-close { top: 12px; right: 14px; width: 34px; height: 34px; font-size: 20px; }
    .ag-cv-in { padding: 70px 14px 44px; }
    .cv-title { font-size: 24px; }
    .ag-cv-grid { grid-template-columns: 1fr; gap: 10px; }
    .ag-cv-item { padding: 18px 16px; }
    .ag-cv-btn { width: 100%; box-sizing: border-box; }
}


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

.ty-crumb a { color: #667488; }
.ty-crumb a:hover { color: #e8eef5; }

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

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

.ty-box {
    margin-bottom: 22px;
    border: 1px solid rgba(232, 238, 245, .14);
    background: rgba(20, 24, 33, .55);
}

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

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

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

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

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

.ty-list-item .item-meta { margin: 0; color: #4c586a; 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(232, 238, 245, .1);
}

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

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

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

.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(232, 238, 245, .22);
    color: #8a98a8;
    font-size: 13px;
    background: rgba(232, 238, 245, .03);
}

.ty-tags-cloud li a:hover {
    color: #1e2634;
    background: #e8eef5;
    border-color: #e8eef5;
    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: #8a98a8 !important;
    background: rgba(20, 24, 33, .8) !important;
    border: 1px solid rgba(232, 238, 245, .2) !important;
}

.ty-pagination li.active a,
.ty-pagination li.active span {
    color: #1e2634 !important;
    background: #e8eef5 !important;
    border-color: #e8eef5 !important;
}

.ty-img-card {
    display: block;
    position: relative;
    margin-bottom: 18px;
    border: 1px solid rgba(232, 238, 245, .15);
    background: rgba(20, 24, 33, .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: #f2f6fa;
    font-size: 14px;
    border-top: 1px solid rgba(232, 238, 245, .12);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

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

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

.ty-detail-tags a:hover { color: #1e2634; background: #e8eef5; text-shadow: none; }

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

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

.ty-updown .updown-item a {
    display: block;
    color: #8a98a8;
    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(232, 238, 245, .16);
}

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

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

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

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

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

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

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

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