/* ============================================================
   ty-016 电竞体育游戏企业模板
   配色体系：青柠绿单色系（#b8e356 主 / #8fb82e 深 / #d4f28a 亮）
   结构：斜坡赛道 HERO（中央赛道虚线 + 底部斜纹坡带 + 斜向数据栏）
        叠影标题（双层错位 text-shadow）
        左高亮词条文案 + 右大图斜标签关于
        3x2 斜编号卡业务 / 2x2 双行交叠卡游戏（大编号水印）
        数据柱阵（渐变能量柱） / 折线路径流程（上下交错节点）
        3x3 打孔票券证书 / 四格宫格特性 APP
        胶带贴纸伙伴 / 便签行列表动态
        斜纹能量带 CTA / 卷轴横展弹层
        卡片 hover 配方：左沿光条 + 侧移
        按钮语言：斜拼双色（硬分割双色块，hover 分割角互换）
   ============================================================ */

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

a { color: #d4f28a; text-decoration: none; transition: color .15s ease, text-shadow .15s ease; }
a:hover { color: #b8e356; text-decoration: none; text-shadow: 0 0 12px rgba(184, 227, 86, .5); }

img { max-width: 100%; }

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

/* ---------- 顶部导航 ---------- */
.ki-header {
    background: linear-gradient(180deg, rgba(25, 31, 11, .98), rgba(14, 18, 6, .92));
    border-bottom: 1px solid rgba(184, 227, 86, .22);
    box-shadow: 0 4px 26px rgba(0, 0, 0, .6);
}

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

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

/* 斜块徽章（平行四边形 + 内芯斜块） */
.ki-logo .logo-badge {
    display: inline-block;
    width: 27px;
    height: 26px;
    margin-right: 14px;
    background: linear-gradient(135deg, #d4f28a, #b8e356 60%, #8fb82e);
    box-shadow: 0 0 18px rgba(184, 227, 86, .45);
    position: relative;
    top: 8px;
    transform: skewX(-12deg);
}

.ki-logo .logo-badge::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 6px;
    right: 6px;
    bottom: 6px;
    border: 2px solid rgba(14, 18, 6, .55);
    transform: skewX(12deg);
}

.ki-logo .logo-word {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 1px;
    color: #f7fdeb;
    background: linear-gradient(90deg, #eef9d0, #b8e356);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

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

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

/* 斜杠指示：当前/悬停时双斜杠亮起 */
.ki-nav > li > a::after {
    content: "//";
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 16px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
    color: #b8e356;
    text-shadow: 0 0 8px rgba(184, 227, 86, .6);
    opacity: 0;
    transition: opacity .18s ease;
}

.ki-nav > li:hover > a,
.ki-nav > li.active > a { color: #f7fdeb; }

.ki-nav > li:hover > a::after,
.ki-nav > li.active > a::after { opacity: 1; }

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

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

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

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

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

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

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

.ki-dropdown li > a:hover {
    color: #d4f28a;
    background: rgba(184, 227, 86, .08);
    border-left-color: #b8e356;
}

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

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

.ki-dropdown-sub li a:hover { color: #d4f28a; }

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

.ki-search { margin: 0; }

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

.ki-search input[type="text"] {
    width: 150px;
    height: 34px;
    padding: 0 12px;
    box-sizing: border-box;
    font-size: 12px;
    color: #f7fdeb;
    background: rgba(184, 227, 86, .07);
    border: 1px solid rgba(184, 227, 86, .25);
    border-right: none;
    outline: none;
    border-radius: 8px 0 0 8px;
}

.ki-search input[type="text"]::placeholder { color: #82a065; }

.ki-search input[type="text"]:focus {
    border-color: rgba(184, 227, 86, .6);
    background: rgba(184, 227, 86, .12);
}

.ki-search-btn {
    height: 34px;
    padding: 0 14px;
    font-size: 12px;
    color: #1c2405;
    font-weight: 700;
    background: linear-gradient(135deg, #d4f28a, #b8e356);
    border: none;
    cursor: pointer;
    border-radius: 0 8px 8px 0;
}

.ki-play-btn {
    display: inline-block;
    padding: 8px 22px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #1c2405;
    background: linear-gradient(115deg, #d4f28a 0 50%, #b8e356 50% 100%);
    box-shadow: 0 0 18px rgba(184, 227, 86, .4);
    cursor: pointer;
    transition: background .25s ease, filter .15s ease;
}

.ki-play-btn:hover { filter: brightness(1.08); color: #1c2405; }

/* ---------- 通用按钮（斜拼双色：硬分割双色块，hover 分割角互换） ---------- */
.ki-btn {
    display: inline-block;
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-align: center;
    cursor: pointer;
    border-radius: 8px;
    transition: background .3s ease, filter .15s ease, color .15s ease, box-shadow .15s ease;
}

.ki-btn-main {
    color: #1c2405;
    background: linear-gradient(115deg, #d4f28a 0 50%, #b8e356 50% 100%);
    box-shadow: 0 6px 22px rgba(184, 227, 86, .3);
}

.ki-btn-main:hover {
    background: linear-gradient(65deg, #d4f28a 0 50%, #b8e356 50% 100%);
    filter: brightness(1.04);
    box-shadow: 0 8px 30px rgba(184, 227, 86, .45);
    color: #1c2405;
}

.ki-btn-ghost {
    color: #d4f28a;
    background: rgba(184, 227, 86, .06);
    border: 1px solid rgba(184, 227, 86, .45);
}

.ki-btn-ghost:hover {
    color: #f7fdeb;
    background: rgba(184, 227, 86, .16);
    border-color: rgba(184, 227, 86, .8);
}

/* ---------- HERO：斜坡赛道构图 ---------- */
.ki-hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 0;
    background: linear-gradient(180deg, #0e1206 0%, #191f0b 100%);
    text-align: center;
}

/* 中央赛道虚线 */
.ki-dash {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 0;
    border-left: 2px dashed rgba(184, 227, 86, .16);
    pointer-events: none;
}

/* 底部斜纹坡带 */
.ki-slope {
    position: absolute;
    left: -10%;
    right: -10%;
    bottom: -46px;
    height: 150px;
    background: repeating-linear-gradient(-12deg, rgba(184, 227, 86, .09) 0 18px, transparent 18px 36px);
    transform: skewX(-6deg);
    pointer-events: none;
}

.ki-hero-in { position: relative; padding-bottom: 62px; }

.ki-hero-kicker {
    display: inline-block;
    margin-bottom: 18px;
    padding: 6px 18px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #d4f28a;
    border: 1px solid rgba(184, 227, 86, .35);
    border-radius: 6px;
    background: rgba(184, 227, 86, .06);
}

.ki-hero-title {
    margin: 0 0 12px;
    font-size: 44px;
    font-weight: 900;
    letter-spacing: 4px;
    color: #f7fdeb;
    text-shadow: 0 0 34px rgba(184, 227, 86, .35);
}

.ki-hero-slogan {
    margin: 0 0 14px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 7px;
    color: #b8e356;
}

.ki-hero-sub {
    max-width: 620px;
    margin: 0 auto 30px;
    font-size: 14px;
    line-height: 1.9;
    color: #a8bf85;
}

.ki-hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* 斜向数据栏（整体斜切 + 内容反向校正） */
.ki-tilt-data {
    position: relative;
    transform: skewX(-8deg);
    background: rgba(14, 18, 6, .6);
    border-top: 1px solid rgba(184, 227, 86, .2);
    border-bottom: 1px solid rgba(184, 227, 86, .2);
}

.ki-td-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    transform: skewX(8deg);
}

.ki-td {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    padding: 9px 30px;
    font-size: 13px;
    color: #a8bf85;
}

.ki-td b { font-size: 22px; font-weight: 900; color: #b8e356; }

.ki-td i { font-style: normal; font-size: 12px; color: #8fb82e; }

/* ---------- 章节头：叠影标题 ---------- */
.ki-sec { padding: 68px 0 60px; }

.ki-sec-dark { background: linear-gradient(180deg, #191f0b, #0e1206); }

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

/* 双层错位叠影 */
.ki-sec-title {
    margin: 0;
    font-size: 23px;
    font-weight: 900;
    letter-spacing: 3px;
    color: #f7fdeb;
    text-shadow: 3px 3px 0 rgba(184, 227, 86, .22), -2px -2px 0 rgba(143, 184, 46, .28);
    white-space: nowrap;
}

.ki-sec-line {
    position: relative;
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(184, 227, 86, .4), rgba(184, 227, 86, .03));
}

.ki-sec-line::after {
    content: "";
    position: absolute;
    left: 0;
    top: -3px;
    width: 8px;
    height: 7px;
    background: #b8e356;
    transform: skewX(-12deg);
}

/* ---------- 关于我们：左高亮词条 + 右大图斜标签 ---------- */
.ki-about {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 46px;
    align-items: center;
}

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

.ki-about-lead {
    margin: 0 0 20px;
    font-size: 15px;
    line-height: 1.9;
    color: #cfe0a8;
}

.ki-about-lead strong { color: #d4f28a; }

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

.ki-point {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(184, 227, 86, .05);
    border: 1px solid rgba(184, 227, 86, .16);
    border-radius: 0 10px 10px 0;
    border-left: 4px solid #b8e356;
}

.ki-point b { font-size: 14px; color: #d4f28a; white-space: nowrap; }

.ki-point span { font-size: 13px; color: #82a065; }

.ki-about-fig { position: relative; }

.ki-about-fig mip-img img {
    width: 100%;
    height: 360px !important;
    object-fit: cover;
    border-radius: 14px;
}

/* 左下斜标签（整体斜切 + 内容反斜校正） */
.ki-slash-tag {
    position: absolute;
    left: -16px;
    bottom: 26px;
    padding: 14px 22px;
    text-align: center;
    background: linear-gradient(135deg, #b8e356, #8fb82e);
    transform: skewX(-8deg);
    box-shadow: 0 12px 28px rgba(143, 184, 46, .35);
}

.ki-slash-tag b {
    display: block;
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
    color: #1c2405;
    transform: skewX(8deg);
}

.ki-slash-tag i { font-style: normal; font-size: 13px; color: #25320a; }

.ki-slash-tag span {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    letter-spacing: 1px;
    color: #25320a;
    transform: skewX(8deg);
}

/* ---------- 核心业务：3x2 斜编号卡 + 左沿光条侧移 hover ---------- */
.ki-tiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ki-tile {
    position: relative;
    padding: 22px 20px 18px;
    background: rgba(184, 227, 86, .04);
    border: 1px solid rgba(184, 227, 86, .16);
    border-radius: 12px;
    transition: transform .3s ease, border-color .3s ease;
}

/* 左沿光条：自上向下滑入 */
.ki-tile::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    border-radius: 12px 0 0 12px;
    background: linear-gradient(180deg, #d4f28a, #b8e356, #8fb82e);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .32s ease;
}

.ki-tile:hover { transform: translateX(10px); border-color: rgba(184, 227, 86, .45); }

.ki-tile:hover::before { transform: scaleY(1); }

/* 斜块编号 */
.ki-t-no {
    display: inline-block;
    margin-bottom: 12px;
    padding: 4px 12px;
    font-style: normal;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1px;
    color: #1c2405;
    background: linear-gradient(115deg, #d4f28a 0 50%, #b8e356 50% 100%);
    transform: skewX(-8deg);
    border-radius: 4px;
}

.ki-tile b {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: #f7fdeb;
}

.ki-tile p {
    margin: 0;
    font-size: 13px;
    line-height: 1.75;
    color: #a8bf85;
}

/* ---------- 游戏产品：2x2 双行交叠卡（大编号水印） ---------- */
.ki-stacks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.ki-stack {
    position: relative;
    display: block;
    overflow: hidden;
    background: rgba(184, 227, 86, .05);
    border: 1px solid rgba(184, 227, 86, .18);
    border-radius: 14px;
    transition: border-color .25s ease;
}

/* 偶数卡下错位：双行交叠感 */
.ki-stack:nth-child(even) { margin-top: 30px; }

.ki-stack:hover { border-color: rgba(184, 227, 86, .5); }

.ks-fig mip-img img {
    width: 100%;
    height: 200px !important;
    object-fit: cover;
    transition: filter .3s ease;
}

.ki-stack:hover .ks-fig mip-img img { filter: brightness(1.1); }

.ks-body {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 18px 16px;
}

/* 右上大编号水印 */
.ks-no {
    position: absolute;
    right: 16px;
    top: 4px;
    font-style: normal;
    font-size: 46px;
    font-weight: 900;
    line-height: 1;
    color: rgba(184, 227, 86, .16);
}

.ks-body b { font-size: 18px; font-weight: 900; color: #f7fdeb; }

.ks-body em { font-style: normal; font-size: 12.5px; color: #a8bf85; }

/* ---------- 企业数据：数据柱阵（渐变能量柱） ---------- */
.ki-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    align-items: end;
    max-width: 860px;
    margin: 0 auto;
}

.ki-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ki-col-num {
    margin-bottom: 10px;
    font-size: 30px;
    font-weight: 900;
    color: #b8e356;
    line-height: 1;
}

.ki-col-num i { font-style: normal; font-size: 15px; color: #d4f28a; }

/* 能量柱：高度随数值递增 + 顶盖亮线 */
.ki-col-bar {
    position: relative;
    width: 100%;
    max-width: 96px;
    border-radius: 10px 10px 4px 4px;
    background: linear-gradient(180deg, rgba(184, 227, 86, .55), rgba(184, 227, 86, .12));
    box-shadow: inset 0 1px 0 rgba(247, 253, 235, .35);
}

.ki-col-bar.b1 { height: 92px; }
.ki-col-bar.b2 { height: 122px; }
.ki-col-bar.b3 { height: 152px; }
.ki-col-bar.b4 { height: 172px; }

.ki-col-bar::after {
    content: "";
    position: absolute;
    left: 10%;
    right: 10%;
    top: -5px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, #d4f28a, #b8e356);
    box-shadow: 0 0 12px rgba(184, 227, 86, .6);
}

.ki-col em {
    margin-top: 10px;
    font-style: normal;
    font-size: 13px;
    color: #a8bf85;
}

/* ---------- 服务流程：折线路径（上下交错节点） ---------- */
.ki-zigzag {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding-top: 20px;
}

.ki-zstep {
    position: relative;
    padding: 20px 16px;
    background: rgba(184, 227, 86, .05);
    border: 1px solid rgba(184, 227, 86, .18);
    border-radius: 12px;
    transition: border-color .25s ease, transform .25s ease;
}

.ki-zstep.up { margin-top: 0; }

.ki-zstep.down { margin-top: 56px; }

.ki-zstep:hover { border-color: rgba(184, 227, 86, .45); transform: translateY(-6px); }

/* 顶部节点圆 */
.ki-zdot {
    position: absolute;
    top: -8px;
    left: 24px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #b8e356;
    box-shadow: 0 0 0 4px rgba(184, 227, 86, .18);
}

/* 节点间虚线连线 */
.ki-zstep::after {
    content: "";
    position: absolute;
    top: -13px;
    left: 44px;
    right: -22px;
    height: 2px;
    background: repeating-linear-gradient(90deg, rgba(184, 227, 86, .5) 0 8px, transparent 8px 14px);
}

.ki-zstep:last-child::after { display: none; }

.ki-zstep b { display: block; margin-bottom: 6px; font-size: 15px; color: #f7fdeb; }

.ki-zstep p { margin: 0; font-size: 12.5px; line-height: 1.7; color: #a8bf85; }

/* ---------- 资质荣誉：3x3 打孔票券卡 ---------- */
.ki-tickets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 22px;
}

.ki-ticket {
    position: relative;
    padding: 14px 12px 10px;
    text-align: center;
    background: rgba(184, 227, 86, .06);
    border: 1px dashed rgba(184, 227, 86, .4);
    border-radius: 10px;
    transition: border-color .25s ease, transform .25s ease;
}

/* 左右打孔缺口（分区底色圆点） */
.ki-ticket::before,
.ki-ticket::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 16px;
    height: 16px;
    margin-top: -8px;
    border-radius: 50%;
    background: #191f0b;
}

.ki-ticket::before { left: -9px; }

.ki-ticket::after { right: -9px; }

.ki-ticket:hover { border-color: rgba(184, 227, 86, .75); transform: translateY(-4px); }

.tk-fig mip-img img {
    width: 100%;
    height: 140px !important;
    object-fit: cover;
    border-radius: 6px;
}

.ki-ticket em {
    display: block;
    margin-top: 8px;
    font-style: normal;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #a8bf85;
}

/* ---------- APP 客户端：四格宫格特性 + 右图 ---------- */
.ki-app {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 46px;
    align-items: center;
}

.ki-app-list { min-width: 0; }

.ki-grid-caps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 26px;
}

.ki-gcap {
    position: relative;
    padding: 16px 14px;
    background: rgba(184, 227, 86, .05);
    border: 1px solid rgba(184, 227, 86, .18);
    border-radius: 10px;
    transition: border-color .2s ease;
}

/* 左上角小方点亮标 */
.ki-gcap::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 10px;
    width: 7px;
    height: 7px;
    background: #b8e356;
    transform: skewX(-12deg);
}

.ki-gcap:hover { border-color: rgba(184, 227, 86, .45); }

.ki-gcap b { display: block; margin: 4px 0 6px 16px; font-size: 14.5px; color: #f7fdeb; }

.ki-gcap span { display: block; margin-left: 16px; font-size: 12.5px; color: #82a065; }

.ki-app-fig mip-img img {
    width: 100%;
    height: 380px !important;
    object-fit: cover;
    border-radius: 14px;
}

/* ---------- 合作伙伴：胶带贴纸 ---------- */
.ki-stickers {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
}

.ki-sticker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 132px;
    height: 88px;
    padding: 10px;
    background: rgba(247, 253, 235, .94);
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .35);
    transition: transform .25s ease;
}

.ki-sticker:nth-child(odd) { transform: rotate(-2.4deg); }

.ki-sticker:nth-child(even) { transform: rotate(1.8deg); margin-top: 12px; }

.ki-sticker:hover { transform: rotate(0) scale(1.08); }

.ki-sticker mip-img img {
    width: 92px !important;
    height: 48px !important;
    object-fit: contain;
}

/* ---------- 最新动态：便签行列表 ---------- */
.ki-notes {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ki-note-row {
    display: grid;
    grid-template-columns: 84px 1fr 36px;
    align-items: center;
    gap: 16px;
    padding: 11px 16px;
    background: rgba(184, 227, 86, .04);
    border: 1px solid rgba(184, 227, 86, .14);
    border-radius: 12px;
    transition: border-color .25s ease, background .25s ease;
}

.ki-note-row:hover {
    border-color: rgba(184, 227, 86, .4);
    background: rgba(184, 227, 86, .08);
}

/* 便签块日期：亮底深字 + 折角 */
.ki-note-date {
    text-align: center;
    padding: 7px 6px;
    font-size: 13px;
    font-weight: 900;
    color: #1c2405;
    background: linear-gradient(135deg, #d4f28a, #b8e356);
    border-radius: 8px 8px 8px 2px;
}

.ki-note-title {
    font-size: 14.5px;
    color: #cfe0a8;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color .15s ease;
}

.ki-note-row:hover .ki-note-title { color: #f7fdeb; }

.ki-note-arrow {
    font-size: 18px;
    color: #82a065;
    text-align: right;
    transition: color .25s ease, transform .25s ease;
}

.ki-note-row:hover .ki-note-arrow { color: #b8e356; transform: translateX(4px); }

.ki-notes-more { margin-top: 26px; text-align: center; }

/* ---------- 合作 CTA：斜纹能量带 ---------- */
.ki-cta {
    position: relative;
    overflow: hidden;
    padding: 66px 30px;
    text-align: center;
    background:
        repeating-linear-gradient(-24deg, rgba(184, 227, 86, .06) 0 14px, transparent 14px 28px),
        linear-gradient(180deg, #191f0b, #0e1206);
    border: 1px solid rgba(184, 227, 86, .22);
    border-radius: 16px;
}

.ki-cta h2 {
    position: relative;
    margin: 0 0 12px;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 3px;
    color: #f7fdeb;
    text-shadow: 3px 3px 0 rgba(184, 227, 86, .2);
}

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

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

/* ---------- 首页功能速览：卷轴横展弹层 ---------- */
.ki-scroll-mask {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(14, 18, 6, .86);
}

.ki-scroll-panel {
    width: min(600px, 92vw);
    background: linear-gradient(180deg, #191f0b, #141a08);
    border: 1px solid rgba(184, 227, 86, .45);
    border-radius: 14px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .6);
    transform-origin: left center;
    animation: kiUnroll .45s cubic-bezier(.2, .8, .3, 1) both;
    overflow: hidden;
}

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

/* 卷轴展开后内容推入 */
.ki-scroll-body {
    padding: 0 22px;
    opacity: 0;
    transform: translateX(-24px);
    animation: kiScrollIn .32s ease .42s forwards;
}

@keyframes kiScrollIn {
    to { opacity: 1; transform: translateX(0); }
}

.ki-scroll-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 2px 12px;
    border-bottom: 1px solid rgba(184, 227, 86, .18);
}

.sk-title { font-size: 17px; font-weight: 900; color: #f7fdeb; }

.sk-kicker { font-size: 10px; font-weight: 700; letter-spacing: 4px; color: #8fb82e; }

.sk-close {
    margin-left: auto;
    width: 34px;
    height: 34px;
    line-height: 32px;
    text-align: center;
    font-size: 22px;
    color: #a8bf85;
    border: 1px solid rgba(184, 227, 86, .3);
    border-radius: 8px;
    transition: all .15s ease;
}

.sk-close:hover { color: #1c2405; background: #b8e356; border-color: #b8e356; }

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

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

.sk-item i { font-style: normal; font-size: 12px; font-weight: 700; color: #8fb82e; }

.sk-item span { font-size: 12px; color: #cfe0a8; }

.sk-item:hover { border-color: rgba(184, 227, 86, .5); background: rgba(184, 227, 86, .1); }

.sk-item:hover span { color: #d4f28a; }

.ki-scroll-foot { padding: 12px 2px 20px; }

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

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

/* ---------- footer ---------- */
.ki-footer {
    margin-top: 40px;
    padding: 34px 0 22px;
    border-top: 1px solid rgba(184, 227, 86, .16);
    background: linear-gradient(180deg, #191f0b, #0e1206);
}

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

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

.ki-foot-co .co-intro p { margin: 0; color: #82a065; font-size: 13px; }

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

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

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

.ki-friend li { color: #465c37; font-size: 12px; }

.ki-friend li.friend-label { color: #5f7a4a; }

.ki-friend a { color: #5f7a4a; font-size: 12px; }
.ki-friend a:hover { color: #b8e356; }

.ki-copy { margin: 14px 0 0; color: #465c37; font-size: 12px; }

.ki-copy a { color: #465c37; }
.ki-copy a:hover { color: #b8e356; }

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

@media (max-width: 991px) {
    .ki-header-inner { flex-wrap: wrap; min-height: 56px; }
    .ki-logo { line-height: 56px; }
    .ki-nav { order: 3; flex: 1 1 100%; overflow-x: auto; scrollbar-width: none; }
    .ki-nav > li > a { padding: 0 10px; font-size: 13px; line-height: 44px; }
    .ki-nav > li > a::after { display: none; }
    .ki-nav > li.active > a { color: #b8e356; }
    .ki-dropdown { position: fixed; left: 12px; right: 12px; top: 110px; max-height: 56vh; overflow-y: auto; }
    .ki-dropdown-cols { width: auto; grid-template-columns: 1fr 1fr; }
    .mipcms-main { padding-top: 109px !important; }
    .ki-hero { padding: 44px 0 0; }
    .ki-hero-title { font-size: 31px; }
    .ki-hero-slogan { font-size: 14px; letter-spacing: 5px; }
    .ki-hero-in { padding-bottom: 40px; }
    .ki-slope { height: 100px; bottom: -34px; }
    .ki-tilt-data { transform: skewX(0); }
    .ki-td-row { transform: skewX(0); }
    .ki-sec { padding: 52px 0 46px; }
    .ki-sec-title { font-size: 18px; }
    .ki-about { grid-template-columns: 1fr; gap: 30px; }
    .ki-about-fig mip-img img { height: 280px !important; }
    .ki-slash-tag { left: 10px; }
    .ki-tiles { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .ki-stacks { grid-template-columns: 1fr; }
    .ki-stack:nth-child(even) { margin-top: 0; }
    .ki-columns { grid-template-columns: repeat(2, 1fr); gap: 24px 30px; }
    .ki-zigzag { grid-template-columns: repeat(2, 1fr); }
    .ki-zstep.down { margin-top: 0; }
    .ki-zstep::after { display: none; }
    .ki-zigzag { padding-top: 0; }
    .ki-tickets { grid-template-columns: repeat(2, 1fr); }
    .ki-app { grid-template-columns: 1fr; gap: 30px; }
    .ki-app-fig { order: -1; }
    .ki-app-fig mip-img img { height: 300px !important; }
    .ki-cta { padding: 40px 26px; }
    .ki-cta h2 { font-size: 24px; }
}

@media (max-width: 575px) {
    .ki-logo .logo-word { font-size: 17px; }
    .ki-hero { padding: 34px 0 0; }
    .ki-hero-kicker { font-size: 11px; letter-spacing: 4px; }
    .ki-hero-title { font-size: 26px; }
    .ki-hero-slogan { font-size: 13px; letter-spacing: 4px; }
    .ki-hero-btns { flex-direction: column; gap: 14px; }
    .ki-hero-btns .ki-btn { width: 100%; box-sizing: border-box; }
    .ki-dash { display: none; }
    .ki-slope { height: 70px; bottom: -24px; }
    .ki-td { padding: 6px 16px; font-size: 12px; }
    .ki-td b { font-size: 18px; }
    .ki-sec { padding: 44px 0 40px; }
    .ki-sec-head { gap: 10px; margin-bottom: 26px; }
    .ki-sec-title { font-size: 16px; letter-spacing: 2px; }
    .ki-about { gap: 24px; }
    .ki-about-fig mip-img img { height: 210px !important; }
    .ki-slash-tag { padding: 10px 16px; }
    .ki-slash-tag b { font-size: 22px; }
    .ki-tiles { grid-template-columns: 1fr; }
    .ki-tile { padding: 18px 16px; }
    .ks-fig mip-img img { height: 180px !important; }
    .ki-columns { grid-template-columns: repeat(2, 1fr); gap: 18px 14px; }
    .ki-col-bar.b1 { height: 70px; }
    .ki-col-bar.b2 { height: 92px; }
    .ki-col-bar.b3 { height: 114px; }
    .ki-col-bar.b4 { height: 130px; }
    .ki-col-num { font-size: 24px; }
    .ki-zigzag { grid-template-columns: 1fr; }
    .ki-tickets { grid-template-columns: repeat(2, 1fr); gap: 20px 14px; }
    .tk-fig mip-img img { height: 100px !important; }
    .ki-app-fig mip-img img { height: 250px !important; }
    .ki-sticker { width: 108px; height: 76px; }
    .ki-sticker mip-img img { width: 76px !important; height: 40px !important; }
    .ki-note-row { grid-template-columns: 74px 1fr; }
    .ki-note-arrow { display: none; }
    .ki-note-title { font-size: 13.5px; }
    .ki-cta { padding: 36px 18px; }
    .ki-cta h2 { font-size: 21px; }
    .ki-cta-btns { flex-direction: column; gap: 16px; }
    .ki-cta-btns .ki-btn { width: 100%; box-sizing: border-box; }
    /* 卷轴弹层：小屏条目 2 列 */
    .ki-scroll-items { grid-template-columns: repeat(2, 1fr); }
}


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

.ty-crumb a { color: #82a065; }
.ty-crumb a:hover { color: #b8e356; }

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

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

.ty-box {
    margin-bottom: 22px;
    border: 1px solid rgba(184, 227, 86, .14);
    background: rgba(25, 31, 11), .55);
}

.ty-box-head {
    padding: 12px 18px;
    border-bottom: 1px solid rgba(184, 227, 86, .14);
}

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

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

.ty-list-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px dashed rgba(184, 227, 86, .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(184, 227, 86, .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: #f7fdeb; }
.ty-list-item h4 a:hover { color: #b8e356; }

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

.ty-list-item .item-meta { margin: 0; color: #5f7a4a; 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(184, 227, 86, .1);
}

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

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

.ty-side-list .rank {
    flex: 0 0 22px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    border: 1px solid rgba(184, 227, 86, .3);
    color: #b8e356;
    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: #b8e356;
    color: #141a08;
}

.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(184, 227, 86, .22);
    color: #a8bf85;
    font-size: 13px;
    background: rgba(184, 227, 86, .03);
}

.ty-tags-cloud li a:hover {
    color: #141a08;
    background: #b8e356;
    border-color: #b8e356;
    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: #a8bf85 !important;
    background: rgba(25, 31, 11), .8) !important;
    border: 1px solid rgba(184, 227, 86, .2) !important;
}

.ty-pagination li.active a,
.ty-pagination li.active span {
    color: #141a08 !important;
    background: #b8e356 !important;
    border-color: #b8e356 !important;
}

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

/* ---------- 详情页 ---------- */
.ty-detail-title { margin: 0 0 12px; font-size: 26px; font-weight: 900; color: #f7fdeb; 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(184, 227, 86, .16);
    color: #82a065;
    font-size: 13px;
}

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

.ty-detail-tags a:hover { color: #141a08; background: #b8e356; text-shadow: none; }

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

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

.ty-updown .updown-item a {
    display: block;
    color: #a8bf85;
    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(184, 227, 86, .16);
}

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

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

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

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

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

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

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

.mipcms-detail-body mip-img img { border: 1px solid rgba(184, 227, 86, .12); }
