/* ============================================================
   ty-013 电竞体育游戏企业模板
   配色体系：宝石蓝单色系（#3b7bff 主 / #1e56d6 深 / #7aa4ff 亮）
   结构：中轴光柱 HERO（中央光柱 + 两侧对称光斑 + 反射线数据带）
        居中对称轴标题（两侧延伸线 + 双端菱形）
        左文案 + 右竖排数据塔关于
        3x2 图标左置横卡业务 / 1+2 主次布局游戏
        大数字计数卡数据 / 竖向中轴时间轴流程
        3x3 四角铆钉证书荣誉 / 中央展台 APP
        方格 logo 墙伙伴（含核心格）/ 标题行日期块动态
        光柱居中 CTA / 百叶窗升降幕弹层
        卡片 hover 配方：错位联动（图标上浮 + 内容下移箭头）
        按钮语言：对角双切角（左上 + 右下对角切）
   ============================================================ */

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

a { color: #7aa4ff; text-decoration: none; transition: color .15s ease, text-shadow .15s ease; }
a:hover { color: #3b7bff; text-decoration: none; text-shadow: 0 0 12px rgba(59, 123, 255, .5); }

img { max-width: 100%; }

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

/* ---------- 顶部导航 ---------- */
.ge-header {
    background: linear-gradient(180deg, rgba(17, 27, 56, .98), rgba(10, 15, 30, .92));
    border-bottom: 1px solid rgba(59, 123, 255, .22);
    box-shadow: 0 4px 26px rgba(0, 0, 0, .6);
}

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

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

/* 菱形徽章（旋转方块 + 内芯） */
.ge-logo .logo-badge {
    display: inline-block;
    width: 26px;
    height: 26px;
    margin-right: 14px;
    background: linear-gradient(135deg, #7aa4ff, #3b7bff 60%, #1e56d6);
    box-shadow: 0 0 18px rgba(59, 123, 255, .45);
    position: relative;
    top: 8px;
    transform: rotate(45deg);
}

.ge-logo .logo-badge::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 9px;
    height: 9px;
    margin: -4.5px 0 0 -4.5px;
    transform: rotate(45deg);
    background: #0a0f1e;
}

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

.ge-logo .logo-word:hover { color: #7aa4ff; text-shadow: 0 0 14px rgba(59, 123, 255, .55); }

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

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

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

.ge-nav > li > a::after {
    content: "";
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 20px;
    height: 3px;
    background: linear-gradient(90deg, #3b7bff, #7aa4ff);
    box-shadow: 0 0 10px rgba(59, 123, 255, .6);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .18s ease;
}

.ge-nav > li:hover > a,
.ge-nav > li.active > a { color: #eaf0ff; }

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

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

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

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

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

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

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

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

.ge-dropdown li > a:hover {
    color: #7aa4ff;
    background: rgba(59, 123, 255, .08);
    border-left-color: #3b7bff;
}

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

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

.ge-dropdown-sub li a:hover { color: #7aa4ff; }

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

.ge-search { margin: 0; }

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

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

.ge-search input[type="text"]::placeholder { color: #6c81ab; }

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

.ge-search-btn {
    height: 34px;
    padding: 0 14px;
    font-size: 12px;
    color: #eaf0ff;
    font-weight: 700;
    background: linear-gradient(135deg, #3b7bff, #1e56d6);
    border: none;
    cursor: pointer;
    border-radius: 0 2px 2px 0;
}

.ge-play-btn {
    display: inline-block;
    padding: 8px 22px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #eaf0ff;
    background: linear-gradient(135deg, #7aa4ff, #3b7bff 62%);
    box-shadow: 0 0 18px rgba(59, 123, 255, .4);
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    cursor: pointer;
    transition: filter .15s ease;
}

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

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

.ge-btn-main {
    color: #eaf0ff;
    background: linear-gradient(135deg, #3b7bff, #1e56d6);
    box-shadow: 0 0 22px rgba(59, 123, 255, .35);
}

.ge-btn-main:hover { filter: brightness(1.15); color: #eaf0ff; text-shadow: none; }

.ge-btn-ghost {
    color: #7aa4ff;
    background: rgba(59, 123, 255, .07);
    box-shadow: inset 0 0 0 1px rgba(59, 123, 255, .55);
}

.ge-btn-ghost:hover {
    color: #eaf0ff;
    background: rgba(59, 123, 255, .85);
    text-shadow: none;
}

/* ---------- HERO：中轴光柱构图 ---------- */
.ge-hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 0;
    background-image: linear-gradient(180deg, #0a0f1e, #111b38);
}

/* 中央光柱（垂直渐变光带 + 光柱核心） */
.ge-beam {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 360px;
    margin-left: -180px;
    background: linear-gradient(180deg, rgba(59, 123, 255, .22), rgba(59, 123, 255, .05) 70%, transparent);
    clip-path: polygon(38% 0, 62% 0, 100% 100%, 0 100%);
    pointer-events: none;
}

/* 两侧对称光斑 */
.ge-glow {
    position: absolute;
    top: 40px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 123, 255, .14), transparent 65%);
    pointer-events: none;
}

.ge-glow.g1 { left: -120px; }
.ge-glow.g2 { right: -120px; }

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

.ge-hero-kicker {
    display: inline-block;
    padding: 5px 20px;
    font-size: 11px;
    letter-spacing: 5px;
    color: #7aa4ff;
    font-weight: 700;
    background: rgba(59, 123, 255, .1);
    box-shadow: inset 0 0 0 1px rgba(59, 123, 255, .4);
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    margin-bottom: 20px;
}

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

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

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

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

/* 反射线数据带（上下双细线 + 居中列） */
.ge-hero-nums {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 20px 0 26px;
    background: linear-gradient(90deg, transparent, rgba(59, 123, 255, .12) 20%, rgba(59, 123, 255, .12) 80%, transparent);
    border-top: 1px solid rgba(59, 123, 255, .3);
    border-bottom: 1px solid rgba(59, 123, 255, .18);
}

.ge-num { text-align: center; }

.ge-num b {
    display: block;
    font-size: 30px;
    font-weight: 900;
    color: #3b7bff;
    line-height: 1;
    text-shadow: 0 0 18px rgba(59, 123, 255, .45);
}

.ge-num b i { font-style: normal; font-size: 15px; margin-left: 2px; color: #7aa4ff; }

.ge-num span {
    display: block;
    margin-top: 7px;
    font-size: 12px;
    letter-spacing: 2px;
    color: #8ea3cc;
}

/* ---------- 章节头：居中对称轴标题 ---------- */
.ge-sec { padding: 64px 0 60px; }

.ge-sec-dark {
    background: linear-gradient(180deg, rgba(17, 27, 56, .6), rgba(13, 20, 40, .8));
    border-top: 1px solid rgba(59, 123, 255, .12);
    border-bottom: 1px solid rgba(59, 123, 255, .12);
}

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

/* 双侧延伸线（由内向外渐隐） */
.ge-sec-line {
    flex: 1;
    height: 1px;
    min-width: 40px;
    background: linear-gradient(90deg, transparent, rgba(59, 123, 255, .55));
}

.ge-sec-head .ge-sec-line:last-child {
    background: linear-gradient(90deg, rgba(59, 123, 255, .55), transparent);
}

/* 端点菱形 */
.ge-sec-diamond {
    display: inline-block;
    width: 8px;
    height: 8px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #7aa4ff, #3b7bff);
    transform: rotate(45deg);
    box-shadow: 0 0 10px rgba(59, 123, 255, .5);
}

.ge-sec-title {
    margin: 0;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 4px;
    color: #eaf0ff;
    white-space: nowrap;
}

/* ---------- 关于我们：左文案 + 右竖排数据塔 ---------- */
.ge-about {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 44px;
    align-items: center;
}

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

.ge-about-lead {
    margin: 0 0 20px;
    font-size: 15px;
    line-height: 2;
    color: #a9bce0;
}

.ge-about-lead strong { color: #7aa4ff; }

.ge-points { display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; }

.ge-point {
    padding: 13px 18px;
    background: rgba(59, 123, 255, .05);
    border-left: 2px solid rgba(59, 123, 255, .5);
    transition: background .15s ease, border-color .15s ease;
}

.ge-point:hover { background: rgba(59, 123, 255, .1); border-left-color: #3b7bff; }

.ge-point b { display: block; margin-bottom: 3px; font-size: 14px; font-weight: 700; color: #7aa4ff; }

.ge-point span { font-size: 13px; color: #8ea3cc; }

/* 右侧竖排数据塔（阶梯递进的三块） */
.ge-tower { display: flex; flex-direction: column; gap: 14px; }

.ge-tower-item {
    position: relative;
    padding: 18px 22px;
    background: linear-gradient(90deg, rgba(59, 123, 255, .16), rgba(59, 123, 255, .04));
    border: 1px solid rgba(59, 123, 255, .28);
    clip-path: polygon(0 0, 100% 0, calc(100% - 16px) 100%, 0 100%);
}

.ge-tower-item:nth-child(2) { margin-left: 26px; }
.ge-tower-item:nth-child(3) { margin-left: 52px; }

.ge-tower-item b {
    display: block;
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
    color: #3b7bff;
    text-shadow: 0 0 16px rgba(59, 123, 255, .4);
}

.ge-tower-item b i { font-style: normal; font-size: 14px; margin-left: 2px; color: #7aa4ff; }

.ge-tower-item span { display: block; margin-top: 6px; font-size: 12px; letter-spacing: 1px; color: #8ea3cc; }

/* ---------- 核心业务：图标左置横卡 + 错位联动 hover ---------- */
.ge-srv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.ge-srv-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
    background: #0e1529;
    border: 1px solid rgba(59, 123, 255, .18);
    transition: border-color .18s ease, background .18s ease;
}

/* 对角切角图标块 */
.gs-ico {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #3b7bff, #1e56d6);
    clip-path: polygon(11px 0, 100% 0, 100% calc(100% - 11px), calc(100% - 11px) 100%, 0 100%, 0 11px);
    box-shadow: 0 0 18px rgba(59, 123, 255, .3);
    transition: transform .22s ease;
}

.gs-ico i { font-style: normal; font-size: 18px; font-weight: 900; color: #eaf0ff; }

.gs-body { min-width: 0; transition: transform .22s ease; }

.gs-body b { display: block; margin-bottom: 5px; font-size: 16px; font-weight: 700; letter-spacing: 1px; color: #7aa4ff; }

.gs-body p { margin: 0; font-size: 13px; line-height: 1.8; color: #8ea3cc; }

/* 错位联动：hover 图标上浮 + 内容下移（本套 hover 配方） */
.ge-srv-card:hover { border-color: rgba(59, 123, 255, .5); background: #111b38; }

.ge-srv-card:hover .gs-ico { transform: translateY(-9px); }

.ge-srv-card:hover .gs-body { transform: translateY(5px); }

/* ---------- 游戏产品：1+2 主次布局 ---------- */
.ge-game-wrap {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 22px;
}

.ge-game-main {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #111b38;
    border: 1px solid rgba(59, 123, 255, .24);
    overflow: hidden;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.gm-fig { display: block; overflow: hidden; }

.gm-fig mip-img img { height: 300px !important; object-fit: cover; transition: transform .3s ease; }

.gm-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px 24px;
}

.gm-body b { font-size: 22px; font-weight: 900; letter-spacing: 1px; color: #eaf0ff; }

.gm-body i { font-style: normal; font-size: 13px; color: #8ea3cc; }

.gm-body em {
    font-style: normal;
    margin-top: 6px;
    align-self: flex-start;
    padding: 4px 12px;
    font-size: 12px;
    color: #7aa4ff;
    background: rgba(59, 123, 255, .1);
    box-shadow: inset 0 0 0 1px rgba(59, 123, 255, .35);
    clip-path: polygon(8px 0, 100% 0, 100% 100%, 0 100%);
}

.ge-game-main:hover { border-color: rgba(59, 123, 255, .55); box-shadow: 0 18px 40px rgba(0, 0, 0, .5); }

.ge-game-main:hover .gm-fig mip-img img { transform: scale(1.04); }

.ge-game-side { display: flex; flex-direction: column; gap: 22px; }

.ge-game-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px;
    background: #0e1529;
    border: 1px solid rgba(59, 123, 255, .2);
    transition: border-color .18s ease, background .18s ease;
}

.gc-fig { display: block; width: 120px; flex-shrink: 0; overflow: hidden; }

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

.gc-body { min-width: 0; }

.gc-body b { display: block; margin-bottom: 4px; font-size: 17px; font-weight: 700; color: #eaf0ff; }

.gc-body i { font-style: normal; font-size: 12px; color: #8ea3cc; }

.ge-game-card:hover { border-color: rgba(59, 123, 255, .55); background: #111b38; }

.ge-game-card:hover .gc-body b { color: #7aa4ff; }

/* ---------- 企业数据：大数字计数卡 ---------- */
.ge-counters {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.ge-counter {
    position: relative;
    padding: 30px 20px 26px;
    text-align: center;
    background: linear-gradient(180deg, rgba(59, 123, 255, .08), rgba(59, 123, 255, .02));
    border: 1px solid rgba(59, 123, 255, .2);
    transition: border-color .18s ease, transform .18s ease;
}

/* 底部细线刻度 */
.ge-counter::after {
    content: "";
    position: absolute;
    left: 22%;
    right: 22%;
    bottom: 12px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3b7bff, transparent);
}

.ge-counter b {
    display: block;
    font-size: 40px;
    font-weight: 900;
    line-height: 1;
    color: #3b7bff;
    text-shadow: 0 0 22px rgba(59, 123, 255, .5);
}

.ge-counter b i { font-style: normal; font-size: 18px; margin-left: 2px; color: #7aa4ff; }

.ge-counter span { display: block; margin-top: 12px; font-size: 13px; letter-spacing: 1px; color: #8ea3cc; }

.ge-counter:hover { border-color: rgba(59, 123, 255, .55); transform: translateY(-6px); }

/* ---------- 服务流程：竖向中轴时间轴（左右交替） ---------- */
.ge-vline {
    position: relative;
    max-width: 880px;
    margin: 0 auto;
    padding: 8px 0;
}

/* 中轴光带 */
.ge-vline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    margin-left: -1px;
    background: linear-gradient(180deg, transparent, rgba(59, 123, 255, .55) 10%, rgba(59, 123, 255, .55) 90%, transparent);
}

.ge-vstep {
    position: relative;
    display: flex;
    align-items: center;
    width: 50%;
    padding: 14px 0;
}

.ge-vstep.left { justify-content: flex-end; }

.ge-vstep.right { margin-left: 50%; justify-content: flex-start; }

/* 轴上节点圆 */
.vs-dot {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-style: normal;
    font-size: 13px;
    font-weight: 900;
    color: #eaf0ff;
    background: linear-gradient(135deg, #3b7bff, #1e56d6);
    border: 2px solid #0a0f1e;
    border-radius: 50%;
    box-shadow: 0 0 16px rgba(59, 123, 255, .45);
    z-index: 1;
}

.ge-vstep.left .vs-dot { right: -20px; }
.ge-vstep.right .vs-dot { left: -20px; }

.vs-body {
    padding: 14px 20px;
    background: rgba(59, 123, 255, .05);
    border: 1px solid rgba(59, 123, 255, .2);
    border-radius: 10px;
    transition: border-color .15s ease;
}

.ge-vstep.left .vs-body { margin-right: 38px; text-align: right; }
.ge-vstep.right .vs-body { margin-left: 38px; text-align: left; }

.vs-body b { display: block; margin-bottom: 4px; font-size: 16px; font-weight: 700; color: #7aa4ff; }

.vs-body p { margin: 0; font-size: 13px; line-height: 1.7; color: #8ea3cc; }

.ge-vstep:hover .vs-body { border-color: rgba(59, 123, 255, .5); }

/* ---------- 资质荣誉：对角铆钉证书 ---------- */
.ge-rivet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ge-rivet {
    position: relative;
    padding: 12px;
    background: #111b38;
    border: 1px solid rgba(59, 123, 255, .24);
    transition: border-color .18s ease;
}

.ge-rivet mip-img img { height: 130px !important; object-fit: cover; }

/* 对角铆钉两点（左上 rv-dot + 右下 ::after） */
.rv-dot {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #c9d9ff, #3b7bff 70%);
    box-shadow: 0 0 8px rgba(59, 123, 255, .55);
}

.ge-rivet::after {
    content: "";
    position: absolute;
    right: 5px;
    bottom: 5px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #c9d9ff, #3b7bff 70%);
    box-shadow: 0 0 8px rgba(59, 123, 255, .55);
}

.ge-rivet:hover { border-color: rgba(59, 123, 255, .6); }

/* ---------- APP 客户端：中央展台 ---------- */
.ge-stage {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1fr;
    gap: 26px;
    align-items: center;
}

.ge-stage-col { display: flex; flex-direction: column; gap: 14px; }

.st-item {
    padding: 14px 18px;
    background: rgba(59, 123, 255, .05);
    border: 1px solid rgba(59, 123, 255, .18);
    border-radius: 10px;
    transition: border-color .15s ease, background .15s ease;
}

.st-item:hover { border-color: rgba(59, 123, 255, .5); background: rgba(59, 123, 255, .09); }

.st-item b { display: block; margin-bottom: 3px; font-size: 15px; font-weight: 700; color: #7aa4ff; }

.st-item p { margin: 0; font-size: 13px; line-height: 1.7; color: #8ea3cc; }

.ge-stage-fig {
    padding: 14px;
    background: #111b38;
    border: 1px solid rgba(59, 123, 255, .28);
    box-shadow: 0 0 34px rgba(59, 123, 255, .14);
}

.ge-stage-fig mip-img img { height: 380px !important; object-fit: contain; }

.ge-stage-col .ge-btn { margin-top: 6px; }

/* ---------- 合作伙伴：方格 logo 墙（含核心格） ---------- */
.ge-wall {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.wall-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 110px;
    background: #0e1529;
    border: 1px solid rgba(59, 123, 255, .16);
    transition: border-color .15s ease, background .15s ease;
}

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

.wall-cell:hover { border-color: rgba(59, 123, 255, .5); background: #111b38; }

/* 中央核心格（第 5 格） */
.wall-core {
    flex-direction: column;
    background: linear-gradient(135deg, rgba(59, 123, 255, .22), rgba(59, 123, 255, .06));
    border-color: rgba(59, 123, 255, .45);
}

.wall-core b { font-size: 30px; font-weight: 900; line-height: 1; color: #3b7bff; text-shadow: 0 0 16px rgba(59, 123, 255, .45); }

.wall-core span { margin-top: 7px; font-size: 12px; letter-spacing: 1px; color: #8ea3cc; }

/* ---------- 最新动态：标题行 + 右侧日期块 ---------- */
.ge-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
}

.ge-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: #0e1529;
    border: 1px solid rgba(59, 123, 255, .16);
    transition: border-color .15s ease, transform .15s ease;
}

.ge-row-title {
    flex: 1;
    min-width: 0;
    font-size: 15px;
    color: #eaf0ff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ge-row:hover { border-color: rgba(59, 123, 255, .45); transform: translateX(6px); }

.ge-row:hover .ge-row-title { color: #7aa4ff; }

.ge-row-date {
    flex-shrink: 0;
    padding: 5px 12px;
    font-size: 12px;
    color: #8ea3cc;
    background: rgba(59, 123, 255, .08);
    border: 1px solid rgba(59, 123, 255, .22);
}

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

/* ---------- 合作 CTA：光柱居中 ---------- */
.ge-cta {
    position: relative;
    overflow: hidden;
    padding: 64px 30px;
    text-align: center;
    background: linear-gradient(180deg, #111b38, #0d1428);
    border: 1px solid rgba(59, 123, 255, .24);
}

.cta-beam {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 220px;
    margin-left: -110px;
    background: linear-gradient(180deg, rgba(59, 123, 255, .26), transparent 85%);
    clip-path: polygon(28% 0, 72% 0, 100% 100%, 0 100%);
    animation: geBeamPulse 4s ease-in-out infinite;
    pointer-events: none;
}

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

.ge-cta h2 {
    position: relative;
    margin: 0 0 12px;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 3px;
    color: #eaf0ff;
}

.ge-cta p { position: relative; margin: 0 0 26px; font-size: 14px; color: #a9bce0; }

.ge-cta-btns { position: relative; display: flex; justify-content: center; gap: 22px; }

/* ---------- 首页功能速览：百叶窗升降幕弹层 ---------- */
.ge-blind-mask {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 15, 30, .84);
}

.ge-blind { position: relative; width: min(600px, 92vw); }

/* 六条横板自左向右依次展开（stagger） */
.gb-slat {
    position: absolute;
    left: 0;
    right: 0;
    height: 16.6667%;
    background: linear-gradient(180deg, #111b38, #0d1428);
    border-left: 1px solid rgba(59, 123, 255, .4);
    border-right: 1px solid rgba(59, 123, 255, .4);
    transform: scaleX(0);
    animation: gbSlat .36s ease forwards;
    box-shadow: 0 0 24px rgba(59, 123, 255, .08);
}

.gb-slat:nth-child(1) { top: 0; border-top: 1px solid rgba(59, 123, 255, .4); }
.gb-slat:nth-child(2) { top: 16.6667%; animation-delay: .07s; }
.gb-slat:nth-child(3) { top: 33.3333%; animation-delay: .14s; }
.gb-slat:nth-child(4) { top: 50%; animation-delay: .21s; }
.gb-slat:nth-child(5) { top: 66.6667%; animation-delay: .28s; }
.gb-slat:nth-child(6) { top: 83.3333%; animation-delay: .35s; border-bottom: 1px solid rgba(59, 123, 255, .4); }

@keyframes gbSlat {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

/* 幕布展开后内容浮现 */
.ge-blind-body {
    position: relative;
    z-index: 1;
    padding: 0 22px;
    opacity: 0;
    animation: gbBody .4s ease .52s forwards;
}

@keyframes gbBody {
    to { opacity: 1; }
}

.ge-blind-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 2px 12px;
    border-bottom: 1px solid rgba(59, 123, 255, .18);
}

.gb-title { font-size: 17px; font-weight: 900; color: #eaf0ff; }

.gb-kicker { font-size: 10px; font-weight: 700; letter-spacing: 4px; color: #1e56d6; }

.gb-close {
    margin-left: auto;
    width: 34px;
    height: 34px;
    line-height: 32px;
    text-align: center;
    font-size: 22px;
    color: #8ea3cc;
    border: 1px solid rgba(59, 123, 255, .3);
    border-radius: 50%;
    transition: all .15s ease;
}

.gb-close:hover { color: #eaf0ff; background: #3b7bff; border-color: #3b7bff; }

.ge-blind-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 16px 2px 6px;
}

.gb-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 14px 6px;
    background: rgba(59, 123, 255, .04);
    border: 1px solid rgba(59, 123, 255, .18);
    border-radius: 10px;
    transition: all .15s ease;
}

.gb-item i { font-style: normal; font-size: 12px; font-weight: 700; color: #1e56d6; }

.gb-item span { font-size: 12px; color: #a9bce0; }

.gb-item:hover { border-color: rgba(59, 123, 255, .5); background: rgba(59, 123, 255, .1); }

.gb-item:hover span { color: #7aa4ff; }

.ge-blind-foot { padding: 12px 2px 20px; }

.gb-go { display: block; width: 100%; box-sizing: border-box; }

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

/* ---------- footer ---------- */
.ge-footer {
    margin-top: 40px;
    padding: 34px 0 22px;
    border-top: 1px solid rgba(59, 123, 255, .16);
    background: linear-gradient(180deg, #111b38, #0a0f1e);
}

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

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

.ge-foot-co .co-intro p { margin: 0; color: #6c81ab; font-size: 13px; }

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

.ge-foot-co .co-contact li { color: #8ea3cc; font-size: 13px; }

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

.ge-friend li { color: #394766; font-size: 12px; }

.ge-friend li.friend-label { color: #4f6187; }

.ge-friend a { color: #4f6187; font-size: 12px; }
.ge-friend a:hover { color: #3b7bff; }

.ge-copy { margin: 14px 0 0; color: #394766; font-size: 12px; }

.ge-copy a { color: #394766; }
.ge-copy a:hover { color: #3b7bff; }

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

@media (max-width: 991px) {
    .ge-header-inner { flex-wrap: wrap; min-height: 56px; }
    .ge-logo { line-height: 56px; }
    .ge-nav { order: 3; flex: 1 1 100%; overflow-x: auto; scrollbar-width: none; }
    .ge-nav > li > a { padding: 0 10px; font-size: 13px; line-height: 44px; }
    .ge-nav > li > a::after { display: none; }
    .ge-nav > li.active > a { color: #3b7bff; }
    .ge-dropdown { position: fixed; left: 12px; right: 12px; top: 110px; max-height: 56vh; overflow-y: auto; }
    .ge-dropdown-cols { width: auto; grid-template-columns: 1fr 1fr; }
    .mipcms-main { padding-top: 109px !important; }
    .ge-hero { padding: 44px 0 0; }
    .ge-hero-title { font-size: 31px; }
    .ge-hero-slogan { font-size: 14px; letter-spacing: 5px; }
    .ge-hero-in { padding-bottom: 40px; }
    .ge-beam { width: 260px; margin-left: -130px; }
    .ge-hero-nums { grid-template-columns: repeat(2, 1fr); gap: 18px 0; }
    .ge-sec { padding: 52px 0 46px; }
    .ge-sec-title { font-size: 18px; }
    .ge-about { grid-template-columns: 1fr; gap: 30px; }
    .ge-tower-item:nth-child(2), .ge-tower-item:nth-child(3) { margin-left: 0; }
    .ge-srv-grid { grid-template-columns: 1fr; }
    .ge-game-wrap { grid-template-columns: 1fr; }
    .gm-fig mip-img img { height: 240px !important; }
    .ge-counters { grid-template-columns: repeat(2, 1fr); }
    /* 竖轴改左轴 */
    .ge-vline::before { left: 20px; }
    .ge-vstep, .ge-vstep.right { width: 100%; margin-left: 0; justify-content: flex-start; padding-left: 56px; }
    .ge-vstep .vs-dot { left: 0; right: auto; }
    .ge-vstep.left .vs-body { margin-right: 0; margin-left: 0; text-align: left; }
    .ge-vstep.right .vs-body { margin-left: 0; }
    .ge-rivet-grid { grid-template-columns: repeat(2, 1fr); }
    .ge-stage { grid-template-columns: 1fr; }
    .ge-stage-fig { order: -1; }
    .ge-stage-fig mip-img img { height: 300px !important; }
    .ge-stage-col .ge-btn { align-self: center; }
    .ge-wall { grid-template-columns: repeat(2, 1fr); }
    .ge-cta { padding: 40px 26px; }
    .ge-cta h2 { font-size: 24px; }
}

@media (max-width: 575px) {
    .ge-logo .logo-word { font-size: 17px; }
    .ge-hero { padding: 34px 0 0; }
    .ge-hero-kicker { font-size: 11px; letter-spacing: 4px; }
    .ge-hero-title { font-size: 26px; }
    .ge-hero-slogan { font-size: 13px; letter-spacing: 4px; }
    .ge-hero-btns { flex-direction: column; gap: 14px; }
    .ge-hero-btns .ge-btn { width: 100%; box-sizing: border-box; }
    .ge-beam { width: 180px; margin-left: -90px; }
    .ge-glow { width: 200px; height: 200px; }
    .ge-hero-nums { grid-template-columns: repeat(2, 1fr); }
    .ge-num b { font-size: 24px; }
    .ge-sec { padding: 44px 0 40px; }
    .ge-sec-head { gap: 10px; margin-bottom: 26px; }
    .ge-sec-title { font-size: 16px; letter-spacing: 2px; }
    .ge-points { margin-bottom: 22px; }
    .ge-tower-item { padding: 14px 18px; }
    .ge-tower-item b { font-size: 24px; }
    .ge-srv-card { padding: 18px 16px; gap: 14px; }
    .gs-ico { width: 48px; height: 48px; }
    .gm-fig mip-img img { height: 200px !important; }
    .gm-body { padding: 16px 18px; }
    .gm-body b { font-size: 19px; }
    .ge-counters { grid-template-columns: 1fr; }
    .ge-counter b { font-size: 34px; }
    .ge-vstep, .ge-vstep.right { padding-left: 52px; }
    .ge-rivet-grid { grid-template-columns: repeat(2, 1fr); }
    .ge-rivet mip-img img { height: 105px !important; }
    .ge-stage-fig mip-img img { height: 250px !important; }
    .ge-stage-col .ge-btn { align-self: stretch; text-align: center; }
    .ge-wall { grid-template-columns: repeat(2, 1fr); }
    .wall-cell { height: 90px; }
    .wall-cell mip-img img { height: 44px !important; }
    .ge-row { flex-wrap: wrap; gap: 8px 12px; }
    .ge-row-date { order: 3; margin-left: auto; }
    .ge-cta { padding: 36px 18px; }
    .ge-cta h2 { font-size: 21px; }
    .ge-cta-btns { flex-direction: column; gap: 16px; }
    .ge-cta-btns .ge-btn { width: 100%; box-sizing: border-box; }
    /* 百叶窗：小屏条目 2 列 */
    .ge-blind-items { grid-template-columns: repeat(2, 1fr); }
    .ge-blind { max-height: 86vh; }
    .ge-blind-body { overflow-y: auto; }
}


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

.ty-crumb a { color: #6c81ab; }
.ty-crumb a:hover { color: #3b7bff; }

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

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

.ty-box {
    margin-bottom: 22px;
    border: 1px solid rgba(59, 123, 255, .14);
    background: rgba(17, 27, 56, .55);
}

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

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

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

.ty-list-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px dashed rgba(59, 123, 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(59, 123, 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: #eaf0ff; }
.ty-list-item h4 a:hover { color: #3b7bff; }

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

.ty-list-item .item-meta { margin: 0; color: #4f6187; 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(59, 123, 255, .1);
}

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

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

.ty-side-list .rank {
    flex: 0 0 22px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    border: 1px solid rgba(59, 123, 255, .3);
    color: #3b7bff;
    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: #3b7bff;
    color: #0d1a3d;
}

.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(59, 123, 255, .22);
    color: #8ea3cc;
    font-size: 13px;
    background: rgba(59, 123, 255, .03);
}

.ty-tags-cloud li a:hover {
    color: #0d1a3d;
    background: #3b7bff;
    border-color: #3b7bff;
    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: #8ea3cc !important;
    background: rgba(17, 27, 56, .8) !important;
    border: 1px solid rgba(59, 123, 255, .2) !important;
}

.ty-pagination li.active a,
.ty-pagination li.active span {
    color: #0d1a3d !important;
    background: #3b7bff !important;
    border-color: #3b7bff !important;
}

.ty-img-card {
    display: block;
    position: relative;
    margin-bottom: 18px;
    border: 1px solid rgba(59, 123, 255, .15);
    background: rgba(17, 27, 56, .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: #eaf0ff;
    font-size: 14px;
    border-top: 1px solid rgba(59, 123, 255, .12);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ---------- 详情页 ---------- */
.ty-detail-title { margin: 0 0 12px; font-size: 26px; font-weight: 900; color: #eaf0ff; 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(59, 123, 255, .16);
    color: #6c81ab;
    font-size: 13px;
}

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

.ty-detail-tags a:hover { color: #0d1a3d; background: #3b7bff; text-shadow: none; }

.ty-guess-title {
    margin: 30px 0 6px;
    padding-left: 12px;
    border-left: 3px solid #3b7bff;
    color: #eaf0ff;
    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(59, 123, 255, .14);
    background: rgba(59, 123, 255, .03);
}

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

.ty-updown .updown-item a {
    display: block;
    color: #8ea3cc;
    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(59, 123, 255, .16);
}

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

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

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

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

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

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

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

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