/* ============================================================
   ty-005 电竞体育游戏企业模板
   配色体系：深空冰蓝单色系（#7dd8ff 主 / #3aa0dd 深 / #b9e9ff 亮）
   结构：同心圆环靶心 HERO（3 层圆环 + 四角十字准星 + 贴底数据带）
        斜切标签章节头（skewX 标签 + 英文注记 + 延伸细线）
        左编号要点取景框关于 / 台阶式 3+3 业务网格（第二排下沉）
        混合比例游戏卡（横版主推 + 竖版通高 + 四小卡杂志式混排）
        静态进度条数据 / 横向轨道节点流程 / 灯箱荣誉（内发光+顶部铭牌）
        左特性列 APP / 斜切条带徽章伙伴 / 首条大卡+紧凑行动态
        细线框 CTA（两端竖短杠） / 底部滑出功能面板（替代居中弹窗）
        卡片 hover 配方：冷光内渗（inset 光 + 边框亮 + 编号实心化）
   ============================================================ */

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

a { color: #b9e9ff; text-decoration: none; transition: color .15s ease, text-shadow .15s ease; }
a:hover { color: #7dd8ff; text-decoration: none; text-shadow: 0 0 12px rgba(125, 216, 255, .5); }

img { max-width: 100%; }

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

/* ---------- 顶部导航 ---------- */
.ic-header {
    background: linear-gradient(180deg, rgba(9, 21, 33, .98), rgba(6, 14, 21, .92));
    border-bottom: 1px solid rgba(125, 216, 255, .2);
    box-shadow: 0 4px 26px rgba(0, 0, 0, .6);
}

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

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

.ic-logo .logo-badge {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    background: linear-gradient(135deg, #7dd8ff, #3aa0dd);
    box-shadow: 0 0 18px rgba(125, 216, 255, .45);
    position: relative;
    top: 8px;
    border-radius: 50%;
    clip-path: polygon(0 0, 100% 0, 100% 72%, 72% 100%, 0 100%);
}

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

.ic-logo .logo-word:hover { color: #7dd8ff; text-shadow: 0 0 14px rgba(125, 216, 255, .55); }

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

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

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

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

.ic-nav > li:hover > a,
.ic-nav > li.active > a { color: #eaf7ff; }

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

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

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

/* 栏目中心下拉（桌面 hover + 触屏 .open 双通道） */
.ic-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 60;
    min-width: 200px;
    padding: 10px;
    background: rgba(9, 21, 33, .98);
    border: 1px solid rgba(125, 216, 255, .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;
}

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

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

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

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

.ic-dropdown li > a:hover {
    color: #7dd8ff;
    background: rgba(125, 216, 255, .08);
    border-left-color: #7dd8ff;
}

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

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

.ic-dropdown-sub li a:hover { color: #b9e9ff; }

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

.ic-search { margin: 0; }

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

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

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

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

.ic-search-btn {
    height: 34px;
    padding: 0 14px;
    font-size: 12px;
    color: #072033;
    font-weight: 700;
    background: linear-gradient(90deg, #7dd8ff, #3aa0dd);
    border: none;
    cursor: pointer;
}

.ic-play-btn {
    display: inline-block;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #072033;
    background: linear-gradient(135deg, #7dd8ff, #3aa0dd);
    box-shadow: 0 0 16px rgba(125, 216, 255, .35);
    cursor: pointer;
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
    transition: filter .15s ease;
}

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

/* ---------- 通用按钮（切角呼应斜切标签语言） ---------- */
.ic-btn {
    display: inline-block;
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-align: center;
    cursor: pointer;
    transition: all .18s ease;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.ic-btn-main {
    color: #072033;
    background: linear-gradient(135deg, #7dd8ff, #3aa0dd);
    box-shadow: 0 0 22px rgba(125, 216, 255, .32);
}

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

.ic-btn-ghost {
    color: #b9e9ff;
    background: rgba(125, 216, 255, .05);
    box-shadow: inset 0 0 0 1px rgba(125, 216, 255, .55);
}

.ic-btn-ghost:hover {
    background: rgba(125, 216, 255, .16);
    color: #eaf7ff;
    box-shadow: inset 0 0 0 1px rgba(185, 233, 255, .9), 0 0 18px rgba(125, 216, 255, .25);
}

/* ---------- HERO：同心圆环靶心 ---------- */
.ic-hero {
    position: relative;
    overflow: hidden;
    padding: 96px 0 0;
    text-align: center;
}

.ic-hero-ring {
    position: absolute;
    left: 50%;
    top: 38%;
    border-radius: 50%;
    pointer-events: none;
}

.ic-hero-ring.r1 {
    width: 640px;
    height: 640px;
    margin: -320px 0 0 -320px;
    border: 1px solid rgba(125, 216, 255, .1);
}

.ic-hero-ring.r2 {
    width: 470px;
    height: 470px;
    margin: -235px 0 0 -235px;
    border: 1px dashed rgba(125, 216, 255, .2);
    animation: icRingSpin 90s linear infinite;
}

.ic-hero-ring.r3 {
    width: 300px;
    height: 300px;
    margin: -150px 0 0 -150px;
    border: 1px solid rgba(125, 216, 255, .28);
    animation: icRingPulse 4.5s ease-in-out infinite;
}

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

@keyframes icRingPulse {
    0%, 100% { opacity: .55; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.03); }
}

.ic-hero-cross {
    position: absolute;
    width: 22px;
    height: 22px;
    opacity: .55;
    animation: icCrossBlink 3s ease-in-out infinite;
}

.ic-hero-cross::before,
.ic-hero-cross::after {
    content: "";
    position: absolute;
    background: rgba(125, 216, 255, .8);
}

.ic-hero-cross::before { left: 0; right: 0; top: 50%; height: 1px; }

.ic-hero-cross::after { top: 0; bottom: 0; left: 50%; width: 1px; }

.ic-hero-cross.tl { top: 16%; left: 9%; }
.ic-hero-cross.tr { top: 16%; right: 9%; animation-delay: .7s; }
.ic-hero-cross.bl { bottom: 30%; left: 15%; animation-delay: 1.4s; }
.ic-hero-cross.br { bottom: 30%; right: 15%; animation-delay: 2.1s; }

@keyframes icCrossBlink {
    0%, 100% { opacity: .25; }
    50% { opacity: .8; }
}

.ic-hero-kicker {
    display: inline-block;
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 6px;
    color: #7dd8ff;
    position: relative;
    padding: 0 46px;
}

.ic-hero-kicker::before,
.ic-hero-kicker::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #7dd8ff);
}

.ic-hero-kicker::before { left: 0; }

.ic-hero-kicker::after { right: 0; background: linear-gradient(90deg, #7dd8ff, transparent); }

.ic-hero-title {
    margin: 18px 0 14px;
    font-size: 42px;
    font-weight: 900;
    letter-spacing: 3px;
    background: linear-gradient(180deg, #e8f7ff, #7dd8ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

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

.ic-hero-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 64px;
}

.ic-hero-band {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(125, 216, 255, .18);
    background: linear-gradient(180deg, rgba(7, 32, 51, 0), rgba(7, 32, 51, .92) 40%);
}

.ic-band-row {
    display: flex;
    align-items: stretch;
}

.ic-band-item {
    flex: 1 1 25%;
    padding: 20px 10px 22px;
    border-left: 1px solid rgba(125, 216, 255, .14);
}

.ic-band-item:first-child { border-left: none; }

.bi-num {
    display: block;
    font-family: Arial, sans-serif;
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(90deg, #7dd8ff, #b9e9ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.bi-lab {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    letter-spacing: 3px;
    color: #7ba0b8;
}

/* ---------- 章节头：斜切标签 ---------- */
.ic-sec { padding: 72px 0 64px; }

.ic-sec-dark {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(125, 216, 255, .05), transparent 60%),
        linear-gradient(180deg, #091521, #081420);
    border-top: 1px solid rgba(125, 216, 255, .1);
    border-bottom: 1px solid rgba(125, 216, 255, .1);
}

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

.ic-sec-tab {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 9px 26px;
    background: linear-gradient(135deg, rgba(125, 216, 255, .18), rgba(58, 160, 221, .08));
    border: 1px solid rgba(125, 216, 255, .4);
    transform: skewX(-12deg);
}

.ic-sec-tab > i,
.ic-sec-tab > b { transform: skewX(12deg); }

.ic-sec-tab i {
    font-style: normal;
    font-family: Arial, sans-serif;
    font-size: 21px;
    font-weight: 900;
    color: #7dd8ff;
}

.ic-sec-tab b {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 3px;
    color: #eaf7ff;
}

.ic-sec-en {
    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #547891;
    white-space: nowrap;
}

.ic-sec-rule {
    flex: 1;
    height: 1px;
    min-width: 40px;
    background: linear-gradient(90deg, rgba(125, 216, 255, .45), rgba(125, 216, 255, .04));
}

/* ---------- 关于我们：左编号要点 + 右取景框 ---------- */
.ic-about {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 52px;
    align-items: center;
}

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

.ic-about-lead strong {
    color: #b9e9ff;
    font-weight: 700;
    text-shadow: 0 0 14px rgba(125, 216, 255, .35);
}

.ic-about-list {
    padding: 0;
    margin: 0 0 26px;
    list-style: none;
}

.ic-about-list li {
    display: flex;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px dashed rgba(125, 216, 255, .18);
}

.ic-about-list li i {
    flex-shrink: 0;
    width: 46px;
    font-style: normal;
    font-family: Arial, sans-serif;
    font-size: 26px;
    font-weight: 900;
    line-height: 1.15;
    color: transparent;
    -webkit-text-stroke: 1px rgba(125, 216, 255, .6);
    transition: all .2s ease;
}

.ic-about-list li:hover i {
    color: #7dd8ff;
    -webkit-text-stroke: 0;
}

.al-txt b {
    display: block;
    margin-bottom: 5px;
    font-size: 15px;
    color: #eaf7ff;
}

.al-txt em {
    font-style: normal;
    font-size: 12.5px;
    line-height: 1.8;
    color: #7ba0b8;
}

.ic-about-fig {
    position: relative;
    padding: 14px;
    background: linear-gradient(160deg, rgba(125, 216, 255, .07), rgba(9, 21, 33, .5));
    border: 1px solid rgba(125, 216, 255, .2);
}

.ic-about-fig mip-img img { height: 360px !important; }

.af-frame {
    position: absolute;
    width: 30px;
    height: 30px;
    pointer-events: none;
}

.af-frame.f-tl {
    top: -8px;
    left: -8px;
    border-top: 2px solid #7dd8ff;
    border-left: 2px solid #7dd8ff;
}

.af-frame.f-br {
    right: -8px;
    bottom: -8px;
    border-right: 2px solid #7dd8ff;
    border-bottom: 2px solid #7dd8ff;
}

/* ---------- 核心业务：台阶式 3+3 网格 ---------- */
.ic-srv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.ic-srv-card {
    display: block;
    padding: 28px 26px 26px;
    background: linear-gradient(160deg, rgba(11, 26, 41, .9), rgba(9, 21, 33, .75));
    border: 1px solid rgba(125, 216, 255, .16);
    transition: all .22s ease;
}

.ic-srv-grid .ic-srv-card:nth-child(n+4) { margin-top: 30px; }

.ic-srv-card .sc-no {
    display: block;
    margin-bottom: 16px;
    font-family: Arial, sans-serif;
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(125, 216, 255, .5);
    transition: all .22s ease;
}

.ic-srv-card b {
    display: block;
    margin-bottom: 10px;
    font-size: 17px;
    letter-spacing: 1px;
    color: #eaf7ff;
}

.ic-srv-card p {
    margin: 0;
    font-size: 13px;
    line-height: 1.85;
    color: #7ba0b8;
}

.ic-srv-card:hover {
    transform: translateY(-5px);
    border-color: rgba(125, 216, 255, .6);
    box-shadow: inset 0 0 34px rgba(125, 216, 255, .1), 0 14px 30px rgba(0, 0, 0, .45);
}

.ic-srv-card:hover .sc-no {
    color: #7dd8ff;
    -webkit-text-stroke: 0;
    text-shadow: 0 0 18px rgba(125, 216, 255, .5);
}

/* ---------- 游戏产品：混合比例网格 ---------- */
.ic-game-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    gap: 18px;
}

.ic-game-card {
    display: flex;
    flex-direction: column;
    background: linear-gradient(160deg, rgba(11, 26, 41, .92), rgba(9, 21, 33, .78));
    border: 1px solid rgba(125, 216, 255, .16);
    overflow: hidden;
    transition: all .22s ease;
}

.ic-game-lead {
    grid-column: 1/3;
    grid-row: 1/2;
    flex-direction: row;
}

.ic-game-tall {
    grid-column: 3/4;
    grid-row: 1/4;
}

.gg-fig { position: relative; overflow: hidden; }

.gg-fig mip-img img { transition: transform .35s ease; }

.ic-game-card:hover { border-color: rgba(125, 216, 255, .6); box-shadow: inset 0 0 30px rgba(125, 216, 255, .08), 0 12px 28px rgba(0, 0, 0, .4); }

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

.ic-game-lead .gg-fig { flex: 0 0 46%; }

/* 小卡默认图高（lead/tall 复合选择器优先级更高，自然覆盖） */
.ic-game-card .gg-fig mip-img img { height: 150px !important; }

.ic-game-card.ic-game-lead .gg-fig mip-img img { height: 216px !important; }

.ic-game-card.ic-game-tall .gg-fig mip-img img { height: 340px !important; }

.gg-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 20px 22px;
}

.ic-game-lead .gg-body { justify-content: center; }

.gg-body b {
    display: block;
    margin-bottom: 8px;
    font-size: 17px;
    letter-spacing: 1px;
    color: #eaf7ff;
}

.ic-game-tall .gg-body b { font-size: 18px; }

.gg-body i {
    font-style: normal;
    font-size: 12.5px;
    line-height: 1.8;
    color: #7ba0b8;
}

.gg-btn {
    display: inline-block;
    align-self: flex-start;
    margin-top: 14px;
    padding: 7px 18px;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 2px;
    color: #b9e9ff;
    box-shadow: inset 0 0 0 1px rgba(125, 216, 255, .5);
    transition: all .2s ease;
}

.ic-game-card:hover .gg-btn {
    color: #072033;
    background: linear-gradient(90deg, #7dd8ff, #3aa0dd);
    box-shadow: 0 0 16px rgba(125, 216, 255, .4);
}

/* ---------- 企业数据：静态进度条 ---------- */
.ic-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 60px;
}

.is-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 14px;
}

.is-num {
    font-family: Arial, sans-serif;
    font-size: 40px;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(90deg, #7dd8ff, #b9e9ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.is-lab { font-size: 13px; letter-spacing: 2px; color: #7ba0b8; }

.is-track {
    height: 8px;
    border-radius: 4px;
    background: rgba(125, 216, 255, .1);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, .4);
    overflow: hidden;
}

.is-fill {
    display: block;
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, #3aa0dd, #7dd8ff, #b9e9ff);
    box-shadow: 0 0 14px rgba(125, 216, 255, .45);
    position: relative;
}

.is-fill::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    margin-top: -3px;
    border-radius: 50%;
    background: #e8f7ff;
    box-shadow: 0 0 10px rgba(185, 233, 255, .9);
}

/* ---------- 服务流程：横向轨道 + 节点圆点 ---------- */
.ic-flow {
    position: relative;
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
}

.ic-flow::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 6%;
    right: 6%;
    height: 1px;
    background: repeating-linear-gradient(90deg, rgba(125, 216, 255, .45) 0 10px, transparent 10px 18px);
}

.ic-flow-step {
    position: relative;
    flex: 1;
    padding: 38px 20px 0;
}

.fs-dot {
    position: absolute;
    top: 0;
    left: 20px;
    width: 18px;
    height: 18px;
    box-sizing: border-box;
    border-radius: 50%;
    background: #081420;
    border: 2px solid #7dd8ff;
    box-shadow: 0 0 14px rgba(125, 216, 255, .55);
}

.fs-dot::after {
    content: "";
    position: absolute;
    left: 4px;
    right: 4px;
    top: 4px;
    bottom: 4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7dd8ff, #3aa0dd);
}

.fs-body b {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    letter-spacing: 1px;
    color: #eaf7ff;
}

.fs-body p {
    margin: 0;
    font-size: 12.5px;
    line-height: 1.8;
    color: #7ba0b8;
}

/* ---------- 资质荣誉：灯箱（内发光 + 顶部铭牌） ---------- */
.ic-honor-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.ic-honor-fig {
    position: relative;
    padding: 38px 16px 16px;
    box-sizing: border-box;
    background: linear-gradient(170deg, rgba(11, 26, 41, .92), rgba(9, 21, 33, .8));
    border: 1px solid rgba(125, 216, 255, .18);
    box-shadow: inset 0 0 26px rgba(125, 216, 255, .07);
    transition: all .22s ease;
}

.ic-honor-fig .hf-cap {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 18px;
    font-size: 12px;
    letter-spacing: 2px;
    white-space: nowrap;
    font-weight: 700;
    color: #072033;
    background: linear-gradient(90deg, #7dd8ff, #3aa0dd);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 14px rgba(125, 216, 255, .3);
}

.ic-honor-fig mip-img img { height: 172px !important; }

.ic-honor-fig:hover {
    border-color: rgba(125, 216, 255, .6);
    box-shadow: inset 0 0 40px rgba(125, 216, 255, .16), 0 12px 26px rgba(0, 0, 0, .4);
}

/* ---------- APP 客户端：左特性列 + 右取景框 ---------- */
.ic-app {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center;
}

.ic-app-feats {
    padding: 0;
    margin: 0;
    list-style: none;
}

.ic-app-feats li {
    display: flex;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px dashed rgba(125, 216, 255, .18);
}

.ic-app-feats li:last-child { border-bottom: none; }

.ic-app-feats li i {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-style: normal;
    font-family: Arial, sans-serif;
    font-size: 15px;
    font-weight: 900;
    color: #7dd8ff;
    border: 1px solid rgba(125, 216, 255, .45);
    border-radius: 50%;
    box-shadow: inset 0 0 12px rgba(125, 216, 255, .12);
}

.ic-app-feats li b {
    display: block;
    margin-bottom: 5px;
    font-size: 15px;
    color: #eaf7ff;
}

.ic-app-feats li em {
    font-style: normal;
    font-size: 12.5px;
    line-height: 1.8;
    color: #7ba0b8;
}

.ic-app-fig {
    position: relative;
    padding: 14px;
    background: linear-gradient(160deg, rgba(125, 216, 255, .07), rgba(9, 21, 33, .5));
    border: 1px solid rgba(125, 216, 255, .2);
}

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

/* ---------- 合作伙伴：斜切条带徽章 ---------- */
.ic-partner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.ic-sq {
    overflow: hidden;
    background: linear-gradient(160deg, rgba(11, 26, 41, .9), rgba(9, 21, 33, .76));
    border: 1px solid rgba(125, 216, 255, .14);
    transition: border-color .2s ease;
}

.ic-sq .sq-in {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin: 0 -10px;
    padding: 24px 10px 20px;
    transform: skewX(-8deg);
    transition: background .2s ease;
}

.ic-sq .sq-fig,
.ic-sq .sq-name { transform: skewX(8deg); }

.ic-sq .sq-fig mip-img img {
    width: 92px !important;
    height: 92px !important;
    filter: grayscale(1) opacity(.7);
    transition: all .25s ease;
}

.ic-sq .sq-name {
    font-size: 12px;
    letter-spacing: 2px;
    color: #7ba0b8;
}

.ic-sq:hover { border-color: rgba(125, 216, 255, .5); }

.ic-sq:hover .sq-in { background: rgba(125, 216, 255, .06); }

.ic-sq:hover .sq-fig mip-img img { filter: grayscale(0) opacity(1); }

/* ---------- 最新动态：首条大卡 + 紧凑行 ---------- */
.ic-news-lead {
    display: block;
    padding: 26px 30px;
    margin-bottom: 14px;
    background: linear-gradient(160deg, rgba(11, 26, 41, .92), rgba(9, 21, 33, .78));
    border: 1px solid rgba(125, 216, 255, .18);
    border-left: 3px solid #7dd8ff;
    transition: all .2s ease;
}

.ic-news-lead:hover {
    border-color: rgba(125, 216, 255, .5);
    border-left-color: #b9e9ff;
    box-shadow: inset 0 0 30px rgba(125, 216, 255, .07);
}

.nl-tag {
    display: inline-block;
    padding: 3px 12px;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
    color: #072033;
    background: linear-gradient(90deg, #7dd8ff, #3aa0dd);
}

.ic-news-lead b {
    display: block;
    margin: 12px 0 8px;
    font-size: 20px;
    line-height: 1.5;
    color: #eaf7ff;
}

.ic-news-lead i {
    display: block;
    font-style: normal;
    font-size: 13px;
    line-height: 1.85;
    color: #7ba0b8;
}

.ic-news-lead em {
    display: block;
    margin-top: 10px;
    font-style: normal;
    font-family: Arial, sans-serif;
    font-size: 12px;
    letter-spacing: 1px;
    color: #547891;
}

.ic-news-row {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(125, 216, 255, .1);
    transition: background .18s ease;
}

.ic-news-row:hover { background: rgba(125, 216, 255, .05); }

.nr-date {
    flex-shrink: 0;
    width: 92px;
    font-family: Arial, sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
    color: #547891;
}

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

.ic-news-row:hover .nr-main { color: #7dd8ff; }

.nr-arrow {
    flex-shrink: 0;
    font-size: 22px;
    line-height: 1;
    color: #3c5b70;
    transition: all .18s ease;
}

.ic-news-row:hover .nr-arrow { color: #7dd8ff; transform: translateX(4px); }

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

/* ---------- 合作 CTA：细线框 + 两端竖短杠 ---------- */
.ic-cta {
    position: relative;
    padding: 58px 30px;
    text-align: center;
    border: 1px solid rgba(125, 216, 255, .32);
    background:
        radial-gradient(ellipse at 50% 0%, rgba(125, 216, 255, .1), transparent 65%),
        linear-gradient(180deg, rgba(11, 26, 41, .85), rgba(9, 21, 33, .85));
}

.ic-cta::before,
.ic-cta::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 3px;
    height: 58px;
    margin-top: -29px;
    background: linear-gradient(180deg, #7dd8ff, #3aa0dd);
    box-shadow: 0 0 14px rgba(125, 216, 255, .5);
}

.ic-cta::before { left: -2px; }
.ic-cta::after { right: -2px; }

.ic-cta h2 {
    margin: 0 0 12px;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 3px;
    background: linear-gradient(90deg, #e8f7ff, #7dd8ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ic-cta p { margin: 0; font-size: 14px; color: #a9c8dd; }

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

/* ---------- 底部滑出功能面板 ---------- */
.ic-sheet-mask {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    background: rgba(4, 10, 16, .74);
}

.ic-sheet {
    position: relative;
    width: 100%;
    max-width: 900px;
    max-height: 86vh;
    overflow-y: auto;
    box-sizing: border-box;
    padding: 30px 32px 26px;
    background: linear-gradient(180deg, #0b1a29, #091521);
    border: 1px solid rgba(125, 216, 255, .35);
    border-bottom: none;
    border-radius: 18px 18px 0 0;
    box-shadow: 0 -18px 50px rgba(0, 0, 0, .5);
    animation: icSheetIn .38s cubic-bezier(.22, .9, .32, 1);
}

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

.ic-sheet-close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 32px;
    height: 32px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
    color: #7ba0b8;
    border: 1px solid rgba(125, 216, 255, .3);
    border-radius: 50%;
    transition: all .18s ease;
}

.ic-sheet-close:hover {
    color: #072033;
    background: linear-gradient(135deg, #7dd8ff, #3aa0dd);
    border-color: transparent;
    text-shadow: none;
}

.ic-sh-head { margin-bottom: 20px; text-align: center; }

.sh-kicker {
    display: block;
    font-family: Arial, sans-serif;
    font-size: 11px;
    letter-spacing: 5px;
    color: #547891;
}

.sh-title {
    margin: 8px 0 0;
    font-size: 23px;
    font-weight: 900;
    letter-spacing: 3px;
    background: linear-gradient(90deg, #e8f7ff, #7dd8ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ic-sh-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.ic-sh-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 15px;
    box-sizing: border-box;
    background: rgba(125, 216, 255, .05);
    border: 1px solid rgba(125, 216, 255, .15);
    transition: all .18s ease;
}

.ic-sh-item:hover {
    background: rgba(125, 216, 255, .12);
    border-color: rgba(125, 216, 255, .5);
}

.ic-sh-item i {
    flex-shrink: 0;
    font-style: normal;
    font-family: Arial, sans-serif;
    font-size: 19px;
    font-weight: 900;
    color: #7dd8ff;
    opacity: .85;
}

.ic-sh-item b { display: block; font-size: 14px; color: #eaf7ff; }

.ic-sh-item em {
    display: block;
    margin-top: 3px;
    font-style: normal;
    font-size: 11px;
    color: #7ba0b8;
}

.ic-sh-foot { margin-top: 22px; text-align: center; }

.ic-sh-btn { min-width: 300px; }

.ic-sh-tip { margin: 10px 0 0; font-size: 12px; color: #547891; }

/* ---------- footer ---------- */
.ic-footer {
    margin-top: 40px;
    padding: 34px 0 22px;
    border-top: 1px solid rgba(125, 216, 255, .16);
    background: linear-gradient(180deg, #091521, #060e15);
}

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

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

.ic-foot-co .co-intro p { margin: 0; color: #7ba0b8; font-size: 13px; }

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

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

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

.ic-friend li { color: #3c5b70; font-size: 12px; }

.ic-friend li.friend-label { color: #547891; }

.ic-friend a { color: #547891; font-size: 12px; }
.ic-friend a:hover { color: #7dd8ff; }

.ic-copy { margin: 14px 0 0; color: #3c5b70; font-size: 12px; }

.ic-copy a { color: #3c5b70; }
.ic-copy a:hover { color: #7dd8ff; }

/* ---------- 响应式 ---------- */
/* 中屏（992-1199px）：隐藏头部搜索框，保证 logo+导航+立即游玩单行放下 */
@media (max-width: 1199px) {
    .ic-search { display: none; }
}

/* 平板及以下：第一行 logo+立即游玩，导航整行横向滑动，下拉变全宽面板 */
@media (max-width: 991px) {
    .ic-header-inner { flex-wrap: wrap; min-height: 56px; }
    .ic-logo { line-height: 56px; }
    .ic-nav { order: 3; flex: 1 1 100%; overflow-x: auto; scrollbar-width: none; }
    .ic-nav > li > a { padding: 0 10px; font-size: 13px; line-height: 44px; }
    .ic-nav > li > a::after { display: none; }
    .ic-nav > li.active > a { color: #7dd8ff; }
    .ic-dropdown { position: fixed; left: 12px; right: 12px; top: 110px; max-height: 56vh; overflow-y: auto; }
    .ic-dropdown-cols { width: auto; grid-template-columns: 1fr 1fr; }
    .mipcms-main { padding-top: 109px !important; }
    .ic-hero { padding: 44px 0 0; }
    .ic-hero-ring.r1 { width: 430px; height: 430px; margin: -215px 0 0 -215px; }
    .ic-hero-ring.r2 { width: 320px; height: 320px; margin: -160px 0 0 -160px; }
    .ic-hero-ring.r3 { width: 200px; height: 200px; margin: -100px 0 0 -100px; }
    .ic-hero-title { font-size: 31px; }
    .ic-hero-slogan { font-size: 14px; letter-spacing: 5px; }
    .ic-hero-btns { margin-bottom: 44px; }
    .ic-band-item { flex: 1 1 50%; }
    .ic-band-item:nth-child(odd) { border-left: none; }
    .ic-band-item:nth-child(-n+2) { border-bottom: 1px solid rgba(125, 216, 255, .14); }
    .ic-sec { padding: 52px 0 46px; }
    .ic-sec-tab b { font-size: 17px; }
    .ic-sec-tab i { font-size: 18px; }
    .ic-about { grid-template-columns: 1fr; gap: 30px; }
    .ic-about-fig mip-img img { height: 260px !important; }
    .ic-srv-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    /* 两列下台阶错位取消，恢复平铺 */
    .ic-srv-grid .ic-srv-card:nth-child(n+4) { margin-top: 0; }
    .ic-game-grid { grid-template-columns: repeat(2, 1fr); }
    .ic-game-lead { grid-column: 1/3; grid-row: auto; }
    .ic-game-tall { grid-column: 1/3; grid-row: auto; }
    .ic-game-card.ic-game-tall .gg-fig mip-img img { height: 240px !important; }
    .ic-stats { grid-template-columns: 1fr; gap: 30px; }
    .ic-flow { flex-direction: column; gap: 6px; }
    .ic-flow::before { display: none; }
    .ic-flow-step { padding: 0 0 18px 34px; border-left: 1px dashed rgba(125, 216, 255, .3); }
    .ic-flow-step:last-child { border-left-color: transparent; }
    .fs-dot { top: 4px; left: -10px; }
    .ic-honor-grid { grid-template-columns: repeat(2, 1fr); }
    .ic-honor-fig mip-img img { height: 170px !important; }
    .ic-app { grid-template-columns: 1fr; gap: 30px; }
    .ic-app-fig { order: -1; }
    .ic-app-fig mip-img img { height: 330px !important; }
    .ic-partner-grid { grid-template-columns: repeat(2, 1fr); }
    .ic-cta h2 { font-size: 24px; }
    .ic-sh-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575px) {
    .ic-logo .logo-word { font-size: 17px; }
    .ic-hero { padding: 34px 0 0; }
    .ic-hero-ring.r1 { width: 310px; height: 310px; margin: -155px 0 0 -155px; }
    .ic-hero-ring.r2 { width: 230px; height: 230px; margin: -115px 0 0 -115px; }
    .ic-hero-ring.r3 { width: 150px; height: 150px; margin: -75px 0 0 -75px; }
    .ic-hero-cross { display: none; }
    .ic-hero-kicker { font-size: 11px; letter-spacing: 4px; padding: 0 34px; }
    .ic-hero-kicker::before,
    .ic-hero-kicker::after { width: 20px; }
    .ic-hero-title { font-size: 26px; }
    .ic-hero-slogan { font-size: 13px; letter-spacing: 4px; }
    .ic-hero-btns { flex-direction: column; gap: 10px; margin-bottom: 36px; }
    .ic-hero-btns .ic-btn { width: 100%; }
    .ic-band-item { flex: 1 1 100%; border-left: none; border-bottom: 1px solid rgba(125, 216, 255, .14); }
    .ic-band-item:last-child { border-bottom: none; }
    .ic-sec { padding: 44px 0 40px; }
    .ic-sec-head { gap: 12px; margin-bottom: 26px; flex-wrap: wrap; }
    .ic-sec-tab { padding: 8px 18px; gap: 9px; }
    .ic-sec-tab b { font-size: 16px; }
    .ic-sec-en { font-size: 10px; letter-spacing: 3px; }
    .ic-about-list li { gap: 12px; }
    .ic-about-list li i { width: 36px; font-size: 22px; }
    .ic-about-fig mip-img img { height: 210px !important; }
    .ic-srv-grid { grid-template-columns: 1fr; }
    .ic-srv-card { padding: 22px 20px; }
    .ic-game-grid { grid-template-columns: 1fr; }
    .ic-game-lead { grid-column: auto; flex-direction: column; }
    .ic-game-lead .gg-fig { flex: none; }
    .ic-game-card .gg-fig mip-img img { height: 150px !important; }
    .ic-game-card.ic-game-lead .gg-fig mip-img img { height: 178px !important; }
    .ic-game-card.ic-game-tall .gg-fig mip-img img { height: 230px !important; }
    .is-num { font-size: 32px; }
    .ic-honor-grid { grid-template-columns: 1fr; }
    .ic-honor-fig mip-img img { height: 190px !important; }
    .ic-app-feats li i { width: 38px; height: 38px; font-size: 13px; }
    .ic-app-fig mip-img img { height: 290px !important; }
    .ic-partner-grid { grid-template-columns: repeat(2, 1fr); gap: 12px 10px; }
    .ic-sq .sq-fig mip-img img { width: 70px !important; height: 70px !important; }
    .ic-news-lead { padding: 20px 18px; }
    .ic-news-lead b { font-size: 17px; }
    .ic-news-row { flex-wrap: wrap; gap: 8px 12px; padding: 13px 12px; }
    .nr-date { width: auto; }
    .nr-main { flex-basis: 100%; white-space: normal; }
    .nr-arrow { display: none; }
    .ic-cta { padding: 44px 18px; }
    .ic-cta h2 { font-size: 21px; }
    .ic-cta::before,
    .ic-cta::after { height: 40px; margin-top: -20px; }
    .ic-cta-btns { flex-direction: column; align-items: center; }
    .ic-cta-btns .ic-btn { width: 100%; }
    /* 底部面板全宽收窄，条目单列，天然免疫溢出 */
    .ic-sheet { max-width: 100%; max-height: 92vh; padding: 22px 16px 18px; border-radius: 14px 14px 0 0; }
    .sh-title { font-size: 19px; }
    .ic-sh-grid { grid-template-columns: 1fr; gap: 10px; }
    .ic-sh-item { padding: 12px 13px; }
    .ic-sh-btn { min-width: 0; width: 100%; box-sizing: border-box; }
}


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

.ty-crumb a { color: #547891; }
.ty-crumb a:hover { color: #7dd8ff; }

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

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

.ty-box {
    margin-bottom: 22px;
    border: 1px solid rgba(125, 216, 255, .14);
    background: rgba(11, 26, 41, .55);
}

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

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

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

.ty-list-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px dashed rgba(125, 216, 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(125, 216, 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: #eaf7ff; }
.ty-list-item h4 a:hover { color: #7dd8ff; }

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

.ty-list-item .item-meta { margin: 0; color: #3c5b70; 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(125, 216, 255, .1);
}

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

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

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

.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(125, 216, 255, .22);
    color: #7ba0b8;
    font-size: 13px;
    background: rgba(125, 216, 255, .03);
}

.ty-tags-cloud li a:hover {
    color: #072033;
    background: #7dd8ff;
    border-color: #7dd8ff;
    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: #7ba0b8 !important;
    background: rgba(11, 26, 41, .8) !important;
    border: 1px solid rgba(125, 216, 255, .2) !important;
}

.ty-pagination li.active a,
.ty-pagination li.active span {
    color: #072033 !important;
    background: #7dd8ff !important;
    border-color: #7dd8ff !important;
}

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

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

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

.ty-detail-tags a:hover { color: #072033; background: #7dd8ff; text-shadow: none; }

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

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

.ty-updown .updown-item a {
    display: block;
    color: #7ba0b8;
    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(125, 216, 255, .16);
}

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

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

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

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

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

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

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

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