/* ============================================================
   ty-009 电竞体育游戏企业模板
   配色体系：熔岩橙单色系（#ff6a1f 主 / #d84e0a 深 / #ffa45c 亮）
   结构：熔岩裂谷 HERO（背景斜纹断层 + 底部熔岩光上涌 + 斜切数据带）
        斜切编号块标题（skew 橙块编号 + 渐隐热流线）
        左文案 + 右图斜切要点关于
        3x2 斜切图标卡业务 / 一大三侧卡游戏
        横向温度计量表数据（标签 + 大数字 + 渐变刻度条）
        阶梯错位步骤流程 / 3x3 斜切角证书荣誉网格
        图左 + 特性列表右 APP / 斜切标签流伙伴
        行式日期块动态列表 / 斜纹横幅 CTA
        左侧竖栏滑出弹层（fixed left 全高 + 竖排条目）
        卡片 hover 配方：熔岩底涌（底部橙条 scaleY 上涌 + 上浮）
        按钮语言：斜切平行四边形（clip-path 裁边，文字保持正体）
   ============================================================ */

/* ---------- 基础 ---------- */
body {
    font-family: "Microsoft YaHei", "PingFang SC", Tahoma, Helvetica, sans-serif;
    background-color: #120a06;
    background-image:
        radial-gradient(ellipse at 50% 118%, rgba(255, 106, 31, .13), transparent 55%),
        linear-gradient(180deg, #120a06 0%, #0d0805 100%);
    background-attachment: fixed;
    color: #fff2e6;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
}

a { color: #ffa45c; text-decoration: none; transition: color .15s ease, text-shadow .15s ease; }
a:hover { color: #ff6a1f; text-decoration: none; text-shadow: 0 0 12px rgba(255, 106, 31, .5); }

img { max-width: 100%; }

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

/* ---------- 顶部导航 ---------- */
.la-header {
    background: linear-gradient(180deg, rgba(30, 18, 10, .98), rgba(18, 10, 6, .92));
    border-bottom: 1px solid rgba(255, 106, 31, .22);
    box-shadow: 0 4px 26px rgba(0, 0, 0, .6);
}

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

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

.la-logo .logo-badge {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 12px;
    background: linear-gradient(135deg, #ff6a1f, #d84e0a);
    box-shadow: 0 0 18px rgba(255, 106, 31, .45);
    position: relative;
    top: 8px;
    transform: skewX(-12deg);
}

.la-logo .logo-badge::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 10px;
    height: 10px;
    margin: -5px 0 0 -5px;
    background: #120a06;
    transform: skewX(-12deg);
}

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

.la-logo .logo-word:hover { color: #ffa45c; text-shadow: 0 0 14px rgba(255, 106, 31, .55); }

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

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

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

.la-nav > li > a::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 14px;
    height: 3px;
    background: linear-gradient(90deg, #ff6a1f, #ffa45c);
    transform: skewX(-12deg) scaleX(0);
    transform-origin: left;
    transition: transform .18s ease;
}

.la-nav > li:hover > a,
.la-nav > li.active > a { color: #fff2e6; }

.la-nav > li:hover > a::after,
.la-nav > li.active > a::after { transform: skewX(-12deg) scaleX(1); }

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

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

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

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

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

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

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

.la-dropdown li > a:hover {
    color: #ffa45c;
    background: rgba(255, 106, 31, .08);
    border-left-color: #ff6a1f;
}

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

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

.la-dropdown-sub li a:hover { color: #ffa45c; }

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

.la-search { margin: 0; }

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

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

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

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

.la-search-btn {
    height: 34px;
    padding: 0 14px;
    font-size: 12px;
    color: #fff2e6;
    font-weight: 700;
    background: linear-gradient(90deg, #ff6a1f, #d84e0a);
    border: none;
    cursor: pointer;
    border-radius: 0 3px 3px 0;
}

.la-play-btn {
    display: inline-block;
    padding: 8px 22px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff2e6;
    background: linear-gradient(135deg, #ff6a1f, #d84e0a);
    box-shadow: inset 0 0 0 1px rgba(255, 227, 204, .28);
    cursor: pointer;
    clip-path: polygon(9px 0, 100% 0, calc(100% - 9px) 100%, 0 100%);
    transition: filter .15s ease;
}

.la-play-btn:hover { filter: brightness(1.14); color: #fff2e6; }

/* ---------- 通用按钮（斜切平行四边形：clip-path 裁边，文字保持正体） ---------- */
.la-btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-align: center;
    cursor: pointer;
    clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
    transition: filter .18s ease, background .18s ease, color .18s ease;
}

.la-btn > span { display: inline-block; }

.la-btn-main {
    color: #fff2e6;
    background: linear-gradient(135deg, #ff6a1f, #d84e0a);
    box-shadow: inset 0 0 0 1px rgba(255, 227, 204, .3);
}

.la-btn-main:hover { filter: brightness(1.14); color: #fff2e6; text-shadow: none; }

.la-btn-ghost {
    color: #ffa45c;
    background: rgba(255, 106, 31, .05);
    box-shadow: inset 0 0 0 1px rgba(255, 106, 31, .6);
}

.la-btn-ghost:hover {
    background: linear-gradient(135deg, #ff6a1f, #d84e0a);
    color: #fff2e6;
    text-shadow: none;
}

/* ---------- HERO：熔岩裂谷构图 ---------- */
.la-hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 0;
    background-image:
        radial-gradient(ellipse at 50% 115%, rgba(255, 106, 31, .26), transparent 58%),
        repeating-linear-gradient(135deg, rgba(255, 106, 31, .05) 0 2px, transparent 2px 88px),
        linear-gradient(180deg, #120a06, #1e120a);
}

.la-hero::before {
    content: "";
    position: absolute;
    left: -80px;
    right: -80px;
    bottom: -140px;
    height: 280px;
    background: linear-gradient(90deg, transparent, rgba(255, 106, 31, .16), transparent);
    transform: skewY(-3deg);
    pointer-events: none;
}

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

.la-hero-kicker {
    display: inline-block;
    padding: 5px 18px;
    font-size: 11px;
    letter-spacing: 5px;
    color: #ffa45c;
    box-shadow: inset 0 0 0 1px rgba(255, 106, 31, .4);
    clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
    margin-bottom: 20px;
}

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

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

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

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

/* 斜切数据带（底部熔岩温度条） */
.la-hero-data {
    position: relative;
    z-index: 1;
    background: linear-gradient(90deg, rgba(255, 106, 31, .16), rgba(255, 106, 31, .03));
    border-top: 1px solid rgba(255, 106, 31, .35);
    border-bottom: 1px solid rgba(255, 106, 31, .18);
}

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

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

.la-data-item + .la-data-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    bottom: 12px;
    width: 1px;
    background: rgba(255, 164, 92, .22);
    transform: skewX(-12deg);
}

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

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

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

/* ---------- 章节头：斜切编号块标题（skew 橙块编号 + 渐隐热流线） ---------- */
.la-sec { padding: 64px 0 60px; }

.la-sec-dark {
    background: linear-gradient(180deg, rgba(30, 18, 10, .6), rgba(13, 8, 5, .8));
    border-top: 1px solid rgba(255, 106, 31, .12);
    border-bottom: 1px solid rgba(255, 106, 31, .12);
}

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

.la-sec-num {
    font-style: normal;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    height: 34px;
    padding: 0 12px;
    background: linear-gradient(135deg, #ff6a1f, #d84e0a);
    color: #fff2e6;
    font-weight: 900;
    font-size: 16px;
    letter-spacing: 1px;
    transform: skewX(-12deg);
    box-shadow: 3px 3px 0 rgba(255, 164, 92, .3);
}

.la-sec-title {
    margin: 0;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 3px;
    color: #fff2e6;
    white-space: nowrap;
}

.la-sec-flow {
    flex: 1;
    height: 2px;
    min-width: 40px;
    background: linear-gradient(90deg, rgba(255, 106, 31, .7), transparent);
    position: relative;
}

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

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

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

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

.la-about-lead strong { color: #ffa45c; }

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

.la-point {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    background: rgba(255, 106, 31, .05);
    border: 1px solid rgba(255, 106, 31, .2);
    border-left: 3px solid #ff6a1f;
}

.la-point b {
    font-size: 14px;
    font-weight: 700;
    color: #ffa45c;
    white-space: nowrap;
}

.la-point span { font-size: 13px; color: #a67c60; }

.la-about-fig {
    position: relative;
    padding: 12px;
    background: #1e120a;
    border: 1px solid rgba(255, 106, 31, .25);
    clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
}

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

/* ---------- 核心业务：3x2 斜切图标卡（熔岩底涌 hover） ---------- */
.la-srv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.la-srv-card {
    position: relative;
    padding: 26px 24px 30px;
    background: #1e120a;
    border: 1px solid rgba(255, 106, 31, .2);
    overflow: hidden;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.la-srv-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6a1f, #ffa45c);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .22s ease;
}

.la-srv-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 106, 31, .55);
    background: #241409;
}

.la-srv-card:hover::after { transform: scaleY(1); }

.la-ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ff6a1f, #d84e0a);
    transform: skewX(-12deg);
    box-shadow: 3px 3px 0 rgba(255, 164, 92, .3);
}

.la-ico i {
    font-style: normal;
    font-weight: 900;
    font-size: 15px;
    letter-spacing: 1px;
    color: #fff2e6;
    transform: skewX(12deg);
}

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

.la-srv-card > p {
    margin: 0;
    font-size: 13px;
    line-height: 1.85;
    color: #a67c60;
}


/* ---------- 游戏产品：一大卡左 + 三横条卡右 ---------- */
.la-game-wrap {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 20px;
    align-items: stretch;
}

.la-game-main {
    position: relative;
    display: block;
    background: #1e120a;
    border: 1px solid rgba(255, 106, 31, .25);
    overflow: hidden;
    transition: border-color .18s ease;
}

.la-game-main:hover { border-color: rgba(255, 106, 31, .6); }

.la-game-main::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6a1f, #ffa45c);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .22s ease;
}

.la-game-main:hover::after { transform: scaleY(1); }

.gm-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 5px 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff2e6;
    background: linear-gradient(90deg, #ff6a1f, #d84e0a);
    transform: skewX(-12deg);
}

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

.gm-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 18px 22px 22px;
}

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

.gm-body i {
    font-style: normal;
    font-size: 13px;
    line-height: 1.8;
    color: #a67c60;
}

.gm-go {
    font-style: normal;
    margin-top: 4px;
    font-size: 14px;
    font-weight: 700;
    color: #ffa45c;
}

.la-game-main:hover .gm-go { color: #ff6a1f; }

.la-game-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.la-game-item {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    background: #1e120a;
    border: 1px solid rgba(255, 106, 31, .2);
    overflow: hidden;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.la-game-item::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6a1f, #ffa45c);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .22s ease;
}

.la-game-item:hover {
    transform: translateX(4px);
    border-color: rgba(255, 106, 31, .55);
    background: #241409;
}

.la-game-item:hover::after { transform: scaleY(1); }

.gi-fig {
    width: 68px;
    height: 68px;
    flex-shrink: 0;
    overflow: hidden;
}

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

.gi-body b {
    display: block;
    margin-bottom: 3px;
    font-size: 15px;
    font-weight: 700;
    color: #fff2e6;
    letter-spacing: 1px;
}

.gi-body span { font-size: 12px; color: #a67c60; }

.gi-arrow {
    margin-left: auto;
    font-size: 16px;
    color: #5c4130;
    transition: color .18s ease, transform .18s ease;
}

.la-game-item:hover .gi-arrow { color: #ff6a1f; transform: translateX(3px); }

/* ---------- 企业数据：横向温度计量表（标签 + 大数字 + 渐变刻度条） ---------- */
.la-heat {
    display: flex;
    flex-direction: column;
    gap: 26px;
    max-width: 980px;
    margin: 0 auto;
}

.la-heat-row {
    display: grid;
    grid-template-columns: 190px 130px 1fr;
    align-items: center;
    gap: 20px;
}

.hr-label {
    font-size: 14px;
    letter-spacing: 2px;
    color: #cfa489;
    text-align: right;
}

.hr-num {
    font-size: 34px;
    font-weight: 900;
    color: #ff6a1f;
    line-height: 1;
    text-shadow: 0 0 18px rgba(255, 106, 31, .4);
}

.hr-num i {
    font-style: normal;
    font-size: 16px;
    margin-left: 2px;
    color: #ffa45c;
}

.hr-bar {
    position: relative;
    height: 10px;
    background: rgba(255, 106, 31, .1);
    box-shadow: inset 0 0 0 1px rgba(255, 106, 31, .25);
    overflow: hidden;
}

/* 刻度线（温度计视感） */
.hr-bar::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(90deg, transparent 0 19px, rgba(18, 10, 6, .85) 19px 20px);
    z-index: 2;
}

.hr-bar em {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(90deg, #d84e0a, #ff6a1f 60%, #ffa45c);
}

.hr-bar.w1 em { width: 62%; }
.hr-bar.w2 em { width: 78%; }
.hr-bar.w3 em { width: 88%; }
.hr-bar.w4 em { width: 96%; }

/* ---------- 服务流程：阶梯错位步骤（横排依次下沉 + 大编号） ---------- */
.la-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.la-step {
    position: relative;
    padding: 22px 20px 26px;
    background: #1e120a;
    border: 1px solid rgba(255, 106, 31, .2);
    overflow: hidden;
    transition: transform .18s ease, border-color .18s ease;
}

.la-step:nth-child(2) { margin-top: 28px; }
.la-step:nth-child(3) { margin-top: 56px; }
.la-step:nth-child(4) { margin-top: 84px; }

.la-step::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6a1f, #ffa45c);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .22s ease;
}

.la-step:hover { transform: translateY(-4px); border-color: rgba(255, 106, 31, .55); }
.la-step:hover::after { transform: scaleY(1); }

.step-num {
    display: block;
    margin-bottom: 10px;
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255, 106, 31, .3);
    letter-spacing: 1px;
}

.step-body b {
    display: block;
    margin-bottom: 6px;
    font-size: 16px;
    font-weight: 700;
    color: #fff2e6;
    letter-spacing: 1px;
}

.step-body p {
    margin: 0;
    font-size: 13px;
    line-height: 1.8;
    color: #a67c60;
}

/* ---------- 资质荣誉：3x3 斜切角证书卡 ---------- */
.la-cert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.la-cert {
    position: relative;
    padding: 14px;
    background: #1e120a;
    border: 1px solid rgba(255, 106, 31, .2);
    clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%);
    overflow: hidden;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.la-cert::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6a1f, #ffa45c);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .22s ease;
}

.la-cert:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 106, 31, .55);
    background: #241409;
}

.la-cert:hover::after { transform: scaleY(1); }

/* 斜切角内侧焊接点（橙三角贴斜边） */
.ct-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 18px;
    height: 18px;
    background: linear-gradient(45deg, #ff6a1f 50%, transparent 51%);
    pointer-events: none;
}

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

/* ---------- APP 客户端：图左 + 特性列表右 ---------- */
.la-app {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.la-app-fig {
    position: relative;
    padding: 12px;
    background: #1e120a;
    border: 1px solid rgba(255, 106, 31, .25);
    clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
}

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

.la-app-list { display: flex; flex-direction: column; gap: 16px; }

.la-li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    background: rgba(255, 106, 31, .04);
    border: 1px solid rgba(255, 106, 31, .18);
    border-left: 3px solid #ff6a1f;
}

.li-ico {
    width: 12px;
    height: 12px;
    margin-top: 5px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #ff6a1f, #ffa45c);
    transform: skewX(-12deg);
}

.la-li b {
    display: block;
    margin-bottom: 4px;
    font-size: 15px;
    font-weight: 700;
    color: #fff2e6;
    letter-spacing: 1px;
}

.la-li p {
    margin: 0;
    font-size: 13px;
    line-height: 1.75;
    color: #a67c60;
}

/* ---------- 合作伙伴：斜切标签流（logo + 名称斜切块横排换行） ---------- */
.la-mates {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.la-mate {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 22px;
    background: rgba(255, 106, 31, .05);
    box-shadow: inset 0 0 0 1px rgba(255, 106, 31, .22);
    transform: skewX(-10deg);
    transition: background .18s ease, box-shadow .18s ease, transform .18s ease;
}

.la-mate > * { transform: skewX(10deg); }

.mt-fig {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    overflow: hidden;
}

.mt-fig mip-img img { height: 36px !important; object-fit: contain; }

.la-mate b {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #cfa489;
    white-space: nowrap;
}

.la-mate:hover {
    background: rgba(255, 106, 31, .13);
    box-shadow: inset 0 0 0 1px rgba(255, 106, 31, .6);
    transform: skewX(-10deg) translateY(-3px);
}

.la-mate:hover b { color: #fff2e6; }

/* ---------- 最新动态：行式日期块列表 ---------- */
.la-news-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.la-news-row {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 14px 20px;
    background: #1e120a;
    border: 1px solid rgba(255, 106, 31, .18);
    overflow: hidden;
    transition: border-color .18s ease, background .18s ease;
}

.la-news-row::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6a1f, #ffa45c);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .22s ease;
}

.la-news-row:hover { border-color: rgba(255, 106, 31, .5); background: #241409; }
.la-news-row:hover::after { transform: scaleY(1); }

.nw-date {
    width: 64px;
    padding: 8px 6px;
    text-align: center;
    flex-shrink: 0;
    background: linear-gradient(135deg, #ff6a1f, #d84e0a);
    transform: skewX(-10deg);
}

.nw-date > * { display: block; transform: skewX(10deg); }

.nw-date b {
    font-size: 20px;
    font-weight: 900;
    line-height: 1.1;
    color: #fff2e6;
}

.nw-date i {
    font-style: normal;
    font-size: 10px;
    letter-spacing: 1px;
    color: rgba(255, 227, 204, .85);
}

.nw-body {
    flex: 1;
    min-width: 0;
}

.nw-body > b {
    display: block;
    margin-bottom: 3px;
    font-size: 15px;
    font-weight: 700;
    color: #fff2e6;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.la-news-row:hover .nw-body > b { color: #ffa45c; }

.nw-body > span {
    font-size: 12px;
    color: #a67c60;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.nw-arrow {
    font-size: 18px;
    color: #5c4130;
    transition: color .18s ease, transform .18s ease;
}

.la-news-row:hover .nw-arrow { color: #ff6a1f; transform: translateX(4px); }

.la-news-more {
    margin-top: 24px;
    text-align: center;
}

/* ---------- 合作 CTA：斜纹横幅（左宣言文 + 右斜切按钮组） ---------- */
.la-cta {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    padding: 46px 44px;
    border: 1px solid rgba(255, 106, 31, .3);
    background-image:
        repeating-linear-gradient(135deg, rgba(255, 106, 31, .06) 0 12px, transparent 12px 24px),
        linear-gradient(135deg, #1e120a, #341103);
    overflow: hidden;
}

.la-cta::before {
    content: "";
    position: absolute;
    left: -70px;
    top: -70px;
    bottom: -70px;
    width: 140px;
    background: linear-gradient(90deg, rgba(255, 106, 31, .3), transparent);
    transform: skewX(-12deg);
    pointer-events: none;
}

.la-cta-copy { position: relative; z-index: 1; }

.la-cta h2 {
    margin: 0 0 10px;
    font-size: 30px;
    font-weight: 900;
    letter-spacing: 3px;
    color: #fff2e6;
}

.la-cta p {
    margin: 0;
    font-size: 14px;
    letter-spacing: 1px;
    color: #cfa489;
}

.la-cta-btns {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* ---------- 首页功能速览：左侧竖栏滑出弹层 ---------- */
.la-panel {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 1000;
    width: 300px;
    max-width: 86vw;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #341103, #120a06);
    border-right: 2px solid #ff6a1f;
    box-shadow: 14px 0 44px rgba(0, 0, 0, .6);
    animation: laPanelIn .45s cubic-bezier(.2, .8, .25, 1) both;
}

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

.la-panel-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 16px 14px;
    border-bottom: 1px solid rgba(255, 106, 31, .25);
}

.pn-kicker {
    font-size: 10px;
    letter-spacing: 2px;
    color: #a67c60;
}

.pn-title {
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 3px;
    color: #fff2e6;
    margin-right: auto;
}

.pn-close {
    width: 30px;
    height: 30px;
    line-height: 28px;
    text-align: center;
    font-size: 17px;
    color: #ffa45c;
    box-shadow: inset 0 0 0 1px rgba(255, 106, 31, .35);
    transition: background .15s ease, color .15s ease;
}

.pn-close:hover { background: rgba(255, 106, 31, .15); color: #fff2e6; }

.la-panel-items {
    flex: 1;
    overflow-y: auto;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pn-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    color: #cfa489;
    border-left: 2px solid transparent;
    transition: background .15s ease, color .15s ease, border-color .15s ease;
}

.pn-item i {
    font-style: normal;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    color: #ffa45c;
}

.pn-item span { font-size: 13.5px; letter-spacing: 1px; }

.pn-item em {
    font-style: normal;
    margin-left: auto;
    font-size: 12px;
    color: #5c4130;
    transition: color .15s ease, transform .15s ease;
}

.pn-item:hover {
    color: #fff2e6;
    background: rgba(255, 106, 31, .1);
    border-left-color: #ff6a1f;
}

.pn-item:hover em { color: #ff6a1f; transform: translateX(3px); }

.la-panel-foot {
    padding: 16px;
    border-top: 1px solid rgba(255, 106, 31, .25);
}

.pn-go { width: 100%; box-sizing: border-box; }

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

/* ---------- footer ---------- */
.la-footer {
    margin-top: 40px;
    padding: 34px 0 22px;
    border-top: 1px solid rgba(255, 106, 31, .16);
    background: linear-gradient(180deg, #180e07, #120a06);
}

.la-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, 106, 31, .12);
    flex-wrap: wrap;
}

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

.la-foot-co .co-intro p { margin: 0; color: #a67c60; font-size: 13px; }

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

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

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

.la-friend li { color: #402d20; font-size: 12px; }

.la-friend li.friend-label { color: #7d5a44; }

.la-friend a { color: #7d5a44; font-size: 12px; }
.la-friend a:hover { color: #ff6a1f; }

.la-copy { margin: 14px 0 0; color: #402d20; font-size: 12px; }

.la-copy a { color: #402d20; }
.la-copy a:hover { color: #ff6a1f; }

/* ---------- 响应式 ---------- */
/* 中屏（992-1199px）：隐藏头部搜索框 */
@media (max-width: 1199px) {
    .la-search { display: none; }
}

/* 平板及以下：第一行 logo+立即游玩，导航整行横向滑动，下拉变全宽面板 */
@media (max-width: 991px) {
    .la-header-inner { flex-wrap: wrap; min-height: 56px; }
    .la-logo { line-height: 56px; }
    .la-nav { order: 3; flex: 1 1 100%; overflow-x: auto; scrollbar-width: none; }
    .la-nav > li > a { padding: 0 10px; font-size: 13px; line-height: 44px; }
    .la-nav > li > a::after { display: none; }
    .la-nav > li.active > a { color: #ff6a1f; }
    .la-dropdown { position: fixed; left: 12px; right: 12px; top: 110px; max-height: 56vh; overflow-y: auto; }
    .la-dropdown-cols { width: auto; grid-template-columns: 1fr 1fr; }
    .mipcms-main { padding-top: 109px !important; }
    .la-hero { padding: 44px 0 0; }
    .la-hero-title { font-size: 31px; }
    .la-hero-slogan { font-size: 14px; letter-spacing: 5px; }
    .la-hero-in { padding-bottom: 40px; }
    .la-data-item { flex: 1 1 50%; }
    .la-data-item:nth-child(odd)::before { display: none; }
    .la-data-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255, 106, 31, .22); }
    .la-sec { padding: 52px 0 46px; }
    .la-sec-title { font-size: 18px; }
    .la-about { grid-template-columns: 1fr; gap: 30px; }
    .la-about-fig mip-img img { height: 250px !important; }
    .la-srv-grid { grid-template-columns: repeat(2, 1fr); }
    .la-game-wrap { grid-template-columns: 1fr; }
    .gm-fig mip-img img { height: 240px !important; }
    .la-game-side { flex-direction: row; }
    .la-game-item { flex-direction: column; align-items: flex-start; gap: 10px; }
    .gi-arrow { display: none; }
    .la-heat-row { grid-template-columns: 1fr auto; grid-template-rows: auto auto; gap: 8px 16px; }
    .hr-label { text-align: left; grid-column: 1; }
    .hr-num { grid-column: 2; grid-row: 1; }
    .hr-bar { grid-column: 1 / -1; grid-row: 2; }
    .la-steps { grid-template-columns: repeat(2, 1fr); }
    .la-step:nth-child(3) { margin-top: 0; }
    .la-step:nth-child(4) { margin-top: 28px; }
    .la-cert-grid { grid-template-columns: repeat(2, 1fr); }
    .la-app { grid-template-columns: 1fr; gap: 30px; }
    .la-app-fig mip-img img { height: 300px !important; }
    .la-cta { padding: 38px 26px; }
    .la-cta h2 { font-size: 24px; }
}

@media (max-width: 575px) {
    .la-logo .logo-word { font-size: 17px; }
    .la-hero { padding: 34px 0 0; }
    .la-hero-kicker { font-size: 11px; letter-spacing: 4px; }
    .la-hero-title { font-size: 26px; }
    .la-hero-slogan { font-size: 13px; letter-spacing: 4px; }
    .la-hero-btns { flex-direction: column; gap: 14px; }
    .la-hero-btns .la-btn { width: 100%; box-sizing: border-box; }
    .la-data-item { flex: 1 1 100%; border-bottom: 1px solid rgba(255, 106, 31, .22); }
    .la-data-item::before { display: none; }
    .la-data-item:last-child { border-bottom: none; }
    .la-sec { padding: 44px 0 40px; }
    .la-sec-head { gap: 10px; margin-bottom: 26px; }
    .la-sec-num { min-width: 44px; height: 30px; font-size: 14px; }
    .la-sec-title { font-size: 16px; letter-spacing: 2px; }
    .la-about-fig mip-img img { height: 200px !important; }
    .la-srv-grid { grid-template-columns: 1fr; }
    .la-srv-card { padding: 20px 18px 24px; }
    .gm-fig mip-img img { height: 200px !important; }
    .gm-body { padding: 16px 18px 20px; }
    .gm-body b { font-size: 20px; }
    .la-game-side { flex-direction: column; }
    .la-game-item { flex-direction: row; align-items: center; }
    .gi-arrow { display: inline; }
    .hr-num { font-size: 26px; }
    .la-steps { grid-template-columns: 1fr; }
    .la-step:nth-child(n) { margin-top: 0; }
    .step-num { font-size: 34px; }
    .la-cert-grid { grid-template-columns: repeat(2, 1fr); }
    .la-cert mip-img img { height: 125px !important; }
    .la-app-fig mip-img img { height: 250px !important; }
    .la-mates { gap: 10px; }
    .la-mate { padding: 8px 16px; }
    .la-news-row { flex-wrap: wrap; gap: 10px 14px; }
    .nw-body { flex-basis: calc(100% - 82px); }
    .nw-arrow { display: none; }
    .la-cta { padding: 36px 18px; }
    .la-cta h2 { font-size: 21px; }
    .la-cta-btns { flex-direction: column; gap: 16px; width: 100%; }
    .la-cta-btns .la-btn { width: 100%; box-sizing: border-box; }
    /* 左侧竖栏：小屏收窄 */
    .la-panel { width: 260px; }
    .pn-item { padding: 12px 12px; }
}


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

.ty-crumb a { color: #7d5a44; }
.ty-crumb a:hover { color: #ff6a1f; }

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

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

.ty-box {
    margin-bottom: 22px;
    border: 1px solid rgba(255, 106, 31, .14);
    background: rgba(30, 18, 10, .55);
}

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

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

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

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

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

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

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

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

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

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

.ty-tags-cloud li a:hover {
    color: #341103;
    background: #ff6a1f;
    border-color: #ff6a1f;
    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: #a67c60 !important;
    background: rgba(30, 18, 10, .8) !important;
    border: 1px solid rgba(255, 106, 31, .2) !important;
}

.ty-pagination li.active a,
.ty-pagination li.active span {
    color: #341103 !important;
    background: #ff6a1f !important;
    border-color: #ff6a1f !important;
}

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

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

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

.ty-detail-tags a:hover { color: #341103; background: #ff6a1f; text-shadow: none; }

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

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

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

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

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

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

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

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

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

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

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