
:root{
    --bg:#f5f6fa;
    --card:#ffffff;
    --text:#111827;
    --muted:#7b8495;
    --line:#e9edf3;
    --primary:#6957ff;
    --primary2:#7b67ff;
    --success:#26a269;
    --warning:#ff9f43;
    --danger:#ff5d72;
    --shadow:0 10px 35px rgba(40,48,80,.08);
}

*{box-sizing:border-box}

html,body{
    margin:0;
    padding:0;
    background:var(--bg);
    color:var(--text);
    font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Microsoft YaHei",Arial,sans-serif;
}

body{padding-bottom:74px}

a{text-decoration:none;color:inherit}

img{max-width:100%}

.cp-shell{
    max-width:720px;
    margin:0 auto;
    min-height:100vh;
}


/* ========== 原有页面通用样式 ========== */

.cp-topbar{
    position:sticky;
    top:0;
    z-index:20;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:14px 16px;
    background:rgba(245,246,250,.94);
    backdrop-filter:blur(14px);
    border-bottom:1px solid rgba(233,237,243,.85);
}

.cp-brand{
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:800;
    font-size:18px;
}

.cp-brand-badge{
    width:34px;
    height:34px;
    border-radius:11px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    background:linear-gradient(135deg,var(--primary),#9a8cff);
    box-shadow:0 8px 18px rgba(105,87,255,.25);
}

.cp-top-action{
    font-size:13px;
    color:var(--muted);
}

.cp-main{padding:14px}

.cp-section{margin-top:22px}

.cp-section-head{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    margin-bottom:12px;
}

.cp-section-head h2{
    margin:0;
    font-size:19px;
}

.cp-section-head p{
    margin:3px 0 0;
    color:var(--muted);
    font-size:11px;
}

.cp-more{
    font-size:12px;
    color:var(--primary);
}

.cp-player-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:11px;
}

.cp-player-card{
    overflow:hidden;
    background:var(--card);
    border:1px solid var(--line);
    border-radius:17px;
    box-shadow:var(--shadow);
}

.cp-player-photo{
    position:relative;
    height:170px;
    background:linear-gradient(135deg,#ececf4,#f8f8fb);
}

.cp-player-photo img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.cp-player-photo-empty{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    height:100%;
    color:#a0a7b5;
    font-size:40px;
}

.cp-player-status{
    position:absolute;
    left:9px;
    top:9px;
    padding:4px 7px;
    border-radius:99px;
    font-size:9px;
    color:#fff;
    background:rgba(17,24,39,.68);
}

.cp-player-status.online{
    background:rgba(38,162,105,.92);
}

.cp-player-body{padding:11px}

.cp-player-title{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:6px;
}

.cp-player-title h3{
    margin:0;
    font-size:14px;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}

.cp-rating{
    font-size:10px;
    color:#ff9f43;
}

.cp-player-sub{
    margin-top:5px;
    color:var(--muted);
    font-size:10px;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}

.cp-tags{
    display:flex;
    flex-wrap:wrap;
    gap:5px;
    margin-top:9px;
}

.cp-tag{
    padding:3px 6px;
    border-radius:6px;
    background:#f4f2ff;
    color:#6957df;
    font-size:9px;
}

.cp-price-row{
    display:flex;
    align-items:end;
    justify-content:space-between;
    margin-top:10px;
}

.cp-price{
    color:#ff536b;
    font-weight:800;
    font-size:16px;
}

.cp-price small{
    margin-left:2px;
    font-size:9px;
    font-weight:500;
    color:var(--muted);
}

.cp-order-count{
    font-size:9px;
    color:var(--muted);
}

.cp-page-hero{
    position:relative;
    min-height:220px;
    padding:16px;
    display:flex;
    align-items:flex-end;
    background:#e8e9f1;
}

.cp-page-hero img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.cp-page-hero:after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(180deg,rgba(10,15,30,.06),rgba(10,15,30,.74));
}

.cp-back{
    position:absolute;
    left:14px;
    top:14px;
    z-index:3;
    width:36px;
    height:36px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    color:#fff;
    background:rgba(17,24,39,.38);
    backdrop-filter:blur(8px);
}

.cp-page-hero-content{
    position:relative;
    z-index:2;
    color:#fff;
}

.cp-page-hero-content h1{
    margin:0 0 7px;
    font-size:23px;
}

.cp-page-hero-content p{
    margin:0;
    font-size:12px;
    line-height:1.7;
    color:rgba(255,255,255,.82);
}

.cp-search{
    position:relative;
    margin:14px;
}

.cp-search input{
    width:100%;
    height:44px;
    padding:0 16px 0 42px;
    border:1px solid var(--line);
    outline:none;
    border-radius:14px;
    background:#fff;
    font-size:13px;
}

.cp-search-icon{
    position:absolute;
    left:16px;
    top:12px;
    color:#9ba4b2;
}

.cp-list{
    padding:0 14px 14px;
}

.cp-list .cp-player-card{
    display:grid;
    grid-template-columns:95px 1fr;
    margin-bottom:11px;
}

.cp-list .cp-player-photo{height:112px}

.cp-list .cp-player-body{padding:12px}

.cp-detail-head{
    position:relative;
    height:360px;
    background:#eceef4;
}

.cp-detail-head img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.cp-detail-head:after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(180deg,rgba(5,10,20,.05),rgba(5,10,20,.54));
}

.cp-detail-info{
    position:absolute;
    z-index:2;
    left:16px;
    right:16px;
    bottom:18px;
    color:#fff;
}

.cp-detail-info h1{
    margin:0 0 7px;
    font-size:25px;
}

.cp-detail-info p{
    margin:0;
    font-size:12px;
    color:rgba(255,255,255,.82);
}

.cp-detail-card{
    margin:12px 14px;
    padding:16px;
    background:#fff;
    border:1px solid var(--line);
    border-radius:17px;
    box-shadow:var(--shadow);
}

.cp-detail-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
}

.cp-detail-label{
    font-size:12px;
    color:var(--muted);
}

.cp-detail-value{
    font-size:13px;
    font-weight:700;
    text-align:right;
}

.cp-divider{
    height:1px;
    margin:13px 0;
    background:var(--line);
}

.cp-intro{
    font-size:13px;
    line-height:1.8;
    color:#5d6675;
    white-space:pre-line;
}

.cp-gallery{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:9px;
}

.cp-gallery img{
    width:100%;
    height:180px;
    object-fit:cover;
    border-radius:13px;
    background:#f0f1f5;
}

.cp-audio{
    width:100%;
    margin-top:9px;
}

.cp-bottom-action{
    position:fixed;
    z-index:30;
    left:0;
    right:0;
    bottom:0;
    padding:10px 12px calc(10px + env(safe-area-inset-bottom));
    background:rgba(255,255,255,.96);
    backdrop-filter:blur(14px);
    border-top:1px solid var(--line);
}

.cp-bottom-inner{
    max-width:720px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1fr 1.7fr;
    gap:10px;
}

.cp-btn{
    height:46px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:13px;
    font-size:14px;
    font-weight:700;
}

.cp-btn-light{
    color:#4f5969;
    background:#f3f4f7;
}

.cp-btn-primary{
    color:#fff;
    background:linear-gradient(135deg,var(--primary),#816fff);
    box-shadow:0 10px 22px rgba(105,87,255,.24);
}

.cp-empty-block{
    padding:40px 18px;
    text-align:center;
    color:var(--muted);
}

.cp-bottom-nav{
    position:fixed;
    z-index:30;
    left:0;
    right:0;
    bottom:0;
    border-top:1px solid var(--line);
    background:rgba(255,255,255,.97);
    backdrop-filter:blur(14px);
}

.cp-bottom-nav-inner{
    max-width:720px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    height:62px;
    padding-bottom:env(safe-area-inset-bottom);
}

.cp-nav-item{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:3px;
    color:#99a1af;
    font-size:10px;
}

.cp-nav-item b{
    font-size:17px;
    font-weight:500;
}

.cp-nav-item.active{color:var(--primary)}


/* ========== V2 首页：参考电竞陪玩 App 风格 ========== */

.cp-home-body{
    background:
        radial-gradient(circle at top right,rgba(123,103,255,.13),transparent 28%),
        linear-gradient(180deg,#f4f6ff 0,#f6f7fb 320px,#f5f6fa 100%);
}

.cp-home-shell{
    padding-bottom:84px;
}

.cp-home-top{
    position:sticky;
    z-index:50;
    top:0;
    display:flex;
    align-items:center;
    gap:10px;
    padding:13px 14px 11px;
    background:rgba(244,246,255,.92);
    backdrop-filter:blur(18px);
}

.cp-home-tabs{
    display:flex;
    flex:1;
    gap:22px;
    overflow-x:auto;
    scrollbar-width:none;
}

.cp-home-tabs::-webkit-scrollbar{
    display:none;
}

.cp-home-tabs a{
    position:relative;
    flex:0 0 auto;
    padding:8px 0;
    color:#606b7f;
    font-size:16px;
    font-weight:600;
    white-space:nowrap;
}

.cp-home-tabs a.active{
    color:#131a29;
    font-weight:900;
    font-size:18px;
}

.cp-home-tabs a.active:after{
    content:"";
    position:absolute;
    left:50%;
    bottom:0;
    width:22px;
    height:3px;
    transform:translateX(-50%);
    border-radius:99px;
    background:linear-gradient(90deg,#7056ff,#9b8aff);
}

.cp-home-search{
    flex:0 0 44px;
    width:44px;
    height:44px;
    border:0;
    border-radius:14px;
    color:#725dff;
    font-size:31px;
    background:rgba(255,255,255,.8);
    box-shadow:0 7px 22px rgba(68,77,110,.07);
}

.cp-home-main{
    padding:4px 14px 20px;
}

.cp-banner-row{
    display:grid;
    grid-template-columns:.82fr 1.38fr;
    gap:10px;
}

.cp-banner{
    position:relative;
    min-height:155px;
    overflow:hidden;
    border-radius:18px;
    color:#fff;
    box-shadow:0 12px 28px rgba(73,65,180,.16);
}

.cp-banner-primary{
    background:linear-gradient(135deg,#5247e8 0%,#6e5aff 55%,#967eff 100%);
}

.cp-banner-secondary{
    background:linear-gradient(135deg,#7c50ea 0%,#5f55f4 46%,#a684ff 100%);
}

.cp-banner-text{
    position:relative;
    z-index:3;
    padding:20px 16px;
}

.cp-banner-text h2{
    margin:9px 0 7px;
    font-size:18px;
    line-height:1.25;
}

.cp-banner-text p{
    margin:0;
    max-width:210px;
    color:rgba(255,255,255,.82);
    font-size:10px;
    line-height:1.55;
}

.cp-banner-badge{
    display:inline-flex;
    padding:4px 7px;
    border-radius:6px;
    font-size:9px;
    background:rgba(255,255,255,.17);
}

.cp-banner-badge.light{
    background:rgba(255,255,255,.23);
}

.cp-banner-shape{
    position:absolute;
    border-radius:20px;
    background:rgba(255,255,255,.10);
    transform:rotate(24deg);
}

.cp-banner-shape-a{
    width:86px;
    height:86px;
    right:-22px;
    bottom:-22px;
}

.cp-banner-shape-b{
    width:45px;
    height:45px;
    right:42px;
    top:18px;
}

.cp-banner-qr-fake{
    position:absolute;
    right:14px;
    bottom:14px;
    width:54px;
    height:54px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:9px;
    color:#5d4adc;
    background:#fff;
    font-size:15px;
    font-weight:900;
    letter-spacing:1px;
}

.cp-hot-broadcast{
    display:flex;
    align-items:center;
    gap:10px;
    margin:13px 0 14px;
    padding:12px;
    border-radius:16px;
    color:#fff;
    background:linear-gradient(100deg,#43b7f7 0%,#46c5f4 56%,#5fd6ef 100%);
    box-shadow:0 9px 22px rgba(75,190,237,.18);
}

.cp-hot-label{
    flex:0 0 auto;
    padding:5px 8px;
    border-radius:6px;
    background:rgba(255,255,255,.18);
    font-size:11px;
    font-weight:800;
}

.cp-hot-avatars{
    display:flex;
    margin-left:2px;
}

.cp-hot-avatars img,
.cp-mini-avatar{
    width:38px;
    height:38px;
    margin-left:-8px;
    border:2px solid rgba(255,255,255,.95);
    border-radius:50%;
    object-fit:cover;
    background:#fff;
}

.cp-hot-avatars img:first-child,
.cp-mini-avatar:first-child{
    margin-left:0;
}

.cp-mini-avatar{
    display:flex;
    align-items:center;
    justify-content:center;
    color:#46bde9;
    font-size:11px;
    font-weight:800;
}

.cp-hot-text{
    min-width:0;
    flex:1;
}

.cp-hot-text b{
    display:block;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
    font-size:13px;
}

.cp-hot-text span{
    display:block;
    margin-top:3px;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
    color:rgba(255,255,255,.83);
    font-size:10px;
}

.cp-hot-arrow{
    font-size:26px;
    opacity:.9;
}

.cp-home-dual{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
}

.cp-rank-box{
    min-height:145px;
    padding:14px 12px;
    overflow:hidden;
    border-radius:17px;
    color:#fff;
}

.cp-rank-purple{
    background:linear-gradient(135deg,#9f56f1,#bd6ef7);
}

.cp-rank-blue{
    background:linear-gradient(135deg,#5897fa,#71b3fb);
}

.cp-rank-title{
    display:flex;
    align-items:end;
    justify-content:space-between;
    margin-bottom:13px;
}

.cp-rank-title span{
    font-size:15px;
    font-weight:900;
}

.cp-rank-title small{
    font-size:8px;
    opacity:.74;
}

.cp-rank-users{
    display:flex;
    gap:9px;
}

.cp-rank-user{
    position:relative;
    min-width:0;
    flex:1;
    text-align:center;
}

.cp-rank-user img,
.cp-rank-avatar-empty{
    width:44px;
    height:44px;
    margin:0 auto 6px;
    border-radius:50%;
    object-fit:cover;
    background:rgba(255,255,255,.95);
    border:2px solid rgba(255,255,255,.85);
}

.cp-rank-avatar-empty{
    display:flex;
    align-items:center;
    justify-content:center;
    color:#7566de;
    font-size:11px;
    font-weight:900;
}

.cp-rank-user b{
    display:block;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
    font-size:9px;
    font-weight:600;
}

.cp-rank-crown{
    position:absolute;
    z-index:2;
    top:-6px;
    right:5px;
    width:18px;
    height:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    color:#fff;
    background:#ffca45;
    font-size:8px;
    font-weight:900;
    border:2px solid rgba(255,255,255,.85);
}

.cp-rank-empty{
    display:flex;
    align-items:center;
    justify-content:center;
    flex:1;
    color:rgba(255,255,255,.78);
    font-size:10px;
}

.cp-game-cats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
    margin:22px 10px 18px;
}

.cp-game-cat{
    text-align:center;
    color:#333b49;
    font-size:13px;
}

.cp-game-icon{
    width:68px;
    height:62px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 8px;
    border-radius:20px 20px 8px 8px;
    font-size:31px;
    box-shadow:inset 0 -15px 25px rgba(255,255,255,.7);
}

.cp-game-icon-blue{
    background:linear-gradient(180deg,#82d6ff,#dff5ff);
}

.cp-game-icon-green{
    background:linear-gradient(180deg,#8ee4c8,#e2fff4);
}

.cp-game-icon-pink{
    background:linear-gradient(180deg,#ff9fbe,#ffe7ef);
}

.cp-home-searchbox{
    position:relative;
    margin:6px 0 15px;
}

.cp-home-searchbox span{
    position:absolute;
    z-index:2;
    left:15px;
    top:10px;
    color:#8c96a6;
    font-size:19px;
}

.cp-home-searchbox input{
    width:100%;
    height:43px;
    padding:0 15px 0 42px;
    border:1px solid #e8ebf2;
    outline:none;
    border-radius:14px;
    background:#fff;
    color:#313847;
    font-size:13px;
    box-shadow:0 6px 18px rgba(52,65,100,.04);
}

.cp-club-tabs{
    display:flex;
    gap:22px;
    overflow-x:auto;
    padding:3px 3px 11px;
    scrollbar-width:none;
}

.cp-club-tabs::-webkit-scrollbar{
    display:none;
}

.cp-club-tabs button{
    flex:0 0 auto;
    padding:0;
    border:0;
    background:none;
    color:#a2a7b3;
    font-size:15px;
}

.cp-club-tabs button.active{
    color:#302447;
    font-weight:900;
}

.cp-service-pills{
    display:flex;
    gap:10px;
    overflow-x:auto;
    padding:0 0 12px;
    scrollbar-width:none;
}

.cp-service-pills::-webkit-scrollbar{
    display:none;
}

.cp-service-pills span{
    flex:0 0 auto;
    padding:8px 13px;
    border-radius:13px;
    color:#a1a7b3;
    background:#fff;
    font-size:12px;
    border:1px solid #eef0f4;
}

.cp-service-pills span.active{
    color:#7454f2;
    background:#f2efff;
    border-color:#e6e0ff;
}

.cp-home-clubs{
    display:grid;
    gap:12px;
}

.cp-home-club-card{
    position:relative;
    display:grid;
    grid-template-columns:122px 1fr;
    gap:14px;
    min-height:147px;
    padding:18px 14px 13px;
    overflow:hidden;
    border:1px solid #edf0f5;
    border-radius:18px;
    background:#fff;
    box-shadow:0 9px 28px rgba(43,55,90,.06);
}

.cp-club-ribbon{
    position:absolute;
    z-index:3;
    left:0;
    top:0;
    padding:5px 13px;
    border-radius:0 0 10px 0;
    color:#fff;
    background:linear-gradient(90deg,#f24d54,#ff686b);
    font-size:10px;
}

.cp-home-club-logo{
    display:flex;
    align-items:center;
    justify-content:center;
    padding-top:7px;
}

.cp-home-club-logo img{
    width:110px;
    height:110px;
    border-radius:16px;
    object-fit:cover;
    background:#f2f3f7;
}

.cp-home-club-logo-empty{
    width:110px;
    height:110px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:16px;
    color:#fff;
    background:linear-gradient(135deg,#6a5af4,#8c7cff);
    font-size:34px;
    font-weight:900;
}

.cp-home-club-content{
    min-width:0;
    padding-top:8px;
}

.cp-home-club-title{
    display:flex;
    align-items:center;
    min-width:0;
    gap:7px;
}

.cp-self-tag{
    flex:0 0 auto;
    padding:4px 7px;
    border-radius:6px;
    color:#fff;
    background:linear-gradient(135deg,#b843b7,#d54eca);
    font-size:10px;
    font-weight:800;
}

.cp-home-club-title h3{
    min-width:0;
    flex:1;
    margin:0;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
    font-size:17px;
}

.cp-score{
    flex:0 0 auto;
    padding:4px 6px;
    border:1px solid #ffd8d8;
    border-radius:6px;
    color:#fa646b;
    font-size:10px;
    font-weight:800;
}

.cp-home-club-desc{
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
    margin:10px 0 12px;
    color:#8e96a5;
    font-size:11px;
    line-height:1.65;
}

.cp-home-club-meta{
    display:flex;
    align-items:center;
    gap:14px;
    color:#4c5667;
    font-size:11px;
}

.cp-home-club-meta b{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:21px;
    height:21px;
    margin-right:4px;
    border-radius:50%;
    color:#fff;
    background:#1d2430;
    font-size:9px;
}

.cp-game-dots{
    margin-left:auto;
    font-size:15px;
    letter-spacing:2px;
}

.cp-app-nav{
    position:fixed;
    z-index:100;
    left:0;
    right:0;
    bottom:0;
    background:rgba(255,255,255,.97);
    backdrop-filter:blur(18px);
    border-top:1px solid #e8ebf1;
}

.cp-app-nav-inner{
    position:relative;
    max-width:720px;
    height:68px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(5,1fr);
    padding-bottom:env(safe-area-inset-bottom);
}

.cp-app-nav a{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:3px;
    color:#9aa1ae;
}

.cp-app-nav a span{
    font-size:20px;
}

.cp-app-nav a b{
    font-size:10px;
    font-weight:600;
}

.cp-app-nav a.active{
    color:#765dff;
}

.cp-nav-space{
    pointer-events:none;
}

.cp-floating-order{
    position:fixed;
    z-index:110;
    left:50%;
    bottom:31px;
    width:62px;
    height:62px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    transform:translateX(-50%);
    border:6px solid #f5f6fa;
    border-radius:19px;
    color:#fff;
    background:linear-gradient(135deg,#7157ff,#8c6eff);
    box-shadow:0 10px 25px rgba(103,80,239,.32);
}

.cp-floating-order span{
    margin-top:-3px;
    font-size:29px;
    line-height:25px;
}

.cp-floating-order b{
    font-size:9px;
}


/* 小屏适配 */

@media(max-width:480px){

    .cp-home-main{
        padding-left:10px;
        padding-right:10px;
    }

    .cp-home-tabs{
        gap:18px;
    }

    .cp-banner{
        min-height:145px;
    }

    .cp-banner-text{
        padding:17px 13px;
    }

    .cp-banner-text h2{
        font-size:16px;
    }

    .cp-home-dual{
        gap:8px;
    }

    .cp-rank-box{
        padding:12px 9px;
    }

    .cp-rank-user img,
    .cp-rank-avatar-empty{
        width:39px;
        height:39px;
    }

    .cp-game-cats{
        margin-left:2px;
        margin-right:2px;
    }

    .cp-game-icon{
        width:62px;
        height:57px;
    }

    .cp-home-club-card{
        grid-template-columns:100px 1fr;
        gap:11px;
        min-height:135px;
        padding-left:12px;
        padding-right:11px;
    }

    .cp-home-club-logo img,
    .cp-home-club-logo-empty{
        width:92px;
        height:92px;
    }

    .cp-home-club-title h3{
        font-size:15px;
    }

    .cp-home-club-meta{
        gap:9px;
        font-size:10px;
    }

    .cp-game-dots{
        display:none;
    }

}

@media(max-width:380px){

    .cp-home-tabs a{
        font-size:14px;
    }

    .cp-home-tabs a.active{
        font-size:16px;
    }

    .cp-banner-row{
        grid-template-columns:1fr 1.25fr;
    }

    .cp-banner-text p{
        font-size:9px;
    }

    .cp-player-photo{
        height:150px;
    }

    .cp-detail-head{
        height:330px;
    }

}


/* ===== V3 可交互页面 / 下单系统 ===== */

.cp-rank-title a{font-size:9px;color:rgba(255,255,255,.82)}
.cp-service-pills a{
    flex:0 0 auto;
    padding:8px 13px;
    border-radius:13px;
    color:#8e96a4;
    background:#fff;
    font-size:12px;
    border:1px solid #eef0f4;
}
.cp-service-pills a.active{
    color:#fff;
    background:linear-gradient(135deg,#7057ff,#8c70ff);
    border-color:transparent;
}
.cp-filter-empty{
    margin:0 0 12px;
    padding:16px;
    text-align:center;
    color:#8d96a5;
    background:#fff;
    border:1px dashed #dce2eb;
    border-radius:13px;
}
.cp-simple-head{
    position:sticky;
    z-index:30;
    top:0;
    display:grid;
    grid-template-columns:44px 1fr 44px;
    align-items:center;
    height:58px;
    padding:0 10px;
    background:rgba(255,255,255,.96);
    backdrop-filter:blur(14px);
    border-bottom:1px solid #edf0f5;
}
.cp-simple-head a{
    width:38px;
    height:38px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    color:#303849;
    background:#f4f5f8;
    font-size:28px;
}
.cp-simple-head b{text-align:center;font-size:16px}
.cp-simple-card{
    margin:70px 16px 16px;
    padding:28px 20px;
    text-align:center;
    background:#fff;
    border:1px solid #edf0f5;
    border-radius:20px;
    box-shadow:0 12px 35px rgba(40,48,80,.08);
}
.cp-simple-icon{
    width:70px;
    height:70px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 16px;
    border-radius:22px;
    color:#fff;
    font-size:30px;
    background:linear-gradient(135deg,#6b55f5,#967fff);
}
.cp-simple-card h1{margin:0 0 10px;font-size:22px}
.cp-simple-card p{margin:0 0 22px;color:#7f8999;font-size:13px;line-height:1.9}
.cp-rank-page{padding:14px}
.cp-rank-page-hero{
    padding:22px;
    margin-bottom:12px;
    color:#fff;
    border-radius:20px;
    background:linear-gradient(135deg,#5b4be8,#826bff);
}
.cp-rank-page-hero span{font-size:9px;opacity:.7}
.cp-rank-page-hero h1{margin:8px 0 5px;font-size:25px}
.cp-rank-page-hero p{margin:0;font-size:11px;opacity:.82}
.cp-rank-row{
    display:grid;
    grid-template-columns:38px 54px 1fr auto;
    align-items:center;
    gap:10px;
    margin-bottom:9px;
    padding:11px;
    background:#fff;
    border:1px solid #edf0f5;
    border-radius:15px;
}
.cp-rank-number{
    color:#7057f5;
    text-align:center;
    font-weight:900;
    font-size:18px;
}
.cp-rank-row img,.cp-rank-row-empty{
    width:54px;height:54px;border-radius:50%;object-fit:cover;background:#eee;
}
.cp-rank-row-empty{display:flex;align-items:center;justify-content:center;color:#7057f5;font-weight:900}
.cp-rank-row-info{min-width:0}
.cp-rank-row-info b{display:block;font-size:14px}
.cp-rank-row-info span{display:block;margin-top:4px;color:#8d96a5;font-size:10px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.cp-rank-row-score{text-align:right;color:#ff9f43;font-weight:800;font-size:12px}
.cp-rank-row-score small{display:block;margin-top:4px;color:#969eab;font-size:9px;font-weight:500}

.cp-service-list{display:grid;gap:9px}
.cp-service-item{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    padding:13px;
    border-radius:13px;
    background:#f7f7fb;
    border:1px solid #ececf3;
}
.cp-service-item div{min-width:0}
.cp-service-item b{display:block;font-size:13px}
.cp-service-item span{display:block;margin-top:4px;color:#929baa;font-size:10px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.cp-service-item strong{flex:0 0 auto;color:#ff536b;font-size:14px}
.cp-service-item strong small{font-size:9px;color:#9098a6}

.cp-order-page{padding:14px}
.cp-order-tip{
    margin-bottom:12px;
    padding:13px 14px;
    color:#6658d8;
    background:#f1efff;
    border-radius:13px;
    font-size:12px;
    line-height:1.7;
}
.cp-order-player{
    display:grid;
    grid-template-columns:60px 1fr auto;
    align-items:center;
    gap:11px;
    margin-bottom:10px;
    padding:12px;
    border:1px solid #edf0f5;
    border-radius:16px;
    background:#fff;
    box-shadow:0 6px 20px rgba(40,48,80,.04);
}
.cp-order-player img,.cp-order-avatar-empty{
    width:60px;height:60px;border-radius:50%;object-fit:cover;background:#f0f1f5
}
.cp-order-avatar-empty{display:flex;align-items:center;justify-content:center;color:#725cff;font-weight:900}
.cp-order-player div:nth-child(2){min-width:0}
.cp-order-player b{display:block;font-size:14px}
.cp-order-player span{display:block;margin-top:4px;color:#8d96a5;font-size:10px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.cp-order-player small{display:block;margin-top:5px;color:#2fa66b;font-size:9px}
.cp-order-player strong{color:#ff536b;font-size:13px}

.cp-order-form{padding:13px}
.cp-order-player-head{
    display:flex;
    align-items:center;
    gap:12px;
    padding:16px;
    margin-bottom:12px;
    border-radius:17px;
    color:#fff;
    background:linear-gradient(135deg,#5c4be9,#816aff);
}
.cp-order-player-head img,.cp-order-player-head .cp-order-avatar-empty{
    width:60px;height:60px;border:3px solid rgba(255,255,255,.75)
}
.cp-order-player-head h2{margin:0 0 5px;font-size:19px}
.cp-order-player-head p{margin:0;color:rgba(255,255,255,.82);font-size:11px}
.cp-form-card{
    margin-bottom:12px;
    padding:16px;
    background:#fff;
    border:1px solid #edf0f5;
    border-radius:17px;
}
.cp-form-card h3{margin:0 0 13px;font-size:15px}
.cp-service-choice{display:grid;gap:8px}
.cp-service-choice label{
    position:relative;
    display:grid;
    grid-template-columns:20px 1fr auto;
    align-items:center;
    gap:9px;
    padding:12px;
    border:1px solid #e9edf3;
    border-radius:12px;
    background:#fafbfd;
}
.cp-service-choice label:has(input:checked){
    border-color:#8b79ff;
    background:#f3f1ff;
}
.cp-service-choice span b{display:block;font-size:12px}
.cp-service-choice span small{display:block;margin-top:4px;color:#929baa;font-size:9px}
.cp-service-choice strong{color:#ff536b;font-size:12px}
.cp-qty-row{display:flex;align-items:center;gap:9px}
.cp-qty-row button{
    width:42px;height:42px;border:0;border-radius:11px;background:#f1efff;color:#6d59eb;font-size:22px
}
.cp-qty-row input{
    width:74px;height:42px;text-align:center;border:1px solid #e1e5ec;border-radius:10px;font-size:15px
}
.cp-qty-row span{color:#737d8d;font-size:12px}
.cp-form-help{margin:8px 0 0;color:#979fad;font-size:10px}
.cp-form-field{display:block;margin-bottom:13px}
.cp-form-field:last-child{margin-bottom:0}
.cp-form-field span{display:block;margin-bottom:6px;color:#4b5666;font-size:12px;font-weight:700}
.cp-form-field input,.cp-form-field textarea{
    width:100%;
    padding:11px 12px;
    outline:none;
    border:1px solid #e1e5ec;
    border-radius:11px;
    background:#fafbfd;
    font-size:13px;
}
.cp-form-field textarea{min-height:90px;resize:vertical}
.cp-order-total{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:15px 17px;
    margin-bottom:12px;
    background:#fff;
    border-radius:15px;
}
.cp-order-total span{font-size:13px;color:#566172}
.cp-order-total strong{color:#ff4f68;font-size:16px}
.cp-order-total em{font-style:normal;font-size:24px}
.cp-submit-order{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    height:50px;
    border:0;
    border-radius:14px;
    color:#fff;
    background:linear-gradient(135deg,#6957ff,#886fff);
    box-shadow:0 11px 25px rgba(105,87,255,.25);
    font-size:15px;
    font-weight:800;
}
.cp-order-success{
    padding:34px 20px 25px;
    text-align:center;
}
.cp-order-success-icon{
    width:70px;height:70px;display:flex;align-items:center;justify-content:center;margin:0 auto 15px;border-radius:50%;color:#fff;background:#28b06f;font-size:34px
}
.cp-order-success h1{margin:0 0 6px;font-size:22px}
.cp-order-success p{margin:0;color:#8f98a6;font-size:12px}
.cp-order-detail-card{margin:0 14px 13px}
.cp-order-detail-card>div{
    display:flex;justify-content:space-between;gap:10px;padding:11px 0;border-bottom:1px solid #edf0f5;font-size:12px
}
.cp-order-detail-card>div:last-child{border-bottom:0}
.cp-order-detail-card span{color:#8993a2}
.cp-order-detail-card b{text-align:right}
.cp-order-detail-card .total b{color:#ff536b;font-size:19px}
.cp-block-btn{margin-top:9px}
.cp-pay-link{text-decoration:none}
