/* ============================================
   全局重置 & 基础变量
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --color-primary: #f7a934;
    --color-primary-hover: #ff4302;
    --color-primary-light: #fff5e6;
    --color-primary-dark: #e8931f;
    --color-orange-btn: #FFB60A;
    --color-orange-btn-hover: #ff8400;
    --color-white: #ffffff;
    --color-bg: #f5f5f5;
    --color-bg-gray: #f2f2f2;
    --color-bg-section: #f7f7f7;
    --color-bg-dark: #1a1a1a;
    --color-bg-darker: #282828;
    --color-border: #e5e5e5;
    --color-border-light: #eeeeee;
    --color-text: #333333;
    --color-text-secondary: #666666;
    --color-text-light: #999999;
    --color-text-placeholder: #c0c0c0;
    --color-text-white: #ffffff;
    --color-red: #ff4f4f;
    --color-green: #67c23a;
    --color-blue: #409eff;
    --color-tag-blue: #03b4f5;
    --font-family: 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-round: 20px;
    --shadow-card: 0 2px 12px rgba(0,0,0,0.06);
    --shadow-card-hover: 0 6px 24px rgba(0,0,0,0.12);
    --shadow-header: 0 1px 4px rgba(0,0,0,0.06);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --wrapper-width: 1300px;
    --hero-left-width: 962px;
    --hero-right-width: 318px;
}
body {
    font-family: var(--font-family);
    font-size: 14px;
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    min-width: 1280px;
}
a {
    text-decoration: none;
    color: inherit;
}
ul, ol {
    list-style: none;
}
img {
    display: block;
    border: none;
}
input, button {
    font-family: inherit;
    outline: none;
    border: none;
}
.clearfix::after {
    content: '';
    display: table;
    clear: both;
}

/* ============================================
   3. Hero 首屏区 (.m-hero)
   ============================================ */
.m-hero {
    padding: 20px 0 30px;
}
.hero-inner {
    max-width: var(--wrapper-width);
    margin: 0 auto;
    display: flex;
    gap: 20px;
}

/* 左侧 Carousel Banner (.m-hero-left) */
.m-hero-left {
    width: var(--hero-left-width);
    flex-shrink: 0;
}
.m-hero-left .banner-wrap {
    position: relative;
    width: 100%;
    height: 434px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}
.m-hero-left .banner-wrap .banner-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.m-hero-left .banner-wrap .banner-item.active {
    opacity: 1;
    z-index: 1;
}
.m-hero-left .banner-wrap .banner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.m-hero-left .banner-wrap .banner-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    width: 100%;
    height: 100%;
}
.m-hero-left .banner-wrap .banner-placeholder .placeholder-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}
.m-hero-left .banner-wrap .banner-placeholder .placeholder-sub {
    font-size: 14px;
    opacity: 0.8;
}
/* Banner 箭头 */
.m-hero-left .banner-wrap .banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background var(--transition-fast);
    border: none;
    opacity: 0;
}
.m-hero-left .banner-wrap:hover .banner-arrow {
    opacity: 1;
}
.m-hero-left .banner-wrap .banner-arrow:hover {
    background: rgba(0,0,0,0.6);
}
.m-hero-left .banner-wrap .banner-arrow--left { left: 12px; }
.m-hero-left .banner-wrap .banner-arrow--right { right: 12px; }
.m-hero-left .banner-wrap .banner-arrow svg {
    width: 14px;
    height: 14px;
    fill: #fff;
}
/* Banner 缩略图导航 */
.m-hero-left .banner-thumbs-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}
.m-hero-left .banner-thumbs {
    display: flex;
    gap: 20px;
}
.m-hero-left .banner-thumbs-wrap .thumb-next-btn {
    flex-shrink: 0;
    width: 40px;
    height: 102px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity var(--transition-fast);
}
.m-hero-left .banner-thumbs-wrap .thumb-next-btn:hover {
    opacity: 0.7;
}
.m-hero-left .banner-thumbs-wrap .thumb-next-btn img {
    width: 100%;
    height: auto;
    display: block;
}
.m-hero-left .banner-thumbs .thumb-item {
    width: 230px;
    height: 102px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: 1px solid #FFFFFF;
    background: #fff;
    box-shadow: 0px 0px 10px 0px rgba(179, 179, 179, 0.16);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    box-sizing: border-box;
}
.m-hero-left .banner-thumbs .thumb-item.active {
    border-color: #FFFFFF;
    background: linear-gradient(180deg, #ffedde 0%, #ffffff 100%);
}
.m-hero-left .banner-thumbs .thumb-item:hover {
    opacity: 0.85;
}
.m-hero-left .banner-thumbs .thumb-item .thumb-icon {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid #f0f0f0;
}
.m-hero-left .banner-thumbs .thumb-item .thumb-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.m-hero-left .banner-thumbs .thumb-item .thumb-tag-new {
    position: absolute;
    top: -2px;
    left: -2px;
    background: #00c853;
    color: #fff;
    font-size: 8px;
    padding: 3px 5px;
    border-radius: 0 0 6px 0;
    line-height: 1;
}
.m-hero-left .banner-thumbs .thumb-item .thumb-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 2px;
    height: auto;
    position: relative;
}
.m-hero-left .banner-thumbs .thumb-item .thumb-title {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.m-hero-left .banner-thumbs .thumb-item .thumb-type {
    font-size: 11px;
    color: #999;
}
.m-hero-left .banner-thumbs .thumb-item .thumb-discount {
    display: inline-block;
    background: url('../images/zhekou.png') no-repeat center / 100% 100%;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 20px 3px 15px;
    border-radius: 0;
    line-height: 1.4;
    align-self: flex-start;
    margin-top: auto;
}

/* 右侧面板 (.m-hero-right) */
.m-hero-right {
    width: 318px;
    height: 434px;
    border-radius: 20px;
    flex-shrink: 0;
    overflow: hidden;
}
/* 登录面板 */
.m-hero-right .login-panel {
    background: var(--color-white);
    border: 2px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    height: 434px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    position: relative;
}
.m-hero-right .login-panel .scan-entry {
    position: absolute;
    right: 0px;
    top: 0px;
    font-size: 13px;
    color: #f7a934;
    cursor: pointer;
    text-decoration: none;
    z-index: 2;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
    gap: 4px;
}
.m-hero-right .login-panel .scan-entry img {
    width: 40px;
    height: 40px;
}
.m-hero-right .login-panel .scan-entry:hover {
    opacity: 0.75;
}
.m-hero-right .login-panel .login-tabs {
    display: flex;
    border-bottom: 1px solid var(--color-border-light);
    margin-bottom: 20px;
}
.m-hero-right .login-panel .login-tab {
    flex: 1;
    text-align: center;
    padding: 0 0 10px;
    font-size: 15px;
    color: var(--color-text-secondary);
    cursor: pointer;
    position: relative;
    transition: color var(--transition-fast);
    font-weight: 500;
}
.m-hero-right .login-panel .login-tab.active {
    color: var(--color-primary);
    font-weight: 700;
}
.m-hero-right .login-panel .login-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--color-primary);
}
.m-hero-right .login-panel .login-input {
    width: 278px;
    height: 52px;
    border: 1px solid var(--color-border);
    border-radius: 69px;
    padding: 0 20px;
    font-size: 14px;
    margin-bottom: 16px;
    transition: border-color var(--transition-fast);
    box-sizing: border-box;
}
.m-hero-right .login-panel .login-input:focus {
    border-color: var(--color-primary);
}
.m-hero-right .login-panel .login-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 12px;
}
.m-hero-right .login-panel .login-row a {
    color: var(--color-text-light);
}
.m-hero-right .login-panel .login-row a:hover {
    color: var(--color-primary);
}
.m-hero-right .login-panel .login-row label {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}
.m-hero-right .login-panel .remember-check {
    width: 22px;
    height: 22px;
    appearance: none;
    -webkit-appearance: none;
    border: 2px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    margin: 0;
}
.m-hero-right .login-panel .remember-check:checked {
    background: #FFA400;
    border-color: #FFA400;
}
.m-hero-right .login-panel .remember-check:checked::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.m-hero-right .login-panel .btn-submit {
    width: 278px;
    height: 44px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 63px;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: background var(--transition-fast);
    margin-bottom: 16px;
}
.m-hero-right .login-panel .btn-submit:hover {
    background: #f39b17;
}
/* 验证码输入框包裹 */
.m-hero-right .login-panel .sms-code-wrap {
    position: relative;
    margin-bottom: 16px;
}
.m-hero-right .login-panel .sms-code-wrap .login-input {
    width: 100%;
    padding-right: 95px;
    margin-bottom: 0;
}
.m-hero-right .login-panel .sms-code-wrap .btn-sms-code {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    height: 40px;
    padding: 0 12px;
    background: transparent;
    border: none;
    border-radius: 69px;
    font-size: 12px;
    color: #FF9701;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity var(--transition-fast);
}
.m-hero-right .login-panel .sms-code-wrap .btn-sms-code:hover {
    opacity: 0.8;
}
.m-hero-right .login-panel .third-login {
    text-align: center;
    margin-top: 20px;
}
.m-hero-right .login-panel .third-icons {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 10px;
}
.m-hero-right .login-panel .third-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: transform var(--transition-fast);
}
.m-hero-right .login-panel .third-item:hover {
    transform: scale(1.05);
}
.m-hero-right .login-panel .third-item img {
    width: 30px;
    height: 30px;
    display: block;
}
.m-hero-right .login-panel .third-item span {
    font-size: 12px;
    color: #888888;
}
/* 已登录用户面板 */
.m-hero-right .login-panel .user-logged-in {
    display: flex;
    flex-direction: column;
}
.m-hero-right .login-panel .user-avatar-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}
.m-hero-right .login-panel .user-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 3px solid #f7a934;
    object-fit: cover;
    margin-bottom: 10px;
}
.m-hero-right .login-panel .user-name {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 4px;
}
.m-hero-right .login-panel .user-vip-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #f7a934);
    color: #ffffff;
    font-size: 11px;
    padding: 2px 10px;
    border-radius: 10px;
    font-weight: 700;
}
.m-hero-right .login-panel .user-quick-links {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}
.m-hero-right .login-panel .btn-user-action {
    padding: 8px 20px;
    border-radius: 20px;
    background: #f7a934;
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s;
    border: none;
    cursor: pointer;
}
.m-hero-right .login-panel .btn-user-action:hover {
    background: #e89922;
}
.m-hero-right .login-panel .user-icons {
    display: flex;
    justify-content: space-around;
    width: 100%;
    gap: 10px;
}
.m-hero-right .login-panel .user-icons .third-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
    color: #888888;
    cursor: pointer;
}
.m-hero-right .login-panel .user-icons .third-item img {
    width: 30px;
    height: 30px;
    display: block;
    margin-bottom: 4px;
}

/* 推荐游戏列表 */
/* ============================================
   4. 热门游戏区 (.m-hot-games)
   ============================================ */
.m-hot-games {
    width: 1300px;
    height: 518px;
    border-radius: 40px;
    opacity: 1;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid #FFFFFF;
    backdrop-filter: blur(10px);
    box-shadow: 0px 0px 10px 0px rgba(179, 179, 179, 0.16), inset 0px -16px 10px 0px rgba(255, 255, 255, 0.3);
    margin: 0 auto;
    padding: 20px 30px 30px;
    box-sizing: border-box;
}
.m-hot-games .section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.m-hot-games .section-title .title-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.m-hot-games .section-title .title-bar {
    width: 46px;
    height: 46px;
}
.m-hot-games .section-title .title-bottom {
    width: 100%;
    height: 8px;
}
.m-hot-games .section-title .title-text {
    font-size: 30px;
    font-weight: 700;
    color: #F44F22;
}
.m-hot-games .section-title .title-more {
    width: 62px;
    height: 28px;
    border-radius: 40px;
    opacity: 1;
    background: rgba(204, 204, 204, 0.3);
    font-size: 13px;
    color: var(--color-text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: color var(--transition-fast);
}
.m-hot-games .section-title .title-more:hover {
    color: var(--color-primary);
}
.m-hot-games .hot-games-wrap {
    display: flex;
    gap: 20px;
}

/* 左侧大图区 */
.m-hot-games .hot-game-left {
    width: 431px;
    height:397px;
    flex-shrink: 0;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.m-hot-games .hot-game-left .hot-big-img {
    width: 431px;
    height: 292px;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}
.m-hot-games .hot-game-left .hot-big-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.m-hot-games .hot-game-left .hot-big-bottom {
    width: 431px;
    height: 110px;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    box-sizing: border-box;
}
.m-hot-games .hot-game-left .hot-big-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}
.m-hot-games .hot-game-left .hot-big-icon {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}
.m-hot-games .hot-game-left .hot-big-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}
.m-hot-games .hot-game-left .hot-big-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.m-hot-games .hot-game-left .hot-big-desc {
    font-size: 12px;
    color: #999;
}
.m-hot-games .hot-game-left .hot-big-tags {
    display: flex;
    align-items: center;
    gap: 6px;
}
.m-hot-games .hot-game-left .hot-big-discount {
    font-size: 11px;
    color: #FF4F4F;
    background: #FFF0F0;
    padding: 1px 6px;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0;
}
.m-hot-games .hot-game-left .hot-big-tag {
    font-size: 11px;
    color: var(--color-primary);
    background: var(--color-primary-light);
    padding: 1px 6px;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0;
}
.m-hot-games .hot-game-left .hot-big-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.m-hot-games .hot-game-left .hot-big-qrcode-wrap {
    position: relative;
    display: inline-flex;
}
.m-hot-games .hot-game-left .hot-big-qrcode {
    width: 40px;
    height: 40px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity var(--transition-fast);
}
.m-hot-games .hot-game-left .hot-big-qrcode:hover {
    opacity: 1;
}
.m-hot-games .hot-game-left .qrcode-popup {
    display: none;
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,.15);
    padding: 8px;
    z-index: 100;
    white-space: nowrap;
}
.m-hot-games .hot-game-left .qrcode-popup img {
    width: 120px;
    height: 120px;
    display: block;
}
.m-hot-games .hot-game-left .hot-big-qrcode-wrap:hover .qrcode-popup {
    display: block;
}
.m-hot-games .hot-game-left .hot-big-play {
    height: 32px;
    line-height: 32px;
    padding: 0 18px;
    background: #FFB60A;
    color: #fff;
    border: none;
    border-radius: 16px;
    font-size: 13px;
    cursor: pointer;
    flex-shrink: 0;
    transition: background var(--transition-fast);
}
.m-hot-games .hot-game-left .hot-big-play:hover {
    background: #ff8400;
}

/* 右侧8卡片网格 */
.m-hot-games .hot-game-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
.m-hot-games .hot-card {
    width: 146px;
    height: 196px;
    border-radius: 20px;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
}
.m-hot-games .hot-card:hover {
   
}
.m-hot-games .hot-card .hot-card-img {
    width: 100%;
    height: 110px;
    position: relative;
}
.m-hot-games .hot-card .hot-card-img img {
    width:  96px;
    height: 96px;
    object-fit: cover;
    margin:0 auto;
    border-radius: 15px;
    transition: transform var(--transition-normal);
}
.m-hot-games .hot-card:hover .hot-card-img img {
    transform: scale(1.08);
}
.m-hot-games .hot-card .hot-card-badge {
    position: absolute;
    top: 6px;
    left: 6px;
    background: var(--color-green);
    color: #fff;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
}
.m-hot-games .hot-card .hot-card-body {
    padding: 50px 10px;
    text-align: center;
    width:146px;
    height:136px;
    position:absolute;
    top:50px;
    text-align: center;
    background:#fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    z-index: -1;
    border-radius: 20px;
}
.m-hot-games .hot-card .hot-card-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
}
.m-hot-games .hot-card .hot-card-desc {
    font-size: 11px;
    color: var(--color-text-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 6px;
}
.m-hot-games .hot-card .hot-card-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.m-hot-games .hot-card .hot-card-view-btn {
    display: block;
    text-align: center;
    margin-top: 8px;
    padding: 4px 0;
    font-size: 12px;
    color: #fff;
    background: var(--color-primary, #f7a934);
    border-radius: 12px;
    cursor: pointer;
    transition: opacity 0.2s;
}
.m-hot-games .hot-card .hot-card-view-btn:hover {
    opacity: 0.85;
}
.m-hot-games .hot-card .hot-card-discount {
    display: inline-block;
    background: url('../images/zhekou.png') no-repeat center / 100% 100%;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 15px 2px 10px;
    line-height: 1.4;
}
.hot-card-tuijian {
    width: 40px;
    height: 16px;
    object-fit: contain;
}

/* ============================================
   5. 游戏卡片通用组件 (.game-card)
   ============================================ */
.game-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: 1px solid var(--color-border-light);
}
.game-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--color-primary);
}
.game-card .card-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--color-bg-gray);
    position: relative;
}
.game-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}
.game-card:hover .card-img img {
    transform: scale(1.08);
}
.game-card .card-img .card-hot {
    position: absolute;
    top: 6px;
    right: 6px;
    background: var(--color-red);
    color: #fff;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 2px;
    z-index: 1;
}
.game-card .card-body {
    padding: 10px 12px;
}
.game-card .card-body .card-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 6px;
}
.game-card .card-body .card-tags {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}
.game-card .card-body .card-tag {
    font-size: 11px;
    padding: 1px 6px;
    border-radius: 2px;
    background: #f0f0f0;
    color: var(--color-text-secondary);
}
.game-card .card-body .card-tag--hot {
    background: #fff0f0;
    color: var(--color-red);
}
.game-card .card-body .card-tag--new {
    background: #f0fff4;
    color: var(--color-green);
}
.game-card .card-body .card-tag--rec {
    background: var(--color-primary-light);
    color: var(--color-primary);
}
.game-card .card-body .card-tag--vip {
    background: #fff7e6;
    color: var(--color-orange-btn);
}
.game-card .card-body .card-btn {
    width: 100%;
    height: 30px;
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-round);
    font-size: 13px;
    cursor: pointer;
    transition: background var(--transition-fast);
}
.game-card .card-body .card-btn:hover {
    background: var(--color-primary-hover);
}

/* ============================================
   精品推荐区 (.m-boutique)
   ============================================ */
.m-boutique {
    width: 1300px;
    height: 440px;
    border-radius: 40px;
    opacity: 1;
    background: linear-gradient(180deg, #ffecec 0%, #ffffff 20%);
    border: 1px solid #FFFFFF;
    backdrop-filter: blur(10px);
    box-shadow: 0px 0px 10px 0px rgba(179, 179, 179, 0.16), inset 0px -16px 10px 0px rgba(255, 255, 255, 0.3);
    margin: 20px auto 0;
    padding: 20px 30px 30px;
    box-sizing: border-box;
}
.m-boutique .section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.m-boutique .section-title .title-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.m-boutique .section-title .title-bar {
    width: 46px;
    height: 46px;
}
.m-boutique .section-title .title-bottom {
    width: 100%;
    height: 8px;
}
.m-boutique .section-title .title-text {
    font-size: 30px;
    font-weight: 700;
    color: #F44F22;
}
.m-boutique .section-title .title-more {
    width: 62px;
    height: 28px;
    border-radius: 40px;
    opacity: 1;
    background: rgba(204, 204, 204, 0.3);
    font-size: 13px;
    color: var(--color-text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: color var(--transition-fast);
}
.m-boutique .section-title .title-more:hover {
    color: var(--color-primary);
}
.m-boutique .boutique-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.m-boutique .boutique-banners {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.m-boutique .boutique-banner {
    width: 302px;
    height: 314px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: var(--color-bg-gray);
    box-shadow: 0px 6px 10px 0px rgba(155, 155, 155, 0.16);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.m-boutique .boutique-banner:hover {
    transform: translateY(-6px);
    box-shadow: 0px 12px 24px 0px rgba(155, 155, 155, 0.3);
}
.m-boutique .boutique-banner >img {
    width: 100%;
    height: 204px;
    object-fit: cover;
    border-radius: 20px 20px 0px 0px ;
    transition: transform var(--transition-normal);
}
.m-boutique .boutique-infos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.boutique-info {
    width:100%;
    height:110px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 12px;
    cursor: pointer;
    transition: all var(--transition-normal);
}
.boutique-info .boutique-icon {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}
.boutique-info .boutique-meta {
    flex: 1;
    min-width: 0;
}
.boutique-info .boutique-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
}
.boutique-info .boutique-desc {
    font-size: 11px;
    color: var(--color-text-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 6px;
}
 .boutique-tags {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
 .boutique-tags .boutique-discount {
    font-size: 11px;
    color: #FF4F4F;
    background: #FFF0F0;
    padding: 1px 6px;
    border-radius: 10px;
}
 .boutique-tags .boutique-tag {
    font-size: 10px;
    color: var(--color-primary);
    background: var(--color-primary-light);
    padding: 1px 6px;
    border-radius: 4px;
}
 .boutique-tags .boutique-tag--new {
    color: var(--color-green);
    background: #f0fff4;
}

/* ============================================
   6. 游戏分类板块 (.m-game-section)
   ============================================ */
.m-game-section {
    width: 1300px;
    height: 440px;
    border-radius: 40px;
    opacity: 1;
    background: linear-gradient(180deg, #ecffee 0%, #ffffff 20%);
    border: 1px solid #FFFFFF;
    backdrop-filter: blur(10px);
    box-shadow: 0px 0px 10px 0px rgba(179, 179, 179, 0.16), inset 0px -16px 10px 0px rgba(255, 255, 255, 0.3);
    margin: 20px auto 0;
    padding: 20px 30px 30px;
    box-sizing: border-box;
}
/* 第1-2个: 绿色 */
section.m-game-section:nth-of-type(4),
section.m-game-section:nth-of-type(5) {
    background: linear-gradient(180deg, #ecffee 0%, #ffffff 20%);
}
/* 第3-4个: 蓝色 */
section.m-game-section:nth-of-type(6),
section.m-game-section:nth-of-type(7) {
    background: linear-gradient(180deg, #ecfbff 0%, #ffffff 19%);
}
/* 第5-6个: 紫色 */
section.m-game-section:nth-of-type(8),
section.m-game-section:nth-of-type(9) {
    background: linear-gradient(180deg, #f2ecff 0%, #ffffff 20%);
}
.m-game-section .section-inner {
    max-width: var(--wrapper-width);
    margin: 0 auto;
}
.m-game-section .section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}
.m-game-section .section-header .header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.m-game-section .section-header .header-bar {
    width: 46px;
    height: 46px;
}
.m-game-section .section-header .title-bottom {
    width: 100%;
    height: 8px;
}
.m-game-section .section-header .header-title {
    font-size: 30px;
    font-weight: 700;
    color: #F44F22;
}
.m-game-section .section-header .header-sub {
    font-size: 13px;
    color: var(--color-text-light);
}
.m-game-section .section-header .header-more {
    width: 62px;
    height: 28px;
    border-radius: 40px;
    opacity: 1;
    background: rgba(204, 204, 204, 0.3);
    font-size: 13px;
    color: var(--color-text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: color var(--transition-fast);
}
.m-game-section .section-header .header-more:hover {
    color: var(--color-primary);
}
/* 筛选标签 */
.m-game-section .section-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
}
.m-game-section .section-tabs .section-tab {
    padding: 6px 18px;
    font-size: 13px;
    border-radius: var(--radius-round);
    cursor: pointer;
    transition: all var(--transition-fast);
    border: 1px solid var(--color-border);
    color: var(--color-text-secondary);
    background: var(--color-white);
}
.m-game-section .section-tabs .section-tab:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}
.m-game-section .section-tabs .section-tab.active {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}
/* 内容区 */
.m-game-section .section-content {
    display: flex;
    gap: 20px;
}
/* 左侧大图区 */
.m-game-section .section-left {
    width: 302px;
    height: 314px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    background: var(--color-bg-gray);
    box-shadow: 0px 6px 10px 0px rgba(155, 155, 155, 0.16);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.m-game-section .section-left .section-big {
    width: 302px;
    height: 314px;
    overflow: hidden;
    cursor: pointer;
    background: var(--color-bg-gray);
}
.m-game-section .section-left .section-big >img {
    width: 100%;
    height: 204px;
    object-fit: cover;
    transition: transform var(--transition-normal);
}
.m-game-section .section-left:hover .section-big >img {
    transform: scale(1.05);
}

.section_goleft,
.section_goright {
    cursor: pointer;
    align-self: center;
    transition: opacity 0.2s ease;
}
.section_goleft:hover,
.section_goright:hover {
    opacity: 0.7;
}
/* 右侧小卡片 */
.m-game-section .section-right {
    overflow-x: hidden;
    width: 810px;
    padding-top:30px;
}
.m-game-section .section-right-track {
    display: flex;
    gap: 19px;
    transition: transform 0.4s ease;
}
.m-game-section .section-right .mini-card {
    width: 146px;
    min-width: 146px;
    flex-shrink: 0;
    height: 237px;
    background:#fff;
    border-radius: 20px;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-align: center;
    position: relative;
    box-shadow: 0px 0px 10px 0px rgba(179, 179, 179, 0.16);
    padding-top:20px;
    border: 1px solid #FFFFFF;

}
.m-game-section .section-right .mini-card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 12px 24px 0px rgba(179, 179, 179, 0.3);
}

.m-game-section .section-right .mini-card .hot-card-img {
    width: 100%;
    height: 110px;
    position: relative;
}
.m-game-section .section-right .mini-card .hot-card-img img {
    width:  96px;
    height: 96px;
    object-fit: cover;
    margin:0 auto;
    border-radius: 15px;
    transition: transform var(--transition-normal);
}
.m-game-section .section-right .mini-card:hover .hot-card-img img {
    transform: scale(1.08);
}
.m-game-section .section-right .mini-card .hot-card-badge {
    position: absolute;
    top: -20px;
    left: 0px;
    background: var(--color-green);
    color: #fff;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 20px 0px 20px 0;
}
.m-game-section .section-right .mini-card .hot-card-body {
    padding: 50px 10px;
    text-align: center;
    width:146px;
    height:136px;
    position:absolute;
    bottom:20px;
    text-align: center;
}
.m-game-section .section-right .mini-card .hot-card-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
}
.m-game-section .section-right .mini-card .hot-card-desc {
    font-size: 11px;
    color: var(--color-text-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 6px;
}
.m-game-section .section-right .mini-card .hot-card-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.m-game-section .section-right .mini-card .hot-card-view-btn {
    display: block;
    text-align: center;
    padding: 3px 0;
    font-size: 11px;
    color: #fff;
    background: var(--color-primary, #f7a934);
    border-radius: 10px;
    cursor: pointer;
    transition: opacity 0.2s;
    width:50%;
    margin:5px auto;
}
.m-game-section .section-right .mini-card .hot-card-view-btn:hover {
    opacity: 0.85;
}
.m-game-section .section-right .mini-card .hot-card-discount {
    display: inline-block;
    background: url('../images/zhekou.png') no-repeat center / 100% 100%;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 10px 2px 6px;
    line-height: 1.4;
}
.hot-card-tuijian {
    width: 40px;
    height: 16px;
    object-fit: contain;
}


/* ============================================
   6.5 分类导航 (.m-cate-nav)
   ============================================ */
.m-cate-nav {
    padding: 30px 0;
}
.m-cate-nav .section-inner {
    width: 1300px;
    height: 228px;
    border-radius: 20px;
    opacity: 1;
    background: linear-gradient(180deg, #ffedde 0%, #ffffff 19%);
    border: 1px solid #FFFFFF;
    backdrop-filter: blur(10px);
    box-shadow: 0px 0px 10px 0px rgba(179, 179, 179, 0.16), inset 0px -16px 10px 0px rgba(255, 255, 255, 0.3);
    margin: 0 auto;
    padding: 30px 40px 20px;
    box-sizing: border-box;
}
.m-cate-nav .cate-title {
    text-align: center;
    margin-bottom: 24px;
    position: relative;
}
.m-cate-nav .cate-title-text {
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    font-style: italic;
    background: linear-gradient(90deg, #ff6a00 0%, #ff9e00 50%, #ff6a00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    text-align: center;
}
.m-cate-nav .cate-title-text  img{
    margin:0 auto;
}
.m-cate-nav .cate-title-line {
    display: block;
    width: 120px;
    height: 4px;
    margin: 6px auto 0;
    background: linear-gradient(90deg, #00c853 0%, #00e676 50%, #00c853 100%);
    border-radius: 2px;
}
.m-cate-nav .cate-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.m-cate-nav .cate-item {
    width: 118px;
    height: 36px;
    border-radius: 40px;
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    box-shadow: 0px 0px 40px 0px rgba(179, 179, 179, 0.16);
    font-size: 15px;
    color: var(--color-text);
    text-decoration: none;
    transition: color var(--transition-fast);
    white-space: nowrap;
}
.m-cate-nav .cate-item:hover {
    color: var(--color-primary);
}
.m-cate-nav .cate-arrow {
    width: 6px;
    height: 10px;
    margin-left: 4px;
}
.m-cate-nav .cate-more {
    text-align: center;
    font-size: 13px;
    color: var(--color-text-light);
    cursor: pointer;
    padding-top: 4px;
}
.m-cate-nav .cate-more:hover {
    color: var(--color-primary);
}

/* ============================================
   7. 排行榜区 (.m-ranking)
   ============================================ */
.m-ranking {
    padding: 30px 0;
}
.m-ranking .section-inner {
    width: 1300px;
    margin: 0 auto;
    background: #fff;
    border-radius: 40px;
    padding: 30px 40px;
    box-sizing: border-box;
    box-shadow: 0px 0px 10px 0px rgba(179, 179, 179, 0.16);
}
/* 标题 */
.m-ranking .rank-header-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
}
.m-ranking .rank-header-center .rank-header-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}
.m-ranking .rank-header-center .rank-header-title {
    font-size: 30px;
    font-weight: 700;
    color: #F0AD1E;
}
/* 前三名 */
.m-ranking .rank-top3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}
.m-ranking .rank-top-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.m-ranking .rank-top-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.m-ranking .rank-top-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 48px;
    height: 48px;
    object-fit: contain;
    z-index: 2;
}
.m-ranking .rank-top-img {
    width: 100%;height: 268px;
    overflow: hidden;
    background: var(--color-bg-gray);
}
.m-ranking .rank-top-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.m-ranking .rank-top-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
}
.m-ranking .rank-top-icon {
    width: 70px;
    height: 70px;
    border-radius: 14px;
    object-fit: cover;
    flex-shrink: 0;
}
.m-ranking .rank-top-meta {
    flex: 1;
    min-width: 0;
}
.m-ranking .rank-top-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.m-ranking .rank-top-desc {
    font-size: 11px;
    color: var(--color-text-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
    line-height: 24px;
}
.m-ranking .rank-top-stars {
    display: flex;
    align-items: center;
    gap: 1px;
}
.m-ranking .rank-top-stars .star {
    width: 14px;
    height: 14px;
    object-fit: contain;
}
.m-ranking .rank-top-stars .star.filled {
}
.m-ranking .rank-top-btn {
    width: 56px;
    height: 28px;
    border-radius: 14px;
    background: linear-gradient(270deg, #ffa400 0%, #ffad33 97%);
    color: #fff;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}
/* 第4-12名 */
.m-ranking .rank-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.m-ranking .rank-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: #fff;
    max-width: 388px;
    border-radius: 12px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.04);
    transition: box-shadow 0.2s ease;
    height:110px;
}
.m-ranking .rank-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.m-ranking .rank-item-num {
    width: 24px;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
    text-align: center;
    flex-shrink: 0;
}
.m-ranking .rank-item-icon {
    width: 70px;
    height: 70px;
    border-radius: 14px;
    object-fit: cover;
    flex-shrink: 0;
}
.m-ranking .rank-item-info {
    flex: 1;
    min-width: 0;
}
.m-ranking .rank-item-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height:24px;
}
.m-ranking .rank-item-desc {
    font-size: 11px;
    color: var(--color-text-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height:30px;
}
.m-ranking .rank-list .rank-item-stars {
    display: flex;
    align-items: center;
    gap: 1px;
}
.m-ranking .rank-item-stars .star {
    width: 14px;
    height: 14px;
    object-fit: contain;
}
.m-ranking .rank-item-stars .star.filled {
}
.m-ranking .rank-item-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}
.m-ranking .rank-item-qrcode-wrap {
    position: relative;
    cursor: pointer;
}
.m-ranking .rank-item-qrcode {
    width: 32px;
    height: 32px;
    object-fit: contain;
}
.m-ranking .qrcode-popup {
    display: none;
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,.15);
    padding: 8px;
    z-index: 100;
    white-space: nowrap;
}
.m-ranking .qrcode-popup img {
    width: 110px;
    height: 110px;
    display: block;
}
.m-ranking .rank-item-qrcode-wrap:hover .qrcode-popup {
    display: block;
}
.m-ranking .rank-item-btn {
    width: 48px;
    height: 24px;
    border-radius: 12px;
    background: linear-gradient(270deg, #ffa400 0%, #ffad33 97%);
    color: #fff;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* ============================================
   7.5 右侧悬浮二维码 (.float-qrcode)
   ============================================ */
.float-qrcode {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 140px;
    height: 160px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    padding: 10px;
    box-sizing: border-box;
}
.float-qrcode img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin-top:-40px;
    margin-left: 5px;
}

/* ============================================
   8. 底部横幅广告 (.m-banners)
   ============================================ */
.m-banners {
    max-width: var(--wrapper-width);
    margin: 30px auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.m-banners .banner-card {
    height: 180px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-normal);
}
.m-banners .banner-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card-hover);
}
.m-banners .banner-card:nth-child(1) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.m-banners .banner-card:nth-child(2) {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}
.m-banners .banner-card:nth-child(3) {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}
.m-banners .banner-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.m-banners .banner-card .banner-text {
    text-align: center;
    color: #fff;
}
.m-banners .banner-card .banner-text .bt-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}
.m-banners .banner-card .banner-text .bt-sub {
    font-size: 14px;
    opacity: 0.8;
}

/* ============================================
   10. 悬浮客服按钮 (.m-float-bar)
   ============================================ */
    .fix_right_long{
        /*border: 1px solid red;*/
        width: 70px;
        height: auto;
        position: fixed;
        right: 20px;
        top: 40%;
        z-index: 9999;
        border-radius: 51px;
        background: #FFFFFF;
        /* 阴影/弥散阴影 */
        box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.16);
    }
    .fix_right_long .modeldstar{
        margin-bottom: 10px;
        display: flex;
        justify-content: center; /* 水平居中 */
        align-items: center;     /* 垂直居中 */
    }
    .fix_right_long .modeldend{
        margin-top: 10px;
        display: flex;
        justify-content: center; /* 水平居中 */
        align-items: center;     /* 垂直居中 */
    }
    .fix_right_long .modeld{
        margin: 10px auto;
        display: flex;
        justify-content: center; /* 水平居中 */
        align-items: center;     /* 垂直居中 */
    }
    .fix_right_long .modeld .tuicai,.fix_right_long .modeld .tuicai{
        width: 100%;
    }
    .fix_right_long .modeldend .tuihui{
        width: 100%;
    }
    .erweima_cebian{
        position: absolute;
        width: 150px;
        height: 150px;
        background: url(../images/backxiazai.png) no-repeat;
        background-size: 100% 100%;
        right: 58px;
    }
    .erweima_cebian img{
        width: 50%;
        height: 50%;
        top:23%;
        left:23%;
        position: absolute;
    }
/* ============================================
   11. Placeholder 占位图片样式
   ============================================ */
.img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-gray);
    color: var(--color-text-placeholder);
    font-size: 13px;
    border: 1px dashed var(--color-border);
}
.img-placeholder.dark {
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.6);
    border-color: rgba(255,255,255,0.3);
}

/* 移动端弹窗交互 - PC忽略 */
@media (max-width: 768px) {
    body { min-width: 320px; }
}

.logined {
                            max-width: 100%;
                            overflow: hidden;
                        }
                        .logined .slide-bd .icn-img{
                            display: block;
                            width: 30px;
                            height: 30px;
                            margin: 6px 6px 6px 5px;
                        }
                        .logined .slide-bd li span{
                            float:left;
                            height:30px;
                            line-height:40px;
                        }
                        .logined .slide-bd li .name{
                            width:89px;
                            overflow:hidden;
                            margin-right:65px;
                        }
                        .logined .slide-bd li .time{
                            color:#888888;
                        }
                        .logined .u-info {
                            overflow: hidden;
                            position: relative;
                            z-index: 2;
                        }
                        .logined .uinfo-l {
                            width: 64px;
                            float: left;
                            text-align: center;
                        }
                        .logined .avatar {
                            display: block;
                            width: 64px;
                            height: 64px;
                            border-radius: 50%;
                            overflow: hidden;
                            margin-bottom: 6px;
                            border: 2px solid rgba(247,169,52,0.4);
                        }
                        .logined .avatar img {
                            width: 100%;
                            height: 100%;
                            object-fit: cover;
                        }
                        .logined .u-vip {
                            display: inline-block;
                            padding: 1px 8px;
                            line-height: 18px;
                            color: #fff;
                            font-size: 11px;
                            border-radius: 10px;
                            background: linear-gradient(135deg, #c3ab6e, #e0c88e);
                        }
                        .logined .uinfo-r {
                            margin-left: 78px;
                            min-width: 0;
                        }
                        .logined .uinfo-r p {
                            height: 22px;
                            line-height: 22px;
                            overflow: hidden;
                            font-size: 13px;
                            color: #595757;
                        }
                        .logined .u-name {
                            max-width: 110px;
                            display: inline-block;
                            vertical-align: middle;
                            text-overflow: ellipsis;
                            white-space: nowrap;
                            overflow: hidden;
                            font-weight: 600;
                            font-size: 15px;
                            color: #333;
                        }
                        .logined .logout {
                            color: #F87706;
                            font-size: 12px;
                            float: right;
                        }
                        .logined .uinfo-r p span {
                            color: #F87706;
                            font-weight: 600;
                        }
                        .logined .sign-in {
                            display: inline-block;
                            width: 50px;
                            height: 22px;
                            line-height: 22px;
                            color: #fff;
                            font-size: 12px;
                            text-align: center;
                            background: #F87706;
                            border-radius: 11px;
                        }
                        .logined .icon-uphone {
                            display: inline-block;
                            width: 8px;
                            height: 14px;
                            margin-top: 6px;
                            margin-right: 8px;
                        }
                        .logined .icon-umail {
                            display: inline-block;
                            width: 14px;
                            height: 14px;
                            margin-top: 6px;
                            margin-right: 8px;
                        }
                        .logined .icon-uug {
                            display: inline-block;
                            width: 13px;
                            height: 14px;
                            margin-top: 6px;
                        }
                        .hd {
                            line-height: 24px;
                            color: #595757;
                        }
                        .played .bd {
                            overflow: hidden;
                            position: relative;
                        }
                        .played .slide-bd ul {
                            width: 100%;
                        }
                        .played .slide-bd li {
                            height: 44px;
                            line-height: 44px;
                            margin-top: 5px;
                            border-radius: 8px;
                            padding: 0 8px;
                        }
                        .played .slide-bd li:hover {
                            background: rgba(0,0,0,0.04);
                        }
                        .played .slide-bd a {
                            display: flex;
                            align-items: center;
                            gap: 8px;
                            overflow: hidden;
                        }
                        .played .slide-bd .icn-img {
                            display: inline-block;
                            width: 30px;
                            height: 30px;
                            border-radius: 8px;
                            flex-shrink: 0;
                        }
                        .played .slide-bd .name {
                            flex: 1;
                            overflow: hidden;
                            text-overflow: ellipsis;
                            white-space: nowrap;
                        }
                        .played .slide-bd .time {
                            flex-shrink: 0;
                            font-size: 11px;
                            color: #9fa0a0;
                        }
                        .played .slide-bd .item1 {
                            width: 95px;
                            color: #595757;
                            float: left;
                        }
                        .played .slide-bd .item2 {
                            width: 75px;
                            color: #9fa0a0;
                            float: right;
                            text-align: right;
                        }