/* ============================================================
   ty-011 电竞体育游戏企业模板
   配色体系：柠檬黄单色系（#ffd60a 主 / #d4a800 深 / #ffe97a 亮）
   结构：大圆光斑 HERO（三层径向光晕圆 + 弧形光带 + 数据带）
        笔刷高亮标题（描边编号 + 亮色块强调词 + 渐隐线）
        左文案亮点行 + 右图关于
        3x2 圆形图标卡业务 / 2x2 大卡格游戏
        conic 圆环进度数据 / Z 字交替流程
        3x3 黄条幅证书荣誉 / 左图 + 圆勾列表 APP
        圆形头像徽章伙伴 / 左焦点卡 + 右行列表动态
        光晕中心 CTA / 中央翻转卡弹层（3D rotateY 入场）
        卡片 hover 配方：扫光脉冲（斜高光条掠过）
        按钮语言：描边空心（主按钮粗描边，hover 填充反转）
   ============================================================ */

/* ---------- 基础 ---------- */
body {
    font-family: "Microsoft YaHei", "PingFang SC", Tahoma, Helvetica, sans-serif;
    background-color: #12100a;
    background-image:
        radial-gradient(ellipse at 50% -14%, rgba(255, 214, 10, .07), transparent 55%),
        linear-gradient(180deg, #12100a 0%, #17140c 100%);
    background-attachment: fixed;
    color: #fff9e3;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
}

a { color: #ffe97a; text-decoration: none; transition: color .15s ease, text-shadow .15s ease; }
a:hover { color: #ffd60a; text-decoration: none; text-shadow: 0 0 12px rgba(255, 214, 10, .5); }

img { max-width: 100%; }

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

/* ---------- 顶部导航 ---------- */
.lm-header {
    background: linear-gradient(180deg, rgba(32, 28, 17, .98), rgba(18, 16, 10, .92));
    border-bottom: 1px solid rgba(255, 214, 10, .22);
    box-shadow: 0 4px 26px rgba(0, 0, 0, .6);
}

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

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

.lm-logo .logo-badge {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 12px;
    background: radial-gradient(circle at 35% 30%, #ffe97a, #ffd60a 60%, #d4a800);
    box-shadow: 0 0 18px rgba(255, 214, 10, .45);
    position: relative;
    top: 8px;
    border-radius: 50%;
}

.lm-logo .logo-badge::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 8px;
    height: 8px;
    margin: -4px 0 0 -4px;
    border-radius: 50%;
    background: #12100a;
}

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

.lm-logo .logo-word:hover { color: #ffe97a; text-shadow: 0 0 14px rgba(255, 214, 10, .55); }

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

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

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

.lm-nav > li > a::after {
    content: "";
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 20px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, #ffd60a, #ffe97a);
    box-shadow: 0 0 10px rgba(255, 214, 10, .6);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .18s ease;
}

.lm-nav > li:hover > a,
.lm-nav > li.active > a { color: #fff9e3; }

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

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

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

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

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

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

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

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

.lm-dropdown li > a:hover {
    color: #ffe97a;
    background: rgba(255, 214, 10, .08);
    border-left-color: #ffd60a;
}

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

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

.lm-dropdown-sub li a:hover { color: #ffe97a; }

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

.lm-search { margin: 0; }

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

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

.lm-search input[type="text"]::placeholder { color: #7d7654; }

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

.lm-search-btn {
    height: 34px;
    padding: 0 14px;
    font-size: 12px;
    color: #12100a;
    font-weight: 700;
    background: linear-gradient(90deg, #ffd60a, #d4a800);
    border: none;
    cursor: pointer;
    border-radius: 0 17px 17px 0;
}

.lm-play-btn {
    display: inline-block;
    padding: 8px 22px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #12100a;
    background: radial-gradient(circle at 30% 25%, #ffe97a, #ffd60a 62%);
    box-shadow: 0 0 18px rgba(255, 214, 10, .4);
    border-radius: 22px;
    cursor: pointer;
    transition: filter .15s ease;
}

.lm-play-btn:hover { filter: brightness(1.1); color: #12100a; }

/* ---------- 通用按钮（描边空心：主按钮粗描边，hover 填充反转） ---------- */
.lm-btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-align: center;
    cursor: pointer;
    border-radius: 4px;
    transition: all .18s ease;
}

.lm-btn-main {
    color: #ffd60a;
    background: rgba(255, 214, 10, .06);
    box-shadow: inset 0 0 0 2px #ffd60a, 0 0 16px rgba(255, 214, 10, .12);
}

.lm-btn-main:hover {
    color: #12100a;
    background: linear-gradient(135deg, #ffd60a, #d4a800);
    box-shadow: 0 0 26px rgba(255, 214, 10, .4);
    text-shadow: none;
}

.lm-btn-ghost {
    color: #ffe97a;
    background: transparent;
    box-shadow: inset 0 0 0 1px rgba(255, 214, 10, .5);
}

.lm-btn-ghost:hover {
    color: #12100a;
    background: rgba(255, 214, 10, .9);
    text-shadow: none;
}

/* ---------- HERO：大圆光斑构图 ---------- */
.lm-hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 0;
    background-image: linear-gradient(180deg, #12100a, #201c11);
}

/* 三层光斑圆（不同尺寸位置的径向光晕 + 圆环） */
.lm-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.lm-orb.o1 {
    left: -160px;
    top: -120px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(255, 214, 10, .16), transparent 66%);
}

.lm-orb.o2 {
    right: -100px;
    top: -60px;
    width: 340px;
    height: 340px;
    border: 1px solid rgba(255, 214, 10, .25);
    background: radial-gradient(circle at 62% 62%, rgba(255, 214, 10, .1), transparent 60%);
}

.lm-orb.o2::after {
    content: "";
    position: absolute;
    inset: 42px;
    border-radius: 50%;
    border: 1px dashed rgba(255, 233, 122, .3);
}

.lm-orb.o3 {
    left: 50%;
    bottom: -190px;
    width: 560px;
    height: 380px;
    margin-left: -280px;
    background: radial-gradient(ellipse, rgba(255, 214, 10, .12), transparent 68%);
}

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

.lm-hero-kicker {
    display: inline-block;
    padding: 5px 18px;
    font-size: 11px;
    letter-spacing: 5px;
    color: #12100a;
    background: linear-gradient(90deg, #ffd60a, #ffe97a);
    border-radius: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

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

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

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

/* 数据带（底部光带） */
.lm-hero-data {
    position: relative;
    z-index: 1;
    background: linear-gradient(90deg, rgba(255, 214, 10, .13), rgba(255, 214, 10, .03));
    border-top: 1px solid rgba(255, 214, 10, .35);
    border-bottom: 1px solid rgba(255, 214, 10, .18);
}

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

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

.lm-data-item + .lm-data-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    transform: rotate(45deg);
    background: rgba(255, 233, 122, .35);
}

.lm-data-item b {
    display: block;
    font-size: 30px;
    font-weight: 900;
    color: #ffd60a;
    line-height: 1;
    text-shadow: 0 0 18px rgba(255, 214, 10, .45);
}

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

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

/* ---------- 章节头：笔刷高亮标题（描边编号 + 亮色块强调词 + 渐隐线） ---------- */
.lm-sec { padding: 64px 0 60px; }

.lm-sec-dark {
    background: linear-gradient(180deg, rgba(32, 28, 17, .6), rgba(23, 20, 12, .8));
    border-top: 1px solid rgba(255, 214, 10, .12);
    border-bottom: 1px solid rgba(255, 214, 10, .12);
}

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

/* 描边空心编号 */
.lm-sec-no {
    font-style: normal;
    font-size: 38px;
    font-weight: 900;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 214, 10, .55);
    letter-spacing: 1px;
    flex-shrink: 0;
}

.lm-sec-title {
    margin: 0;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 3px;
    color: #fff9e3;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

/* 笔刷高亮词（亮黄底黑字） */
.lm-mark {
    font-style: normal;
    margin-left: 6px;
    padding: 2px 10px;
    background: linear-gradient(135deg, #ffd60a, #d4a800);
    color: #12100a;
    font-size: 22px;
    box-shadow: 2px 2px 0 rgba(255, 233, 122, .3);
}

.lm-sec-line {
    flex: 1;
    height: 1px;
    min-width: 40px;
    background: linear-gradient(90deg, rgba(255, 214, 10, .55), transparent);
}

/* ---------- 关于我们：左文案亮点行 + 右图 ---------- */
.lm-about {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 40px;
    align-items: center;
}

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

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

.lm-about-lead strong { color: #ffe97a; }

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

.lm-shine {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 214, 10, .04);
    border: 1px solid rgba(255, 214, 10, .18);
    border-radius: 8px;
}

/* 圆点亮点标 */
.sh-dot {
    width: 10px;
    height: 10px;
    flex-shrink: 0;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #fff7d6, #ffd60a);
    box-shadow: 0 0 10px rgba(255, 214, 10, .7);
}

.lm-shine b {
    font-size: 14px;
    font-weight: 700;
    color: #ffe97a;
    white-space: nowrap;
}

.lm-shine i {
    font-style: normal;
    font-size: 13px;
    color: #a39a6e;
    margin-left: auto;
    text-align: right;
}

.lm-about-fig {
    padding: 12px;
    background: #201c11;
    border: 1px solid rgba(255, 214, 10, .25);
    border-radius: 14px;
    position: relative;
    overflow: hidden;
}

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

/* ---------- 核心业务：圆形图标卡 + 扫光脉冲 hover ---------- */
.lm-srv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.lm-srv-card {
    position: relative;
    overflow: hidden;
    padding: 30px 24px 34px;
    text-align: center;
    background: #1a170e;
    border: 1px solid rgba(255, 214, 10, .18);
    border-radius: 14px;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

/* 圆底编号图标（径向亮球） */
.lm-round {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 74px;
    height: 74px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: radial-gradient(circle at 34% 30%, #fff7d6, #ffd60a 58%, #d4a800);
    box-shadow: 0 0 24px rgba(255, 214, 10, .32);
}

.lm-round i {
    font-style: normal;
    font-size: 22px;
    font-weight: 900;
    color: #12100a;
    letter-spacing: 1px;
}

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

.lm-srv-card p { margin: 0; font-size: 13px; line-height: 1.8; color: #a39a6e; }

/* 扫光脉冲：斜高光条自左向右掠过（本套 hover 配方） */
.lm-srv-card::after {
    content: "";
    position: absolute;
    top: -40%;
    left: -90%;
    width: 55%;
    height: 180%;
    background: linear-gradient(100deg, transparent, rgba(255, 247, 214, .17), transparent);
    transform: skewX(-18deg);
    transition: left .6s ease;
    pointer-events: none;
}

.lm-srv-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 214, 10, .5);
    box-shadow: 0 16px 36px rgba(0, 0, 0, .5), 0 0 26px rgba(255, 214, 10, .1);
}

.lm-srv-card:hover::after { left: 140%; }

/* ---------- 游戏产品：2x2 大卡格 ---------- */
.lm-game-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

.lm-game-card {
    display: flex;
    flex-direction: column;
    background: #201c11;
    border: 1px solid rgba(255, 214, 10, .2);
    border-radius: 14px;
    overflow: hidden;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

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

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

.lm-game-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 214, 10, .5);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .5);
}

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

.lg-body {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 22px;
}

.lg-body b {
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff9e3;
    white-space: nowrap;
}

.lg-body i {
    font-style: normal;
    margin-left: auto;
    font-size: 12px;
    color: #a39a6e;
    text-align: right;
}

/* ---------- 企业数据：conic 圆环进度 ---------- */
.lm-rings {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.lm-ring-p { text-align: center; }

.rp-circle {
    position: relative;
    width: 152px;
    height: 152px;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 内遮罩圆挖出环身 */
.rp-circle::before {
    content: "";
    position: absolute;
    inset: 11px;
    border-radius: 50%;
    background: #17140c;
    border: 1px solid rgba(255, 214, 10, .14);
}

.rp-circle b {
    position: relative;
    z-index: 1;
    font-size: 26px;
    font-weight: 900;
    line-height: 1;
    color: #fff9e3;
    text-shadow: 0 0 14px rgba(255, 214, 10, .35);
}

.rp-circle b i { font-style: normal; font-size: 13px; margin-left: 1px; color: #ffe97a; }

.rp-circle.p1 { background: conic-gradient(#ffd60a 0 60%, rgba(255, 214, 10, .12) 60% 100%); }
.rp-circle.p2 { background: conic-gradient(#ffd60a 0 72%, rgba(255, 214, 10, .12) 72% 100%); }
.rp-circle.p3 { background: conic-gradient(#ffd60a 0 83%, rgba(255, 214, 10, .12) 83% 100%); }
.rp-circle.p4 { background: conic-gradient(#ffd60a 0 98%, rgba(255, 214, 10, .12) 98% 100%); }

.rp-label {
    display: block;
    margin-top: 14px;
    font-size: 13px;
    letter-spacing: 1px;
    color: #c9bd8a;
}

/* ---------- 服务流程：Z 字交替（奇数行右缩进） ---------- */
.lm-zig { display: flex; flex-direction: column; gap: 16px; }

.lm-zig-row {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 880px;
    padding: 18px 24px;
    background: #1a170e;
    border: 1px solid rgba(255, 214, 10, .16);
    border-radius: 12px;
    transition: border-color .18s ease, transform .18s ease;
}

.lm-zig-row.z-even { margin-left: 0; }

.lm-zig-row.z-odd { margin-left: 12%; }

.zg-no {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-style: normal;
    font-size: 15px;
    font-weight: 900;
    color: #12100a;
    background: radial-gradient(circle at 34% 30%, #fff7d6, #ffd60a 60%, #d4a800);
    box-shadow: 0 0 16px rgba(255, 214, 10, .28);
}

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

.zg-body p { margin: 0; font-size: 13px; line-height: 1.7; color: #a39a6e; }

.lm-zig-row:hover { border-color: rgba(255, 214, 10, .45); transform: translateX(8px); }

/* ---------- 资质荣誉：黄条幅证书 ---------- */
.lm-cert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.lm-cert {
    position: relative;
    overflow: hidden;
    background: #201c11;
    border: 1px solid rgba(255, 214, 10, .2);
    border-radius: 10px;
    transition: border-color .18s ease;
}

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

/* 底部亮色条幅 */
.ct-band {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 5px;
    background: linear-gradient(90deg, #d4a800, #ffd60a 40%, #ffe97a 60%, #d4a800);
    box-shadow: 0 0 12px rgba(255, 214, 10, .5);
}

.lm-cert:hover { border-color: rgba(255, 214, 10, .55); }

/* ---------- APP 客户端：左图 + 圆勾列表 ---------- */
.lm-app {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 40px;
    align-items: center;
}

.lm-app-fig {
    padding: 12px;
    background: #201c11;
    border: 1px solid rgba(255, 214, 10, .25);
    border-radius: 14px;
}

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

.lm-app-list { display: flex; flex-direction: column; gap: 14px; }

.lm-li {
    display: flex;
    gap: 14px;
    padding: 14px 18px;
    background: rgba(255, 214, 10, .04);
    border: 1px solid rgba(255, 214, 10, .16);
    border-radius: 10px;
    transition: border-color .18s ease;
}

.lm-li:hover { border-color: rgba(255, 214, 10, .42); }

/* 圆圈对勾（border 画勾） */
.li-check {
    position: relative;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-top: 2px;
    border: 2px solid #ffd60a;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 214, 10, .3);
}

.li-check::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 11px;
    border-right: 2px solid #ffe97a;
    border-bottom: 2px solid #ffe97a;
    transform: rotate(42deg);
}

.lm-li b { display: block; margin-bottom: 3px; font-size: 15px; font-weight: 700; color: #ffe97a; }

.lm-li p { margin: 0; font-size: 13px; line-height: 1.7; color: #a39a6e; }

.lm-app-list .lm-btn { margin-top: 8px; align-self: flex-start; }

/* ---------- 合作伙伴：圆形头像徽章 ---------- */
.lm-mates {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px 20px;
}

.lm-mate { text-align: center; }

.mt-fig {
    display: block;
    width: 96px;
    height: 96px;
    margin: 0 auto 12px;
    padding: 9px;
    box-sizing: border-box;
    border-radius: 50%;
    background: rgba(255, 214, 10, .06);
    border: 1px solid rgba(255, 214, 10, .3);
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.mt-fig mip-img img { height: 76px !important; width: 76px !important; object-fit: contain; border-radius: 50%; }

.lm-mate b { font-size: 12px; letter-spacing: 1px; color: #a39a6e; }

.lm-mate:hover .mt-fig {
    border-color: rgba(255, 214, 10, .65);
    box-shadow: 0 0 22px rgba(255, 214, 10, .25);
    transform: translateY(-4px);
}

.lm-mate:hover b { color: #ffe97a; }

/* ---------- 最新动态：左焦点大卡 + 右行列表 ---------- */
.lm-news {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 14px 26px;
    align-items: stretch;
}

/* 焦点大卡占左列四行 */
.lm-focus {
    grid-column: 1;
    grid-row: 1 / span 4;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 252px;
    padding: 26px 28px;
    background: linear-gradient(160deg, rgba(255, 214, 10, .16), rgba(255, 214, 10, .02)), #201c11;
    border: 1px solid rgba(255, 214, 10, .32);
    border-radius: 14px;
    overflow: hidden;
}

/* 右上装饰虚线圆 */
.lm-focus::after {
    content: "";
    position: absolute;
    right: -70px;
    top: -70px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    border: 1px dashed rgba(255, 214, 10, .3);
}

.fc-badge {
    position: absolute;
    left: 0;
    top: 0;
    padding: 5px 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #12100a;
    background: linear-gradient(90deg, #ffd60a, #ffe97a);
    border-radius: 0 0 12px 0;
}

.fc-title {
    display: block;
    margin-bottom: 10px;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.55;
    color: #fff9e3;
    position: relative;
    z-index: 1;
}

.lm-focus:hover .fc-title { color: #ffe97a; }

.fc-meta { font-size: 12px; color: #a39a6e; }

.lm-line {
    display: flex;
    align-items: center;
    gap: 14px;
    height: 58px;
    padding: 0 18px;
    background: #1a170e;
    border: 1px solid rgba(255, 214, 10, .15);
    border-radius: 10px;
    transition: border-color .15s ease;
}

.ln-date {
    flex-shrink: 0;
    padding-right: 13px;
    font-size: 12px;
    font-weight: 700;
    color: #d4a800;
    border-right: 1px solid rgba(255, 214, 10, .28);
}

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

.lm-line:hover { border-color: rgba(255, 214, 10, .45); }

.lm-line:hover .ln-title { color: #ffe97a; }

.ln-arrow { flex-shrink: 0; color: #7d7654; }

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

/* ---------- 合作 CTA：光晕中心 ---------- */
.lm-cta {
    position: relative;
    overflow: hidden;
    padding: 58px 30px;
    text-align: center;
    background: linear-gradient(180deg, #201c11, #17140c);
    border: 1px solid rgba(255, 214, 10, .24);
    border-radius: 18px;
}

.cta-glow {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 460px;
    height: 460px;
    margin: -230px 0 0 -230px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 214, 10, .16), rgba(255, 214, 10, .05) 45%, transparent 68%);
    animation: lmGlow 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes lmGlow {
    0%, 100% { transform: scale(1); opacity: .85; }
    50% { transform: scale(1.14); opacity: 1; }
}

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

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

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

/* ---------- 首页功能速览：中央翻转卡弹层（3D rotateY 入场） ---------- */
.lm-flip-mask {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(18, 16, 10, .84);
    perspective: 1500px;
}

.lm-flip {
    width: min(580px, 92vw);
    background: linear-gradient(180deg, #201c11, #17140c);
    border: 1px solid rgba(255, 214, 10, .4);
    border-radius: 16px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .7), 0 0 40px rgba(255, 214, 10, .12);
    animation: lmFlipIn .6s cubic-bezier(.2, .85, .3, 1.05) both;
    transform-style: preserve-3d;
}

@keyframes lmFlipIn {
    from { transform: rotateY(-88deg); opacity: 0; }
    55% { opacity: 1; }
    to { transform: rotateY(0deg); opacity: 1; }
}

.lm-flip-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 214, 10, .2);
}

.fp-kicker {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #d4a800;
}

.fp-title { font-size: 17px; font-weight: 900; color: #fff9e3; }

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

.fp-close:hover { color: #12100a; background: #ffd60a; border-color: #ffd60a; }

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

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

.fp-item i { font-style: normal; font-size: 12px; font-weight: 700; color: #d4a800; }

.fp-item span { font-size: 12px; color: #c9bd8a; }

.fp-item:hover { border-color: rgba(255, 214, 10, .5); background: rgba(255, 214, 10, .1); }

.fp-item:hover span { color: #ffe97a; }

.lm-flip-foot { padding: 12px 20px 18px; }

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

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

/* ---------- footer ---------- */
.lm-footer {
    margin-top: 40px;
    padding: 34px 0 22px;
    border-top: 1px solid rgba(255, 214, 10, .16);
    background: linear-gradient(180deg, #201c11, #12100a);
}

.lm-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, 214, 10, .12);
    flex-wrap: wrap;
}

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

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

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

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

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

.lm-friend li { color: #403c2b; font-size: 12px; }

.lm-friend li.friend-label { color: #5c563c; }

.lm-friend a { color: #5c563c; font-size: 12px; }
.lm-friend a:hover { color: #ffd60a; }

.lm-copy { margin: 14px 0 0; color: #403c2b; font-size: 12px; }

.lm-copy a { color: #403c2b; }
.lm-copy a:hover { color: #ffd60a; }

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

@media (max-width: 991px) {
    .lm-header-inner { flex-wrap: wrap; min-height: 56px; }
    .lm-logo { line-height: 56px; }
    .lm-nav { order: 3; flex: 1 1 100%; overflow-x: auto; scrollbar-width: none; }
    .lm-nav > li > a { padding: 0 10px; font-size: 13px; line-height: 44px; }
    .lm-nav > li > a::after { display: none; }
    .lm-nav > li.active > a { color: #ffd60a; }
    .lm-dropdown { position: fixed; left: 12px; right: 12px; top: 110px; max-height: 56vh; overflow-y: auto; }
    .lm-dropdown-cols { width: auto; grid-template-columns: 1fr 1fr; }
    .mipcms-main { padding-top: 109px !important; }
    .lm-hero { padding: 44px 0 0; }
    .lm-hero-title { font-size: 31px; }
    .lm-hero-slogan { font-size: 14px; letter-spacing: 5px; }
    .lm-hero-in { padding-bottom: 40px; }
    .lm-orb.o1 { width: 320px; height: 320px; }
    .lm-orb.o2 { width: 240px; height: 240px; }
    .lm-data-item { flex: 1 1 50%; }
    .lm-data-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255, 214, 10, .22); }
    .lm-data-item:nth-child(odd)::before { display: none; }
    .lm-sec { padding: 52px 0 46px; }
    .lm-sec-title { font-size: 18px; }
    .lm-sec-no { font-size: 28px; }
    .lm-mark { font-size: 15px; }
    .lm-about { grid-template-columns: 1fr; gap: 30px; }
    .lm-about-fig mip-img img { height: 250px !important; }
    .lm-srv-grid { grid-template-columns: repeat(2, 1fr); }
    .lm-game-grid { grid-template-columns: 1fr; }
    .lg-fig mip-img img { height: 240px !important; }
    .lm-rings { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .lm-zig-row.z-odd { margin-left: 0; }
    .lm-cert-grid { grid-template-columns: repeat(2, 1fr); }
    .lm-app { grid-template-columns: 1fr; gap: 30px; }
    .lm-app-fig mip-img img { height: 300px !important; }
    .lm-mates { grid-template-columns: repeat(2, 1fr); }
    .lm-news { grid-template-columns: 1fr; }
    .lm-focus { grid-row: auto; min-height: 200px; }
    .lm-cta { padding: 40px 26px; }
    .lm-cta h2 { font-size: 24px; }
}

@media (max-width: 575px) {
    .lm-logo .logo-word { font-size: 17px; }
    .lm-hero { padding: 34px 0 0; }
    .lm-hero-kicker { font-size: 11px; letter-spacing: 4px; }
    .lm-hero-title { font-size: 26px; }
    .lm-hero-slogan { font-size: 13px; letter-spacing: 4px; }
    .lm-hero-btns { flex-direction: column; gap: 14px; }
    .lm-hero-btns .lm-btn { width: 100%; box-sizing: border-box; }
    .lm-orb.o1 { width: 240px; height: 240px; left: -100px; top: -80px; }
    .lm-orb.o2 { width: 170px; height: 170px; }
    .lm-data-item { flex: 1 1 100%; border-bottom: 1px solid rgba(255, 214, 10, .22); }
    .lm-data-item::before { display: none; }
    .lm-data-item:last-child { border-bottom: none; }
    .lm-sec { padding: 44px 0 40px; }
    .lm-sec-head { gap: 10px; margin-bottom: 26px; }
    .lm-sec-title { font-size: 16px; letter-spacing: 2px; }
    .lm-sec-no { font-size: 22px; }
    .lm-mark { font-size: 13px; padding: 1px 8px; }
    .lm-about-fig mip-img img { height: 200px !important; }
    .lm-srv-grid { grid-template-columns: 1fr; }
    .lm-srv-card { padding: 22px 18px 26px; }
    .lg-fig mip-img img { height: 200px !important; }
    .lg-body { padding: 14px 16px 16px; }
    .lg-body b { font-size: 17px; }
    .lm-rings { grid-template-columns: 1fr; gap: 26px; }
    .rp-circle { width: 132px; height: 132px; }
    .lm-zig-row { flex-direction: column; align-items: flex-start; gap: 12px; padding: 16px 18px; }
    .lm-cert-grid { grid-template-columns: repeat(2, 1fr); }
    .lm-cert mip-img img { height: 105px !important; }
    .lm-app-fig mip-img img { height: 230px !important; }
    .lm-app-list .lm-btn { align-self: stretch; text-align: center; }
    .lm-mates { grid-template-columns: repeat(2, 1fr); }
    .lm-cta { padding: 36px 18px; }
    .lm-cta h2 { font-size: 21px; }
    .lm-cta-btns { flex-direction: column; gap: 16px; }
    .lm-cta-btns .lm-btn { width: 100%; box-sizing: border-box; }
    .lm-line { height: auto; padding: 12px 14px; flex-wrap: wrap; }
    .ln-title { flex-basis: 100%; order: 2; white-space: normal; }
    .ln-arrow { margin-left: auto; }
    /* 中央翻转卡：小屏条目 2 列 + 限高滚动 */
    .lm-flip-items { grid-template-columns: repeat(2, 1fr); }
    .lm-flip { max-height: 86vh; overflow-y: auto; }
}


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

.ty-crumb a { color: #7d7654; }
.ty-crumb a:hover { color: #ffd60a; }

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

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

.ty-box {
    margin-bottom: 22px;
    border: 1px solid rgba(255, 214, 10, .14);
    background: rgba(32, 28, 17, .55);
}

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

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

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

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

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

.ty-list-item .item-meta { margin: 0; color: #5c563c; 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, 214, 10, .1);
}

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

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

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

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

.ty-tags-cloud li a:hover {
    color: #3a3004;
    background: #ffd60a;
    border-color: #ffd60a;
    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: #a39a6e !important;
    background: rgba(32, 28, 17, .8) !important;
    border: 1px solid rgba(255, 214, 10, .2) !important;
}

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

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

/* ---------- 详情页 ---------- */
.ty-detail-title { margin: 0 0 12px; font-size: 26px; font-weight: 900; color: #fff9e3; 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, 214, 10, .16);
    color: #7d7654;
    font-size: 13px;
}

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

.ty-detail-tags a:hover { color: #3a3004; background: #ffd60a; text-shadow: none; }

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

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

.ty-updown .updown-item a {
    display: block;
    color: #a39a6e;
    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, 214, 10, .16);
}

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

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

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

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

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

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

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

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