/* ============================================================
   ty-004 电竞体育游戏企业模板
   配色体系：碳黑暖底 + 琥珀金单色系（#ffb300 主 / #e09600 深 / #ffd166 亮）
   结构：三段式垂直 HERO（放射光线 + 描边 CHAMPION + 贴底数据带）
        章节编号头（84px 描边数字 + 左对齐标题 + 右延伸金线菱形收尾）
        上图下文关于 / 1+5 不对称业务网格 / 两列横向游戏卡
        金环数据圆盘 / 大编号流程 / 双线金框荣誉（hover 上滑覆盖层）
        三列 APP（特性|图|特性）/ 方形金框伙伴徽章 / 单列金线动态行卡
        双线豪华金框 CTA / 右侧滑入功能速览抽屉（替代居中弹窗）
        卡片 hover 配方：金底黑字大反转（区别前三套边框亮+上浮）
   ============================================================ */

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

a { color: #ffd166; text-decoration: none; transition: color .15s ease, text-shadow .15s ease; }
a:hover { color: #ffb300; text-decoration: none; text-shadow: 0 0 12px rgba(255, 179, 0, .5); }

img { max-width: 100%; }

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

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

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

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

.gd-logo .logo-badge {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    background: linear-gradient(135deg, #ffb300, #e09600);
    box-shadow: 0 0 18px rgba(255, 179, 0, .45);
    position: relative;
    top: 8px;
    transform: rotate(45deg);
}

.gd-logo .logo-badge::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 10px;
    height: 10px;
    background: #0a0806;
    transform: translate(-50%, -50%);
}

.gd-logo .logo-word {
    font-size: 19px;
    font-weight: 800;
    letter-spacing: 1px;
    white-space: nowrap;
    background: linear-gradient(90deg, #ffb300, #ffd166, #ffeec2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.gd-nav::-webkit-scrollbar { display: none; }

.gd-nav > li { position: relative; margin: 0; }

.gd-nav > li > a {
    display: block;
    padding: 0 8px;
    line-height: 64px;
    color: #bfa87b;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
}

.gd-nav > li > a:hover,
.gd-nav > li.active > a {
    color: #ffb300;
    border-bottom-color: #ffb300;
    text-shadow: 0 0 12px rgba(255, 179, 0, .55);
}

.gd-nav .gd-nav-hasdrop > a .drop-caret {
    display: inline-block;
    margin-left: 4px;
    font-size: 10px;
    transition: transform .2s ease;
}

.gd-nav > li.gd-nav-hasdrop:hover > a .drop-caret { transform: rotate(180deg); }

.gd-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 150px;
    padding: 6px 0;
    margin: 0;
    list-style: none;
    background: #140f07;
    border: 1px solid rgba(255, 179, 0, .28);
    border-top: 2px solid #ffb300;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .6);
    z-index: 99;
    display: none;
}

.gd-nav > li:hover .gd-dropdown,
.gd-nav > li.open .gd-dropdown { display: block; }

.gd-dropdown li a {
    display: block;
    padding: 9px 18px;
    color: #bfa87b;
    font-size: 13px;
}

.gd-dropdown li a:hover {
    color: #ffb300;
    background: rgba(255, 179, 0, .08);
}

.gd-dropdown-cols {
    min-width: 180px;
    max-height: 320px;
    overflow-y: auto;
}

.gd-dropdown-sub { padding-left: 14px; margin: 0; list-style: none; }

.gd-dropdown-sub li a { color: #6d5c3e; font-size: 12px; }

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

.gd-search {
    display: inline-flex;
    align-items: center;
}

/* MIP 运行时会给 mip-form 包一层内层 form(display:block)，强制横向 */
.gd-search form {
    display: flex;
    align-items: center;
}

.gd-search input {
    width: 128px;
    height: 34px;
    padding: 0 12px;
    background: rgba(22, 16, 9, .9);
    border: 1px solid rgba(255, 179, 0, .3);
    border-right: none;
    color: #fff7e2;
    outline: none;
}

.gd-search input::placeholder { color: #524531; }

.gd-search .gd-search-btn {
    height: 34px;
    padding: 0 16px;
    border: none;
    background: linear-gradient(90deg, #ffb300, #e09600);
    color: #3d2f0e;
    font-weight: 800;
    font-size: 13px;
}

.gd-play-btn {
    display: inline-block;
    padding: 6px 18px;
    border: 1px solid rgba(255, 179, 0, .5);
    color: #ffb300;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    background: rgba(255, 179, 0, .07);
    transition: all .2s ease;
}

.gd-play-btn:hover {
    color: #3d2f0e !important;
    background: linear-gradient(90deg, #ffb300, #e09600);
    box-shadow: 0 0 18px rgba(255, 179, 0, .5);
}

/* ---------- 按钮（方角 = 第四种按钮语言：圆角 / 斜切右下 / 斜切双角 / 方角双线） ---------- */
.gd-btn {
    display: inline-block;
    padding: 10px 28px;
    border: none;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all .2s ease;
}

.gd-btn-main {
    background: linear-gradient(90deg, #ffb300, #e09600);
    color: #3d2f0e !important;
    box-shadow: 0 0 22px rgba(255, 179, 0, .3);
}

.gd-btn-main:hover {
    color: #3d2f0e !important;
    filter: brightness(1.1);
    text-shadow: none !important;
    box-shadow: 0 0 30px rgba(255, 179, 0, .55);
}

.gd-btn-ghost {
    border: 1px solid rgba(255, 179, 0, .5);
    color: #ffd166;
    background: rgba(255, 179, 0, .05);
}

.gd-btn-ghost:hover {
    color: #ffb300;
    border-color: #ffb300;
    box-shadow: 0 0 18px rgba(255, 179, 0, .3);
}

.gd-btn-light {
    background: #ffeec2;
    color: #8a6600 !important;
}

.gd-btn-light:hover {
    color: #3d2f0e !important;
    text-shadow: none !important;
    box-shadow: 0 0 22px rgba(255, 238, 194, .5);
}

.gd-btn-line {
    border: 1px solid rgba(255, 247, 226, .65);
    color: #fff7e2;
}

.gd-btn-line:hover {
    color: #fff7e2 !important;
    border-color: #fff7e2;
    box-shadow: 0 0 16px rgba(255, 247, 226, .35);
}

/* ---------- HERO（三段式垂直构图：金线标签 / 渐变大标题 / 贴底数据带） ---------- */
.gd-hero {
    position: relative;
    padding: 64px 0 0;
    overflow: hidden;
    text-align: center;
}

/* 放射光线：自底部中心向上发散（第四种 HERO 背景语言：大图 / 径向光晕 / 对角光斑 / 放射光线） */
.gd-hero-rays {
    position: absolute;
    left: 50%;
    bottom: -60px;
    width: 1400px;
    height: 700px;
    transform: translateX(-50%);
    background: repeating-conic-gradient(from 200deg at 50% 100%, transparent 0 7deg, rgba(255, 179, 0, .05) 7deg 9deg);
    -webkit-mask-image: linear-gradient(180deg, #000 30%, transparent 92%);
    mask-image: linear-gradient(180deg, #000 30%, transparent 92%);
    pointer-events: none;
}

.gd-hero-ghost {
    position: absolute;
    left: 50%;
    top: 38px;
    transform: translateX(-50%);
    font-size: 150px;
    font-weight: 900;
    letter-spacing: 14px;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 179, 0, .13);
    white-space: nowrap;
    pointer-events: none;
}

.gd-hero-top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 22px;
}

.gd-hero-top .ht-line {
    display: block;
    width: 70px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 179, 0, .7));
}

.gd-hero-top .ht-line:last-child {
    background: linear-gradient(90deg, rgba(255, 179, 0, .7), transparent);
}

.gd-hero-tag {
    color: #ffd166;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 6px;
}

.gd-hero-title {
    position: relative;
    margin: 0 0 16px;
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 3px;
    background: linear-gradient(180deg, #ffeec2, #ffb300 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 26px rgba(255, 179, 0, .3));
}

.gd-hero-slogan {
    position: relative;
    margin: 0 0 14px;
    color: #fff7e2;
    font-size: 19px;
    font-weight: 800;
    letter-spacing: 8px;
}

.gd-hero-slogan::before,
.gd-hero-slogan::after {
    content: "◆";
    margin: 0 10px;
    color: #ffb300;
    font-size: 11px;
    vertical-align: 2px;
}

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

.gd-hero-btns {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 68px;
}

/* 贴底数据带：上金线 + 半透明暖黑底 + 竖线分隔（区别 ty-003 左粗边格） */
.gd-hero-band {
    position: relative;
    border-top: 1px solid rgba(255, 179, 0, .35);
    background: linear-gradient(180deg, rgba(255, 179, 0, .06), rgba(255, 179, 0, .015));
}

.gd-band-row {
    display: flex;
    flex-wrap: wrap;
}

.gd-band-item {
    flex: 1 1 25%;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    padding: 20px 12px;
    border-left: 1px solid rgba(255, 179, 0, .16);
}

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

.gd-band-item .bi-num {
    font-size: 30px;
    font-weight: 900;
    color: #ffb300;
    text-shadow: 0 0 22px rgba(255, 179, 0, .45);
    line-height: 1;
}

.gd-band-item .bi-num i { font-style: normal; font-size: 15px; }

.gd-band-item .bi-lab { color: #bfa87b; font-size: 13px; letter-spacing: 2px; }

/* ---------- 通用区块：章节编号头（区别前三套居中/左线条标题） ---------- */
.gd-sec { padding: 64px 0; }

.gd-sec-dark {
    background: linear-gradient(180deg, #0d0a07, #0a0806);
    border-top: 1px solid rgba(255, 179, 0, .12);
    border-bottom: 1px solid rgba(255, 179, 0, .12);
}

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

.gd-sec-no {
    font-size: 84px;
    font-weight: 900;
    line-height: .9;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 179, 0, .45);
    letter-spacing: 2px;
    user-select: none;
}

.gd-sec-tt { display: flex; flex-direction: column; gap: 2px; min-width: 0; }

.gd-sec-title {
    margin: 0;
    font-size: 26px;
    font-weight: 900;
    color: #fff7e2;
    letter-spacing: 2px;
}

.gd-sec-en {
    color: rgba(255, 179, 0, .55);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 5px;
}

.gd-sec-rule {
    flex: 1;
    height: 1px;
    margin-left: 8px;
    position: relative;
    background: linear-gradient(90deg, rgba(255, 179, 0, .5), transparent 85%);
}

.gd-sec-rule::after {
    content: "";
    position: absolute;
    right: 0;
    top: -3px;
    width: 7px;
    height: 7px;
    background: #ffb300;
    transform: rotate(45deg);
    box-shadow: 0 0 10px rgba(255, 179, 0, .6);
}

/* ---------- 关于我们（上横幅图 + 下双栏文） ---------- */
.gd-about-fig {
    position: relative;
    border: 1px solid rgba(255, 179, 0, .3);
    padding: 8px;
    background: rgba(255, 179, 0, .03);
    margin-bottom: 30px;
}

.gd-about-fig .af-corner {
    position: absolute;
    left: -1px;
    top: -1px;
    width: 26px;
    height: 26px;
    border-left: 3px solid #ffb300;
    border-top: 3px solid #ffb300;
}

.gd-about-fig mip-img img {
    display: block;
    width: 100%;
    height: 320px !important;
    object-fit: cover;
}

.gd-about-body {
    display: flex;
    gap: 34px;
}

.gd-about-main { flex: 1 1 58%; min-width: 0; }

.gd-about-main p { margin: 0 0 14px; color: #ecd9ab; font-size: 14px; line-height: 2; }

.gd-about-main strong { color: #ffd166; }

.gd-about-main .gd-btn { margin-top: 8px; }

.gd-about-points {
    flex: 1 1 42%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    margin: 0;
    padding: 0 0 0 30px;
    list-style: none;
    border-left: 1px solid rgba(255, 179, 0, .18);
}

.gd-about-points li { position: relative; padding-left: 26px; }

.gd-about-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 14px;
    height: 3px;
    background: linear-gradient(90deg, #ffb300, rgba(255, 179, 0, .15));
}

.gd-about-points b { display: block; color: #fff7e2; font-size: 16px; font-weight: 800; margin-bottom: 3px; }

.gd-about-points span { color: #947c51; font-size: 13px; }

/* ---------- 核心业务（1+5 不对称网格：首卡通栏 + 五卡两列） ---------- */
.gd-srv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.gd-srv-card {
    position: relative;
    display: block;
    padding: 24px 24px 20px;
    background: rgba(20, 14, 4, .6);
    border: 1px solid rgba(255, 179, 0, .16);
    overflow: hidden;
    transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.gd-srv-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 3px;
    width: 44px;
    background: linear-gradient(90deg, #ffb300, #e09600);
    transition: width .3s ease, background .25s ease;
}

.gd-srv-card:hover::before { width: 100%; background: #3d2f0e; }

/* hover 配方第四种：金底黑字大反转（前三套均为边框亮起+上浮） */
.gd-srv-card:hover {
    background: linear-gradient(120deg, #ffb300, #e09600);
    border-color: #ffb300;
    box-shadow: 0 14px 34px rgba(255, 179, 0, .28);
}

.gd-srv-card .sc-no {
    display: block;
    margin-bottom: 10px;
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255, 179, 0, .4);
    transition: color .25s ease;
}

.gd-srv-card:hover .sc-no { color: rgba(20, 14, 4, .4); }

.gd-srv-card b {
    display: block;
    margin-bottom: 8px;
    color: #fff7e2;
    font-size: 18px;
    font-weight: 800;
    transition: color .25s ease;
}

.gd-srv-card:hover b { color: #3d2f0e; }

.gd-srv-card p { margin: 0; color: #bfa87b; font-size: 13px; line-height: 1.8; transition: color .25s ease; }

.gd-srv-card:hover p { color: rgba(20, 14, 4, .78); }

/* 首卡：通栏横向，描边大编号 + 右侧文案 */
.gd-srv-lead {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 26px;
    padding: 28px 30px;
}

.gd-srv-lead .lead-no {
    flex-shrink: 0;
    font-size: 76px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255, 179, 0, .18);
    -webkit-text-stroke: 1px rgba(255, 179, 0, .5);
}

.gd-srv-lead .lead-main { min-width: 0; }

.gd-srv-lead .lead-main b { display: block; margin-bottom: 8px; color: #fff7e2; font-size: 22px; font-weight: 900; }

.gd-srv-lead .lead-main i {
    display: block;
    color: #bfa87b;
    font-size: 14px;
    font-style: normal;
    line-height: 1.9;
    max-width: 760px;
    transition: color .25s ease;
}

/* 首卡同步金底反转：编号换深描边，文案换深色 */
.gd-srv-lead:hover .lead-no {
    color: rgba(20, 14, 4, .22);
    -webkit-text-stroke: 1px rgba(20, 14, 4, .55);
}

.gd-srv-lead .lead-main b { transition: color .25s ease; }

.gd-srv-lead:hover .lead-main b { color: #3d2f0e; }

.gd-srv-lead:hover .lead-main i { color: rgba(20, 14, 4, .78); }

/* ---------- 游戏产品（两列横向卡：图左文右） ---------- */
.gd-game-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.gd-game-card {
    display: flex;
    align-items: stretch;
    background: rgba(20, 14, 4, .6);
    border: 1px solid rgba(255, 179, 0, .16);
    transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

/* hover 金底大反转：图边线转黑、按钮黑底金字 */
.gd-game-card:hover {
    background: linear-gradient(120deg, #ffb300, #e09600);
    border-color: #ffb300;
    box-shadow: 0 14px 34px rgba(255, 179, 0, .28);
}

.gd-game-card:hover .gg-fig { border-right-color: #0a0806; }

.gd-game-card .gg-body b { transition: color .25s ease; }

.gd-game-card:hover .gg-body b { color: #3d2f0e; }

.gd-game-card .gg-body i { transition: color .25s ease; }

.gd-game-card:hover .gg-body i { color: rgba(20, 14, 4, .78); }

.gd-game-card:hover .gg-btn { background: #0a0806; color: #ffb300; }

.gd-game-card .gg-fig {
    display: block;
    flex: 0 0 168px;
    border-right: 2px solid #ffb300;
}

.gd-game-card .gg-fig mip-img img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    min-height: 150px;
    object-fit: cover;
    transition: transform .3s ease;
}

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

.gd-game-card .gg-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 18px;
    min-width: 0;
}

.gd-game-card .gg-body b { color: #fff7e2; font-size: 17px; font-weight: 800; }

.gd-game-card .gg-body i { color: #bfa87b; font-size: 13px; font-style: normal; line-height: 1.7; }

.gd-game-card .gg-btn {
    align-self: flex-start;
    margin-top: auto;
    padding: 6px 18px;
    background: linear-gradient(90deg, #ffb300, #e09600);
    color: #3d2f0e;
    font-style: normal;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.gd-game-card:hover .gg-btn { filter: brightness(1.15); }

/* ---------- 企业数据（金环圆盘） ---------- */
.gd-stats-ring {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 26px;
    padding: 10px 0;
}

.gd-ring {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 196px;
    height: 196px;
    border: 1px solid rgba(255, 179, 0, .4);
    border-radius: 50%;
    background: radial-gradient(circle at 50% 42%, rgba(255, 179, 0, .08), rgba(255, 179, 0, 0) 70%);
    transition: border-color .25s ease, box-shadow .25s ease;
}

.gd-ring::before {
    content: "";
    position: absolute;
    inset: 9px;
    border: 1px dashed rgba(255, 179, 0, .3);
    border-radius: 50%;
    transition: transform .6s ease;
}

.gd-ring:hover {
    border-color: rgba(255, 179, 0, .8);
    box-shadow: 0 0 34px rgba(255, 179, 0, .18);
}

.gd-ring:hover::before { transform: rotate(24deg); }

.gd-ring .ring-num {
    font-size: 44px;
    font-weight: 900;
    line-height: 1;
    color: #ffb300;
    text-shadow: 0 0 26px rgba(255, 179, 0, .45);
}

.gd-ring .ring-num i { font-style: normal; font-size: 20px; }

.gd-ring .ring-lab { margin-top: 8px; color: #bfa87b; font-size: 13px; letter-spacing: 3px; }

/* ---------- 服务流程（大编号横排 + 金色连接线） ---------- */
.gd-flow {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.gd-flow::before {
    content: "";
    position: absolute;
    left: 4%;
    right: 4%;
    top: 37px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 179, 0, .5) 12%, rgba(255, 179, 0, .5) 88%, transparent);
}

.gd-flow-step { position: relative; text-align: center; }

.gd-flow-step .fs-no {
    display: block;
    margin-bottom: 12px;
    font-size: 46px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255, 179, 0, .22);
    -webkit-text-stroke: 1px rgba(255, 179, 0, .55);
    transition: color .25s ease, text-shadow .25s ease;
}

.gd-flow-step:hover .fs-no {
    color: #ffb300;
    text-shadow: 0 0 26px rgba(255, 179, 0, .5);
}

.gd-flow-step b { display: block; margin-bottom: 8px; color: #fff7e2; font-size: 17px; font-weight: 800; }

.gd-flow-step p { margin: 0; color: #bfa87b; font-size: 13px; line-height: 1.8; }

/* ---------- 资质荣誉（双线金框图集：外框 + 内圈线 + 左上金点） ---------- */
.gd-honor-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gd-honor-fig {
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 179, 0, .28);
    background: rgba(20, 14, 4, .5);
    overflow: hidden;
    transition: border-color .25s ease, box-shadow .25s ease;
}

.gd-honor-fig::before {
    content: "";
    position: absolute;
    inset: 5px;
    border: 1px solid rgba(255, 179, 0, .16);
    pointer-events: none;
    z-index: 1;
}

.gd-honor-fig:hover {
    border-color: rgba(255, 179, 0, .75);
    box-shadow: 0 12px 30px rgba(255, 179, 0, .16);
}

.gd-honor-fig .hf-dot {
    position: absolute;
    left: 13px;
    top: 13px;
    z-index: 2;
    width: 9px;
    height: 9px;
    background: #ffb300;
    transform: rotate(45deg);
    box-shadow: 0 0 12px rgba(255, 179, 0, .7);
}

.gd-honor-fig mip-img img {
    display: block;
    width: 100%;
    height: 260px !important;
    object-fit: cover;
}

/* caption 改 hover 上滑覆盖层（触屏由 575 断点静态显示兜底） */
.gd-honor-fig .hf-cap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 11px 14px;
    color: #3d2f0e;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-align: center;
    background: linear-gradient(90deg, #ffb300, #e09600);
    transform: translateY(100%);
    transition: transform .3s ease;
}

.gd-honor-fig:hover .hf-cap { transform: translateY(0); }

/* ---------- APP 下载（三列：特性 | 图 | 特性） ---------- */
.gd-app {
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;
    gap: 30px;
    align-items: center;
}

.gd-app-feats {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.gd-app-feats li { position: relative; padding-left: 24px; }

.gd-app-feats li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 3px;
    background: linear-gradient(90deg, #ffb300, rgba(255, 179, 0, .15));
}

.gd-app-right li { padding-left: 0; padding-right: 24px; text-align: right; }

.gd-app-right li::before { display: none; }

.gd-app-right li::after {
    content: "";
    position: absolute;
    right: 0;
    top: 8px;
    width: 12px;
    height: 3px;
    background: linear-gradient(90deg, rgba(255, 179, 0, .15), #ffb300);
}

.gd-app-feats b { display: block; color: #fff7e2; font-size: 16px; font-weight: 800; margin-bottom: 4px; }

.gd-app-feats span { color: #947c51; font-size: 13px; }

.gd-app-fig {
    position: relative;
    padding: 10px;
    border: 1px solid rgba(255, 179, 0, .3);
    background: rgba(255, 179, 0, .03);
}

.gd-app-fig .app-corner {
    position: absolute;
    width: 24px;
    height: 24px;
}

.gd-app-fig .app-corner.cl { left: -1px; top: -1px; border-left: 3px solid #ffb300; border-top: 3px solid #ffb300; }
.gd-app-fig .app-corner.cr { right: -1px; bottom: -1px; border-right: 3px solid #ffb300; border-bottom: 3px solid #ffb300; }

.gd-app-fig mip-img img {
    display: block;
    width: 100%;
    height: 430px !important;
    object-fit: cover;
    object-position: top;
}

.gd-app-cta { margin-top: 34px; text-align: center; }

/* ---------- 合作伙伴（方形金框徽章） ---------- */
.gd-sq-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gd-sq {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 179, 0, .25);
    background: rgba(20, 14, 4, .5);
    transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

/* hover 金底大反转：名条转深色半透 */
.gd-sq:hover {
    background: linear-gradient(120deg, #ffb300, #e09600);
    border-color: #ffb300;
    box-shadow: 0 14px 34px rgba(255, 179, 0, .28);
}

.gd-sq .sq-fig {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px 16px;
}

.gd-sq .sq-fig mip-img img {
    display: block;
    width: 96px !important;
    height: 96px !important;
    object-fit: contain;
    transition: filter .25s ease;
}

.gd-sq:hover .sq-fig mip-img img { filter: drop-shadow(0 0 10px rgba(20, 14, 4, .45)); }

.gd-sq .sq-name {
    padding: 9px 10px;
    color: #bfa87b;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-align: center;
    border-top: 1px solid rgba(255, 179, 0, .14);
    background: rgba(255, 179, 0, .05);
    transition: all .25s ease;
}

.gd-sq:hover .sq-name {
    color: #3d2f0e;
    background: rgba(10, 8, 6, .15);
    border-top-color: rgba(20, 14, 4, .35);
}

/* ---------- 最新动态（单列通栏行卡 + 左金线日期 + 右箭头） ---------- */
.gd-news-list { display: flex; flex-direction: column; gap: 14px; }

.gd-news-row {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 15px 18px;
    background: rgba(20, 14, 4, .55);
    border: 1px solid rgba(255, 179, 0, .14);
    border-left: 3px solid rgba(255, 179, 0, .55);
    transition: background .25s ease, border-color .25s ease;
}

/* hover 金底大反转：日期/标题/箭头全转深色 */
.gd-news-row:hover {
    background: linear-gradient(90deg, #ffb300, #e09600);
    border-color: #ffb300;
    border-left-color: #3d2f0e;
}

.gd-news-row .nw-date {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 74px;
}

.gd-news-row .nw-date b { color: #ffb300; font-size: 17px; font-weight: 900; line-height: 1.2; }

.gd-news-row .nw-main { display: flex; flex-direction: column; gap: 5px; min-width: 0; flex: 1; }

.gd-news-row .nw-main b {
    color: #fff7e2;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gd-news-row:hover .nw-main b { color: #3d2f0e; }

.gd-news-row .nw-main i {
    color: #947c51;
    font-size: 12px;
    font-style: normal;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gd-news-row .nw-arrow {
    flex-shrink: 0;
    color: #6d5c3e;
    font-size: 30px;
    line-height: 1;
    transition: color .25s ease, transform .25s ease;
}

.gd-news-row:hover .nw-arrow { color: #3d2f0e; transform: translateX(6px); }

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

/* ---------- 合作 CTA（双线豪华金框） ---------- */
.gd-cta {
    position: relative;
    padding: 52px 30px 48px;
    text-align: center;
    border: 1px solid rgba(255, 179, 0, .55);
    outline: 1px solid rgba(255, 179, 0, .2);
    outline-offset: 6px;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(255, 179, 0, .12), transparent 60%),
        linear-gradient(180deg, #140f07, #0c0906);
}

.gd-cta .cta-diamond {
    display: block;
    width: 10px;
    height: 10px;
    margin: 0 auto 16px;
    background: #ffb300;
    transform: rotate(45deg);
    box-shadow: 0 0 16px rgba(255, 179, 0, .7);
}

.gd-cta h2 {
    margin: 0 0 10px;
    font-size: 30px;
    font-weight: 900;
    color: #fff7e2;
    letter-spacing: 2px;
}

.gd-cta p { margin: 0 0 26px; color: #bfa87b; font-size: 14px; }

.gd-cta-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* ---------- 首页功能速览抽屉（右侧滑入，仅 index.html；条目/按钮/倒计时统一执行 ad_ky_jump） ---------- */
.gd-drawer-mask {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    justify-content: flex-end;
    background: rgba(5, 4, 2, .78);
}

.gd-drawer {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 400px;
    max-width: 92vw;
    height: 100%;
    box-sizing: border-box;
    background: linear-gradient(180deg, #171008, #0b0806);
    border-left: 1px solid rgba(255, 179, 0, .45);
    box-shadow: -18px 0 60px rgba(0, 0, 0, .55);
    animation: gdDrIn .32s ease-out;
}

@keyframes gdDrIn {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

.gd-drawer-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    font-size: 20px;
    color: #ffeec2;
    border: 1px solid rgba(255, 179, 0, .35);
    background: rgba(255, 179, 0, .08);
}

.gd-drawer-close:hover { color: #3d2f0e !important; background: #ffb300; }

.gd-dr-brand {
    flex-shrink: 0;
    padding: 26px 26px 20px;
    border-bottom: 2px solid #ffb300;
    background: linear-gradient(180deg, rgba(255, 179, 0, .14), rgba(255, 179, 0, .02));
}

.gd-dr-kicker {
    display: block;
    margin-bottom: 6px;
    color: #ffd166;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 5px;
}

.gd-dr-title {
    margin: 0 0 6px;
    font-size: 24px;
    font-weight: 900;
    color: #fff7e2;
    letter-spacing: 2px;
}

.gd-dr-sub { margin: 0; color: #bfa87b; font-size: 12px; line-height: 1.6; }

.gd-dr-list {
    flex: 1;
    overflow-y: auto;
    padding: 8px 0;
}

.gd-dr-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 26px;
    border-bottom: 1px solid rgba(255, 179, 0, .1);
    transition: background .2s ease, padding-left .2s ease;
}

.gd-dr-item:hover { background: rgba(255, 179, 0, .08); padding-left: 32px; }

.gd-dr-item .di-no {
    flex-shrink: 0;
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 179, 0, .6);
    transition: color .2s ease, -webkit-text-stroke .2s ease;
}

.gd-dr-item:hover .di-no { color: #ffb300; -webkit-text-stroke: 1px #ffb300; }

.gd-dr-item .di-txt { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1; }

.gd-dr-item .di-txt b { color: #fff7e2; font-size: 15px; font-weight: 800; }

.gd-dr-item .di-txt span { color: #947c51; font-size: 12px; }

.gd-dr-item .di-arr {
    flex-shrink: 0;
    color: #6d5c3e;
    font-size: 24px;
    line-height: 1;
    transition: color .2s ease, transform .2s ease;
}

.gd-dr-item:hover .di-arr { color: #ffb300; transform: translateX(4px); }

.gd-dr-foot {
    flex-shrink: 0;
    padding: 16px 26px 18px;
    border-top: 1px solid rgba(255, 179, 0, .3);
    background: linear-gradient(180deg, rgba(255, 179, 0, .05), rgba(255, 179, 0, .12));
}

.gd-dr-btn {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 13px 20px;
    font-size: 16px;
    letter-spacing: 2px;
    text-align: center;
    animation: gdDrPulse 1.6s ease-in-out infinite;
}

.gd-dr-btn em { font-style: normal; }

@keyframes gdDrPulse {
    0%, 100% { box-shadow: 0 0 18px rgba(255, 179, 0, .3); }
    50% { box-shadow: 0 0 34px rgba(255, 179, 0, .65); }
}

.gd-dr-tip { margin: 10px 0 0; color: #6d5c3e; font-size: 12px; text-align: center; }

/* ---------- footer ---------- */
.gd-footer {
    margin-top: 40px;
    padding: 34px 0 22px;
    border-top: 1px solid rgba(255, 179, 0, .16);
    background: linear-gradient(180deg, #0d0a07, #0a0806);
}

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

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

.gd-foot-co .co-intro p { margin: 0; color: #947c51; font-size: 13px; }

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

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

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

.gd-friend li { color: #6d5c3e; font-size: 12px; }

.gd-friend a { color: #947c51; font-size: 12px; }
.gd-friend a:hover { color: #ffb300; }

.gd-copy { margin: 14px 0 0; color: #6d5c3e; font-size: 12px; }

.gd-copy a { color: #6d5c3e; }
.gd-copy a:hover { color: #ffb300; }

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

/* 平板及以下：第一行 logo+立即游玩，导航整行横向滑动，下拉变全宽面板 */
@media (max-width: 991px) {
    .gd-header-inner { flex-wrap: wrap; min-height: 56px; }
    .gd-logo { line-height: 56px; }
    .gd-nav { order: 3; flex: 1 1 100%; overflow-x: auto; scrollbar-width: none; }
    .gd-nav > li > a { padding: 0 10px; font-size: 13px; line-height: 44px; }
    .gd-nav .gd-dropdown { position: fixed; left: 12px; right: 12px; top: 110px; max-height: 56vh; overflow-y: auto; }
    .mipcms-main { padding-top: 109px !important; }
    .gd-hero { padding: 44px 0 0; }
    .gd-hero-ghost { font-size: 88px; top: 26px; letter-spacing: 8px; }
    .gd-hero-title { font-size: 32px; }
    .gd-hero-slogan { font-size: 15px; letter-spacing: 5px; }
    .gd-hero-btns { margin-bottom: 40px; }
    .gd-band-item { flex: 1 1 50%; }
    .gd-band-item:nth-child(odd) { border-left: none; }
    .gd-band-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255, 179, 0, .14); }
    .gd-sec-no { font-size: 54px; }
    .gd-sec-head { gap: 14px; margin-bottom: 28px; }
    .gd-sec-rule { min-width: 40px; }
    .gd-about-fig mip-img img { height: 230px !important; }
    .gd-about-body { flex-direction: column; gap: 22px; }
    .gd-about-points { border-left: none; border-top: 1px solid rgba(255, 179, 0, .18); padding: 22px 0 0; }
    .gd-srv-grid { gap: 14px; }
    .gd-srv-lead .lead-no { font-size: 56px; }
    .gd-game-grid { grid-template-columns: 1fr; }
    .gd-game-card .gg-fig { flex-basis: 140px; }
    .gd-stats-ring { gap: 20px; }
    .gd-ring { width: 168px; height: 168px; }
    .gd-ring .ring-num { font-size: 36px; }
    .gd-flow { grid-template-columns: repeat(2, 1fr); }
    .gd-flow::before { display: none; }
    .gd-flow-step .fs-no { font-size: 38px; }
    .gd-honor-grid { grid-template-columns: repeat(2, 1fr); }
    .gd-honor-fig mip-img img { height: 180px !important; }
    .gd-app { grid-template-columns: 1fr; }
    .gd-app-fig { order: -1; }
    .gd-app-fig mip-img img { height: 330px !important; }
    .gd-app-right li { padding-right: 0; padding-left: 24px; text-align: left; }
    .gd-app-right li::after { display: none; }
    .gd-app-right li::before { display: block; }
    .gd-sq-grid { grid-template-columns: repeat(2, 1fr); }
    .gd-dr-item { padding: 12px 20px; }
}

@media (max-width: 575px) {
    .gd-logo .logo-word { font-size: 17px; }
    .gd-hero { padding: 32px 0 0; }
    .gd-hero-ghost { font-size: 54px; letter-spacing: 4px; top: 18px; }
    .gd-hero-title { font-size: 27px; }
    .gd-hero-slogan { font-size: 14px; }
    .gd-hero-slogan::before,
    .gd-hero-slogan::after { display: none; }
    .gd-hero-btns { flex-direction: column; gap: 10px; }
    .gd-hero-btns .gd-btn { width: 100%; text-align: center; }
    .gd-band-item { flex: 1 1 100%; border-left: none; border-bottom: 1px solid rgba(255, 179, 0, .14); }
    .gd-band-item:last-child { border-bottom: none; }
    .gd-srv-grid { grid-template-columns: 1fr; }
    .gd-srv-lead { flex-direction: column; align-items: flex-start; gap: 12px; }
    .gd-game-card .gg-fig { flex-basis: 108px; }
    .gd-game-card .gg-body { padding: 12px 14px; }
    .gd-game-card .gg-body i { display: none; }
    .gd-stats-ring { gap: 14px; }
    .gd-ring { width: 148px; height: 148px; }
    .gd-ring .ring-num { font-size: 30px; }
    .gd-flow { grid-template-columns: 1fr; }
    .gd-honor-grid { grid-template-columns: 1fr; }
    .gd-honor-fig mip-img img { height: 160px !important; }
    .gd-app-fig mip-img img { height: 300px !important; }
    .gd-sq-grid { grid-template-columns: repeat(2, 1fr); gap: 12px 10px; }
    .gd-sq .sq-fig mip-img img { width: 72px !important; height: 72px !important; }
    .gd-cta-btns { flex-direction: column; align-items: center; }
    .gd-cta-btns .gd-btn { width: 100%; text-align: center; }
    .gd-news-row { flex-wrap: wrap; }
    .gd-news-row .nw-main b { white-space: normal; }
    .gd-news-row .nw-arrow { display: none; }
    /* 抽屉全宽：列表自身滚动，天然免疫溢出（取代旧弹窗 575 压缩方案） */
    .gd-sec-no { font-size: 42px; }
    .gd-sec-head { gap: 12px; margin-bottom: 24px; }
    .gd-sec-title { font-size: 22px; }
    .gd-sec-en { font-size: 10px; letter-spacing: 4px; }
    .gd-drawer { width: 100%; max-width: 100%; }
    .gd-dr-brand { padding: 20px 18px 16px; }
    .gd-dr-title { font-size: 21px; }
    .gd-dr-sub { font-size: 11px; }
    .gd-dr-item { padding: 11px 18px; gap: 12px; }
    .gd-dr-item .di-no { font-size: 19px; }
    .gd-dr-item .di-txt b { font-size: 14px; }
    .gd-dr-item .di-txt span { font-size: 11px; }
    .gd-dr-foot { padding: 14px 18px 16px; }
    .gd-dr-btn { font-size: 15px; }
    /* 触屏无 hover：荣誉覆盖层常显为深底金字 */
    .gd-honor-fig .hf-cap { transform: translateY(0); background: rgba(10, 8, 6, .82); color: #ffd166; }
}


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

.ty-crumb a { color: #947c51; }
.ty-crumb a:hover { color: #ffb300; }

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

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

.ty-box {
    margin-bottom: 22px;
    border: 1px solid rgba(255, 179, 0, .14);
    background: rgba(20, 14, 4, .55);
}

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

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

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

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

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

.ty-list-item .item-meta { margin: 0; color: #6d5c3e; 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(255, 179, 0, .1);
}

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

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

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

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

.ty-tags-cloud li a:hover {
    color: #331f03;
    background: #ffb300;
    border-color: #ffb300;
    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: #bfa87b !important;
    background: rgba(20, 14, 4, .8) !important;
    border: 1px solid rgba(255, 179, 0, .2) !important;
}

.ty-pagination li.active a,
.ty-pagination li.active span {
    color: #331f03 !important;
    background: #ffb300 !important;
    border-color: #ffb300 !important;
}

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

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

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

.ty-detail-tags a:hover { color: #331f03; background: #ffb300; text-shadow: none; }

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

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

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

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

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

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

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

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

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

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

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