/* ============================================================
   ty-014 电竞体育游戏企业模板
   配色体系：樱花粉单色系（#ff8fb8 主 / #e8639c 深 / #ffb3d1 亮）
   结构：柔波飘带 HERO（三层椭圆飘带 + 中央文案 + 底部数据胶囊）
        圆点组标题（渐小三圆点 + 标题 + 渐隐延伸线）
        左文案 + 右圆角大图浮动徽章关于
        2x3 砖块交错业务 / 全宽横幅行卡游戏
        花瓣圆环计数数据 / 上升阶梯流程
        3x3 圆角相框证书 / 胶囊特性 APP
        重叠头像链伙伴 / 竖日期块行列表动态
        柔光聚 CTA / 四角聚拢弹层
        卡片 hover 配方：柔雾晕开（径向雾团自中心放大晕染）
        按钮语言：叶形不对称圆角（hover 叶片流转）
   ============================================================ */

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

a { color: #ffb3d1; text-decoration: none; transition: color .15s ease, text-shadow .15s ease; }
a:hover { color: #ff8fb8; text-decoration: none; text-shadow: 0 0 12px rgba(255, 143, 184, .5); }

img { max-width: 100%; }

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

/* ---------- 顶部导航 ---------- */
.sa-header {
    background: linear-gradient(180deg, rgba(42, 19, 29, .98), rgba(28, 12, 19, .92));
    border-bottom: 1px solid rgba(255, 143, 184, .22);
    box-shadow: 0 4px 26px rgba(0, 0, 0, .6);
}

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

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

/* 花芯圆徽章（双层圆 + 花芯点） */
.sa-logo .logo-badge {
    display: inline-block;
    width: 26px;
    height: 26px;
    margin-right: 14px;
    background: linear-gradient(135deg, #ffb3d1, #ff8fb8 60%, #e8639c);
    box-shadow: 0 0 18px rgba(255, 143, 184, .45);
    position: relative;
    top: 8px;
    border-radius: 50%;
}

.sa-logo .logo-badge::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 8px;
    height: 8px;
    margin: -4px 0 0 -4px;
    border-radius: 50%;
    background: #fff0f5;
    box-shadow: 0 0 0 3px rgba(255, 240, 245, .28);
}

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

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

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

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

/* 圆点指示：当前/悬停时圆点自中心浮现 */
.sa-nav > li > a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 14px;
    width: 6px;
    height: 6px;
    margin-left: -3px;
    border-radius: 50%;
    background: #ff8fb8;
    box-shadow: 0 0 10px rgba(255, 143, 184, .7);
    transform: scale(0);
    transition: transform .18s ease;
}

.sa-nav > li:hover > a,
.sa-nav > li.active > a { color: #fff0f5; }

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

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

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

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

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

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

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

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

.sa-dropdown li > a:hover {
    color: #ffb3d1;
    background: rgba(255, 143, 184, .08);
    border-left-color: #ff8fb8;
}

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

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

.sa-dropdown-sub li a:hover { color: #ffb3d1; }

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

.sa-search { margin: 0; }

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

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

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

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

.sa-search-btn {
    height: 34px;
    padding: 0 14px;
    font-size: 12px;
    color: #3a1420;
    font-weight: 700;
    background: linear-gradient(135deg, #ffb3d1, #ff8fb8);
    border: none;
    cursor: pointer;
    border-radius: 0 999px 999px 0;
}

.sa-play-btn {
    display: inline-block;
    padding: 8px 22px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #3a1420;
    background: linear-gradient(135deg, #ffb3d1, #ff8fb8 62%);
    box-shadow: 0 0 18px rgba(255, 143, 184, .4);
    border-radius: 999px;
    cursor: pointer;
    transition: filter .15s ease;
}

.sa-play-btn:hover { filter: brightness(1.12); color: #3a1420; }

/* ---------- 通用按钮（叶形不对称圆角：左上右下大圆角，hover 叶片流转） ---------- */
.sa-btn {
    display: inline-block;
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-align: center;
    cursor: pointer;
    border-radius: 28px 8px 28px 8px;
    transition: border-radius .35s ease, filter .15s ease, background .15s ease, color .15s ease, box-shadow .15s ease;
}

.sa-btn:hover { border-radius: 8px 28px 8px 28px; }

.sa-btn-main {
    color: #3a1420;
    background: linear-gradient(135deg, #ffb3d1, #ff8fb8 55%, #e8639c);
    box-shadow: 0 6px 22px rgba(255, 143, 184, .35);
}

.sa-btn-main:hover {
    filter: brightness(1.06);
    box-shadow: 0 8px 30px rgba(255, 143, 184, .5);
    color: #3a1420;
}

.sa-btn-ghost {
    color: #ffb3d1;
    background: rgba(255, 143, 184, .06);
    border: 1px solid rgba(255, 143, 184, .45);
}

.sa-btn-ghost:hover {
    color: #fff0f5;
    background: rgba(255, 143, 184, .16);
    border-color: rgba(255, 143, 184, .8);
}

/* ---------- HERO：柔波飘带构图 ---------- */
.sa-hero {
    position: relative;
    overflow: hidden;
    padding: 96px 0 0;
    background: linear-gradient(180deg, #1c0c13 0%, #241018 100%);
    text-align: center;
}

/* 三层椭圆柔波飘带：错位分布 + 缓慢漂移 */
.sa-ribbon {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.sa-ribbon.r1 {
    width: 560px;
    height: 300px;
    left: -180px;
    top: 46px;
    background: radial-gradient(ellipse at center, rgba(255, 143, 184, .18), rgba(255, 143, 184, .05) 60%, transparent 75%);
    transform: rotate(-14deg);
    animation: saRibDrift1 9s ease-in-out infinite alternate;
}

.sa-ribbon.r2 {
    width: 640px;
    height: 340px;
    right: -220px;
    top: 96px;
    background: radial-gradient(ellipse at center, rgba(255, 179, 209, .15), rgba(255, 179, 209, .04) 60%, transparent 75%);
    transform: rotate(12deg);
    animation: saRibDrift2 11s ease-in-out infinite alternate;
}

.sa-ribbon.r3 {
    width: 780px;
    height: 300px;
    left: 50%;
    bottom: -130px;
    margin-left: -390px;
    background: radial-gradient(ellipse at center, rgba(255, 217, 232, .12), rgba(255, 217, 232, .03) 60%, transparent 75%);
    transform: rotate(-4deg);
    animation: saRibDrift3 13s ease-in-out infinite alternate;
}

@keyframes saRibDrift1 {
    from { transform: translateY(0) rotate(-14deg); }
    to { transform: translateY(-20px) rotate(-10deg); }
}

@keyframes saRibDrift2 {
    from { transform: translateY(-14px) rotate(12deg); }
    to { transform: translateY(8px) rotate(15deg); }
}

@keyframes saRibDrift3 {
    from { transform: translateY(0) rotate(-4deg); }
    to { transform: translateY(-16px) rotate(-7deg); }
}

.sa-hero-in { position: relative; padding-bottom: 56px; }

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

.sa-hero-title {
    margin: 0 0 12px;
    font-size: 44px;
    font-weight: 900;
    letter-spacing: 4px;
    color: #fff0f5;
    text-shadow: 0 0 34px rgba(255, 143, 184, .35);
}

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

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

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

/* 底部数据胶囊带 */
.sa-hero-data {
    position: relative;
    padding: 20px 0 24px;
    background: rgba(28, 12, 19, .55);
    border-top: 1px solid rgba(255, 143, 184, .14);
    border-bottom: 1px solid rgba(255, 143, 184, .14);
}

.sa-data-row {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.sa-pill {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    padding: 8px 20px;
    font-size: 13px;
    color: #e0b8c9;
    background: rgba(255, 143, 184, .07);
    border: 1px solid rgba(255, 143, 184, .22);
    border-radius: 999px;
}

.sa-pill b { font-size: 20px; font-weight: 900; color: #ff8fb8; }

.sa-pill i { font-style: normal; font-size: 12px; color: #e8639c; }

/* ---------- 章节头：圆点组标题 ---------- */
.sa-sec { padding: 68px 0 60px; }

.sa-sec-dark { background: linear-gradient(180deg, #241018, #1c0c13); }

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

/* 渐小三圆点组：主色 → 亮色 → 淡色 */
.sa-dots {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
}

.sa-dots .d1 {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff8fb8;
    box-shadow: 0 0 10px rgba(255, 143, 184, .6);
}

.sa-dots .d2 {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #ffb3d1;
}

.sa-dots .d3 {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffd9e8;
}

.sa-sec-title {
    margin: 0;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 3px;
    color: #fff0f5;
    white-space: nowrap;
}

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

.sa-sec-line::after {
    content: "";
    position: absolute;
    left: 0;
    top: -2px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #ff8fb8;
}

/* ---------- 关于我们：左文案 + 右圆角大图浮动徽章 ---------- */
.sa-about {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 46px;
    align-items: center;
}

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

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

.sa-about-lead strong { color: #ffb3d1; }

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

.sa-fact {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 143, 184, .05);
    border: 1px solid rgba(255, 143, 184, .14);
    border-left: 3px solid #ff8fb8;
    border-radius: 0 14px 14px 0;
}

.sa-fact b { font-size: 14px; color: #ffb3d1; white-space: nowrap; }

.sa-fact span { font-size: 13px; color: #a87a92; }

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

.sa-about-fig::before {
    content: "";
    position: absolute;
    inset: 14px -14px -14px 14px;
    border: 1px solid rgba(255, 143, 184, .28);
    border-radius: 24px;
    pointer-events: none;
}

.sa-about-fig mip-img img {
    width: 100%;
    height: 360px !important;
    object-fit: cover;
    border-radius: 24px;
    position: relative;
}

/* 左下浮动徽章（叶形圆角呼应按钮语言） */
.sa-fig-badge {
    position: absolute;
    left: -16px;
    bottom: 28px;
    padding: 14px 22px;
    text-align: center;
    background: linear-gradient(135deg, #ff8fb8, #e8639c);
    border-radius: 20px 4px 20px 4px;
    box-shadow: 0 12px 30px rgba(232, 99, 156, .35);
}

.sa-fig-badge b {
    display: block;
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
    color: #fff0f5;
}

.sa-fig-badge i { font-style: normal; font-size: 13px; color: #ffd9e8; }

.sa-fig-badge span {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    letter-spacing: 1px;
    color: #ffd9e8;
}

/* ---------- 核心业务：2x3 砖块交错 + 柔雾晕开 hover ---------- */
.sa-bricks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.sa-brick {
    position: relative;
    overflow: hidden;
    padding: 24px 22px 20px;
    background: rgba(255, 143, 184, .04);
    border: 1px solid rgba(255, 143, 184, .16);
    border-radius: 16px;
    transition: border-color .3s ease;
}

/* 偶数列整体下移：砖块交错 */
.sa-brick.even { margin-top: 26px; }

/* 柔雾晕开：径向雾团自中心放大晕染 */
.sa-brick::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 130%;
    height: 130%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 143, 184, .18), transparent 60%);
    opacity: 0;
    transform: translate(-50%, -50%) scale(.35);
    transition: opacity .5s ease, transform .6s ease;
    pointer-events: none;
}

.sa-brick:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.sa-brick:hover { border-color: rgba(255, 143, 184, .45); }

.bk-no {
    display: inline-block;
    margin-bottom: 12px;
    font-style: normal;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #e8639c;
}

.sa-brick b {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: #fff0f5;
}

.sa-brick p {
    margin: 0;
    font-size: 13px;
    line-height: 1.75;
    color: #a87a92;
}

/* ---------- 游戏产品：全宽横幅行卡 ---------- */
.sa-banners {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.sa-banner {
    display: grid;
    grid-template-columns: 300px 1fr 64px;
    align-items: center;
    gap: 26px;
    padding: 18px;
    background: rgba(255, 143, 184, .04);
    border: 1px solid rgba(255, 143, 184, .16);
    border-radius: 22px;
    transition: border-color .3s ease, background .3s ease, transform .3s ease;
}

.sa-banner:hover {
    border-color: rgba(255, 143, 184, .45);
    background: rgba(255, 143, 184, .08);
    transform: translateX(8px);
}

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

.bn-body {
    display: flex;
    align-items: baseline;
    gap: 14px;
    min-width: 0;
}

.bn-body i {
    font-style: normal;
    font-size: 34px;
    font-weight: 900;
    color: rgba(255, 143, 184, .35);
    line-height: 1;
}

.bn-body b { font-size: 21px; font-weight: 900; color: #fff0f5; white-space: nowrap; }

.bn-body em { font-style: normal; font-size: 13px; color: #a87a92; margin-left: auto; }

.bn-arrow {
    font-size: 22px;
    font-weight: 700;
    color: #ff8fb8;
    text-align: center;
    transition: transform .3s ease;
}

.sa-banner:hover .bn-arrow { transform: translateX(6px); }

/* ---------- 企业数据：花瓣圆环计数 2x2 ---------- */
.sa-blossoms {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 70px;
    justify-items: center;
    max-width: 640px;
    margin: 0 auto;
}

.sa-blossom { text-align: center; }

.bl-ring {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 118px;
    height: 118px;
    margin-bottom: 12px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 143, 184, .16), rgba(255, 143, 184, .03) 72%);
}

/* 外圈虚线花环缓慢旋转 */
.bl-ring::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px dashed rgba(255, 143, 184, .5);
    animation: saRingSpin 26s linear infinite;
}

.bl-ring::after {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    border: 1px solid rgba(255, 143, 184, .26);
}

@keyframes saRingSpin { to { transform: rotate(360deg); } }

.bl-ring b { font-size: 28px; font-weight: 900; color: #ff8fb8; }

.bl-ring i { font-style: normal; font-size: 14px; color: #ffb3d1; }

.sa-blossom em { font-style: normal; font-size: 13px; color: #c998ae; }

/* ---------- 服务流程：上升阶梯（步骤卡逐级右移上升） ---------- */
.sa-stairs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    align-items: end;
}

.sa-stair {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 20px 18px;
    background: linear-gradient(180deg, rgba(255, 143, 184, .08), rgba(255, 143, 184, .02));
    border: 1px solid rgba(255, 143, 184, .16);
    border-radius: 18px 18px 6px 6px;
    transition: transform .3s ease, border-color .3s ease;
}

/* 逐级上升：越靠右越高 */
.sa-stair:nth-child(1) { margin-top: 72px; }
.sa-stair:nth-child(2) { margin-top: 48px; }
.sa-stair:nth-child(3) { margin-top: 24px; }
.sa-stair:nth-child(4) { margin-top: 0; }

.sa-stair:hover { transform: translateY(-8px); border-color: rgba(255, 143, 184, .45); }

.st-no {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    font-style: normal;
    font-size: 15px;
    font-weight: 900;
    color: #3a1420;
    background: linear-gradient(135deg, #ffb3d1, #ff8fb8);
    border-radius: 14px 4px 14px 4px;
}

.sa-stair b { display: block; margin-bottom: 6px; font-size: 15px; color: #fff0f5; }

.sa-stair p { margin: 0; font-size: 12.5px; line-height: 1.7; color: #a87a92; }

/* ---------- 资质荣誉：3x3 圆角相框 ---------- */
.sa-frame-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 22px;
    padding-bottom: 14px;
}

.sa-frame {
    position: relative;
    padding: 10px;
    background: rgba(255, 143, 184, .05);
    border: 1px solid rgba(255, 143, 184, .22);
    border-radius: 20px;
    transition: transform .3s ease, border-color .3s ease;
}

.sa-frame:hover { transform: translateY(-6px); border-color: rgba(255, 143, 184, .5); }

.fr-in {
    border-radius: 14px;
    overflow: hidden;
    background: #201019;
}

.fr-in mip-img img {
    width: 100%;
    height: 150px !important;
    object-fit: cover;
}

/* 底部圆角标签压框边 */
.fr-tag {
    position: absolute;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
    padding: 4px 16px;
    font-style: normal;
    font-size: 12px;
    font-weight: 700;
    color: #3a1420;
    background: linear-gradient(135deg, #ffb3d1, #ff8fb8);
    border-radius: 999px;
    white-space: nowrap;
}

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

.sa-caps {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.sc-cap {
    display: inline-block;
    padding: 7px 18px;
    font-size: 13px;
    font-weight: 700;
    color: #ffb3d1;
    background: rgba(255, 143, 184, .07);
    border: 1px solid rgba(255, 143, 184, .3);
    border-radius: 999px;
    transition: all .15s ease;
}

.sc-cap:hover { color: #fff0f5; background: rgba(255, 143, 184, .18); }

.sa-app-text {
    margin: 0 0 24px;
    font-size: 13.5px;
    line-height: 1.85;
    color: #c998ae;
}

.sa-app-list .sa-btn { margin-top: 4px; }

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

/* ---------- 合作伙伴：重叠头像链 ---------- */
.sa-chain {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.sa-chain-fig {
    position: relative;
    width: 88px;
    height: 88px;
    margin-left: -20px;
    border-radius: 50%;
    background: #241018;
    border: 2px solid rgba(255, 143, 184, .3);
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .25s ease, border-color .25s ease;
}

.sa-chain-fig:first-child { margin-left: 0; }

.sa-chain-fig:hover {
    transform: translateY(-12px);
    border-color: #ff8fb8;
    z-index: 3;
}

.sa-chain-fig mip-img img {
    width: 60px !important;
    height: 60px !important;
    object-fit: contain;
}

/* ---------- 最新动态：竖日期块行列表 ---------- */
.sa-news {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sa-news-row {
    display: grid;
    grid-template-columns: 76px 1fr 40px;
    align-items: center;
    gap: 18px;
    padding: 14px 18px;
    background: rgba(255, 143, 184, .04);
    border: 1px solid rgba(255, 143, 184, .14);
    border-radius: 16px;
    transition: border-color .25s ease, background .25s ease;
}

.sa-news-row:hover {
    border-color: rgba(255, 143, 184, .4);
    background: rgba(255, 143, 184, .08);
}

.sa-date-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 58px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 143, 184, .2), rgba(255, 143, 184, .06));
    border: 1px solid rgba(255, 143, 184, .25);
}

.sa-date-block b { font-size: 21px; font-weight: 900; color: #ff8fb8; line-height: 1.1; }

.sa-date-block i { font-style: normal; font-size: 10.5px; letter-spacing: 1px; color: #c998ae; }

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

.sa-news-row:hover .sa-news-title { color: #fff0f5; }

.sa-news-arrow {
    font-size: 18px;
    color: #a87a92;
    text-align: right;
    transition: color .25s ease, transform .25s ease;
}

.sa-news-row:hover .sa-news-arrow { color: #ff8fb8; transform: translateX(4px); }

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

/* ---------- 合作 CTA：柔光聚光 ---------- */
.sa-cta {
    position: relative;
    overflow: hidden;
    padding: 66px 30px;
    text-align: center;
    background: linear-gradient(180deg, #241018, #1c0c13);
    border: 1px solid rgba(255, 143, 184, .24);
    border-radius: 26px;
}

/* 双层柔光呼吸晕 */
.cta-halo {
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 50%;
    pointer-events: none;
}

.cta-halo.h1 {
    width: 430px;
    height: 430px;
    margin: -215px 0 0 -215px;
    background: radial-gradient(circle, rgba(255, 143, 184, .16), transparent 68%);
    animation: saHaloBreath 6s ease-in-out infinite;
}

.cta-halo.h2 {
    width: 260px;
    height: 260px;
    margin: -130px 0 0 -130px;
    background: radial-gradient(circle, rgba(255, 217, 232, .14), transparent 70%);
    animation: saHaloBreath 6s ease-in-out infinite reverse;
}

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

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

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

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

/* ---------- 首页功能速览：四角聚拢弹层 ---------- */
.sa-corner-mask {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(28, 12, 19, .86);
}

.sa-panel {
    position: relative;
    width: min(600px, 92vw);
    padding: 0 22px;
    background: rgba(36, 16, 24, .96);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .6);
}

/* 四角 L 形板自四角平移飞入，聚拢组成相框边 */
.sa-fl {
    position: absolute;
    width: 50.5%;
    height: 50.5%;
    pointer-events: none;
}

.sa-fl.c-tl {
    left: 0;
    top: 0;
    border-top: 1px solid rgba(255, 143, 184, .6);
    border-left: 1px solid rgba(255, 143, 184, .6);
    border-radius: 20px 0 0 0;
    background: linear-gradient(135deg, rgba(255, 143, 184, .1), rgba(255, 143, 184, .02) 60%);
    animation: saFlyTl .42s cubic-bezier(.2, .8, .3, 1) both;
}

.sa-fl.c-tr {
    right: 0;
    top: 0;
    border-top: 1px solid rgba(255, 143, 184, .6);
    border-right: 1px solid rgba(255, 143, 184, .6);
    border-radius: 0 20px 0 0;
    background: linear-gradient(225deg, rgba(255, 143, 184, .1), rgba(255, 143, 184, .02) 60%);
    animation: saFlyTr .42s cubic-bezier(.2, .8, .3, 1) both;
}

.sa-fl.c-bl {
    left: 0;
    bottom: 0;
    border-bottom: 1px solid rgba(255, 143, 184, .6);
    border-left: 1px solid rgba(255, 143, 184, .6);
    border-radius: 0 0 0 20px;
    background: linear-gradient(45deg, rgba(255, 143, 184, .1), rgba(255, 143, 184, .02) 60%);
    animation: saFlyBl .42s cubic-bezier(.2, .8, .3, 1) both;
}

.sa-fl.c-br {
    right: 0;
    bottom: 0;
    border-bottom: 1px solid rgba(255, 143, 184, .6);
    border-right: 1px solid rgba(255, 143, 184, .6);
    border-radius: 0 0 20px 0;
    background: linear-gradient(315deg, rgba(255, 143, 184, .1), rgba(255, 143, 184, .02) 60%);
    animation: saFlyBr .42s cubic-bezier(.2, .8, .3, 1) both;
}

@keyframes saFlyTl { from { transform: translate(-70%, -70%); opacity: 0; } to { transform: translate(0, 0); opacity: 1; } }
@keyframes saFlyTr { from { transform: translate(70%, -70%); opacity: 0; } to { transform: translate(0, 0); opacity: 1; } }
@keyframes saFlyBl { from { transform: translate(-70%, 70%); opacity: 0; } to { transform: translate(0, 0); opacity: 1; } }
@keyframes saFlyBr { from { transform: translate(70%, 70%); opacity: 0; } to { transform: translate(0, 0); opacity: 1; } }

/* 角板聚拢后内容浮现 */
.sa-panel-head,
.sa-panel-items,
.sa-panel-foot {
    opacity: 0;
    animation: saCornerIn .35s ease .38s forwards;
}

@keyframes saCornerIn { to { opacity: 1; } }

.sa-panel-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 2px 12px;
    border-bottom: 1px solid rgba(255, 143, 184, .18);
}

.sp-title { font-size: 17px; font-weight: 900; color: #fff0f5; }

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

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

.sp-close:hover { color: #fff0f5; background: #ff8fb8; border-color: #ff8fb8; }

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

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

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

.sp-item span { font-size: 12px; color: #e0b8c9; }

.sp-item:hover { border-color: rgba(255, 143, 184, .5); background: rgba(255, 143, 184, .1); }

.sp-item:hover span { color: #ffb3d1; }

.sa-panel-foot { padding: 12px 2px 20px; }

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

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

/* ---------- footer ---------- */
.sa-footer {
    margin-top: 40px;
    padding: 34px 0 22px;
    border-top: 1px solid rgba(255, 143, 184, .16);
    background: linear-gradient(180deg, #241018, #1c0c13);
}

.sa-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, 143, 184, .12);
    flex-wrap: wrap;
}

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

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

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

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

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

.sa-friend li { color: #5f4354; font-size: 12px; }

.sa-friend li.friend-label { color: #825c72; }

.sa-friend a { color: #825c72; font-size: 12px; }
.sa-friend a:hover { color: #ff8fb8; }

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

.sa-copy a { color: #5f4354; }
.sa-copy a:hover { color: #ff8fb8; }

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

@media (max-width: 991px) {
    .sa-header-inner { flex-wrap: wrap; min-height: 56px; }
    .sa-logo { line-height: 56px; }
    .sa-nav { order: 3; flex: 1 1 100%; overflow-x: auto; scrollbar-width: none; }
    .sa-nav > li > a { padding: 0 10px; font-size: 13px; line-height: 44px; }
    .sa-nav > li > a::after { display: none; }
    .sa-nav > li.active > a { color: #ff8fb8; }
    .sa-dropdown { position: fixed; left: 12px; right: 12px; top: 110px; max-height: 56vh; overflow-y: auto; }
    .sa-dropdown-cols { width: auto; grid-template-columns: 1fr 1fr; }
    .mipcms-main { padding-top: 109px !important; }
    .sa-hero { padding: 44px 0 0; }
    .sa-hero-title { font-size: 31px; }
    .sa-hero-slogan { font-size: 14px; letter-spacing: 5px; }
    .sa-hero-in { padding-bottom: 40px; }
    .sa-ribbon.r1 { width: 340px; height: 190px; left: -120px; }
    .sa-ribbon.r2 { width: 380px; height: 210px; right: -140px; }
    .sa-ribbon.r3 { width: 460px; height: 180px; margin-left: -230px; }
    .sa-sec { padding: 52px 0 46px; }
    .sa-sec-title { font-size: 18px; }
    .sa-about { grid-template-columns: 1fr; gap: 30px; }
    .sa-about-fig mip-img img { height: 280px !important; }
    .sa-fig-badge { left: 10px; }
    .sa-bricks { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .sa-brick.even { margin-top: 0; }
    .sa-banner { grid-template-columns: 1fr; gap: 12px; padding: 14px; }
    .bn-fig mip-img img { height: 190px !important; }
    .bn-body { flex-wrap: wrap; gap: 8px 12px; }
    .bn-body em { margin-left: 0; width: 100%; }
    .bn-arrow { display: none; }
    .sa-blossoms { gap: 26px 30px; }
    .sa-stairs { grid-template-columns: 1fr; }
    .sa-stair:nth-child(1), .sa-stair:nth-child(2), .sa-stair:nth-child(3) { margin-top: 0; }
    .sa-frame-grid { grid-template-columns: repeat(2, 1fr); }
    .sa-app { grid-template-columns: 1fr; gap: 30px; }
    .sa-app-fig { order: -1; }
    .sa-app-fig mip-img img { height: 300px !important; }
    .sa-chain { gap: 10px; }
    .sa-chain-fig { margin-left: -12px; }
    .sa-cta { padding: 40px 26px; }
    .sa-cta h2 { font-size: 24px; }
}

@media (max-width: 575px) {
    .sa-logo .logo-word { font-size: 17px; }
    .sa-hero { padding: 34px 0 0; }
    .sa-hero-kicker { font-size: 11px; letter-spacing: 4px; }
    .sa-hero-title { font-size: 26px; }
    .sa-hero-slogan { font-size: 13px; letter-spacing: 4px; }
    .sa-hero-btns { flex-direction: column; gap: 14px; }
    .sa-hero-btns .sa-btn { width: 100%; box-sizing: border-box; }
    .sa-ribbon.r1, .sa-ribbon.r2 { display: none; }
    .sa-ribbon.r3 { width: 320px; height: 140px; margin-left: -160px; }
    .sa-data-row { gap: 8px; }
    .sa-pill { padding: 6px 14px; font-size: 12px; }
    .sa-pill b { font-size: 17px; }
    .sa-sec { padding: 44px 0 40px; }
    .sa-sec-head { gap: 10px; margin-bottom: 26px; }
    .sa-sec-title { font-size: 16px; letter-spacing: 2px; }
    .sa-about { gap: 24px; }
    .sa-about-fig::before { inset: 8px -8px -8px 8px; }
    .sa-about-fig mip-img img { height: 210px !important; }
    .sa-fig-badge { padding: 10px 16px; }
    .sa-fig-badge b { font-size: 24px; }
    .sa-bricks { grid-template-columns: 1fr; }
    .sa-brick { padding: 18px 16px; }
    .sa-blossoms { grid-template-columns: 1fr; gap: 24px; }
    .bl-ring { width: 100px; height: 100px; }
    .bl-ring b { font-size: 24px; }
    .sa-stair { padding: 16px 14px; }
    .sa-frame-grid { grid-template-columns: repeat(2, 1fr); gap: 26px 12px; }
    .fr-in mip-img img { height: 105px !important; }
    .sa-app-fig mip-img img { height: 250px !important; }
    .sa-chain-fig { width: 72px; height: 72px; margin-left: -14px; }
    .sa-chain-fig mip-img img { width: 48px !important; height: 48px !important; }
    .sa-news-row { grid-template-columns: 64px 1fr; }
    .sa-news-arrow { display: none; }
    .sa-news-title { font-size: 13.5px; }
    .sa-cta { padding: 36px 18px; }
    .sa-cta h2 { font-size: 21px; }
    .sa-cta-btns { flex-direction: column; gap: 16px; }
    .sa-cta-btns .sa-btn { width: 100%; box-sizing: border-box; }
    /* 四角聚拢弹层：小屏条目 2 列 */
    .sa-panel-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: #a87a92; }
.ty-crumb a:hover { color: #ff8fb8; }

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

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

.ty-box {
    margin-bottom: 22px;
    border: 1px solid rgba(255, 143, 184, .14);
    background: rgba(42, 19, 29), .55);
}

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

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

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

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

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

.ty-list-item .item-meta { margin: 0; color: #825c72; 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, 143, 184, .1);
}

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

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

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

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

.ty-tags-cloud li a:hover {
    color: #2a131d;
    background: #ff8fb8;
    border-color: #ff8fb8;
    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: #c998ae !important;
    background: rgba(42, 19, 29), .8) !important;
    border: 1px solid rgba(255, 143, 184, .2) !important;
}

.ty-pagination li.active a,
.ty-pagination li.active span {
    color: #2a131d !important;
    background: #ff8fb8 !important;
    border-color: #ff8fb8 !important;
}

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

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

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

.ty-detail-tags a:hover { color: #2a131d; background: #ff8fb8; text-shadow: none; }

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

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

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

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

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

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

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

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

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

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

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