/* ============================================================
   ty-020 电竞体育游戏企业模板
   配色体系：葡萄紫单色系（#bf5af2 主 / #8e35c9 深 / #ddaaff 亮）
   结构：霓虹舞台 HERO（灯架横梁 + 斜射灯束 + 频谱数据带）
        频谱翼标题（标题两侧锯齿频谱条块）
        推子要点文案 + 挂绳工牌相框关于
        音箱塔业务卡（高音单元 + 低音同心圆，推子滑移 hover）
        LED 大屏游戏（粗边屏框 + 像素点阵 + 底部灯条）
        频谱柱阵数据（跳动频谱条 + 大数字）
        演出节目单流程（编号圆 + 虚线引导线 + 阶段标签）
        聚光展位资质（顶部射灯光锥）
        频谱弹头特性 + 头戴耳机框 APP（拱形头梁 + 两侧耳罩）
        撕角票券伙伴（切角票体 + 打孔虚线存根）
        巡演行程动态（大日期块 + LIVE 呼吸点）
        荧光棒海 CTA / 大幕拉开弹层（左右褶皱幕布对开 + 檐幕）
        卡片 hover 配方：推子滑移（左沿竖滑轨 + 旋钮下滑 + 卡片抬升）
        按钮语言：灯排巡闪（顶沿灯泡点排，hover 硬切闪烁）
   ============================================================ */

/* ---------- 基础 ---------- */
body {
    font-family: "Microsoft YaHei", "PingFang SC", Tahoma, Helvetica, sans-serif;
    background-color: #0e0515;
    background-image:
        radial-gradient(ellipse at 50% -14%, rgba(191, 90, 242, .1), transparent 55%),
        linear-gradient(180deg, #0e0515 0%, #150a22 100%);
    background-attachment: fixed;
    color: #f7edfd;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
}

a { color: #ddaaff; text-decoration: none; transition: color .15s ease, text-shadow .15s ease; }
a:hover { color: #bf5af2; text-decoration: none; text-shadow: 0 0 12px rgba(191, 90, 242, .5); }

img { max-width: 100%; }

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

/* ---------- 顶部导航 ---------- */
.np-header {
    background: linear-gradient(180deg, rgba(23, 9, 33, .98), rgba(14, 5, 21, .92));
    border-bottom: 1px solid rgba(191, 90, 242, .22);
    box-shadow: 0 4px 26px rgba(0, 0, 0, .6);
}

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

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

/* 灯箱徽章（圆角方牌 + 中心灯泡点） */
.np-logo .logo-badge {
    display: inline-block;
    width: 26px;
    height: 26px;
    margin-right: 16px;
    background: linear-gradient(135deg, #ddaaff, #8e35c9);
    box-shadow: 0 0 14px rgba(191, 90, 242, .4);
    border-radius: 7px;
    position: relative;
    top: 8px;
}

.np-logo .logo-badge::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 8px;
    height: 8px;
    margin: -4px 0 0 -4px;
    border-radius: 50%;
    background: #f7edfd;
    box-shadow: 0 0 6px rgba(247, 237, 253, .9);
}

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

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

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

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

/* 灯点排指示：当前/悬停时底部亮起一排三颗小灯 */
.np-nav > li > a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 12px;
    width: 21px;
    height: 5px;
    margin-left: -10.5px;
    background: radial-gradient(circle, #ddaaff 1.6px, transparent 2.2px) 0 0 / 7px 5px repeat-x;
    opacity: 0;
    transition: opacity .2s ease;
}

.np-nav > li:hover > a,
.np-nav > li.active > a { color: #f7edfd; }

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

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

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

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

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

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

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

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

.np-dropdown li > a:hover {
    color: #ddaaff;
    background: rgba(191, 90, 242, .08);
    border-left-color: #bf5af2;
}

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

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

.np-dropdown-sub li a:hover { color: #ddaaff; }

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

.np-search { margin: 0; }

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

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

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

.np-search input[type="text"]:focus {
    border-color: rgba(191, 90, 242, .6);
    background: rgba(191, 90, 242, .12);
}

.np-search-btn {
    height: 34px;
    padding: 0 14px;
    font-size: 12px;
    color: #14051e;
    font-weight: 700;
    background: linear-gradient(135deg, #ddaaff, #bf5af2);
    border: none;
    cursor: pointer;
    border-radius: 0 8px 8px 0;
}

.np-play-btn {
    display: inline-block;
    padding: 8px 22px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #14051e;
    background: linear-gradient(135deg, #ddaaff, #bf5af2);
    box-shadow: 0 0 18px rgba(191, 90, 242, .35);
    cursor: pointer;
    transition: filter .15s ease;
}

.np-play-btn:hover { filter: brightness(1.08); color: #14051e; }

/* ---------- 通用按钮（灯排巡闪：顶沿灯泡点排，hover 硬切闪烁） ---------- */
.np-btn {
    display: inline-block;
    padding: 13px 34px 12px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-align: center;
    cursor: pointer;
    border-radius: 9px;
    transition: box-shadow .25s ease, filter .15s ease, color .15s ease, background .25s ease, border-color .25s ease;
}

.np-btn-main {
    position: relative;
    color: #14051e;
    background: linear-gradient(135deg, #ddaaff, #bf5af2 70%);
    box-shadow: 0 6px 22px rgba(191, 90, 242, .28);
}

/* 顶沿灯泡点排 */
.np-btn-main::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 16px;
    right: 16px;
    height: 4px;
    background: radial-gradient(circle, rgba(247, 237, 253, .95) 1.3px, transparent 1.9px) 0 0 / 9px 4px repeat-x;
    opacity: .75;
    pointer-events: none;
    transition: opacity .2s ease;
}

.np-btn-main:hover {
    filter: brightness(1.06);
    box-shadow: 0 8px 30px rgba(191, 90, 242, .45);
    color: #14051e;
}

/* 巡闪：整排灯泡硬切明暗交替 */
.np-btn-main:hover::before { animation: npBulbs .8s steps(1, end) infinite; }

@keyframes npBulbs {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: .3; }
}

.np-btn-ghost {
    color: #ddaaff;
    background: rgba(191, 90, 242, .05);
    border: 1px solid rgba(191, 90, 242, .55);
}

.np-btn-ghost:hover {
    color: #14051e;
    background: linear-gradient(135deg, #ddaaff, #bf5af2);
    border-color: transparent;
}

/* ---------- HERO 霓虹舞台 ---------- */
.np-hero {
    position: relative;
    overflow: hidden;
    padding: 0 0 0;
    background:
        radial-gradient(ellipse at 50% -10%, rgba(191, 90, 242, .14), transparent 58%),
        linear-gradient(180deg, rgba(21, 10, 34, .5), transparent 52%);
}

/* 灯架横梁：竖杆 + 交叉撑纹 + 底缘亮线 */
.np-truss {
    position: relative;
    height: 26px;
    max-width: 1080px;
    margin: 0 auto;
    background:
        repeating-linear-gradient(90deg, rgba(191, 90, 242, .55) 0 2px, transparent 2px 30px),
        repeating-linear-gradient(115deg, rgba(191, 90, 242, .3) 0 2px, transparent 2px 20px),
        repeating-linear-gradient(65deg, rgba(191, 90, 242, .3) 0 2px, transparent 2px 20px),
        linear-gradient(180deg, rgba(23, 9, 33, .95), rgba(23, 9, 33, .55));
    border-bottom: 2px solid rgba(191, 90, 242, .6);
    box-shadow: 0 8px 22px rgba(0, 0, 0, .4);
}

/* 灯架吊点螺栓 */
.np-hook {
    position: absolute;
    bottom: -8px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 32%, #f3e8fd, #8e35c9 72%);
    box-shadow: 0 0 8px rgba(191, 90, 242, .8);
}

.np-hook.hk1 { left: 19%; }
.np-hook.hk2 { right: 19%; }

/* 斜射灯束：梯形光柱微摆 */
.np-beam {
    position: absolute;
    top: 24px;
    width: 150px;
    height: 460px;
    transform-origin: top center;
    background: linear-gradient(180deg, rgba(221, 170, 255, .3), rgba(191, 90, 242, .05) 72%, transparent);
    clip-path: polygon(34% 0, 66% 0, 100% 100%, 0 100%);
    filter: blur(2px);
    animation: npSway 6s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 1;
}

@keyframes npSway {
    from { opacity: .55; }
    to { opacity: .95; }
}

.np-beam.b1 { left: 4%; transform: rotate(15deg); }
.np-beam.b2 { left: 24%; transform: rotate(6deg); animation-delay: 1.2s; }
.np-beam.b3 { right: 24%; transform: rotate(-6deg); animation-delay: 2.4s; }
.np-beam.b4 { right: 4%; transform: rotate(-15deg); animation-delay: .6s; }

.np-hero-in {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 46px 0 44px;
}

.np-hero-kicker {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 6px;
    color: #ddaaff;
    padding: 5px 18px;
    border: 1px solid rgba(191, 90, 242, .35);
    border-radius: 16px;
    background: rgba(191, 90, 242, .07);
}

.np-hero-title {
    margin: 18px 0 10px;
    font-size: 44px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: 2px;
    color: #f7edfd;
    background: linear-gradient(90deg, #f3e8fd, #bf5af2 55%, #ddaaff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(191, 90, 242, .3);
}

.np-hero-slogan {
    margin: 0 0 14px;
    font-size: 18px;
    letter-spacing: 4px;
    color: #e2c9f5;
}

.np-hero-sub {
    max-width: 560px;
    margin: 0 auto 26px;
    font-size: 14px;
    line-height: 1.9;
    color: #b393cf;
}

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

/* 频谱数据带：每项左侧 5 根跳动频谱条 */
.np-eq {
    position: relative;
    background: linear-gradient(180deg, rgba(26, 11, 38, .88), rgba(14, 5, 21, .96));
    border-top: 1px solid rgba(191, 90, 242, .3);
}

.np-eq-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.np-eq-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 20px 0 16px;
    font-size: 13px;
    color: #b393cf;
    letter-spacing: 1px;
}

.np-eq-bars {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 30px;
    flex-shrink: 0;
}

.np-eq-bars i {
    width: 4px;
    border-radius: 2px;
    background: linear-gradient(180deg, #ddaaff, #8e35c9);
    transform-origin: bottom;
    animation: npBar 1.1s ease-in-out infinite alternate;
}

.np-eq-bars i:nth-child(1) { height: 12px; }
.np-eq-bars i:nth-child(2) { height: 22px; animation-delay: .15s; }
.np-eq-bars i:nth-child(3) { height: 17px; animation-delay: .3s; }
.np-eq-bars i:nth-child(4) { height: 28px; animation-delay: .1s; }
.np-eq-bars i:nth-child(5) { height: 14px; animation-delay: .25s; }

@keyframes npBar {
    from { transform: scaleY(.5); }
    to { transform: scaleY(1); }
}

.np-eq-item b {
    font-size: 25px;
    font-weight: 900;
    color: #bf5af2;
    text-shadow: 0 0 16px rgba(191, 90, 242, .45);
}

.np-eq-item b i {
    font-style: normal;
    font-size: 13px;
    margin-left: 2px;
    color: #ddaaff;
}

/* ---------- 区块通用 ---------- */
.np-sec { padding: 64px 0; }

.np-sec-dark {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(191, 90, 242, .05), transparent 55%),
        linear-gradient(180deg, rgba(18, 7, 33, .75), rgba(14, 5, 21, .92));
    border-top: 1px solid rgba(191, 90, 242, .14);
    border-bottom: 1px solid rgba(191, 90, 242, .14);
}

.np-sec-head { text-align: center; margin-bottom: 44px; }

/* 频谱翼标题：标题两侧锯齿频谱条块（右翼镜像） */
.np-sec-title {
    position: relative;
    display: inline-block;
    padding: 0 76px;
    margin: 0;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 4px;
    color: #f7edfd;
}

.np-sec-title::before,
.np-sec-title::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 48px;
    height: 22px;
    margin-top: -11px;
    background: linear-gradient(180deg, #ddaaff, #8e35c9);
    clip-path: polygon(0 100%, 0 70%, 14% 70%, 14% 35%, 28% 35%, 28% 85%, 42% 85%, 42% 15%, 56% 15%, 56% 60%, 70% 60%, 70% 0, 84% 0, 84% 50%, 100% 50%, 100% 100%);
    opacity: .85;
}

.np-sec-title::before { left: 0; }

.np-sec-title::after { right: 0; transform: scaleX(-1); }

/* ---------- 关于我们 ---------- */
.np-about {
    display: grid;
    grid-template-columns: 1.06fr .94fr;
    gap: 46px;
    align-items: center;
}

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

.np-about-lead {
    margin: 0 0 24px;
    font-size: 15px;
    line-height: 2;
    color: #e2c9f5;
}

.np-about-lead strong { color: #bf5af2; }

.np-list { margin-bottom: 28px; }

/* 推子要点：左侧竖向滑轨 + 不同档位旋钮 */
.np-fader {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 13px 16px;
    margin-bottom: 14px;
    background: rgba(191, 90, 242, .06);
    border: 1px solid rgba(191, 90, 242, .18);
    border-radius: 12px;
}

.np-fader-rail {
    position: relative;
    width: 12px;
    height: 46px;
    flex-shrink: 0;
    border-radius: 6px;
    background: linear-gradient(180deg, rgba(191, 90, 242, .4), rgba(142, 53, 201, .12));
    box-shadow: inset 0 0 0 1px rgba(191, 90, 242, .35);
}

/* 轨道刻度槽 */
.np-fader-rail::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 5px;
    bottom: 5px;
    width: 2px;
    margin-left: -1px;
    background: rgba(23, 9, 33, .8);
}

/* 推子旋钮 */
.np-fader-rail i {
    position: absolute;
    left: 50%;
    width: 24px;
    height: 9px;
    margin-left: -12px;
    border-radius: 3px;
    background: linear-gradient(180deg, #f3e8fd, #bf5af2);
    box-shadow: 0 2px 8px rgba(142, 53, 201, .6);
}

.np-fader.f1 .np-fader-rail i { top: 6px; }
.np-fader.f2 .np-fader-rail i { top: 19px; }
.np-fader.f3 .np-fader-rail i { top: 32px; }

.np-fader-txt b {
    display: block;
    margin-bottom: 3px;
    font-size: 15px;
    color: #f7edfd;
}

.np-fader-txt span { font-size: 13px; color: #8d72a8; }

/* 挂绳工牌相框：V 型挂绳 + 打孔证卡 */
.np-about-fig { text-align: center; }

.np-lanyard {
    position: relative;
    width: 130px;
    height: 36px;
    margin: 0 auto -4px;
    z-index: 2;
}

.np-rope {
    position: absolute;
    top: 0;
    width: 3px;
    height: 36px;
    border-radius: 2px;
    background: linear-gradient(180deg, #8e35c9, #ddaaff);
}

.np-rope.rl { left: 8px; transform: rotate(17deg); transform-origin: top; }
.np-rope.rr { right: 8px; transform: rotate(-17deg); transform-origin: top; }

.np-badge {
    position: relative;
    display: inline-block;
    max-width: 100%;
    padding: 12px;
    background: linear-gradient(180deg, rgba(23, 9, 33, .9), rgba(13, 5, 19, .95));
    border: 1px solid rgba(191, 90, 242, .45);
    border-radius: 14px;
    box-shadow:
        inset 0 0 0 4px rgba(23, 9, 33, .9),
        inset 0 0 0 5px rgba(191, 90, 242, .25),
        0 16px 44px rgba(0, 0, 0, .45);
}

/* 证卡顶部挂孔 */
.np-badge::before {
    content: "";
    position: absolute;
    top: -7px;
    left: 50%;
    margin-left: -6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #170921;
    box-shadow: inset 0 0 0 2px #8e35c9;
}

.np-badge mip-img img {
    border-radius: 8px;
    background: #0e0515;
}

/* ---------- 核心业务：音箱塔卡（推子滑移 hover） ---------- */
.np-stack {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.np-speaker {
    position: relative;
    overflow: hidden;
    padding: 20px 18px 18px 40px;
    background: linear-gradient(180deg, rgba(23, 9, 33, .9), rgba(13, 5, 19, .94));
    border: 1px solid rgba(191, 90, 242, .2);
    border-radius: 14px;
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

/* 编号角标 */
.np-sp-no {
    position: absolute;
    top: 12px;
    right: 14px;
    font-style: normal;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    color: rgba(221, 170, 255, .75);
}

/* 高音单元：小球面 */
.np-tweeter {
    display: block;
    width: 18px;
    height: 18px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 32%, #f3e8fd, #8e35c9 72%);
    box-shadow: 0 0 10px rgba(191, 90, 242, .5);
}

/* 低音单元：多层同心圆 */
.np-woofer {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, rgba(23, 9, 33, .95) 0 33%, rgba(191, 90, 242, .35) 34% 47%, rgba(23, 9, 33, .9) 48% 62%, rgba(191, 90, 242, .55) 63% 74%, rgba(23, 9, 33, .85) 75%);
    border: 2px solid rgba(191, 90, 242, .5);
    box-shadow: 0 0 0 5px rgba(23, 9, 33, .75), 0 0 0 6px rgba(191, 90, 242, .25), 0 8px 22px rgba(0, 0, 0, .4);
}

/* 音盆中心盘：hover 脉冲 */
.np-woofer i {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 36%, #e2c9f5, #8e35c9 75%);
    box-shadow: inset 0 0 0 2px rgba(23, 9, 33, .5);
    transition: transform .2s ease;
}

.np-speaker:hover .np-woofer i { animation: npPump .5s ease-in-out infinite; }

@keyframes npPump {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(.84); }
}

.np-speaker b {
    display: block;
    margin-bottom: 6px;
    text-align: center;
    font-size: 16px;
    color: #f7edfd;
}

.np-speaker p {
    margin: 0;
    text-align: center;
    font-size: 13px;
    line-height: 1.8;
    color: #8d72a8;
}

/* ---------- 全站卡片 hover 配方：推子滑移（左沿竖滑轨 + 旋钮下滑） ---------- */
.np-sl {
    position: absolute;
    left: 12px;
    top: 16px;
    bottom: 16px;
    width: 8px;
    border-radius: 4px;
    background: rgba(23, 9, 33, .8);
    box-shadow: inset 0 0 0 1px rgba(191, 90, 242, .3);
    opacity: .55;
    transition: opacity .25s ease;
    pointer-events: none;
}

.np-sl i {
    position: absolute;
    left: 50%;
    top: 8%;
    width: 16px;
    height: 7px;
    margin-left: -8px;
    border-radius: 2px;
    background: linear-gradient(180deg, #f3e8fd, #bf5af2);
    box-shadow: 0 1px 6px rgba(142, 53, 201, .7);
    transition: top .32s cubic-bezier(.4, .6, .3, 1);
}

.np-speaker:hover .np-sl,
.np-led:hover .np-sl,
.np-spot:hover .np-sl { opacity: 1; }

.np-speaker:hover .np-sl i,
.np-led:hover .np-sl i,
.np-spot:hover .np-sl i { top: 78%; }

.np-speaker:hover {
    transform: translateY(-5px);
    border-color: rgba(191, 90, 242, .55);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .4), 0 0 26px rgba(191, 90, 242, .14);
}

/* ---------- 游戏产品：LED 大屏卡 ---------- */
.np-screens {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.np-led {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 16px;
    background: rgba(23, 9, 33, .85);
    border: 6px solid #1a0b26;
    box-shadow: inset 0 0 0 1px rgba(191, 90, 242, .4), 0 14px 36px rgba(0, 0, 0, .4);
    transition: transform .3s ease, box-shadow .3s ease;
}

.np-led-fig { display: block; position: relative; }

/* 像素点阵 overlay */
.np-led-fig::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(247, 237, 253, .13) 1px, transparent 1.5px) 0 0 / 8px 8px repeat;
    pointer-events: none;
}

.np-led-fig mip-img img { height: 200px !important; }

.np-led-body {
    display: block;
    padding: 13px 16px 11px;
    border-top: 1px solid rgba(191, 90, 242, .22);
}

.np-led-body b {
    display: block;
    margin-bottom: 3px;
    font-size: 17px;
    color: #f7edfd;
}

.np-led-body em {
    font-style: normal;
    font-size: 12.5px;
    letter-spacing: 1px;
    color: #ddaaff;
}

/* 底部灯条（marquee 点排） */
.np-led-dots {
    display: block;
    height: 13px;
    border-top: 1px solid rgba(191, 90, 242, .2);
    background: radial-gradient(circle at 5.5px 6.5px, rgba(221, 170, 255, .75) 1.6px, transparent 2.2px) 0 0 / 11px 13px repeat-x;
}

.np-led:hover {
    transform: translateY(-5px);
    box-shadow: inset 0 0 0 1px rgba(221, 170, 255, .7), 0 18px 40px rgba(0, 0, 0, .45), 0 0 26px rgba(191, 90, 242, .16);
}

/* ---------- 企业数据：频谱柱阵 ---------- */
.np-vus {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.np-vu {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 22px 14px 18px;
    background: rgba(23, 9, 33, .55);
    border: 1px solid rgba(191, 90, 242, .18);
    border-radius: 16px;
}

.np-vu-bars {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 5px;
    height: 46px;
    margin-bottom: 14px;
}

.np-vu-bars i {
    width: 7px;
    border-radius: 3px 3px 0 0;
    background: linear-gradient(180deg, #ddaaff, #8e35c9);
    transform-origin: bottom;
    animation: npBar 1s ease-in-out infinite alternate;
}

.np-vu-bars i:nth-child(1) { height: 16px; }
.np-vu-bars i:nth-child(2) { height: 30px; animation-delay: .18s; }
.np-vu-bars i:nth-child(3) { height: 22px; animation-delay: .36s; }
.np-vu-bars i:nth-child(4) { height: 40px; animation-delay: .09s; }
.np-vu-bars i:nth-child(5) { height: 26px; animation-delay: .27s; }

.np-vu-num {
    display: block;
    margin-bottom: 6px;
    font-size: 26px;
    font-weight: 900;
    color: #bf5af2;
    text-shadow: 0 0 16px rgba(191, 90, 242, .45);
}

.np-vu-num i { font-style: normal; font-size: 13px; margin-left: 2px; color: #ddaaff; }

.np-vu em { font-style: normal; font-size: 13px; color: #8d72a8; }

/* ---------- 服务流程：演出节目单 ---------- */
.np-setlist {
    max-width: 860px;
    margin: 0 auto;
    padding: 8px 22px;
    background: rgba(23, 9, 33, .5);
    border: 1px solid rgba(191, 90, 242, .2);
    border-radius: 16px;
}

.np-track {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 16px;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px dashed rgba(191, 90, 242, .18);
    transition: background .2s ease;
}

.np-track:last-child { border-bottom: none; }

.np-track:hover { background: rgba(191, 90, 242, .05); }

/* 唱片式编号圆 */
.np-track-no {
    width: 46px;
    height: 46px;
    line-height: 44px;
    text-align: center;
    border-radius: 50%;
    font-size: 17px;
    font-weight: 900;
    color: #ddaaff;
    border: 1px solid rgba(191, 90, 242, .5);
    background: radial-gradient(circle at 50% 42%, rgba(191, 90, 242, .22), rgba(23, 9, 33, .6));
    box-shadow: 0 0 0 4px rgba(23, 9, 33, .6), 0 0 0 5px rgba(191, 90, 242, .22);
    transition: color .2s ease, border-color .2s ease;
}

.np-track:hover .np-track-no { color: #f7edfd; border-color: #ddaaff; }

.np-track-line {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 5px;
}

.np-track-line b {
    font-size: 15.5px;
    color: #f7edfd;
    white-space: nowrap;
}

/* 虚线引导线 */
.np-lead {
    flex: 1;
    height: 0;
    border-top: 2px dotted rgba(191, 90, 242, .4);
}

.np-track-line em {
    font-style: normal;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #170921;
    padding: 3px 10px;
    border-radius: 10px;
    background: linear-gradient(135deg, #ddaaff, #bf5af2);
    white-space: nowrap;
}

.np-track-main p {
    margin: 0;
    font-size: 13px;
    color: #8d72a8;
    line-height: 1.8;
}

/* ---------- 资质荣誉：聚光展位 ---------- */
.np-spots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.np-spot {
    position: relative;
    overflow: hidden;
    padding: 22px 12px 14px;
    text-align: center;
    background: linear-gradient(180deg, rgba(23, 9, 33, .8), rgba(13, 5, 19, .9));
    border: 1px solid rgba(191, 90, 242, .22);
    border-radius: 12px;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

/* 顶部射灯光锥 */
.np-spot-cone {
    position: absolute;
    top: 0;
    left: 50%;
    width: 120%;
    height: 56px;
    margin-left: -60%;
    background: linear-gradient(180deg, rgba(221, 170, 255, .26), rgba(221, 170, 255, .04) 70%, transparent);
    clip-path: polygon(38% 0, 62% 0, 100% 100%, 0 100%);
    pointer-events: none;
    transition: height .25s ease;
}

.np-spot:hover .np-spot-cone {
    height: 74px;
    background: linear-gradient(180deg, rgba(221, 170, 255, .45), rgba(191, 90, 242, .08) 72%, transparent);
}

.np-spot-fig { display: block; }

.np-spot-fig mip-img img { height: 168px !important; background: #f7edfd; border-radius: 6px; }

.np-spot em {
    display: block;
    margin-top: 10px;
    font-style: normal;
    font-size: 13px;
    letter-spacing: 2px;
    color: #8d72a8;
}

.np-spot:hover {
    transform: translateY(-4px);
    border-color: rgba(191, 90, 242, .5);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .4);
}

/* ---------- APP 客户端 ---------- */
.np-app {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 46px;
    align-items: center;
}

.np-app-list { display: flex; flex-direction: column; align-items: flex-start; }

.np-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 26px;
    margin-bottom: 30px;
}

/* 频谱弹头特性：双竖条弹头 */
.np-feature { position: relative; padding: 10px 0 10px 34px; }

.np-feature::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 15px;
    width: 13px;
    height: 14px;
    border-radius: 2px;
    background: linear-gradient(90deg, #bf5af2 0 5px, transparent 5px 8px, #ddaaff 8px 13px);
}

.np-feature b { display: block; margin-bottom: 2px; font-size: 15px; color: #f7edfd; }

.np-feature span { font-size: 13px; color: #8d72a8; }

/* 头戴耳机框：拱形头梁 + 中心顶垫 + 两侧耳罩 */
.np-phones {
    position: relative;
    justify-self: center;
    width: min(320px, 90%);
    padding: 28px 32px 22px;
    box-sizing: border-box;
    background: linear-gradient(180deg, rgba(23, 9, 33, .9), rgba(13, 5, 19, .95));
    border: 2px solid rgba(191, 90, 242, .45);
    border-radius: 130px 130px 22px 22px;
    box-shadow:
        inset 0 0 0 5px rgba(23, 9, 33, .85),
        inset 0 0 0 6px rgba(191, 90, 242, .3),
        0 18px 46px rgba(0, 0, 0, .45);
    transition: transform .3s ease, box-shadow .3s ease;
}

/* 头梁中心顶垫 */
.np-phones::before {
    content: "";
    position: absolute;
    top: -9px;
    left: 50%;
    margin-left: -36px;
    width: 72px;
    height: 15px;
    border-radius: 10px;
    background: linear-gradient(180deg, #8e35c9, #bf5af2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .4);
}

/* 两侧耳罩（双端渐变一体绘制） */
.np-phones::after {
    content: "";
    position: absolute;
    top: 33%;
    left: -14px;
    right: -14px;
    height: 72px;
    border-radius: 12px;
    background: linear-gradient(90deg, #8e35c9 0 18px, transparent 18px calc(100% - 18px), #bf5af2 calc(100% - 18px) 100%);
    box-shadow: 0 4px 14px rgba(0, 0, 0, .35);
    pointer-events: none;
}

.np-phones mip-img img { height: 300px !important; background: #0e0515; border-radius: 14px; }

.np-phones:hover {
    transform: translateY(-4px);
    box-shadow:
        inset 0 0 0 5px rgba(23, 9, 33, .85),
        inset 0 0 0 6px rgba(191, 90, 242, .45),
        0 20px 50px rgba(0, 0, 0, .5),
        0 0 34px rgba(191, 90, 242, .22);
}

/* ---------- 合作伙伴：撕角票券 ---------- */
.np-tickets {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}

.np-ticket {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 92px;
    padding-right: 28px;
    box-sizing: border-box;
    background: linear-gradient(180deg, rgba(23, 9, 33, .85), rgba(13, 5, 19, .95));
    border: 1px solid rgba(191, 90, 242, .35);
    clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
    transition: transform .25s ease, border-color .25s ease;
}

/* 存根打孔虚线 */
.np-ticket::before {
    content: "";
    position: absolute;
    top: 8px;
    bottom: 8px;
    right: 22px;
    border-left: 2px dashed rgba(191, 90, 242, .5);
}

.np-tk-no {
    position: absolute;
    right: 3px;
    top: 50%;
    margin-top: -9px;
    width: 17px;
    font-style: normal;
    font-size: 9px;
    font-weight: 800;
    color: #8d72a8;
    text-align: center;
    letter-spacing: 0;
}

.np-ticket mip-img img { height: 56px !important; background: transparent; }

.np-ticket:hover {
    transform: translateY(-3px) rotate(-1.5deg);
    border-color: rgba(221, 170, 255, .65);
}

/* ---------- 最新动态：巡演行程 ---------- */
.np-tours {
    max-width: 860px;
    margin: 0 auto;
    border: 1px solid rgba(191, 90, 242, .2);
    border-radius: 16px;
    background: rgba(23, 9, 33, .5);
    overflow: hidden;
}

.np-tour {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 13px 20px;
    border-bottom: 1px dashed rgba(191, 90, 242, .2);
    transition: background .2s ease;
}

.np-tour:last-child { border-bottom: none; }

.np-tour:hover { background: rgba(191, 90, 242, .06); }

/* 大日期块 */
.np-tour-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 52px;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(191, 90, 242, .18), rgba(23, 9, 33, .4));
    border: 1px solid rgba(191, 90, 242, .4);
}

.np-tour-date b { font-size: 19px; font-weight: 900; color: #f7edfd; line-height: 1.15; }

.np-tour-date em { font-style: normal; font-size: 10.5px; color: #ddaaff; letter-spacing: 1px; }

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

.np-tour:hover .np-tour-title { color: #ddaaff; }

/* LIVE 呼吸状态点 */
.np-tour-live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #ddaaff;
    padding: 4px 10px;
    border: 1px solid rgba(191, 90, 242, .45);
    border-radius: 12px;
}

.np-tour-live::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #bf5af2;
    box-shadow: 0 0 8px rgba(191, 90, 242, .9);
    animation: npLive 1.6s ease-in-out infinite;
}

@keyframes npLive {
    0%, 100% { opacity: 1; }
    50% { opacity: .35; }
}

.np-tours-more { text-align: center; margin-top: 30px; }

/* ---------- 合作 CTA：荧光棒海 ---------- */
.np-cta {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 56px 22px 52px;
    border-radius: 20px;
    background:
        radial-gradient(ellipse at 50% 130%, rgba(191, 90, 242, .22), transparent 62%),
        linear-gradient(180deg, rgba(23, 9, 33, .7), rgba(13, 5, 19, .92));
    border: 1px solid rgba(191, 90, 242, .3);
}

/* 荧光棒海：底部高低错落发光棒 */
.np-sticks {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 64px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 14px;
    pointer-events: none;
    opacity: .5;
    z-index: 1;
}

.np-sticks i {
    width: 5px;
    border-radius: 3px 3px 0 0;
    background: linear-gradient(180deg, #f3e8fd, #bf5af2 60%, #8e35c9);
    box-shadow: 0 0 10px rgba(191, 90, 242, .55);
    transform-origin: bottom;
    animation: npStick 1.4s ease-in-out infinite alternate;
}

.np-sticks i:nth-child(1) { height: 18px; }
.np-sticks i:nth-child(2) { height: 34px; animation-delay: .2s; }
.np-sticks i:nth-child(3) { height: 26px; animation-delay: .45s; }
.np-sticks i:nth-child(4) { height: 44px; animation-delay: .1s; }
.np-sticks i:nth-child(5) { height: 22px; animation-delay: .6s; }
.np-sticks i:nth-child(6) { height: 38px; animation-delay: .3s; }
.np-sticks i:nth-child(7) { height: 30px; animation-delay: .5s; }
.np-sticks i:nth-child(8) { height: 48px; animation-delay: .15s; }
.np-sticks i:nth-child(9) { height: 20px; animation-delay: .7s; }
.np-sticks i:nth-child(10) { height: 36px; animation-delay: .35s; }
.np-sticks i:nth-child(11) { height: 28px; animation-delay: .55s; }
.np-sticks i:nth-child(12) { height: 42px; animation-delay: .25s; }

@keyframes npStick {
    from { transform: scaleY(.7); opacity: .5; }
    to { transform: scaleY(1); opacity: .9; }
}

.np-cta h2 {
    position: relative;
    z-index: 2;
    margin: 0 0 12px;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 3px;
    color: #f7edfd;
}

.np-cta p { position: relative; z-index: 2; margin: 0 0 26px; font-size: 14px; color: #8d72a8; }

.np-cta-btns {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

/* ---------- 首页弹层：大幕拉开 ---------- */
.np-stage-mask {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    box-sizing: border-box;
    background: rgba(10, 3, 15, .86);
    animation: npMaskIn .25s ease both;
}

@keyframes npMaskIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.np-stage-panel {
    position: relative;
    width: min(92vw, 600px);
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(26, 11, 38, .98), rgba(14, 5, 21, .99));
    border: 1px solid rgba(191, 90, 242, .5);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .6), 0 0 60px rgba(191, 90, 242, .15);
}

/* 顶部檐幕：扇贝波浪底边 */
.np-valance {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 22px;
    z-index: 6;
    background: linear-gradient(180deg, #8e35c9, #6a27a0);
}

.np-valance::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 10px;
    background: radial-gradient(circle at 10px -1px, transparent 8px, #6a27a0 8.5px) 0 0 / 20px 10px repeat-x;
}

/* 左右褶皱幕布（对开拉出） */
.np-curtain {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 51%;
    z-index: 5;
    background: repeating-linear-gradient(90deg, rgba(142, 53, 201, .96) 0 10px, rgba(94, 26, 150, .96) 10px 26px, rgba(120, 38, 190, .96) 26px 34px);
    box-shadow: inset 0 -14px 30px rgba(0, 0, 0, .5);
}

.np-curtain.l {
    left: 0;
    border-right: 3px solid rgba(221, 170, 255, .5);
    animation: npCurtainL .6s cubic-bezier(.55, .06, .35, 1) .25s forwards;
}

.np-curtain.r {
    right: 0;
    border-left: 3px solid rgba(221, 170, 255, .5);
    animation: npCurtainR .6s cubic-bezier(.55, .06, .35, 1) .25s forwards;
}

@keyframes npCurtainL {
    from { transform: translateX(0); }
    to { transform: translateX(-103%); }
}

@keyframes npCurtainR {
    from { transform: translateX(0); }
    to { transform: translateX(103%); }
}

/* 幕后内容延迟浮现 */
.np-stage-body {
    position: relative;
    z-index: 4;
    padding: 44px 34px 26px;
    text-align: center;
    opacity: 0;
    animation: npBodyIn .4s ease .55s forwards;
}

@keyframes npBodyIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.np-stage-head { margin-bottom: 4px; }

.np-stage-head .dw-title {
    display: block;
    font-size: 21px;
    font-weight: 900;
    letter-spacing: 4px;
    color: #f7edfd;
}

.np-stage-head .dw-kicker {
    display: block;
    margin-top: 4px;
    font-size: 11px;
    letter-spacing: 4px;
    color: #6b5483;
}

.np-stage-head .dw-close {
    position: absolute;
    top: 32px;
    right: 30px;
    width: 32px;
    height: 32px;
    line-height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(191, 90, 242, .4);
    color: #ddaaff;
    font-size: 18px;
    transition: background .15s ease, color .15s ease;
}

.np-stage-head .dw-close:hover { background: rgba(191, 90, 242, .18); color: #f7edfd; }

.np-stage-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 9px 12px;
    padding: 14px 0 8px;
}

.np-stage-items .dw-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 10px;
    background: rgba(191, 90, 242, .08);
    border: 1px solid rgba(191, 90, 242, .25);
    border-radius: 10px;
    font-size: 13.5px;
    color: #e2c9f5;
    transition: background .15s ease, border-color .15s ease, color .15s ease;
}

.np-stage-items .dw-item:hover {
    background: rgba(191, 90, 242, .18);
    border-color: rgba(191, 90, 242, .55);
    color: #f7edfd;
}

.np-stage-items .dw-item i {
    font-style: normal;
    font-size: 11px;
    font-weight: 800;
    color: #bf5af2;
}

.np-stage-foot { padding-top: 8px; }

.np-stage-foot .np-btn { padding: 12px 30px 11px; font-size: 13.5px; }

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

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

/* ---------- footer ---------- */
.np-footer {
    padding: 52px 0 26px;
    background: linear-gradient(180deg, rgba(14, 5, 21, .4), rgba(10, 3, 15, .96));
    border-top: 1px solid rgba(191, 90, 242, .16);
}

.np-foot-co {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(191, 90, 242, .14);
}

.np-foot-co .co-name {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 19px;
    font-weight: 900;
    letter-spacing: 1px;
    color: #f7edfd;
    background: linear-gradient(90deg, #f3e8fd, #bf5af2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.np-foot-co .co-name::before {
    content: "";
    display: inline-block;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: linear-gradient(135deg, #ddaaff, #8e35c9);
    box-shadow: 0 0 12px rgba(191, 90, 242, .45);
}

.np-foot-co .co-intro { margin: 12px 0 0; }

.np-foot-co .co-intro p { margin: 0; color: #8d72a8; font-size: 13px; }

.np-foot-co .co-contact {
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
}

.np-foot-co .co-contact li { color: #e2c9f5; font-size: 13px; line-height: 2; }

.np-friend {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 16px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.np-friend li { color: #6b5483; font-size: 12px; }

.np-friend li.friend-label { color: #8d72a8; }

.np-friend a { color: #8d72a8; font-size: 12px; }

.np-friend a:hover { color: #bf5af2; }

.np-copy { margin: 14px 0 0; color: #6b5483; font-size: 12px; }

.np-copy a { color: #6b5483; }

.np-copy a:hover { color: #bf5af2; }

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

/* 平板及以下：第一行 logo+立即游玩，导航整行横向滑动，下拉变全宽面板 */
@media (max-width: 991px) {
    .np-header-inner { flex-wrap: wrap; min-height: 56px; }
    .np-logo { line-height: 56px; }
    .np-nav { order: 3; flex: 1 1 100%; overflow-x: auto; scrollbar-width: none; }
    .np-nav > li > a { padding: 0 10px; font-size: 13px; line-height: 44px; }
    .np-nav > li > a::after { display: none; }
    .np-nav > li.active > a { color: #bf5af2; }
    .np-dropdown { position: fixed; left: 12px; right: 12px; top: 110px; max-height: 56vh; overflow-y: auto; }
    .np-dropdown-cols { width: auto; grid-template-columns: 1fr 1fr; }
    .mipcms-main { padding-top: 109px !important; }
    .np-hero-title { font-size: 34px; }
    .np-eq-row { grid-template-columns: repeat(2, 1fr); }
    .np-about { grid-template-columns: 1fr; gap: 34px; }
    .np-about-fig { max-width: 420px; margin: 0 auto; }
    .np-stack { grid-template-columns: repeat(2, 1fr); }
    .np-screens { grid-template-columns: repeat(2, 1fr); }
    .np-vus { grid-template-columns: repeat(2, 1fr); }
    .np-spots { grid-template-columns: repeat(2, 1fr); }
    .np-app { grid-template-columns: 1fr; gap: 36px; }
    .np-app-list { align-items: center; }
    .np-features { width: 100%; }
    .np-foot-co { grid-template-columns: 1fr; gap: 22px; }
    .np-cta-btns { flex-direction: column; gap: 16px; align-items: stretch; }
    .np-cta-btns .np-btn { width: 100%; box-sizing: border-box; }
    .np-stage-body { padding: 40px 26px 22px; }
    .np-stage-head .dw-close { top: 30px; right: 22px; }
}

@media (max-width: 560px) {
    .np-hero-title { font-size: 26px; letter-spacing: 1px; }
    .np-hero-slogan { font-size: 15px; letter-spacing: 2px; }
    .np-hero-btns .np-btn { width: 100%; box-sizing: border-box; }
    .np-eq-row { grid-template-columns: 1fr 1fr; }
    .np-eq-item { gap: 9px; padding: 14px 0 12px; }
    .np-eq-item b { font-size: 21px; }
    .np-sec { padding: 46px 0; }
    .np-sec-title { font-size: 21px; letter-spacing: 3px; padding: 0 60px; }
    .np-sec-title::before, .np-sec-title::after { width: 38px; }
    .np-stack { grid-template-columns: 1fr; }
    .np-screens { grid-template-columns: 1fr; }
    .np-led-fig mip-img img { height: 180px !important; }
    .np-vus { grid-template-columns: repeat(2, 1fr); }
    .np-vu-bars { height: 38px; }
    .np-setlist { padding: 4px 14px; }
    .np-track { grid-template-columns: 44px 1fr; gap: 12px; padding: 14px 0; }
    .np-track-no { width: 40px; height: 40px; line-height: 38px; font-size: 15px; }
    .np-track-line em { display: none; }
    .np-spots { grid-template-columns: repeat(2, 1fr); gap: 18px 14px; }
    .np-spot-fig mip-img img { height: 100px !important; }
    .np-features { grid-template-columns: 1fr; }
    .np-phones { width: min(300px, 92%); }
    .np-phones mip-img img { height: 250px !important; }
    .np-ticket { width: 112px; height: 78px; }
    .np-ticket mip-img img { height: 46px !important; }
    .np-tour { grid-template-columns: 56px 1fr; grid-template-rows: auto auto; row-gap: 2px; padding: 12px 14px; }
    .np-tour-title { grid-column: 1 / -1; white-space: normal; }
    .np-tour-live { grid-column: 1 / -1; justify-self: start; }
    .np-cta { padding: 40px 16px 38px; }
    .np-cta h2 { font-size: 21px; }
    .np-sticks { gap: 10px; height: 50px; }
    /* 大幕弹层：小屏紧凑排布 */
    .np-stage-body { padding: 34px 20px 18px; }
    .np-stage-head .dw-close { top: 26px; right: 16px; }
    .np-stage-head .dw-title { font-size: 17px; }
    .np-stage-items { gap: 7px 8px; }
    .np-stage-items .dw-item { padding: 7px 6px; font-size: 12px; gap: 5px; }
    .np-stage-items .dw-item i { font-size: 10px; }
    .np-stage-foot .np-btn { padding: 10px 22px 9px; font-size: 12.5px; }
}

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

.ty-crumb a { color: #8d72a8; }
.ty-crumb a:hover { color: #bf5af2; }

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

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

.ty-box {
    margin-bottom: 22px;
    border: 1px solid rgba(191, 90, 242, .14);
    background: rgba(23, 9, 33), .55);
}

.ty-box-head {
    padding: 12px 18px;
    border-bottom: 1px solid rgba(191, 90, 242, .14);
}

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

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

.ty-list-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px dashed rgba(191, 90, 242, .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(191, 90, 242, .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: #f7edfd; }
.ty-list-item h4 a:hover { color: #bf5af2; }

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

.ty-list-item .item-meta { margin: 0; color: #6b5483; 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(191, 90, 242, .1);
}

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

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

.ty-side-list .rank {
    flex: 0 0 22px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    border: 1px solid rgba(191, 90, 242, .3);
    color: #bf5af2;
    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: #bf5af2;
    color: #1a0b26;
}

.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(191, 90, 242, .22);
    color: #b393cf;
    font-size: 13px;
    background: rgba(191, 90, 242, .03);
}

.ty-tags-cloud li a:hover {
    color: #1a0b26;
    background: #bf5af2;
    border-color: #bf5af2;
    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: #b393cf !important;
    background: rgba(23, 9, 33), .8) !important;
    border: 1px solid rgba(191, 90, 242, .2) !important;
}

.ty-pagination li.active a,
.ty-pagination li.active span {
    color: #1a0b26 !important;
    background: #bf5af2 !important;
    border-color: #bf5af2 !important;
}

.ty-img-card {
    display: block;
    position: relative;
    margin-bottom: 18px;
    border: 1px solid rgba(191, 90, 242, .15);
    background: rgba(23, 9, 33), .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: #f7edfd;
    font-size: 14px;
    border-top: 1px solid rgba(191, 90, 242, .12);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ---------- 详情页 ---------- */
.ty-detail-title { margin: 0 0 12px; font-size: 26px; font-weight: 900; color: #f7edfd; 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(191, 90, 242, .16);
    color: #8d72a8;
    font-size: 13px;
}

.ty-detail-tags a {
    margin-right: 8px;
    padding: 2px 10px;
    border: 1px solid rgba(191, 90, 242, .3);
    color: #ddaaff;
    font-size: 12px;
}

.ty-detail-tags a:hover { color: #1a0b26; background: #bf5af2; text-shadow: none; }

.ty-guess-title {
    margin: 30px 0 6px;
    padding-left: 12px;
    border-left: 3px solid #bf5af2;
    color: #f7edfd;
    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(191, 90, 242, .14);
    background: rgba(191, 90, 242, .03);
}

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

.ty-updown .updown-item a {
    display: block;
    color: #b393cf;
    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(191, 90, 242, .16);
}

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

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

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

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

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

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

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

.mipcms-detail-body mip-img img { border: 1px solid rgba(191, 90, 242, .12); }
