/* ============================================================
   ty-012 电竞体育游戏企业模板
   配色体系：珊瑚红单色系（#ff6b5e 主 / #e04a3d 深 / #ff9a8b 亮）
   结构：斜切波峰 HERO（左文案 + 右斜纹块群 + 斜切数据带）
        折角标签标题（折角编号块 + 主标题 + 实虚双线）
        左图右文关于（切角图框 + 芯片标签）
        3x2 横幅行卡业务 / 1x4 竖长海报卡游戏
        条形进度数据 / 横向交错时间轴流程
        3x3 斜叠证书荣誉 / 左文右图 APP
        分隔线 logo 横带伙伴 / 3 列日期角标卡动态
        斜切边框双线 CTA / 底部拱形升起弹层
        卡片 hover 配方：圆环涟漪（中心扩散淡出）
        按钮语言：实体压边（底部实体投影，hover 下压）
   ============================================================ */

/* ---------- 基础 ---------- */
body {
    font-family: "Microsoft YaHei", "PingFang SC", Tahoma, Helvetica, sans-serif;
    background-color: #170c0a;
    background-image:
        radial-gradient(ellipse at 50% -14%, rgba(255, 107, 94, .07), transparent 55%),
        linear-gradient(180deg, #170c0a 0%, #1c100d 100%);
    background-attachment: fixed;
    color: #fff1ec;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
}

a { color: #ff9a8b; text-decoration: none; transition: color .15s ease, text-shadow .15s ease; }
a:hover { color: #ff6b5e; text-decoration: none; text-shadow: 0 0 12px rgba(255, 107, 94, .5); }

img { max-width: 100%; }

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

/* ---------- 顶部导航 ---------- */
.cr-header {
    background: linear-gradient(180deg, rgba(36, 21, 17, .98), rgba(23, 12, 10, .92));
    border-bottom: 1px solid rgba(255, 107, 94, .22);
    box-shadow: 0 4px 26px rgba(0, 0, 0, .6);
}

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

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

/* 折角方块徽章 */
.cr-logo .logo-badge {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 12px;
    background: linear-gradient(135deg, #ff9a8b, #ff6b5e 60%, #e04a3d);
    box-shadow: 0 0 18px rgba(255, 107, 94, .45);
    position: relative;
    top: 8px;
    clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 0 100%);
}

.cr-logo .logo-badge::after {
    content: "";
    position: absolute;
    left: 8px;
    top: 14px;
    width: 12px;
    height: 3px;
    background: #170c0a;
    box-shadow: 0 6px 0 #170c0a;
}

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

.cr-logo .logo-word:hover { color: #ff9a8b; text-shadow: 0 0 14px rgba(255, 107, 94, .55); }

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

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

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

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

.cr-nav > li:hover > a,
.cr-nav > li.active > a { color: #fff1ec; }

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

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

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

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

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

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

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

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

.cr-dropdown li > a:hover {
    color: #ff9a8b;
    background: rgba(255, 107, 94, .08);
    border-left-color: #ff6b5e;
}

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

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

.cr-dropdown-sub li a:hover { color: #ff9a8b; }

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

.cr-search { margin: 0; }

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

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

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

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

.cr-search-btn {
    height: 34px;
    padding: 0 14px;
    font-size: 12px;
    color: #fff1ec;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b5e, #e04a3d);
    border: none;
    cursor: pointer;
    border-radius: 0 3px 3px 0;
}

.cr-play-btn {
    display: inline-block;
    padding: 8px 22px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff1ec;
    background: linear-gradient(135deg, #ff9a8b, #ff6b5e 62%);
    box-shadow: 0 4px 0 #a33227;
    border-radius: 4px;
    cursor: pointer;
    transition: transform .12s ease, box-shadow .12s ease;
}

.cr-play-btn:hover { transform: translateY(3px); box-shadow: 0 1px 0 #a33227; color: #fff1ec; }

/* ---------- 通用按钮（实体压边：底部实体投影，hover 下压） ---------- */
.cr-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: transform .12s ease, box-shadow .12s ease, background .15s ease;
}

.cr-btn-main {
    color: #fff1ec;
    background: linear-gradient(135deg, #ff6b5e, #e04a3d);
    box-shadow: 0 5px 0 #a33227, 0 9px 20px rgba(0, 0, 0, .35);
}

.cr-btn-main:hover {
    color: #fff1ec;
    transform: translateY(4px);
    box-shadow: 0 1px 0 #a33227, 0 4px 10px rgba(0, 0, 0, .3);
    text-shadow: none;
}

.cr-btn-main:active { transform: translateY(5px); box-shadow: 0 0 0 #a33227; }

.cr-btn-ghost {
    color: #ff9a8b;
    background: transparent;
    box-shadow: inset 0 0 0 1px rgba(255, 107, 94, .55), 0 5px 0 rgba(163, 50, 39, .55);
}

.cr-btn-ghost:hover {
    color: #fff1ec;
    background: rgba(255, 107, 94, .88);
    box-shadow: inset 0 0 0 1px rgba(255, 107, 94, .88), 0 1px 0 rgba(163, 50, 39, .55);
    transform: translateY(4px);
    text-shadow: none;
}

/* ---------- HERO：斜切波峰构图 ---------- */
.cr-hero {
    position: relative;
    overflow: hidden;
    padding: 84px 0 0;
    background-image: linear-gradient(180deg, #170c0a, #241511);
}

.cr-hero-in {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 30px;
    align-items: center;
    padding-bottom: 64px;
}

.cr-hero-copy { min-width: 0; }

/* 右侧斜纹块群（平行四边形 ×4 阶梯排列） */
.cr-stripes { position: relative; height: 300px; }

.cr-stripe {
    position: absolute;
    width: 230px;
    height: 56px;
    background: linear-gradient(90deg, rgba(255, 107, 94, .38), rgba(255, 107, 94, .06));
    border: 1px solid rgba(255, 107, 94, .35);
    transform: skewX(-24deg);
}

.cr-stripe.s1 { right: 46px; top: 4px; }
.cr-stripe.s2 { right: 96px; top: 80px; opacity: .7; }
.cr-stripe.s3 { right: 36px; top: 156px; opacity: .45; }
.cr-stripe.s4 { right: 116px; top: 232px; opacity: .22; }

.cr-stripe.s1::after,
.cr-stripe.s3::after {
    content: "";
    position: absolute;
    left: 18px;
    top: 50%;
    width: 10px;
    height: 10px;
    margin-top: -5px;
    background: rgba(255, 217, 210, .5);
    transform: skewX(24deg) rotate(45deg);
}

.cr-hero-kicker {
    display: inline-block;
    padding: 5px 18px;
    font-size: 11px;
    letter-spacing: 5px;
    color: #fff1ec;
    font-weight: 700;
    background: linear-gradient(90deg, #ff6b5e, #e04a3d);
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 100%, 0 100%);
    margin-bottom: 20px;
}

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

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

.cr-hero-sub {
    max-width: 560px;
    margin: 0 0 30px;
    font-size: 14px;
    line-height: 1.9;
    color: #e3b7ad;
}

.cr-hero-btns {
    display: flex;
    gap: 22px;
}

/* 斜切数据带（skewY 波峰） */
.cr-hero-stats {
    position: relative;
    z-index: 1;
    padding: 16px 0 24px;
    background: linear-gradient(90deg, rgba(255, 107, 94, .15), rgba(255, 107, 94, .03));
    border-top: 1px solid rgba(255, 107, 94, .35);
    border-bottom: 1px solid rgba(255, 107, 94, .18);
    transform: skewY(-1.6deg);
}

.cr-stats-row {
    display: flex;
    justify-content: space-between;
    transform: skewY(1.6deg);
}

.cr-stat {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.cr-stat b {
    font-size: 30px;
    font-weight: 900;
    color: #ff6b5e;
    line-height: 1;
    text-shadow: 0 0 18px rgba(255, 107, 94, .45);
}

.cr-stat b i { font-style: normal; font-size: 15px; margin-left: 2px; color: #ff9a8b; }

.cr-stat em { font-style: normal; font-size: 12px; letter-spacing: 2px; color: #c99d92; }

/* ---------- 章节头：折角标签标题（折角编号块 + 实虚双线） ---------- */
.cr-sec { padding: 64px 0 60px; }

.cr-sec-dark {
    background: linear-gradient(180deg, rgba(36, 21, 17, .6), rgba(28, 16, 13, .8));
    border-top: 1px solid rgba(255, 107, 94, .12);
    border-bottom: 1px solid rgba(255, 107, 94, .12);
}

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

/* 折角编号块（右上角折角切） */
.cr-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 54px;
    height: 36px;
    padding: 0 16px 0 13px;
    font-style: normal;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 1px;
    color: #fff1ec;
    background: linear-gradient(135deg, #ff6b5e, #e04a3d);
    clip-path: polygon(0 0, calc(100% - 13px) 0, 100% 100%, 0 100%);
    flex-shrink: 0;
}

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

/* 实虚双线（上实线渐隐 + 下虚线） */
.cr-sec-dash {
    position: relative;
    flex: 1;
    height: 5px;
    min-width: 40px;
    background: linear-gradient(90deg, rgba(255, 107, 94, .65), transparent 72%);
}

.cr-sec-dash::after {
    content: "";
    position: absolute;
    left: 0;
    right: 26%;
    top: 10px;
    border-top: 1px dashed rgba(255, 154, 139, .4);
}

/* ---------- 关于我们：左图右文（切角图框 + 芯片标签） ---------- */
.cr-about {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    align-items: center;
}

/* 切角图框（右下切角） */
.cr-about-fig {
    padding: 12px;
    background: #241511;
    border: 1px solid rgba(255, 107, 94, .25);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%);
}

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

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

.cr-about-lead {
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 2;
    color: #e3b7ad;
}

.cr-about-lead strong { color: #ff9a8b; }

.cr-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 18px; }

.cr-chip {
    display: inline-block;
    padding: 6px 16px;
    font-size: 12px;
    letter-spacing: 1px;
    color: #ff9a8b;
    background: rgba(255, 107, 94, .08);
    border: 1px solid rgba(255, 107, 94, .32);
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 100%, 0 100%);
}

.cr-chip:hover { background: rgba(255, 107, 94, .18); color: #ffd9d2; }

.cr-about-sub {
    margin: 0 0 26px;
    font-size: 13px;
    line-height: 1.9;
    color: #c99d92;
}

/* ---------- 核心业务：3x2 横幅行卡 + 圆环涟漪 hover ---------- */
.cr-srv-list { display: flex; flex-direction: column; gap: 14px; }

.cr-srv-row {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 26px;
    background: #1e110d;
    border: 1px solid rgba(255, 107, 94, .16);
    border-left: 3px solid rgba(255, 107, 94, .45);
    transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

/* 折角编号 */
.cr-row-no {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-width: 50px;
    height: 36px;
    padding: 0 14px 0 12px;
    font-style: normal;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 1px;
    color: #fff1ec;
    background: linear-gradient(135deg, #ff6b5e, #e04a3d);
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 0 100%);
}

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

.cr-row-body b { display: block; margin-bottom: 3px; font-size: 16px; font-weight: 700; letter-spacing: 1px; color: #ff9a8b; }

.cr-row-body i { font-style: normal; font-size: 13px; color: #c99d92; }

.cr-row-arrow {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    line-height: 28px;
    text-align: center;
    color: #a37b71;
    border: 1px solid rgba(255, 107, 94, .25);
    transition: all .18s ease;
}

.cr-srv-row:hover {
    border-left-color: #ff6b5e;
    background: #241511;
    transform: translateX(6px);
}

.cr-srv-row:hover .cr-row-arrow { color: #fff1ec; background: #ff6b5e; border-color: #ff6b5e; }

/* 圆环涟漪：hover 自编号中心扩散淡出（本套 hover 配方） */
.cr-srv-row::after {
    content: "";
    position: absolute;
    left: 38px;
    top: 50%;
    width: 96px;
    height: 96px;
    margin: -48px 0 0 -48px;
    border-radius: 50%;
    border: 2px solid rgba(255, 107, 94, .6);
    opacity: 0;
    transform: scale(.3);
    pointer-events: none;
}

.cr-srv-row:hover::after { animation: crRipple .7s ease-out; }

@keyframes crRipple {
    0% { opacity: .95; transform: scale(.3); }
    100% { opacity: 0; transform: scale(1.65); }
}

/* ---------- 游戏产品：1x4 竖长海报卡 ---------- */
.cr-poster-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.cr-poster {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 12px 12px 20px;
    background: #241511;
    border: 1px solid rgba(255, 107, 94, .2);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.po-fig { display: block; overflow: hidden; margin-bottom: 14px; }

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

.cr-poster b { margin-bottom: 5px; font-size: 17px; font-weight: 700; letter-spacing: 1px; color: #fff1ec; }

.cr-poster i { font-style: normal; font-size: 12px; line-height: 1.6; color: #c99d92; }

.cr-poster:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 107, 94, .5);
    box-shadow: 0 16px 36px rgba(0, 0, 0, .5);
}

.cr-poster:hover b { color: #ff9a8b; }

/* ---------- 企业数据：条形进度计 ---------- */
.cr-bar { min-width: 0; }

.cr-bars { display: flex; flex-direction: column; gap: 26px; }

.cb-info {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 9px;
}

.cb-info span { font-size: 13px; letter-spacing: 1px; color: #e3b7ad; }

.cb-info b { font-size: 26px; font-weight: 900; line-height: 1; color: #ff6b5e; text-shadow: 0 0 16px rgba(255, 107, 94, .4); }

.cb-info b i { font-style: normal; font-size: 13px; margin-left: 1px; color: #ff9a8b; }

/* 斜切轨道 + 渐亮填充 */
.cb-track {
    position: relative;
    height: 10px;
    background: rgba(255, 107, 94, .1);
    clip-path: polygon(0 0, 100% 0, calc(100% - 9px) 100%, 0 100%);
}

.cb-fill {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #e04a3d, #ff6b5e 60%, #ff9a8b);
    box-shadow: 0 0 12px rgba(255, 107, 94, .5);
}

/* ---------- 服务流程：横向交错时间轴 ---------- */
.cr-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

/* 中轴光带 */
.cr-timeline::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 17px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 94, .55) 8%, rgba(255, 107, 94, .55) 92%, transparent);
}

.cr-tl-node { position: relative; z-index: 1; padding-top: 52px; }

/* 轴上节点圆 */
.tl-dot {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    line-height: 32px;
    text-align: center;
    font-style: normal;
    font-size: 13px;
    font-weight: 900;
    color: #fff1ec;
    background: linear-gradient(135deg, #ff6b5e, #e04a3d);
    border: 2px solid #170c0a;
    border-radius: 50%;
    box-shadow: 0 0 16px rgba(255, 107, 94, .45);
}

/* 上下交错：up 实线底卡 / down 虚线框卡 + 下移错位 */
.tl-body { padding: 18px 20px; text-align: center; border-radius: 10px; }

.cr-tl-node.up .tl-body {
    background: rgba(255, 107, 94, .06);
    border: 1px solid rgba(255, 107, 94, .24);
}

.cr-tl-node.down .tl-body {
    background: #1e110d;
    border: 1px dashed rgba(255, 107, 94, .34);
    margin-top: 14px;
}

.tl-body b { display: block; margin-bottom: 6px; font-size: 16px; font-weight: 700; color: #ff9a8b; }

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

/* ---------- 资质荣誉：斜叠证书 ---------- */
.cr-tilt-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.cr-tilt {
    padding: 10px;
    background: #241511;
    border: 1px solid rgba(255, 107, 94, .2);
    transition: transform .25s ease, border-color .18s ease;
}

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

.cr-tilt.t-l { transform: rotate(-1.4deg); }
.cr-tilt.t-r { transform: rotate(1.2deg); }

.cr-tilt:hover { transform: rotate(0deg) scale(1.03); border-color: rgba(255, 107, 94, .55); }

/* ---------- APP 客户端：左文右图 ---------- */
.cr-app {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 40px;
    align-items: center;
}

.cr-app-copy { display: flex; flex-direction: column; gap: 16px; }

.cr-feat {
    display: flex;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 107, 94, .04);
    border: 1px solid rgba(255, 107, 94, .16);
    border-left: 3px solid rgba(255, 107, 94, .45);
}

.ft-no {
    font-style: normal;
    font-size: 20px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255, 107, 94, .42);
    margin-top: 2px;
}

.cr-feat b { display: block; margin-bottom: 3px; font-size: 15px; font-weight: 700; color: #ff9a8b; }

.cr-feat p { margin: 0; font-size: 13px; line-height: 1.7; color: #c99d92; }

/* 左下切角图框（与关于右下切角反向呼应） */
.cr-app-fig {
    padding: 12px;
    background: #241511;
    border: 1px solid rgba(255, 107, 94, .25);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}

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

.cr-app-copy .cr-btn { align-self: flex-start; margin-top: 6px; }

/* ---------- 合作伙伴：分隔线 logo 横带 ---------- */
.cr-logo-band {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: nowrap;
    padding: 22px 18px;
    background: #1e110d;
    border: 1px solid rgba(255, 107, 94, .16);
}

.lb-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    padding: 0 14px;
}

.lb-item + .lb-item { border-left: 1px solid rgba(255, 107, 94, .14); }

.lb-item mip-img img { height: 46px !important; object-fit: contain; }

.lb-item:hover mip-img img { filter: drop-shadow(0 0 10px rgba(255, 107, 94, .5)); }

/* ---------- 最新动态：3 列日期角标卡 ---------- */
.cr-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.cr-news-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 22px 24px 20px;
    background: #1e110d;
    border: 1px solid rgba(255, 107, 94, .16);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
    transition: transform .18s ease, border-color .18s ease;
}

/* 右上折角日期标 */
.nc-date {
    position: absolute;
    right: 0;
    top: 0;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 700;
    color: #fff1ec;
    background: linear-gradient(135deg, #ff6b5e, #e04a3d);
    clip-path: polygon(8px 0, 100% 0, 100% 100%, 0 100%);
}

.nc-title {
    min-height: 48px;
    margin-top: 18px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.6;
    color: #fff1ec;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cr-news-card:hover { transform: translateY(-5px); border-color: rgba(255, 107, 94, .4); }

.cr-news-card:hover .nc-title { color: #ff9a8b; }

.nc-more { font-size: 12px; color: #a37b71; }

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

/* ---------- 合作 CTA：斜切边框双线 ---------- */
.cr-cta {
    padding: 10px;
    background: linear-gradient(135deg, rgba(255, 107, 94, .35), rgba(255, 107, 94, .08));
    clip-path: polygon(0 22px, 22px 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%);
}

.cr-cta-in {
    padding: 48px 30px;
    text-align: center;
    background: linear-gradient(180deg, #241511, #1c100d);
    clip-path: polygon(0 20px, 20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}

.cr-cta h2 {
    margin: 0 0 12px;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 3px;
    color: #fff1ec;
}

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

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

/* ---------- 首页功能速览：底部拱形升起面板 ---------- */
.cr-arch-mask {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background: rgba(23, 12, 10, .8);
}

/* 上缘大圆角拱形 + 底部滑入 */
.cr-arch {
    width: min(760px, 96vw);
    background: linear-gradient(180deg, #241511, #170c0a);
    border: 1px solid rgba(255, 107, 94, .4);
    border-bottom: none;
    border-radius: 44px 44px 0 0;
    box-shadow: 0 -20px 60px rgba(0, 0, 0, .7), 0 0 40px rgba(255, 107, 94, .1);
    animation: crArchUp .5s cubic-bezier(.2, .8, .25, 1) both;
}

@keyframes crArchUp {
    from { transform: translateY(102%); }
    to { transform: translateY(0); }
}

.cr-arch-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 24px 12px;
    border-bottom: 1px solid rgba(255, 107, 94, .18);
}

.ah-title { font-size: 17px; font-weight: 900; color: #fff1ec; }

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

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

.ah-close:hover { color: #fff1ec; background: #ff6b5e; border-color: #ff6b5e; }

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

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

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

.ah-item span { font-size: 12px; color: #e3b7ad; }

.ah-item:hover { border-color: rgba(255, 107, 94, .5); background: rgba(255, 107, 94, .1); }

.ah-item:hover span { color: #ff9a8b; }

.cr-arch-foot { padding: 12px 24px 20px; }

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

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

/* ---------- footer ---------- */
.cr-footer {
    margin-top: 40px;
    padding: 34px 0 22px;
    border-top: 1px solid rgba(255, 107, 94, .16);
    background: linear-gradient(180deg, #241511, #170c0a);
}

.cr-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, 107, 94, .12);
    flex-wrap: wrap;
}

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

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

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

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

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

.cr-friend li { color: #5c4038; font-size: 12px; }

.cr-friend li.friend-label { color: #7d5a51; }

.cr-friend a { color: #7d5a51; font-size: 12px; }
.cr-friend a:hover { color: #ff6b5e; }

.cr-copy { margin: 14px 0 0; color: #5c4038; font-size: 12px; }

.cr-copy a { color: #5c4038; }
.cr-copy a:hover { color: #ff6b5e; }

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

@media (max-width: 991px) {
    .cr-header-inner { flex-wrap: wrap; min-height: 56px; }
    .cr-logo { line-height: 56px; }
    .cr-nav { order: 3; flex: 1 1 100%; overflow-x: auto; scrollbar-width: none; }
    .cr-nav > li > a { padding: 0 10px; font-size: 13px; line-height: 44px; }
    .cr-nav > li > a::after { display: none; }
    .cr-nav > li.active > a { color: #ff6b5e; }
    .cr-dropdown { position: fixed; left: 12px; right: 12px; top: 110px; max-height: 56vh; overflow-y: auto; }
    .cr-dropdown-cols { width: auto; grid-template-columns: 1fr 1fr; }
    .mipcms-main { padding-top: 109px !important; }
    .cr-hero { padding: 44px 0 0; }
    .cr-hero-in { grid-template-columns: 1fr; padding-bottom: 40px; }
    .cr-stripes { display: none; }
    .cr-hero-title { font-size: 31px; }
    .cr-hero-slogan { font-size: 14px; letter-spacing: 5px; }
    .cr-stats-row { flex-wrap: wrap; gap: 12px 26px; justify-content: center; }
    .cr-sec { padding: 52px 0 46px; }
    .cr-sec-title { font-size: 18px; }
    .cr-tag { min-width: 46px; height: 32px; font-size: 13px; }
    .cr-about { grid-template-columns: 1fr; gap: 30px; }
    .cr-about-fig mip-img img { height: 250px !important; }
    .cr-poster-grid { grid-template-columns: repeat(2, 1fr); }
    .cr-timeline { grid-template-columns: repeat(2, 1fr); gap: 22px 16px; }
    .cr-timeline::before { display: none; }
    .cr-tl-node { padding-top: 0; }
    .tl-dot { position: static; transform: none; margin: 0 auto 12px; display: flex; align-items: center; justify-content: center; }
    .cr-tl-node.down .tl-body { margin-top: 0; }
    .cr-tilt-grid { grid-template-columns: repeat(2, 1fr); }
    .cr-tilt.t-l, .cr-tilt.t-r { transform: none; }
    .cr-app { grid-template-columns: 1fr; gap: 30px; }
    .cr-app-fig mip-img img { height: 300px !important; }
    .cr-logo-band { flex-wrap: wrap; gap: 14px 0; }
    .lb-item { padding: 0 12px; }
    .lb-item + .lb-item { border-left: none; }
    .cr-news-grid { grid-template-columns: 1fr; }
    .cr-cta-in { padding: 40px 22px; }
    .cr-cta h2 { font-size: 24px; }
}

@media (max-width: 575px) {
    .cr-logo .logo-word { font-size: 17px; }
    .cr-hero { padding: 34px 0 0; }
    .cr-hero-kicker { font-size: 11px; letter-spacing: 4px; }
    .cr-hero-title { font-size: 26px; }
    .cr-hero-slogan { font-size: 13px; letter-spacing: 4px; }
    .cr-hero-sub { margin-bottom: 24px; }
    .cr-hero-btns { flex-direction: column; gap: 14px; }
    .cr-hero-btns .cr-btn { width: 100%; box-sizing: border-box; }
    .cr-stats-row { gap: 10px 18px; }
    .cr-stat b { font-size: 24px; }
    .cr-sec { padding: 44px 0 40px; }
    .cr-sec-head { gap: 10px; margin-bottom: 26px; }
    .cr-sec-title { font-size: 16px; letter-spacing: 2px; }
    .cr-sec-dash::after { top: 8px; }
    .cr-about-fig mip-img img { height: 200px !important; }
    .cr-srv-row { flex-wrap: wrap; gap: 12px; padding: 16px 18px; }
    .cr-row-body { flex: 1 1 100%; order: 2; }
    .cr-row-arrow { order: 3; }
    .cr-poster-grid { grid-template-columns: 1fr; }
    .po-fig mip-img img { height: 200px !important; }
    .cr-bars { gap: 20px; }
    .cb-info b { font-size: 22px; }
    .cr-timeline { grid-template-columns: 1fr; }
    .cr-tilt-grid { grid-template-columns: repeat(2, 1fr); }
    .cr-tilt mip-img img { height: 105px !important; }
    .cr-app-fig mip-img img { height: 230px !important; }
    .cr-app-copy .cr-btn { align-self: stretch; text-align: center; }
    .cr-logo-band { flex-direction: column; }
    .lb-item + .lb-item { border-left: none; border-top: 1px solid rgba(255, 107, 94, .14); }
    .cr-cta { clip-path: polygon(0 14px, 14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%); }
    .cr-cta-in { padding: 36px 16px; clip-path: polygon(0 12px, 12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%); }
    .cr-cta h2 { font-size: 21px; }
    .cr-cta-btns { flex-direction: column; gap: 16px; }
    .cr-cta-btns .cr-btn { width: 100%; box-sizing: border-box; }
    /* 拱形面板：小屏圆角收窄 + 条目 2 列 */
    .cr-arch { border-radius: 26px 26px 0 0; }
    .cr-arch-items { grid-template-columns: repeat(2, 1fr); }
    .cr-arch { max-height: 86vh; overflow-y: auto; }
}


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

.ty-crumb a { color: #a37b71; }
.ty-crumb a:hover { color: #ff6b5e; }

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

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

.ty-box {
    margin-bottom: 22px;
    border: 1px solid rgba(255, 107, 94, .14);
    background: rgba(36, 21, 17, .55);
}

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

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

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

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

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

.ty-list-item .item-meta { margin: 0; color: #7d5a51; 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, 107, 94, .1);
}

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

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

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

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

.ty-tags-cloud li a:hover {
    color: #3d1610;
    background: #ff6b5e;
    border-color: #ff6b5e;
    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: #c99d92 !important;
    background: rgba(36, 21, 17, .8) !important;
    border: 1px solid rgba(255, 107, 94, .2) !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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