/* ============================================================
   ty-018 电竞体育游戏企业模板
   配色体系：焦糖棕单色系（#d99a5b 主 / #a8703a 深 / #edc49a 亮）
   结构：复古霓虹招牌 HERO（双层描边牌匾 + 左右吊线 + 吧台刻度数据条）
        双缝线标题（上下 dashed 缝线 + 左端铜扣）
        缝线要点文案 + 铜钉皮框大图关于
        吧台菜单卡业务（铜牌菜单号，压印下沉 hover）
        木质货架游戏（横板托底货品卡）
        筹码堆叠数据（横纹筹码堆 + 椭圆顶盖）
        点单小票流程（conic 锯齿底边 + 虚线分隔）
        烫金证书资质（顶部烫金线 + 红铜圆章）
        缝线特性腰封 + 斜靠相框卡 APP
        黄铜牌匾伙伴 / 软木公告板动态（图钉纸条行）
        暖光壁炉 CTA / 底部抽屉滑出弹层（铜把手）
        卡片 hover 配方：压印下沉回弹（scale 缩小 + inset 阴影）
        按钮语言：缝线包边（dashed 缝线边，hover 变实线加外晕）
   ============================================================ */

/* ---------- 基础 ---------- */
body {
    font-family: "Microsoft YaHei", "PingFang SC", Tahoma, Helvetica, sans-serif;
    background-color: #1a110b;
    background-image:
        radial-gradient(ellipse at 50% -14%, rgba(217, 154, 91, .09), transparent 55%),
        linear-gradient(180deg, #1a110b 0%, #241811 100%);
    background-attachment: fixed;
    color: #faf3ea;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
}

a { color: #edc49a; text-decoration: none; transition: color .15s ease, text-shadow .15s ease; }
a:hover { color: #d99a5b; text-decoration: none; text-shadow: 0 0 12px rgba(217, 154, 91, .5); }

img { max-width: 100%; }

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

/* ---------- 顶部导航 ---------- */
.ca-header {
    background: linear-gradient(180deg, rgba(43, 29, 19, .98), rgba(26, 17, 11, .92));
    border-bottom: 1px solid rgba(217, 154, 91, .22);
    box-shadow: 0 4px 26px rgba(0, 0, 0, .6);
}

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

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

/* 铆钉皮牌徽章（双线框小方牌 + 内芯缝线） */
.ca-logo .logo-badge {
    display: inline-block;
    width: 26px;
    height: 26px;
    margin-right: 16px;
    background: linear-gradient(135deg, #edc49a, #a8703a);
    box-shadow: inset 0 0 0 2px rgba(43, 29, 19, .5), 0 0 14px rgba(217, 154, 91, .4);
    border-radius: 4px;
    position: relative;
    top: 8px;
}

.ca-logo .logo-badge::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 6px;
    right: 6px;
    bottom: 6px;
    border: 1px dashed rgba(43, 29, 19, .6);
    border-radius: 2px;
}

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

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

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

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

/* 缝线指示：当前/悬停时底部虚线亮起 */
.ca-nav > li > a::after {
    content: "";
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 14px;
    border-bottom: 2px dashed #d99a5b;
    opacity: 0;
    transition: opacity .18s ease;
}

.ca-nav > li:hover > a,
.ca-nav > li.active > a { color: #faf3ea; }

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

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

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

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

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

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

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

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

.ca-dropdown li > a:hover {
    color: #edc49a;
    background: rgba(217, 154, 91, .08);
    border-left-color: #d99a5b;
}

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

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

.ca-dropdown-sub li a:hover { color: #edc49a; }

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

.ca-search { margin: 0; }

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

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

.ca-search input[type="text"]::placeholder { color: #9a7c62; }

.ca-search input[type="text"]:focus {
    border-color: rgba(217, 154, 91, .6);
    background: rgba(217, 154, 91, .12);
}

.ca-search-btn {
    height: 34px;
    padding: 0 14px;
    font-size: 12px;
    color: #2b1d13;
    font-weight: 700;
    background: linear-gradient(135deg, #edc49a, #d99a5b);
    border: none;
    cursor: pointer;
    border-radius: 0 8px 8px 0;
}

.ca-play-btn {
    display: inline-block;
    padding: 8px 22px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #2b1d13;
    background: linear-gradient(135deg, #edc49a, #d99a5b);
    box-shadow: 0 0 18px rgba(217, 154, 91, .35);
    cursor: pointer;
    transition: filter .15s ease;
}

.ca-play-btn:hover { filter: brightness(1.08); color: #2b1d13; }

/* ---------- 通用按钮（缝线包边：dashed 缝线边，hover 变实线加外晕） ---------- */
.ca-btn {
    display: inline-block;
    padding: 12px 34px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-align: center;
    cursor: pointer;
    border-radius: 8px;
    transition: border-color .25s ease, box-shadow .25s ease, filter .15s ease, color .15s ease, background .25s ease;
}

.ca-btn-main {
    color: #2b1d13;
    background: linear-gradient(135deg, #edc49a, #d99a5b 70%);
    border: 1px dashed #a8703a;
    box-shadow: 0 6px 22px rgba(217, 154, 91, .28);
}

.ca-btn-main:hover {
    border-style: solid;
    filter: brightness(1.06);
    box-shadow: 0 8px 30px rgba(217, 154, 91, .45), 0 0 0 3px rgba(217, 154, 91, .14);
    color: #2b1d13;
}

.ca-btn-ghost {
    color: #edc49a;
    background: rgba(217, 154, 91, .05);
    border: 1px dashed rgba(217, 154, 91, .6);
}

.ca-btn-ghost:hover {
    color: #faf3ea;
    border-style: solid;
    border-color: rgba(217, 154, 91, .9);
    background: rgba(217, 154, 91, .14);
    box-shadow: 0 0 0 3px rgba(217, 154, 91, .12);
}

/* ---------- HERO：复古霓虹招牌构图 ---------- */
.ca-hero {
    position: relative;
    overflow: hidden;
    padding: 84px 0 0;
    background: linear-gradient(180deg, #1a110b 0%, #241811 100%);
    text-align: center;
}

/* 底部暖光晕（壁炉光） */
.ca-hero::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 66px;
    width: 620px;
    height: 220px;
    transform: translateX(-50%);
    background: radial-gradient(ellipse, rgba(217, 154, 91, .16), transparent 70%);
    pointer-events: none;
}

/* 左右吊线 */
.ca-hanger {
    position: absolute;
    top: 0;
    width: 2px;
    height: 74px;
    background: linear-gradient(180deg, rgba(217, 154, 91, 0), rgba(217, 154, 91, .55));
}

.ca-hanger.hl { left: calc(50% - 250px); }
.ca-hanger.hr { right: calc(50% - 250px); }

.ca-hero-in { position: relative; padding-bottom: 60px; }

/* 招牌牌匾：外实线 + 内细线双层描边 */
.ca-sign {
    position: relative;
    display: inline-block;
    padding: 38px 54px 42px;
    border: 1px solid rgba(217, 154, 91, .65);
    box-shadow: inset 0 0 0 4px #241811, inset 0 0 0 5px rgba(217, 154, 91, .4);
    background: linear-gradient(180deg, rgba(217, 154, 91, .07), rgba(217, 154, 91, .02));
}

.ca-hero-kicker {
    display: inline-block;
    margin-bottom: 18px;
    padding: 6px 18px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #edc49a;
    border: 1px dashed rgba(217, 154, 91, .5);
    border-radius: 6px;
    background: rgba(217, 154, 91, .06);
}

.ca-hero-title {
    margin: 0 0 12px;
    font-size: 44px;
    font-weight: 900;
    letter-spacing: 4px;
    color: #faf3ea;
    text-shadow: 0 0 34px rgba(217, 154, 91, .4);
}

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

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

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

/* 吧台刻度数据条 */
.ca-counter {
    position: relative;
    background: linear-gradient(180deg, #2b1d13, #241811);
    border-top: 1px solid rgba(217, 154, 91, .3);
    border-bottom: 1px solid rgba(217, 154, 91, .3);
}

/* 顶部尺子刻度线 */
.ca-counter::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 6px;
    height: 6px;
    background: repeating-linear-gradient(90deg, rgba(217, 154, 91, .5) 0 2px, transparent 2px 26px);
}

.ca-counter-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 16px;
}

.ca-counter-item {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    padding: 8px 34px;
    font-size: 13px;
    color: #c4a488;
}

.ca-counter-item b { font-size: 24px; font-weight: 900; color: #d99a5b; }

.ca-counter-item i { font-style: normal; font-size: 12px; color: #edc49a; }

/* ---------- 章节头：双缝线标题（上下 dashed 缝线 + 左端铜扣） ---------- */
.ca-sec { padding: 68px 0 60px; }

.ca-sec-dark { background: linear-gradient(180deg, #241811, #1a110b); }

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

.ca-sec-title {
    position: relative;
    margin: 0;
    padding: 8px 4px;
    font-size: 23px;
    font-weight: 900;
    letter-spacing: 3px;
    color: #faf3ea;
    white-space: nowrap;
    border-top: 1px dashed rgba(217, 154, 91, .55);
    border-bottom: 1px dashed rgba(217, 154, 91, .55);
}

/* 左端铜扣 */
.ca-sec-title::before {
    content: "";
    position: absolute;
    left: -16px;
    top: 50%;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    background: linear-gradient(135deg, #edc49a, #a8703a);
    border-radius: 2px;
}

.ca-sec-line {
    position: relative;
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(217, 154, 91, .45), rgba(217, 154, 91, .03));
}

/* 线尾铜环 */
.ca-sec-line::after {
    content: "";
    position: absolute;
    right: 0;
    top: -4px;
    width: 9px;
    height: 9px;
    border: 2px solid rgba(217, 154, 91, .55);
    border-radius: 50%;
}

/* ---------- 关于我们：缝线要点文案 + 铜钉皮框大图 ---------- */
.ca-about {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 46px;
    align-items: center;
}

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

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

.ca-about-lead strong { color: #edc49a; }

/* 缝线要点行 */
.ca-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 26px;
}

.ca-point {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(217, 154, 91, .05);
    border: 1px dashed rgba(217, 154, 91, .35);
    border-radius: 10px;
    transition: border-color .2s ease, background .2s ease;
}

.ca-point:hover { border-color: rgba(217, 154, 91, .7); background: rgba(217, 154, 91, .09); }

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

.ca-point span { font-size: 13px; color: #9a7c62; }

/* 铜钉皮框大图 */
.ca-about-fig { position: relative; }

.ca-frame {
    position: relative;
    padding: 12px;
    background: linear-gradient(180deg, #2b1d13, #241811);
    border: 1px solid rgba(217, 154, 91, .35);
    box-shadow: inset 0 0 0 1px rgba(217, 154, 91, .15), 0 14px 36px rgba(0, 0, 0, .45);
}

.ca-frame mip-img img {
    width: 100%;
    height: 360px !important;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

/* 四角铜钉 */
.ca-nail {
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #f5ddc0, #a8703a 75%);
    box-shadow: 0 1px 3px rgba(0, 0, 0, .6);
}

.ca-nail.tl { left: 4px; top: 4px; }
.ca-nail.tr { right: 4px; top: 4px; }
.ca-nail.bl { left: 4px; bottom: 4px; }
.ca-nail.br { right: 4px; bottom: 4px; }

/* ---------- 核心业务：吧台菜单卡（铜牌菜单号，压印下沉 hover） ---------- */
.ca-menu {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ca-dish {
    position: relative;
    padding: 22px 20px 18px;
    background: rgba(217, 154, 91, .05);
    border: 1px solid rgba(217, 154, 91, .22);
    border-radius: 10px;
    transition: transform .28s cubic-bezier(.3, .7, .4, 1), box-shadow .28s ease, background .28s ease, border-color .28s ease;
}

/* 压印下沉：缩小 + inset 阴影（皮具被按压） */
.ca-dish:hover {
    transform: scale(.96);
    box-shadow: inset 0 4px 18px rgba(0, 0, 0, .45), inset 0 0 0 1px rgba(217, 154, 91, .45);
    background: rgba(217, 154, 91, .1);
    border-color: rgba(217, 154, 91, .5);
}

.ca-dish-no {
    display: inline-block;
    margin-bottom: 12px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    color: #2b1d13;
    background: linear-gradient(135deg, #edc49a, #a8703a);
    border-radius: 3px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, .3);
}

.ca-dish b { display: block; margin-bottom: 8px; font-size: 16px; font-weight: 900; color: #faf3ea; }

/* 菜单虚线分隔 */
.ca-dish p {
    margin: 0;
    padding-top: 10px;
    border-top: 1px dashed rgba(217, 154, 91, .3);
    font-size: 13px;
    line-height: 1.75;
    color: #c4a488;
}

/* ---------- 游戏产品：木质货架（横板托底货品卡 2x2） ---------- */
.ca-shelf {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px 26px;
}

.ca-goods {
    position: relative;
    display: block;
    padding-bottom: 20px;
    background: rgba(217, 154, 91, .04);
    border: 1px solid rgba(217, 154, 91, .2);
    border-radius: 12px 12px 6px 6px;
    transition: border-color .25s ease, transform .25s ease;
}

.ca-goods:hover { border-color: rgba(217, 154, 91, .55); transform: translateY(-4px); }

/* 木质横板（托底超出两侧） */
.ca-goods::after {
    content: "";
    position: absolute;
    left: -8px;
    right: -8px;
    bottom: 0;
    height: 12px;
    background: linear-gradient(180deg, #4a3322, #2b1d13);
    border-radius: 3px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, .5);
}

.ca-goods-fig mip-img img {
    width: 100%;
    height: 200px !important;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    transition: filter .3s ease;
}

.ca-goods:hover .ca-goods-fig mip-img img { filter: brightness(1.1); }

.ca-goods-body {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
    padding: 12px 16px 6px;
}

.ca-goods-body b { font-size: 17px; font-weight: 900; color: #faf3ea; }

.ca-goods-body em { font-style: normal; font-size: 12.5px; color: #9a7c62; }

/* ---------- 企业数据：筹码堆叠（横纹筹码堆 + 椭圆顶盖） ---------- */
.ca-chips {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 880px;
    margin: 0 auto;
    align-items: end;
}

.ca-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ca-chip-num {
    margin-bottom: 14px;
    font-size: 30px;
    font-weight: 900;
    color: #d99a5b;
    line-height: 1;
}

.ca-chip-num i { font-style: normal; font-size: 15px; color: #edc49a; }

/* 筹码堆：横纹叠层 */
.ca-chip-stack {
    position: relative;
    width: 96px;
    border-radius: 10px;
    background: repeating-linear-gradient(180deg, rgba(217, 154, 91, .5) 0 16px, rgba(43, 29, 19, .92) 16px 20px);
    box-shadow: inset 0 0 0 1px rgba(217, 154, 91, .4);
}

/* 椭圆顶盖筹码 */
.ca-chip-stack::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -9px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(180deg, #edc49a, #d99a5b);
    box-shadow: 0 2px 6px rgba(0, 0, 0, .4);
}

.ca-chip-stack.s1 { height: 84px; }
.ca-chip-stack.s2 { height: 112px; }
.ca-chip-stack.s3 { height: 142px; }
.ca-chip-stack.s4 { height: 160px; }

.ca-chip em {
    margin-top: 12px;
    font-style: normal;
    font-size: 13px;
    color: #c4a488;
}

/* ---------- 服务流程：点单小票（conic 锯齿底边 + 虚线分隔） ---------- */
.ca-receipts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px 22px;
}

.ca-receipt {
    position: relative;
    padding: 22px 18px 20px;
    background: #faf3ea;
    color: #241811;
    border-radius: 4px 4px 0 0;
    box-shadow: 0 10px 26px rgba(0, 0, 0, .4);
    transition: transform .25s ease, box-shadow .25s ease;
}

.ca-receipt:hover { transform: translateY(-5px); box-shadow: 0 16px 34px rgba(0, 0, 0, .5); }

/* 锯齿底边（conic 下指三角齿列） */
.ca-receipt::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -7px;
    height: 7px;
    background: conic-gradient(from 135deg at 50% 0%, #faf3ea 90deg, transparent 90.5deg);
    background-size: 14px 7px;
    background-repeat: repeat-x;
}

.ca-r-no {
    display: block;
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
    color: #a8703a;
}

.ca-receipt b { display: block; margin-bottom: 6px; font-size: 15px; font-weight: 900; color: #241811; }

.ca-receipt p {
    margin: 0;
    padding-top: 8px;
    border-top: 1px dashed rgba(168, 112, 58, .4);
    font-size: 12.5px;
    line-height: 1.7;
    color: #5d4837;
}

/* ---------- 资质荣誉：烫金证书（顶部烫金线 + 红铜圆章） ---------- */
.ca-certs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 22px;
}

.ca-cert {
    position: relative;
    padding: 14px 12px 10px;
    text-align: center;
    background: rgba(217, 154, 91, .05);
    border: 1px solid rgba(217, 154, 91, .2);
    border-radius: 8px;
    transition: border-color .25s ease, transform .25s ease;
}

.ca-cert:hover { border-color: rgba(217, 154, 91, .6); transform: translateY(-4px); }

/* 顶部烫金线 */
.ca-cert-top {
    display: block;
    height: 3px;
    margin-bottom: 10px;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent, #edc49a, #d99a5b, #edc49a, transparent);
}

.ca-cert-fig mip-img img {
    width: 100%;
    height: 140px !important;
    object-fit: cover;
    border-radius: 5px;
    background: rgba(26, 17, 11, .5);
}

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

/* 右下红铜圆章 */
.ca-cert::after {
    content: "";
    position: absolute;
    right: 12px;
    bottom: 34px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid rgba(217, 154, 91, .55);
    background: radial-gradient(circle, rgba(217, 154, 91, .25), transparent 70%);
    opacity: .85;
}

/* ---------- APP 客户端：缝线特性腰封 + 斜靠相框卡 ---------- */
.ca-app {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 46px;
    align-items: center;
}

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

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

.ca-feature {
    padding: 14px 16px;
    background: rgba(217, 154, 91, .05);
    border: 1px dashed rgba(217, 154, 91, .35);
    border-radius: 10px;
    transition: border-color .2s ease, background .2s ease;
}

.ca-feature:hover { border-color: rgba(217, 154, 91, .7); background: rgba(217, 154, 91, .09); }

.ca-feature b { display: block; margin-bottom: 4px; font-size: 14.5px; color: #faf3ea; }

.ca-feature span { font-size: 12.5px; color: #9a7c62; }

/* 斜靠相框卡（hover 摆正） */
.ca-app-fig {
    position: relative;
    transform: rotate(-2deg);
    transition: transform .35s ease;
}

.ca-app-fig:hover { transform: rotate(0deg); }

.ca-app-fig mip-img img {
    width: 100%;
    height: 380px !important;
    object-fit: cover;
    border-radius: 12px;
    border: 6px solid #2b1d13;
    box-shadow: 0 18px 44px rgba(0, 0, 0, .5);
}

/* ---------- 合作伙伴：黄铜牌匾（铜木外框 + 浅色内芯） ---------- */
.ca-plaques {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
}

.ca-plaque {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 134px;
    height: 90px;
    padding: 7px;
    box-sizing: border-box;
    background: linear-gradient(160deg, #4a3322, #2b1d13 55%, #241811);
    border: 1px solid rgba(217, 154, 91, .5);
    box-shadow: inset 0 0 0 1px rgba(217, 154, 91, .2), 0 6px 16px rgba(0, 0, 0, .4);
    border-radius: 8px;
    transition: transform .25s ease, box-shadow .25s ease;
}

.ca-plaque:hover {
    transform: translateY(-4px);
    box-shadow: inset 0 0 0 1px rgba(217, 154, 91, .5), 0 12px 26px rgba(217, 154, 91, .22);
}

.ca-plaque mip-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
    background: #faf3ea;
    border-radius: 4px;
}

/* ---------- 最新动态：软木公告板（图钉纸条行） ---------- */
.ca-board {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
    background:
        repeating-linear-gradient(90deg, rgba(217, 154, 91, .06) 0 3px, transparent 3px 7px),
        linear-gradient(180deg, #2b1d13, #241811);
    border: 1px solid rgba(217, 154, 91, .25);
    border-radius: 14px;
}

.ca-post {
    position: relative;
    display: grid;
    grid-template-columns: 64px 1fr 30px;
    align-items: center;
    gap: 12px;
    padding: 11px 16px 11px 32px;
    background: #faf3ea;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .35);
    transform: rotate(-.4deg);
    transition: transform .2s ease, box-shadow .2s ease;
}

.ca-post:nth-child(even) { transform: rotate(.5deg); }

.ca-post:hover { transform: rotate(0deg) translateX(4px); box-shadow: 0 6px 16px rgba(0, 0, 0, .45); }

/* 图钉 */
.ca-post-pin {
    position: absolute;
    left: 11px;
    top: 50%;
    width: 10px;
    height: 10px;
    margin-top: -5px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #f5ddc0, #a8703a 75%);
    box-shadow: 0 2px 4px rgba(0, 0, 0, .5);
}

.ca-post-date {
    text-align: center;
    padding: 5px 4px;
    font-size: 12px;
    font-weight: 900;
    color: #a8703a;
    background: rgba(217, 154, 91, .18);
    border-radius: 4px;
}

.ca-post-title {
    font-size: 14px;
    color: #241811;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color .15s ease;
}

.ca-post:hover .ca-post-title { color: #a8703a; }

.ca-post-arrow {
    font-size: 16px;
    font-weight: 900;
    color: #9a7c62;
    text-align: right;
    transition: color .2s ease, transform .2s ease;
}

.ca-post:hover .ca-post-arrow { color: #d99a5b; transform: translateX(3px); }

.ca-posts-more { margin-top: 26px; text-align: center; }

/* ---------- 合作 CTA：暖光壁炉带（底部光晕 + 缝线边框） ---------- */
.ca-cta {
    position: relative;
    overflow: hidden;
    padding: 66px 30px;
    text-align: center;
    background:
        radial-gradient(ellipse at 50% 120%, rgba(217, 154, 91, .2), transparent 60%),
        linear-gradient(180deg, #241811, #1a110b);
    border: 1px dashed rgba(217, 154, 91, .5);
    border-radius: 16px;
}

.ca-cta h2 {
    position: relative;
    margin: 0 0 12px;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 3px;
    color: #faf3ea;
    text-shadow: 0 0 30px rgba(217, 154, 91, .4);
}

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

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

/* ---------- 首页功能速览：底部抽屉滑出弹层（铜把手） ---------- */
.ca-drawer-mask {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background: rgba(26, 17, 11, .86);
}

.ca-drawer-panel {
    width: min(640px, 94vw);
    background: linear-gradient(180deg, #2b1d13, #241811);
    border: 1px solid rgba(217, 154, 91, .45);
    border-bottom: none;
    border-radius: 18px 18px 0 0;
    box-shadow: 0 -18px 60px rgba(0, 0, 0, .6);
    transform: translateY(100%);
    animation: caDrawerUp .5s cubic-bezier(.2, .8, .3, 1) forwards;
    overflow: hidden;
}

/* 自底部滑出 */
@keyframes caDrawerUp {
    to { transform: translateY(0); }
}

/* 顶部铜把手 */
.ca-drawer-handle {
    display: block;
    width: 74px;
    height: 5px;
    margin: 12px auto 0;
    border-radius: 3px;
    background: linear-gradient(90deg, #a8703a, #edc49a, #a8703a);
}

/* 抽屉推入后内容淡入 */
.ca-drawer-body {
    padding: 6px 22px 20px;
    opacity: 0;
    transform: translateY(16px);
    animation: caDrawerIn .3s ease .38s forwards;
}

@keyframes caDrawerIn {
    to { opacity: 1; transform: translateY(0); }
}

.ca-drawer-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 2px 12px;
    border-bottom: 1px dashed rgba(217, 154, 91, .3);
}

.dw-title { font-size: 17px; font-weight: 900; color: #faf3ea; }

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

.dw-close {
    margin-left: auto;
    width: 34px;
    height: 34px;
    line-height: 32px;
    text-align: center;
    font-size: 22px;
    color: #c4a488;
    border: 1px dashed rgba(217, 154, 91, .4);
    border-radius: 8px;
    transition: all .15s ease;
}

.dw-close:hover { color: #2b1d13; background: #d99a5b; border-style: solid; border-color: #d99a5b; }

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

.dw-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 14px 6px;
    background: rgba(217, 154, 91, .04);
    border: 1px dashed rgba(217, 154, 91, .3);
    border-radius: 10px;
    transition: all .15s ease;
}

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

.dw-item span { font-size: 12px; color: #e3cbb0; }

.dw-item:hover { border-style: solid; border-color: rgba(217, 154, 91, .65); background: rgba(217, 154, 91, .1); }

.dw-item:hover span { color: #edc49a; }

.ca-drawer-foot { padding: 12px 2px 18px; }

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

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

/* ---------- footer ---------- */
.ca-footer {
    margin-top: 40px;
    padding: 34px 0 22px;
    border-top: 1px solid rgba(217, 154, 91, .16);
    background: linear-gradient(180deg, #241811, #1a110b);
}

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

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

.ca-foot-co .co-intro p { margin: 0; color: #9a7c62; font-size: 13px; }

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

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

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

.ca-friend li { color: #5d4837; font-size: 12px; }

.ca-friend li.friend-label { color: #7a604a; }

.ca-friend a { color: #7a604a; font-size: 12px; }
.ca-friend a:hover { color: #d99a5b; }

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

.ca-copy a { color: #5d4837; }
.ca-copy a:hover { color: #d99a5b; }

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

@media (max-width: 991px) {
    .ca-header-inner { flex-wrap: wrap; min-height: 56px; }
    .ca-logo { line-height: 56px; }
    .ca-nav { order: 3; flex: 1 1 100%; overflow-x: auto; scrollbar-width: none; }
    .ca-nav > li > a { padding: 0 10px; font-size: 13px; line-height: 44px; }
    .ca-nav > li > a::after { display: none; }
    .ca-nav > li.active > a { color: #d99a5b; }
    .ca-dropdown { position: fixed; left: 12px; right: 12px; top: 110px; max-height: 56vh; overflow-y: auto; }
    .ca-dropdown-cols { width: auto; grid-template-columns: 1fr 1fr; }
    .mipcms-main { padding-top: 109px !important; }
    .ca-hero { padding: 44px 0 0; }
    .ca-hero-title { font-size: 31px; }
    .ca-hero-slogan { font-size: 14px; letter-spacing: 5px; }
    .ca-sign { padding: 26px 30px 30px; }
    .ca-hanger { height: 48px; }
    .ca-hanger.hl { left: calc(50% - 150px); }
    .ca-hanger.hr { right: calc(50% - 150px); }
    .ca-hero-in { padding-bottom: 40px; }
    .ca-counter-item { padding: 8px 20px; }
    .ca-sec { padding: 52px 0 46px; }
    .ca-sec-title { font-size: 18px; }
    .ca-about { grid-template-columns: 1fr; gap: 30px; }
    .ca-frame mip-img img { height: 280px !important; }
    .ca-menu { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .ca-shelf { grid-template-columns: 1fr; gap: 30px; }
    .ca-chips { grid-template-columns: repeat(2, 1fr); gap: 28px 34px; }
    .ca-receipts { grid-template-columns: repeat(2, 1fr); }
    .ca-certs { grid-template-columns: repeat(2, 1fr); }
    .ca-app { grid-template-columns: 1fr; gap: 30px; }
    .ca-app-fig { order: -1; }
    .ca-app-fig mip-img img { height: 300px !important; }
    .ca-board { padding: 18px; }
    .ca-cta { padding: 40px 26px; }
    .ca-cta h2 { font-size: 24px; }
}

@media (max-width: 575px) {
    .ca-logo .logo-word { font-size: 17px; }
    .ca-hero { padding: 34px 0 0; }
    .ca-hero-kicker { font-size: 11px; letter-spacing: 4px; }
    .ca-hero-title { font-size: 26px; }
    .ca-hero-slogan { font-size: 13px; letter-spacing: 4px; }
    .ca-hero-btns { flex-direction: column; gap: 14px; }
    .ca-hero-btns .ca-btn { width: 100%; box-sizing: border-box; }
    .ca-sign { padding: 20px 18px 24px; }
    .ca-hanger { display: none; }
    .ca-counter-item { padding: 6px 14px; font-size: 12px; }
    .ca-counter-item b { font-size: 19px; }
    .ca-sec { padding: 44px 0 40px; }
    .ca-sec-head { gap: 10px; margin-bottom: 26px; }
    .ca-sec-title { font-size: 16px; letter-spacing: 2px; padding: 7px 2px; }
    .ca-about { gap: 24px; }
    .ca-frame mip-img img { height: 210px !important; }
    .ca-menu { grid-template-columns: 1fr; }
    .ca-goods-fig mip-img img { height: 180px !important; }
    .ca-chips { grid-template-columns: repeat(2, 1fr); gap: 24px 18px; }
    .ca-chip-stack { width: 80px; }
    .ca-chip-stack.s1 { height: 70px; }
    .ca-chip-stack.s2 { height: 94px; }
    .ca-chip-stack.s3 { height: 118px; }
    .ca-chip-stack.s4 { height: 134px; }
    .ca-chip-num { font-size: 24px; }
    .ca-receipts { grid-template-columns: 1fr; gap: 22px; }
    .ca-certs { grid-template-columns: repeat(2, 1fr); gap: 20px 14px; }
    .ca-cert-fig mip-img img { height: 100px !important; }
    .ca-app-fig mip-img img { height: 250px !important; }
    .ca-plaques { gap: 14px; }
    .ca-plaque { width: 112px; height: 78px; }
    .ca-post { grid-template-columns: 58px 1fr; }
    .ca-post-arrow { display: none; }
    .ca-post-title { font-size: 13.5px; }
    .ca-cta { padding: 36px 18px; }
    .ca-cta h2 { font-size: 21px; }
    .ca-cta-btns { flex-direction: column; gap: 16px; }
    .ca-cta-btns .ca-btn { width: 100%; box-sizing: border-box; }
    /* 抽屉弹层：小屏条目 2 列 */
    .ca-drawer-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: #9a7c62; }
.ty-crumb a:hover { color: #d99a5b; }

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

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

.ty-box {
    margin-bottom: 22px;
    border: 1px solid rgba(217, 154, 91, .14);
    background: rgba(43, 29, 19), .55);
}

.ty-box-head {
    padding: 12px 18px;
    border-bottom: 1px solid rgba(217, 154, 91, .14);
}

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

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

.ty-list-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px dashed rgba(217, 154, 91, .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(217, 154, 91, .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: #faf3ea; }
.ty-list-item h4 a:hover { color: #d99a5b; }

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

.ty-list-item .item-meta { margin: 0; color: #7a604a; 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(217, 154, 91, .1);
}

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

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

.ty-side-list .rank {
    flex: 0 0 22px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    border: 1px solid rgba(217, 154, 91, .3);
    color: #d99a5b;
    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: #d99a5b;
    color: #241811;
}

.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(217, 154, 91, .22);
    color: #c4a488;
    font-size: 13px;
    background: rgba(217, 154, 91, .03);
}

.ty-tags-cloud li a:hover {
    color: #241811;
    background: #d99a5b;
    border-color: #d99a5b;
    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: #c4a488 !important;
    background: rgba(43, 29, 19), .8) !important;
    border: 1px solid rgba(217, 154, 91, .2) !important;
}

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

.ty-img-card {
    display: block;
    position: relative;
    margin-bottom: 18px;
    border: 1px solid rgba(217, 154, 91, .15);
    background: rgba(43, 29, 19), .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: #faf3ea;
    font-size: 14px;
    border-top: 1px solid rgba(217, 154, 91, .12);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ---------- 详情页 ---------- */
.ty-detail-title { margin: 0 0 12px; font-size: 26px; font-weight: 900; color: #faf3ea; 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(217, 154, 91, .16);
    color: #9a7c62;
    font-size: 13px;
}

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

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

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

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

.ty-updown .updown-item a {
    display: block;
    color: #c4a488;
    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(217, 154, 91, .16);
}

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

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

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

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

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

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

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

.mipcms-detail-body mip-img img { border: 1px solid rgba(217, 154, 91, .12); }
