
.app-black {
    background-color: #151517;
}

/* 修复导航栏水平滚动条问题 */
body,html {
    overflow: visible;
}


.global-navigation {
    overflow: visible;
}

.games-menu-container {
    position: relative;
}

.games-dropdown-panel {
    background: transparent !important;
}

.global-navigation {
    background-color: #212224;
    position: sticky;
    top: 0;
    z-index: 9999;
}


/* 空白区域 */
.blank-area {
    position: fixed;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

/* 响应式菜单宽度 */
@media (max-width: 375px) {
    .mobile-menu {
        width: 100%;
    }
}

/* 菜单内容区域 */
.sidebar-content {
    margin: 20px 0;
    overflow-y: auto;
}

/* 菜单内容区域底部留白 */
.sidebar-content {
    margin-bottom: 154px;
}

/* 游戏筛选按钮 */
.games-filter-btn {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 8px 12px;
}

.games-filter-btn:hover {
    background-color: #3a3a3a !important;
}

.filter-btn-text {
    font-size: 12px;
}

.games-filter-btn.all.active {
    background-color: #0077ff !important;
    color: white !important;
}

.icon-btn-all {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

.games-filter-btn.windows {
    background-color: #0077ff !important;
    color: white !important;
}

.icon-ext-windows {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

.icon-apple {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

.icon-ext-xbox {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

.icon-psn {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

.icon-ios {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

.icon-android {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

/* 游戏列表项 */
.games-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.games-list a {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    text-decoration: none;
    color: white;
    transition: background-color 0.2s ease;
}

.games-list a:hover {
    background-color: #303134;
}

.icon {
    width: 44px;
    height: 44px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 15px;
    border-radius: 4px;
}

.game-title {
    font-size: 14px;
    font-weight: 500;
}

.new-game {
    color: #0077ff;
    font-size: 12px;
    margin-left: 5px;
}

.platform-icons {
    display: flex;
    margin-top: 5px;
}

.platform-icon {
    margin-right: 8px;
}

.platform-icon img {
    width: 16px;
    height: 16px;
}

.platform-icon i {
    width: 16px;
    height: 16px;
    font-size: 16px;
    margin-right: 4px;
}

/* 游戏列表区域 */
.games-section {
    flex: 1;
    overflow-y: auto;
}

.games-list-section {
    list-style: none;
    padding: 0;
    margin: 0;
}

.games-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.game-title-section {
    margin-bottom: 5px;
}

.text-uppercase {
    text-transform: uppercase;
}

/* 子侧边栏 */
.sub-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background-color: #212224;
    z-index: 10001;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.sub-sidebar.active {
    transform: translateX(0);
}

.sub-sidebar .mobile-menu {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.sub-sidebar-top {
    width: 100%;
    height: 60px;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.7);
    position: relative;
}

.sub-sidebar-top .back {
    position: absolute;
    top: 12px;
    left: 20px;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    width: 37px;
    height: 37px;
    border-radius: 25px;
}

.category-title-container {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.sub-sidebar-top .close {
    position: absolute;
    top: 11px;
    right: 20px;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    width: 37px;
    height: 37px;
    border-radius: 25px;
}

.sub-sidebar-top .back:hover,
.sub-sidebar-top .close:hover {
    opacity: 1;
    cursor: pointer;
    background-color: #2c2d31;
}

.sub-sidebar-top .back:active,
.sub-sidebar-top .close:active {
    opacity: 0.5;
}

.sub-sidebar-content {
    height: calc(100% - 60px);
    display: flex;
    flex-direction: column;
}

nav ul li {
    position: relative;
}

/* 下拉菜单样式 */
.games-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    min-width: 320px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.games-list-content {
    position: relative !important;
    overflow: hidden;
}

.games-section {
    overflow-y: auto;
    overflow-x: hidden;
}

/* 修复游戏列表项在下拉菜单中的显示 */
.games-list-section {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0.5rem;
    padding: 0;
    margin: 0;
}

.games-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* 移动端菜单样式 */
.mobile-menu {
    height: 100%;
}

.sidebar-btns {
    border-left: 3px solid transparent;
    width: 100%;
    height: 54px;
    transition: 0.2s ease;
}

.sidebar-btns:hover {
    border-left: 3px solid #0077ff;
    background-color: #303134;
}

.sidebar-btn {
    display: flex;
    align-items: center;
    padding: 10px 30px;
}

.games, .shop, .support, .pressroom {
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.games .mdi-chevron-right {
    margin-left: auto;
    width: 12px;
    height: 12px;
}

.divider {
    margin: 0 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-account-content {
    margin-top: 20px;
}

.sidebar-account-btns .sidebar-account-profile {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.sidebar-account-btns .sidebar-account-profile.login {
    justify-content: flex-end;
}

.profile-btn-group.login {
    margin-right: 10px;
}

.profile-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 26px;
    border-radius: 5px;
    border: solid 1px #959696;
    cursor: pointer;
    font-size: 11px;
    color: #959696;
    transition: 0.2s ease;
}

.profile-btn:hover {
    color: rgba(255, 255, 255, 1);
    border: solid 1px rgba(255, 255, 255, 1);
}

.profile-btn:active {
    opacity: 0.5;
}

.profile-btn.logout, .profile-btn.login, .profile-btn.create-account {
    padding: 0px 10px;
}

/* 下载启动器样式 */
.download-launcher {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 154px;
    background-color: #171719;
    padding: 26px 21px 20px 21px;
    font-family: Arial;
    font-size: 14px;
}

.download-launcher-title {
    font-weight: bold;
    color: #a9a9ab;
    line-height: 1;
    margin-bottom: 9px;
}

.download-launcher-subtitle {
    color: #5b5b5c;
    line-height: 1;
    margin-bottom: 17px;
}

.btn-home {
    width: 332px;
    height: 45px;
}

.btn-home span {
    display: inline-block;
    margin-top: 8px;
}

.btn-home .mdi-download {
    width: 17px;
    height: 23px;
    margin-right: 10px;
    margin-bottom: 2px;
    vertical-align: middle;
}

.btn-home {
    color: #fff;
    background-color: #0077ff;
    background-size: 0 100%;
    border: none;
    border-radius: 5px;
    padding: 10px 30px;
    transition: background-color 0.5s;
}

.btn-home:hover {
    background-color: #0077ff;
    background: linear-gradient(90deg, rgba(0, 119, 255, 1) 0%, rgba(52, 172, 231, 1) 50%, rgba(0, 119, 255, 1) 100%);
    background-repeat: no-repeat;
    background-size: 200% 100%;
    transition: background-size 1s, background-color 3s;
}

.btn-home:active {
    opacity: 0.3;
    transition: background-size 0s;
}

.games-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.game-details-link {
    display: flex;
    align-items: flex-start;
    padding: 0.75rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: background-color 0.3s;
    color: inherit;
}

.game-details-link:hover {
    background-color: #2a2c2f;
}

.icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.25rem;
    background-size: cover;
    background-position: center;
    margin-right: 0.75rem;
}

.game-title {
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.new-game {
    color: #f2b600;
    font-size: 0.75rem;
    font-weight: bold;
    margin-left: 0.5rem;
    text-transform: uppercase;
}

.platform-icons {
    display: flex;
    gap: 0.25rem;
}

.platform-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 确保下拉菜单内容不会导致页面滚动 */
.games-dropdown-panel {
    max-width: 100vw;
    overflow-x: hidden;
}

/* 确保下拉菜单内容不会导致页面滚动 */
.games-list {
    max-width: 100vw;
    width: 100vw;
    left: 0;
    right: 0;
    margin-left: 0;
    margin-right: 0;
}

.games-list-content {
    max-width: 100%;
    overflow: hidden;
}

/* 隐藏滚动条但保持滚动功能 */
.games-section::-webkit-scrollbar {
    width: 6px;
}

.games-section::-webkit-scrollbar-track {
    background: #151517;
}

.games-section::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 3px;
}

.games-section::-webkit-scrollbar-thumb:hover {
    background: #666;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    min-width: 160px;
    padding: 0.5rem 0;
    margin: 0.125rem 0 0;
    font-size: 0.875rem;
    color: #fff;
    text-align: left;
    list-style: none;
    background-color: #212224;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.175);
}

.dropdown-menu.show {
    display: block;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #fff;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}

.dropdown-item:hover,
.dropdown-item:focus {
    color: #fff;
    text-decoration: none;
    background-color: #495057;
}

.dropdown-divider {
    height: 0;
    margin: 0.5rem 0;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.dropdown-item.active,
.dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #007bff;
}

/* 游戏列表容器宽度 */
.game-list-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 548px) {
    .game-list-container {
        width: 507px;
        padding: 0;
    }
}

@media (min-width: 768px) {
    .game-list-container {
        width: 100%;
        padding: 0 40px;
    }
}

@media (min-width: 1280px) {
    .game-list-container {
        width: 961px;
        padding: 0;
    }
}

@media (min-width: 1440px) {
    .game-list-container {
        width: 1080px;
    }
}

@media (min-width: 1600px) {
    .game-list-container {
        width: 1200px;
    }
}

@media (min-width: 1920px) {
    .game-list-container {
        width: 1440px;
    }
}

/* 下拉菜单中的导航栏样式 */
.games-dropdown-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
}

/* Nexon-style navigation styles */
.global-navigation {
    background-color: #212224;
    height: 56px;
    min-width: 375px;
    padding: 0 17px 0 24px !important;
    box-shadow: 0px 2px 7px 0 rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
}

.nav-games-list, .nav-support {
    display: flex;
    align-items: center;
    height: 56px;
    padding: 3px 10px 0 10px;
    border-bottom: 3px solid transparent;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.75rem; /* 调小文字 */
}

.nav-games-list:hover, .nav-support:hover {
    color: rgba(255, 255, 255, 1);
    border-bottom: 3px solid #0077ff;
}

.nav-games-list.active {
    color: rgba(255, 255, 255, 1);
    border-bottom: 3px solid #0077ff;
}

.icon-btn-down {
    width: 11px;
    height: 5px;
    margin-left: 10px;
    margin-top: -1px;
    opacity: 0.7;
    transition: opacity 0.2s ease;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 5'%3E%3Cpath fill='%23FFF' d='M5.5 3.5L0 0v1l5.5 3.5L11 1V0z'/%3E%3C/svg%3E") no-repeat;
    background-size: contain;
}

.icon-btn-down.active {
    opacity: 1;
    transform: rotate(180deg);
}

.games-list {
    position: fixed;
    top: 56px;
    right: 0;
    bottom: 0;
    width: 100%;
    min-width: 320px;
    box-sizing: border-box;
    overflow: hidden;
    z-index: 9999;
}

.games-list-content {
    height: calc(100% - 60px);
}

.close {
    position: absolute;
    top: 15px;
    right: 30px;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    width: 37px;
    height: 37px;
    border-radius: 25px;
}

.close:hover {
    opacity: 1;
    background-color: #2c2d31;
}

.close:active {
    opacity: 0.5;
}

.games-filter-section {
    width: 100%;
    height: 77px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.games-filter-btn .filter-btn-text {
    display: none;
}

.games-filter-btn:hover {
    opacity: 1;
    cursor: pointer;
}

.games-filter-btn:active {
    opacity: 0.5;
}

.games-filter-btn.active {
    opacity: 1;
    border: solid 1px transparent;
    background-color: #0077ff;
    transition: all 0.2s ease;
}

.games-filter-btn.active:hover {
    background-color: #3093ff;
}

.games-filter-btn.active:active {
    opacity: 0.5;
}

.game-details-link {
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.2s ease;
    text-decoration: none;
}

.game-details-link:hover {
    background-color: #303134;
    text-decoration: none;
}

.games-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    min-width: 320px;
    min-height: 500px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 9999;
    background: #191a1c;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.games-list-content {
    padding: 0;
}

.games-section {
    max-height: calc(100vh - 160px);
    overflow-y: auto;
    width: 100%;
}

.icon {
    background-size: cover;
    background-position: center;
}

.game-details-link:hover {
    background-color: #303134;
}

.game-title {
    font-weight: bold;
}

.new-game {
    font-size: 0.75rem;
    margin-left: 0.5rem;
}

.platform-icons {
    display: flex;
    gap: 0.25rem;
    margin-top: 0.25rem;
}

.platform-icon {
    width: 16px;
    height: 16px;
}

.btn-buy-nx {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    color: #fff;
    background-color: #0077ff;
    background-size: 0 100%;
    border: none;
    height: 32px;
    padding: 9px 14px;
    border-radius: 5px;
    transition: background-color 0.5s;
}

.btn-buy-nx:hover {
    background-color: #0077ff;
    background: linear-gradient(90deg, rgba(0, 119, 255, 1) 0%, rgba(52, 172, 231, 1) 50%, rgba(0, 119, 255, 1) 100%);
    background-repeat: no-repeat;
    background-size: 200% 100%;
    transition: background-size 1s, background-color 3s;
}

.nav-account {
    height: 11px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.2s ease;
}

.nav-account:hover {
    color: rgba(255, 255, 255, 1);
}

.nav-account:active {
    opacity: 0.4;
}

.nav-toggle {
    display: none;
}

/* Media queries for desktop */
@media (min-width: 1024px) {
    .games-filter-section {
        height: 88px;
        margin-bottom: -10px;
    }

    .games-filter-btn {
        width: auto;
        padding: 0px 10px;
        margin: 5px;
    }

    .games-filter-btn .filter-btn-text {
        display: block;
        margin-left: 6px;
    }

    .nav-games-list, .nav-support {
        margin-left: 20px;
    }

    .nav-games-list {
        margin-left: 40px;
    }

    .nav-add-balance {
        margin-right: 50px;
    }
}

/* Slide transition animations */
.slide-enter-active, .slide-leave-active {
    transition: all 0.3s ease;
    overflow: hidden;
}

.slide-enter-to, .slide-leave {
    max-height: 100%;
    overflow: hidden;
}

.slide-enter, .slide-leave-to {
    overflow: hidden;
    max-height: 0;
}

/* Transition for dropdown */
.slide-down-enter-active {
    transition: all 0.3s ease;
}

.slide-down-leave-active {
    transition: all 0.3s ease;
}

.slide-down-enter, .slide-down-leave-to {
    opacity: 0;
    transform: translateY(-10px);
}

.slide-down-enter-to, .slide-down-leave {
    opacity: 1;
    transform: translateY(0);
}

/* Games list section animation */
.games-list-section {
    /* Games list animation */
    transition: 0.3s ease;
    overflow: hidden;
}

.games-list-section.slide-enter-to,
.games-list-section.slide-leave {
    max-height: 100%;
    overflow: hidden;
}

.games-list-section.slide-enter,
.games-list-section.slide-leave-to {
    overflow: hidden;
    max-height: 0;
}

/* 卷闸门动画效果 */
.slide-down-enter-active {
    transition: all 0.3s ease;
    transition-property: opacity, transform, height;
    overflow: hidden;
}

.slide-down-leave-active {
    transition: all 0.3s ease;
    transition-property: opacity, transform, height;
    overflow: hidden;
}

.slide-down-enter, .slide-down-leave-to {
    opacity: 0;
    transform: translateY(-10px);
    height: 0;
}

.slide-down-enter-to, .slide-down-leave {
    opacity: 1;
    transform: translateY(0);
    height: auto;
}

/* 卷闸门动画 */
.roll-down-enter-active, .roll-down-leave-active {
    max-height: 100vh;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    overflow: hidden;
}

.roll-down-enter, .roll-down-leave-to {
    max-height: 0;
    opacity: 0;
}

/* 淡入淡出动画 */
.fade-enter-active, .fade-leave-active {
    transition: opacity 0.3s ease;
}

.fade-enter, .fade-leave-to {
    opacity: 0;
}

/* 全屏下拉菜单样式 */
.games-dropdown-panel {
    width: 100vw !important;
    left: 0 !important;
    right: 0 !important;
    background-color: #151517 !important;
    background: #151517 !important;
    box-sizing: border-box;
    min-height: 500px;
    color: white;
}

/* 导航项样式 */
.nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-bottom: 0.125rem; /* 为蓝线留出空间 */
}

.nav-item .nav-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0.125rem;
    background-color: #60a5fa; /* tailwind的blue-400 */
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-item:hover .nav-line {
    transform: scaleX(1);
}

/* GAMES菜单项容器 */
.games-menu-container {
    position: static;
}

.games-dropdown-nav button {
    min-width: 80px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* 游戏列表样式 */
.games-dropdown-list {
    margin-top: 1rem;
}

/* 大图切换动画 */
.carousel-wrapper {
    position: relative;
    height: 100%;
}

/* ===== 增强重叠交叉感轮播图动画 ===== */

/* 共用动画设置 */
.slide-next-enter-active,
.slide-next-leave-active,
.slide-prev-enter-active,
.slide-prev-leave-active {
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    will-change: transform, opacity;
}

/* 下一个幻灯片：向右切换 - 增强重叠感 */
.slide-next-enter {
    opacity: 0.3;
    transform: translateX(60px);
    z-index: 10;
}

.slide-next-enter-to {
    opacity: 1;
    transform: translateX(0);
}

.slide-next-leave {
    opacity: 1;
    transform: translateX(0);
}

.slide-next-leave-to {
    opacity: 0.3;
    transform: translateX(-60px);
}

/* 上一个幻灯片：向左切换 - 增强重叠感 */
.slide-prev-enter {
    opacity: 0.3;
    transform: translateX(-60px);
    z-index: 10;
}

.slide-prev-enter-to {
    opacity: 1;
    transform: translateX(0);
}

.slide-prev-leave {
    opacity: 1;
    transform: translateX(0);
}

.slide-prev-leave-to {
    opacity: 0.3;
    transform: translateX(60px);
}

/* 增强交叉重叠感的关键：让新旧幻灯片在整个动画过程中都可见 */
.slide-next-enter-active,
.slide-prev-enter-active {
    /* 进入动画：从30%透明度到100% */
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-next-leave-active,
.slide-prev-leave-active {
    /* 离开动画：从100%透明度到30% */
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* 关键：确保动画同步，新旧幻灯片同时可见 */
.carousel-wrapper {
    position: relative;
    height: 100%;
    overflow: hidden;
}

/* 添加一个额外的重叠阶段效果 */
@keyframes crossOverlap {
    0% {
        opacity: 0.3;
        filter: blur(1px);
    }
    40% {
        opacity: 0.7;
        filter: blur(0px);
    }
    60% {
        opacity: 0.7;
        filter: blur(0px);
    }
    100% {
        opacity: 1;
        filter: blur(0px);
    }
}

@keyframes crossOverlapOut {
    0% {
        opacity: 1;
        filter: blur(0px);
    }
    40% {
        opacity: 0.7;
        filter: blur(0px);
    }
    60% {
        opacity: 0.7;
        filter: blur(1px);
    }
    100% {
        opacity: 0.3;
        filter: blur(2px);
    }
}

/* 应用重叠动画 */
.slide-next-enter-active,
.slide-prev-enter-active {
    animation: crossOverlap 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-next-leave-active,
.slide-prev-leave-active {
    animation: crossOverlapOut 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* 确保两个幻灯片在动画过程中都有足够的透明度，产生重叠感 */
.slide-next-enter,
.slide-prev-enter,
.slide-next-leave-to,
.slide-prev-leave-to {
    opacity: 0.4 !important;
}

/* 重点：增加透明度过渡的中间值，让新旧幻灯片在中间阶段都有较高透明度 */
.slide-next-leave {
    opacity: 1;
}

.slide-next-leave-active {
    opacity: 1;
    transition: opacity 0.5s ease 0s, transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
}

/* 添加一个视觉辅助，显示重叠阶段 */
.carousel-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 5;
    pointer-events: none;
}


/* 手机版蓝线效果 - 使用上次正确的代码 */
/* 修复移动版蓝线和灰线高度问题 - 确保一致 */
.banner-nav .preview-list .preview {
    height: 4px !important;
    transition: all 0.3s ease;
}

.banner-nav .preview-list .preview:not(.selected) {
    background-color: hsla(0, 0%, 100%, .3) !important;
}

/* 确保在移动端蓝线和灰线高度一致 */
@media (max-width: 1279px) {
    .banner-nav .preview-list .preview {
        height: 4px !important;
    }

    .banner-nav .preview-list .preview.selected {
        height: 4px !important;
        border-bottom: none !important;
    }
}

/* 确保在移动端选中的蓝线正确显示 */
@media (max-width: 1279px) {
    .banner-nav .preview-list .preview.selected {
        background-color: rgba(0, 119, 255, .5) !important;
    }

    .banner-nav .preview-list .preview.selected .timer-bar {
        display: block !important;
        background-color: #07f;
        height: 100%;
        transition: width linear;
    }

    .banner-nav .preview-list .preview:not(.selected) .timer-bar {
        display: none !important;
    }
}

/* 修改：电脑版小图列表容器 */
@media (min-width: 1280px) {
    .banner-nav {
        height: 80px !important;
        width: 961px !important;
        margin: 0 auto !important;
        position: relative;
        overflow: hidden;
        padding: 0 27px 0 0 !important;
        left: 0;
        right: 0;
        box-sizing: border-box;
    }

    .banner-nav .preview-list-container {
        width: calc(100% - 27px) !important;
        height: 80px !important;
        overflow: hidden;
        position: relative;
        margin: 0;
        box-sizing: border-box;
    }

    .banner-nav .preview-list {
        display: flex !important;
        transition: transform 0.3s ease;
        position: absolute;
        left: 0;
        top: 0;
        height: 80px !important;
        width: auto;
        min-width: calc(5 * 232px) !important;
    }

    .banner-nav .preview-list .preview {
        width: 232px !important;
        min-width: 232px !important;
        height: 80px !important;
        flex-shrink: 0;
        position: relative;
        background-color: rgba(46, 46, 50, .5) !important;
        cursor: pointer;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    .banner-nav .preview-list .preview:last-child {
        border-right: none;
    }

    .banner-nav .preview-list .preview.selected {
        background-color: rgba(105, 108, 113, .5) !important;
    }

    .banner-nav .preview-list .preview:hover {
        background-color: rgba(105, 108, 113, .5);
    }

    /* 确保小图内容显示 */
    .banner-nav .preview-list .preview .preview-contents {
        display: flex !important;
        height: 100%;
        width: 100%;
        align-items: center;
        padding: 10px 15px;
        box-sizing: border-box;
    }

    .banner-nav .preview-list .preview .preview-contents .preview-logo {
        height: 60px;
        width: 60px;
        min-width: 60px;
        margin-right: 10px;
        flex-shrink: 0;
    }

    .banner-nav .preview-list .preview .preview-contents > div {
        flex: 1;
        overflow: hidden;
        min-width: 0;
    }

    .banner-nav .preview-list .preview .preview-contents .preview-name {
        color: hsla(0, 0%, 100%, .5);
        font-family: Roboto;
        font-size: 10px;
        margin-bottom: 5px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .banner-nav .preview-list .preview .preview-contents .preview-title {
        color: hsla(0, 0%, 100%, .8);
        font-family: Roboto;
        font-size: 12px;
        line-height: 1.25;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* 电脑版蓝线显示 */
    .banner-nav .preview-list .preview.selected .timer-bar {
        background-color: #07f !important;
        height: 5px !important;
        transition: width 0.05s linear !important;
        width: 0%;
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: 2;
        display: block !important;
    }

    .banner-nav .preview-list .preview.selected .timer-bar-bg {
        display: block !important;
        background-color: hsla(0, 0%, 100%, .1) !important;
        bottom: 0;
        height: 5px;
        position: absolute;
        width: 100%;
        z-index: 1;
    }

    .banner-nav .preview-list .preview:not(.selected) .timer-bar {
        display: none;
    }

    .banner-nav .preview-list .preview:not(.selected) .timer-bar-bg {
        display: none;
    }
}

@media (min-width: 1440px) {
    .banner-nav {
        height: 100px !important;
        padding: 0 33px 0 0 !important;
        width: 1080px !important;
    }

    .banner-nav .preview-list-container {
        height: 100px !important;
        width: calc(100% - 33px) !important;
    }

    .banner-nav .preview-list {
        height: 100px !important;
        min-width: calc(5 * 261px) !important;
    }

    .banner-nav .preview-list .preview {
        width: 261px !important;
        min-width: 261px !important;
        height: 100px !important;
    }

    .banner-nav .preview-list .preview .preview-contents {
        padding: 13px 20px;
    }

    .banner-nav .preview-list .preview .preview-contents .preview-logo {
        height: 70px;
        width: 70px;
        min-width: 70px;
        margin-right: 15px;
    }

    .banner-nav .preview-list .preview .preview-contents .preview-name {
        font-size: 12px;
    }

    .banner-nav .preview-list .preview .preview-contents .preview-title {
        font-size: 14px;
    }
}

@media (min-width: 1600px) {
    .banner-nav {
        height: 110px !important;
        padding: 0 36px 0 0 !important;
        width: 1200px !important;
    }

    .banner-nav .preview-list-container {
        height: 110px !important;
        width: calc(100% - 36px) !important;
    }

    .banner-nav .preview-list {
        height: 110px !important;
        min-width: calc(5 * 290px) !important;
    }

    .banner-nav .preview-list .preview {
        width: 290px !important;
        min-width: 290px !important;
        height: 110px !important;
    }

    .banner-nav .preview-list .preview .preview-contents {
        padding: 15px 25px;
    }

    .banner-nav .preview-list .preview .preview-contents .preview-logo {
        height: 80px;
        width: 80px;
        min-width: 80px;
        margin-right: 20px;
    }

    .banner-nav .preview-list .preview .preview-contents .preview-name {
        font-size: 14px;
    }

    .banner-nav .preview-list .preview .preview-contents .preview-title {
        font-size: 16px;
    }
}

@media (min-width: 1920px) {
    .banner-nav {
        height: 120px !important;
        padding: 0 42px 0 0 !important;
        width: 1440px !important;
    }

    .banner-nav .preview-list-container {
        height: 120px !important;
        width: calc(100% - 42px) !important;
    }

    .banner-nav .preview-list {
        height: 120px !important;
        min-width: calc(5 * 349px) !important;
    }

    .banner-nav .preview-list .preview {
        width: 349px !important;
        min-width: 349px !important;
        height: 120px !important;
    }

    .banner-nav .preview-list .preview .preview-contents {
        padding: 20px 30px;
    }

    .banner-nav .preview-list .preview .preview-contents .preview-logo {
        height: 90px;
        width: 90px;
        min-width: 90px;
        margin-right: 25px;
    }

    .banner-nav .preview-list .preview .preview-contents .preview-name {
        font-size: 15px;
    }

    .banner-nav .preview-list .preview .preview-contents .preview-title {
        font-size: 17px;
    }
}

/* 移动端小图样式 */
.banner-nav {
    bottom: 0;
    height: 4px;
    padding: 0 20px;
    position: absolute;
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-nav .preview-list {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;

    display: flex;
    height: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: auto;
    scroll-behavior: smooth;
    width: 335px;
    max-width: 100%;
}

.banner-nav .preview-list .preview {
    background-color: hsla(0, 0%, 100%, .3);
    cursor: pointer;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 4px;
    overflow: hidden;
    -webkit-transition: all .2s;
    transition: all .2s;
    min-width: auto;
    max-width: 60px;
}

.banner-nav .preview-list .preview:not(:last-child) {
    margin-right: 3px;
}

.banner-nav .preview-list .preview.selected {
    background-color: rgba(0, 119, 255, .5);
    height: 4px;
    min-width: auto;
}

.banner-nav .preview-list .preview .preview-contents {
    display: none;
}

.banner-nav .preview-list .preview .preview-contents .preview-logo {
    position: relative;
    overflow: hidden;
}

.banner-nav .preview-list .preview .timer-bar {
    background-color: #07f;
    height: 100%;
    -webkit-transition: all linear;
    transition: all linear;
    width: 0;
}

.banner-nav .preview-list .preview .time-bar-bg {
    display: none;
}

.banner-nav .arrow {
    background-color: rgba(0, 0, 0, .5);
    border: 1px solid hsla(0, 0%, 100%, .2);
    bottom: 231px;
    cursor: pointer;
    height: 60px;
    position: absolute;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all .2s;
    transition: all .2s;
    width: 42px;
}

.banner-nav .arrow.desktop {
    display: none;
}

.banner-nav .arrow:not(:active):not(.disabled):hover {
    background-color: #000;
    border: 1px solid hsla(0, 0%, 100%, .7);
}

.banner-nav .arrow:not(:active):not(.disabled):hover:before {
    opacity: 1;
}

.banner-nav .arrow:not(.disabled):active:before {
    opacity: .5;
}

.banner-nav .arrow:before {
    background-position: 50%;
    background-repeat: no-repeat;
    content: "";
    height: 100%;
    opacity: .8;
    position: absolute;
    width: 100%;
}

.banner-nav .arrow.previous {
    left: 0;
}

.banner-nav .arrow.previous:before {
    background-image: url(../images/previous.svg);
}

.banner-nav .arrow.next {
    right: 0;
}

.banner-nav .arrow.next:before {
    background-image: url(../images/next.svg);
}

@media (min-width: 548px) {
    .banner-nav .preview-list {
        width: 507px;
    }
}

@media (min-width: 768px) {
    .banner-nav {
        height: 7px;
    }

    .banner-nav .preview-list .preview {
        -webkit-box-flex: inherit;
        -ms-flex: inherit;
        flex: inherit;
        height: 3px;
        width: 54px;
        max-width: 77px;
    }

    .banner-nav .preview-list .preview.selected {
        height: 7px;
        width: 77px;
    }

    .banner-nav .preview-list .preview:not(:last-child) {
        margin-right: 5px;
    }

    .banner-nav .arrow {
        bottom: 315px;
    }
}

@media (min-width: 1024px) {
    .banner-nav .arrow {
        bottom: 100px;
    }
}

@media (min-width: 1280px) {
    .banner-nav {
        height: 80px;
        left: 0;
        margin: 0 auto;
        padding: 0 27px 0 0 !important;
        right: 0;
        width: 961px !important;
    }

    .banner-nav.extended {
        padding: 0 27px 0 0 !important;
    }

    .banner-nav.extended .preview-list {
        width: 100%;
    }

    .banner-nav.extended .preview-list .preview {
        min-width: 232px !important;
    }

    .banner-nav.extended .preview-list .preview.selected {
        width: 232px !important;
    }

    .banner-nav .arrow {
        bottom: 0;
        height: 40px;
        right: 0;
        width: 27px;
    }

    .banner-nav .arrow.disabled {
        cursor: default;
    }

    .banner-nav .arrow.disabled:before {
        opacity: .2;
    }

    .banner-nav .arrow.mobile {
        display: none;
    }

    .banner-nav .arrow.desktop {
        display: block;
    }

    .banner-nav .arrow.previous {
        bottom: 40px;
        left: auto;
    }

    .banner-nav .arrow.previous:before {
        background-image: url(../images/previous_1280.svg);
    }

    .banner-nav .arrow.previous:not(.nextClicked).disabled.nextHovered {
        border-bottom: 1px solid hsla(0, 0%, 100%, .7);
    }

    .banner-nav .arrow.next {
        border-top: none !important;
        left: auto;
    }

    .banner-nav .arrow.next:before {
        background-image: url(../images/next_1280.svg);
    }

    .banner-nav .arrow.mobile {
        display: none !important;
    }
}

@media (min-width: 1440px) {
    .banner-nav {
        height: 100px;
        padding: 0 33px 0 0 !important;
        width: 1080px !important;
    }

    .banner-nav.extended .preview-list {
        width: 100%;
    }

    .banner-nav.extended .preview-list .preview {
        min-width: 261px !important;
    }

    .banner-nav.extended .preview-list .preview.selected {
        width: 261px !important;
    }

    .banner-nav .arrow {
        height: 50px;
        width: 33px;
    }

    .banner-nav .arrow.previous {
        bottom: 50px;
    }
}

@media (min-width: 1600px) {
    .banner-nav {
        height: 110px;
        padding: 0 36px 0 0 !important;
        width: 1200px !important;
    }

    .banner-nav.extended .preview-list {
        width: 100%;
    }

    .banner-nav.extended .preview-list .preview {
        min-width: 290px !important;
    }

    .banner-nav.extended .preview-list .preview.selected {
        width: 290px !important;
    }

    .banner-nav .arrow {
        height: 55px;
        width: 36px;
    }

    .banner-nav .arrow.previous {
        bottom: 55px;
    }

    .banner-nav .arrow.previous:before {
        background-image: url(../images/previous_1600.svg);
    }

    .banner-nav .arrow.next:before {
        background-image: url(../images/next_1600.svg);
    }
}

@media (min-width: 1920px) {
    .banner-nav {
        height: 120px;
        padding: 0 42px 0 0 !important;
        width: 1440px !important;
    }

    .banner-nav.extended .preview-list {
        width: 100%;
    }

    .banner-nav.extended .preview-list .preview {
        min-width: 349px !important;
    }

    .banner-nav.extended .preview-list .preview.selected {
        width: 349px !important;
    }

    .banner-nav .arrow {
        height: 60px;
        width: 42px;
    }

    .banner-nav .arrow.previous {
        bottom: 60px;
    }

    .banner-nav .arrow.previous:before {
        background-image: url(../images/previous.svg);
    }

    .banner-nav .arrow.next:before {
        background-image: url(../images/next.svg);
    }
}

/* 大图响应式优化 */
@media (max-width: 374px) {
    .banner {
        height: 471px ;
        position: relative;
        overflow: hidden;
    }

    .carousel-wrapper {
        height: 100%;
    }

    .carousel {
        height: 100%;
    }

    .carousel .carousel-img {
        height: 331px !important;
        background-position: center !important;
        background-size: cover !important;
        width: 100% !important;
    }

    .carousel .shadow.bottom {
        height: 300px !important;
        background-size: cover !important;
        background-position: bottom !important;
        width: 100% !important;
    }

    .carousel .content {
        padding-bottom: 48px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .carousel .content .game-logo {
        height: 73px !important;
        width: 100% !important;
    }

    .carousel .content .game-info {
        max-width: 335px !important;
        width: 100% !important;
    }

    .carousel .content .game-info .subtitle {
        font-size: 14px !important;
        line-height: 1.57 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .carousel .shadow.bottom {
        width: 100% !important;
        left: 0 !important;
        right: 0 !important;
    }
}

@media (min-width: 375px) and (max-width: 767px) {
    .banner {
        height: 471px ;
    }

    .carousel .carousel-img {
        height: 331px ;
    }

    .carousel .shadow.bottom {
        height: 300px;
    }

    .carousel .content .game-logo {
        height: 73px;
    }
}

.carousel-next-enter-active,
.carousel-next-leave-active,
.carousel-previous-enter-active,
.carousel-previous-leave-active {
    -webkit-transition: all 1s;
    transition: all 1s;
}

.carousel-next-enter {
    opacity: 0;
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
}

.carousel-previous-enter {
    opacity: 0;
    -webkit-transform: translate(-50px);
    transform: translate(-50px);
}

.carousel {
    bottom: 0;
    height: 100%;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    white-space: nowrap;
    width: 100%;
}

.carousel .carousel-img {
    background-position: 50%;
    background-size: cover;
    height: 331px;
    width: 100%;
    overflow: hidden;
    max-width: 100%;
    box-sizing: border-box;
}

.carousel .shadow {
    position: absolute;
    display: none;
}

.carousel .shadow.bottom {
    background: url(../images/bottom_375.png) no-repeat 50%;
    bottom: 0;
    display: block;
    height: 300px;
    width: 100%;
}

.carousel .content {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;

    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    left: 0;
    margin: auto;
    padding-bottom: 48px;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
}

.carousel .content .game-logo {
    height: 73px;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.carousel .content .game-logo .logo-img {
    max-height: 100%;
    max-width: 80%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .carousel .content .game-logo {
        height: 60px;
        position: relative;
        top: 0;
        left: 0;
        margin-top: 40px;
        margin-bottom: 15px;
    }

    .carousel .content .game-logo .logo-img {
        max-height: 50px;
        max-width: 70%;
    }
}

.carousel .content .game-info {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;

    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    max-width: 335px;
    white-space: pre-wrap;
}

.carousel .content .game-info.nologo {
    margin-bottom: 25px;
}

.carousel .content .game-info .title {
    color: #fff;
    display: none;
    font-family: Roboto, serif;
    font-size: 37px;
    font-weight: 700;
    letter-spacing: -.75px;
    line-height: 1.19;
    margin-bottom: 15px;
    text-align: center;
}

.carousel .content .game-info .subtitle {
    color: #fff;
    font-size: 14px;
    letter-spacing: -.28px;
    line-height: 1.57;
    opacity: .7;
    text-align: center;
    width: 100%;
    max-width: 100%;
    word-wrap: break-word;
}

.carousel .content .game-info button {
    background-color: #151517;
    border: 1px solid hsla(0, 0%, 100%, .5);
    border-radius: 5px;
    color: #fff;
    font-size: 12px;
    height: 46px;
    margin-top: 25px;
    padding: 0 35px;
    width: auto;
}

.carousel .content .game-info button:hover {
    border: 1px solid #fff;
}

.carousel .content .game-info button:active {
    border: 1px solid hsla(0, 0%, 100%, .2);
    color: hsla(0, 0%, 100%, .2);
}

@media (min-width: 548px) {
    .carousel .content .game-info {
        max-width: 507px;
    }
}

@media (min-width: 768px) {
    .carousel .carousel-img {
        height: 441px;
    }

    .carousel .shadow.bottom {
        background: url(../images/bottom_768.png) no-repeat top;
        height: 340px;
    }

    .carousel .content {
        padding-bottom: 49px;
    }

    .carousel .content .game-logo {
        height: 104px;
    }

    .carousel .content .game-logo .logo-img {
        max-height: 80px;
        max-width: 80%;
    }

    .carousel .content .game-info {
        padding: 0 110px;
        max-width: 100%;
    }

    .carousel .content .game-info.nologo {
        margin-bottom: 50px;
    }

    .carousel .content .game-info .title {
        display: block;
    }

    .carousel .content .game-info .subtitle {
        padding: 0 40px;
    }
}

@media (min-width: 1024px) {
    .carousel {
        width: 1024px;
    }

    .carousel .carousel-img {
        height: 100%;
        position: absolute;
        right: 0;
        width: 813px;
    }

    .carousel .shadow {
        display: block;
    }

    .carousel .shadow.left {
        background: url(../images/left.png) no-repeat top;
        background-size: cover;
        height: 100%;
        width: 589px;
    }

    .carousel .shadow.right {
        background: url(../images/right.png) no-repeat top;
        background-size: cover;
        height: 100%;
        right: 0;
        width: 223px;
    }

    .carousel .shadow.bottom {
        background: url(../images/bottom_1920.png) no-repeat top;
        background-size: cover;
        height: 94px;
    }

    .carousel .content {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding-bottom: 7px;
        width: 766px;
    }

    .carousel .content .game-logo {
        height: 54px;
        margin: 0 0 15px;
        width: auto;
        justify-content: flex-start;
    }

    .carousel .content .game-logo .logo-img {
        max-height: 40px;
        max-width: 200px;
    }

    .carousel .content .game-info {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding: 0;
    }

    .carousel .content .game-info .title {
        font-size: 29px;
        letter-spacing: -.58px;
        line-height: 1.14;
        margin-bottom: 10px;
        text-align: left;
        width: auto;
        max-width: 100%;
    }

    .carousel .content .game-info .subtitle {
        color: #a8a8a8;
        font-size: 12px;
        letter-spacing: -.24px;
        line-height: 1.67;
        padding: 0;
        text-align: left;
        width: auto;
        max-width: 100%;
    }

    .carousel .content .game-info button {
        font-size: 10px;
        height: 36px;
        margin-top: 18px;
        padding: 0 23px;
    }
}

@media (min-width: 1280px) {
    .carousel {
        width: 1280px;
    }

    .carousel .carousel-img {
        width: 1022px;
    }

    .carousel .shadow.left {
        width: 738px;
    }

    .carousel .shadow.right {
        width: 278px;
    }

    .carousel .shadow.bottom {
        height: 118px;
    }

    .carousel .content {
        padding-bottom: 80px;
        width: 961px;
    }

    .carousel .content .game-logo {
        height: 54px;
    }

    .carousel .content .game-logo .logo-img {
        max-height: 45px;
        max-width: 250px;
    }

    .carousel .content .game-info .title {
        width: auto;
        max-width: 100%;
    }
}

@media (min-width: 1440px) {
    .carousel {
        width: 1440px;
    }

    .carousel .carousel-img {
        width: 1148px;
    }

    .carousel .shadow.left {
        width: 830px;
    }

    .carousel .shadow.right {
        width: 314px;
    }

    .carousel .shadow.bottom {
        height: 133px;
    }

    .carousel .content {
        padding-bottom: 91px;
        width: 1080px;
    }

    .carousel .content .game-logo {
        height: 63px;
    }

    .carousel .content .game-logo .logo-img {
        max-height: 55px;
        max-width: 300px;
    }

    .carousel .content .game-info .title {
        font-size: 33px;
        letter-spacing: -.66px;
        line-height: 1.29;
        width: auto;
        max-width: 100%;
    }

    .carousel .content .game-info .subtitle {
        font-size: 14px;
        letter-spacing: -.28px;
        line-height: 1.43;
        width: auto;
        max-width: 100%;
    }

    .carousel .content .game-info button {
        font-size: 12px;
        height: 46px;
        padding: 0 35px;
    }
}

@media (min-width: 1600px) {
    .carousel {
        width: 1600px;
    }

    .carousel .carousel-img {
        width: 1292px;
    }

    .carousel .shadow.left {
        width: 911px;
    }

    .carousel .shadow.right {
        width: 355px;
    }

    .carousel .shadow.bottom {
        height: 150px;
    }

    .carousel .content {
        padding-bottom: 101px;
        width: 1200px;
    }

    .carousel .content .game-logo {
        height: 103px;
    }

    .carousel .content .game-logo .logo-img {
        max-height: 85px;
        max-width: 350px;
    }

    .carousel .content .game-info .title {
        font-size: 37.5px;
        line-height: 1.19;
        letter-spacing: -.75px;
        width: auto;
        max-width: 100%;
    }

    .carousel .content .game-info .subtitle {
        color: hsla(0, 0%, 100%, .7);
        line-height: 1.57;
    }
}

@media (min-width: 1920px) {
    .carousel {
        width: 1920px;
    }

    .carousel .carousel-img {
        width: 1530px;
    }

    .carousel .shadow.left {
        width: 1106px;
    }

    .carousel .shadow.right {
        width: 419px;
    }

    .carousel .shadow.bottom {
        height: 177px;
    }

    .carousel .content {
        padding-bottom: 120px;
        width: 1440px;
    }

    .carousel .content .game-logo {
        height: 120px;
    }

    .carousel .content .game-logo .logo-img {
        max-height: 100px;
        max-width: 400px;
    }
}

.banner {
    height: 471px;
    position: relative;
    width: 100%;
}

.banner.stickied {
    margin-bottom: 100px;
}

@media (min-width: 768px) {
    .banner {
        height: 600px;
    }
}

@media (min-width: 1024px) {
    .banner {
        height: 353px;
    }
}

@media (min-width: 1280px) {
    .banner {
        height: 441px;
    }
}

@media (min-width: 1440px) {
    .banner {
        height: 495px;
    }
}

@media (min-width: 1600px) {
    .banner {
        height: 559px;
    }
}

@media (min-width: 1920px) {
    .banner {
        height: 660px;
    }
}

img {
    vertical-align: middle;
}

img {
    border: 0;
}

button {
    text-transform: uppercase;
}


/* 修复电脑版小图内容显示问题 */
@media (min-width: 1280px) {
    .banner-nav .preview-list .preview .preview-contents {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .banner-nav .preview-list .preview {
        height: 80px !important;
        min-height: 80px !important;
    }

    .banner-nav .preview-list .preview.selected .timer-bar,
    .banner-nav .preview-list .preview.selected .timer-bar-bg {
        height: 5px !important;
        bottom: 0 !important;
    }

    .banner-nav .preview-list-container {
        width: calc(4 * 232px) !important;
        margin: 0 auto;
        overflow: hidden;
    }
}

@media (min-width: 1440px) {
    .banner-nav .preview-list .preview {
        height: 100px !important;
        min-height: 100px !important;
    }

    .banner-nav .preview-list-container {
        width: calc(4 * 261px) !important;
    }
}

@media (min-width: 1600px) {
    .banner-nav .preview-list .preview {
        height: 110px !important;
        min-height: 110px !important;
    }

    .banner-nav .preview-list-container {
        width: calc(4 * 290px) !important;
    }
}

@media (min-width: 1920px) {
    .banner-nav .preview-list .preview {
        height: 120px !important;
        min-height: 120px !important;
    }

    .banner-nav .preview-list-container {
        width: calc(4 * 349px) !important;
    }
}

.banner-nav .arrow {
    transition: opacity 0.3s ease;
}

/* 当按钮被隐藏时，确保不占用空间 */
.banner-nav .arrow[style*="display: none"] {
    display: none !important;
}


/* ======= 修复：当幻灯片数量小于等于4张时，预览列表靠左对齐 ======= */
@media (min-width: 1280px) {
    /* 当幻灯片数量小于等于4张时，整个导航区域不需要右边padding */
    .banner-nav:not(.has-arrows) {
        padding-right: 0 !important;
    }

    /* 当没有箭头按钮时，预览列表容器占满整个宽度 */
    .banner-nav:not(.has-arrows) .preview-list-container {
        width: 100% !important;
    }

    /* 预览列表靠左对齐 */
    .banner-nav:not(.has-arrows) .preview-list {
        justify-content: flex-start !important;
        transform: none !important;
    }

    /* 确保预览项宽度正确 */
    .banner-nav:not(.has-arrows) .preview-list .preview {
        width: 232px !important;
    }
}

@media (min-width: 1440px) {
    .banner-nav:not(.has-arrows) .preview-list .preview {
        width: 261px !important;
    }
}

@media (min-width: 1600px) {
    .banner-nav:not(.has-arrows) .preview-list .preview {
        width: 290px !important;
    }
}

@media (min-width: 1920px) {
    .banner-nav:not(.has-arrows) .preview-list .preview {
        width: 349px !important;
    }
}


.launcher-info {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 436px;
    margin-top: 90px;
    overflow: hidden;
    position: relative;
    width: 100%;
    z-index: 1
}

.launcher-info .mobile-bg {
    background: url(../images/bg.png) no-repeat 50%;
    bottom: 0;
    /*height: 344px;*/
    left: 0;
    position: absolute;
    width: 100%;
    z-index: -1
}

.launcher-info .preview-img {
    height: 180px;
    margin: 0 0 35px 35px;
    width: 308px
}

.launcher-info .contents {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0 auto
}

.launcher-info .contents .title {
    color: #fff;
    font-family: Roboto;
    font-size: 27.5px;
    font-weight: 700;
    letter-spacing: .55px;
    margin-bottom: 20px;
    text-transform: uppercase
}

.launcher-info .contents .subtitle {
    color: hsla(0, 0%, 100%, .3);
    font-family: Roboto;
    font-size: 14px;
    letter-spacing: .28px;
    margin-bottom: 30px;
    text-align: center
}

.launcher-info .contents button {
    background-color: #07f;
    border: none;
    border-radius: 5px;
    color: #fff;
    height: 71px;
    margin: 0;
    outline: 0;
    padding: 0 20px 0 18px;
    -webkit-transition: background-color .2s, background-color .2s, border-color .2s, color .2s;
    transition: background-color .2s, background-color .2s, border-color .2s, color .2s;
    width: auto
}

.launcher-info .contents button:not(:active):not(.offPlatform):hover {
    background-color: #4ca1ff
}

.launcher-info .contents button:active:not(.offPlatform) {
    background-color: #0c5097;
    color: hsla(0, 0%, 100%, .5)
}

.launcher-info .contents button:active:not(.offPlatform) .download {
    opacity: .5
}

.launcher-info .contents button.offPlatform {
    background-color: #535353;
    color: hsla(0, 0%, 100%, .5);
    cursor: default
}

.launcher-info .contents button.offPlatform .download {
    opacity: .5
}

.launcher-info .contents button .button-contents {
    display: inline-block
}

.launcher-info .contents button .button-contents .download-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    text-align: left;
    text-transform: uppercase
}

.launcher-info .contents button .button-contents .download-subtitle {
    font-size: 14.5px;
    text-align: left
}

.launcher-info .contents button .download {
    display: inline-block;
    height: 26px;
    margin: 0 13px 5px 0;
    width: 21px
}

@media (min-width: 768px) {
    .launcher-info {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        background: url(../images/bg.png) no-repeat top;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        height: 304px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .launcher-info .mobile-bg {
        display: none
    }

    .launcher-info .preview-img {
        height: 206px;
        margin: 58px 22px 0 0;
        width: 352px
    }

    .launcher-info .contents {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        margin: 80px 0 20px 0
    }

    .launcher-info .contents .subtitle {
        text-align: left
    }
}

@media (min-width: 1024px) {
    .launcher-info {
        height: 290px
    }

    .launcher-info .preview-img {
        height: 228px;
        margin: 47px 9px 0 0;
        width: 389px
    }

    .launcher-info .contents .title {
        font-size: 24.5px;
        letter-spacing: .49px
    }

    .launcher-info .contents .subtitle {
        font-size: 12px;
        letter-spacing: .24px;
        margin-bottom: 25px
    }

    .launcher-info .contents button {
        height: 50px;
        padding: 0 13px
    }

    .launcher-info .contents button .button-contents .download-title {
        font-size: 12.5px;
        margin: 2px 0 0 0
    }

    .launcher-info .contents button .button-contents .download-subtitle {
        font-size: 10.5px
    }

    .launcher-info .contents button .download {
        background-size: contain;
        height: 19px;
        margin: 0 9px 3px 0;
        width: 15px
    }
}

@media (min-width: 1440px) {
    .launcher-info {
        background-repeat: repeat;
        height: 415px
    }

    .launcher-info .preview-img {
        height: 327px;
        margin: 67px 13px 0 0;
        width: 556px
    }

    .launcher-info .contents {
        margin: 140px 0 20px 0
    }

    .launcher-info .contents .title {
        font-size: 36.5px;
        letter-spacing: .73px;
        margin-bottom: 30px
    }

    .launcher-info .contents .subtitle {
        font-size: 16px;
        letter-spacing: .32px;
        margin-bottom: 35px
    }

    .launcher-info .contents button {
        height: 71px;
        padding: 0 20px 0 18px
    }

    .launcher-info .contents button .button-contents .download-title {
        font-size: 16px;
        margin: 0 0 5px 0
    }

    .launcher-info .contents button .button-contents .download-subtitle {
        font-size: 14.5px
    }

    .launcher-info .contents button .download {
        background-size: contain;
        height: 26px;
        margin: 0 13px 5px 0;
        width: 21px
    }
}


.footer {
    font-family: sans-serif;
    background-color: #191a1c;
    font-size: 12px;
    width: 100%;
    min-width: 375px;
}

.footer.hideFooter {
    display: none !important;
}

.footer.tw.zh {
    font-family: '微軟正黑體', 'Microsoft JhengHei', Arial, Helvetica, sans-serif;
}

.footer .footer-top {
    position: relative;
    height: auto;
    min-width: 150px;
    padding-left: 0;
    border-bottom: 1px solid #000000;
}

.footer .footer-top .language {
    position: relative;
    color: #dcdcdc;
    width: 100%;
    height: 50px;
}

.footer .footer-top .language span {
    vertical-align: top;
    display: inline-block;
}

.footer .footer-top .language ul {
    margin-bottom: 0;
}

.footer .footer-top .language .current-language {
    position: relative;
    text-align: center;
    line-height: 50px;
    cursor: pointer;
}

.footer .footer-top .language .current-language .icon-locale {
    width: 13px;
    height: 13px;
    margin-right: 13px;
    margin-top: 18px;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.footer .footer-top .language .current-language .icon-footer-arrow {
    width: 13px;
    height: 13px;
    margin-left: 13px;
    margin-top: 18px;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.footer .footer-top .language .current-language:hover .icon-locale,
.footer .footer-top .language .current-language:hover .icon-footer-arrow {
    opacity: 1;
}

.footer .footer-top .language .slide-enter-active,
.footer .footer-top .language .slide-leave-active {
    transition: 0.2s ease-out;
}

.footer .footer-top .language .slide-enter-to,
.footer .footer-top .language .slide-leave {
    max-height: 294px;
    overflow: hidden;
}

.footer .footer-top .language .slide-enter,
.footer .footer-top .language .slide-leave-to {
    overflow: hidden;
    max-height: 0;
}

.footer .footer-top .language .languages {
    position: absolute;
    z-index: 9999;
    width: 207px;
    bottom: 47px;
    left: 50%;
    transform: translate(-50%, 0%);
    background-color: #222223;
    border-radius: 5px;
    box-shadow: 0px 0px 24px 0 rgba(0, 0, 0, 0.6);
}

.footer .footer-top .language .languages .slide-enter-to,
.footer .footer-top .language .languages .slide-leave {
    max-height: 296px;
}

.footer .footer-top .language .languages .global-locale {
    padding-top: 8px;
    padding-bottom: 8px;
    background-color: #1d1d1e;
}

.footer .footer-top .language .languages li {
    position: relative;
    line-height: 2em;
    transition: background-color 0.2s ease;
}

.footer .footer-top .language .languages li a {
    color: #ffffff;
    display: block;
    padding: 2px 15px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.footer .footer-top .language .languages li a:hover {
    opacity: 1;
}

.footer .footer-top .language .languages li.region {
    position: relative;
    text-transform: uppercase;
}

.footer .footer-top .language .languages li.region a {
    line-height: 18px;
    text-align: center;
    padding-top: 16px;
    padding-bottom: 15px;
}

.footer .footer-top .language .languages li.region .icon-plus,
.footer .footer-top .language .languages li.region .icon-minus {
    width: 9px;
    height: 9px;
    opacity: 0.8;
    transition: opacity 0.2s ease;
    margin-left: 2px;
}

.footer .footer-top .language .languages li.region .icon-btn-link {
    width: 12px;
    height: 10px;
    opacity: 0.8;
    transition: opacity 0.2s ease;
    margin-left: 2px;
}

.footer .footer-top .language .languages li.region:hover.global .icon-minus,
.footer .footer-top .language .languages li.region:hover.global .icon-plus {
    opacity: 1;
}

.footer .footer-top .language .languages li.region:hover.kr .icon-btn-link,
.footer .footer-top .language .languages li.region:hover.jp .icon-btn-link {
    opacity: 1;
}

.footer .footer-top .language .languages li.language-list {
    background-color: #1d1d1e;
    text-align: center;
    height: 28px;
}

.footer .footer-top .language .languages li:hover {
    background-color: #0077ff;
}

.footer .footer-top .language .languages li:hover:first-child:not(.language-list) {
    border-radius: 5px 5px 0px 0px;
}

.footer .footer-top .language .languages li:hover:last-child:not(.language-list) {
    border-radius: 0px 0px 5px 5px;
}

.footer .footer-top .language .languages li:active {
    opacity: 0.5;
}

.footer .footer-top .language .current-language.vertical-arrows .arrow-container {
    display: flex;
    flex-direction: column;
    margin-left: 13px;
}


.footer .footer-body {
    position: relative;
    min-height: 148px;
    width: 100%;
    text-align: center;
}

.footer .footer-body .links a {
    font-size: 11px;
    cursor: pointer;
    color: #fff;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.footer .footer-body .links a:hover {
    opacity: 1;
}

.footer .footer-body .links > li + li:before {
    padding: 0 15px 0 10px;
    color: #3c3c3c;
    content: '|\A0';
}

.footer .footer-body .links-top {
    padding-top: 28px;
    margin: 0px;
}

.footer .footer-body .links-bottom {
    padding-top: 10px;
    margin: 0px;
}

.footer .footer-body .links-bottom a {
    color: #7e7e7f;
}

.footer .footer-body .nexon-logo-footer {
    padding-top: 24px;
    padding-bottom: 21px;
}

.footer .footer-body .nexon-logo-footer .logo {
    width: 90px;
    height: 26px;
}

.footer .footer-bottom {
    position: relative;
    height: 60px;
    background-color: #141516;
}

.footer .footer-bottom .copyright {
    color: rgba(102, 102, 102, 0.5);
    text-align: center;
    padding-top: 22px;
}

/* 自适应底部布局 */
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

#app {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.global-navigation {
    flex-shrink: 0;
}

main {
    flex: 1;
}

footer {
    flex-shrink: 0;
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.list-inline {
    padding-left: 0;
    list-style: none;
    margin-left: -5px;
}

.list-inline > li {
    display: inline-block;
    padding-left: 5px;
    padding-right: 5px;
}

/* 游戏筛选按钮样式 */
.games-filter-btn {
    width: 29px;
    height: 29px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    margin: 3px;
    transition: opacity 0.2s ease;
    cursor: pointer;
    min-width: 29px;
}

.games-filter-btn.active {
    opacity: 1;
    background-color: white;
    color: #151517;
}

.games-filter-btn.active {
    opacity: 1 !important;
    background-color: white !important;
    color: #151517 !important;
}

.games-filter-btn:hover {
    opacity: 1 !important;
}

.games-filter-btn .filter-btn-text {
    margin-left: 6px !important;
    white-space: nowrap !important;
}

/* 移动端菜单过渡动画 */
.slide-menu-enter-active,
.slide-menu-leave-active {
    transition: all 0.3s ease;
}

.slide-menu-enter-from {
    opacity: 0;
    transform: translateX(100%);
}

.slide-menu-leave-to {
    opacity: 0;
    transform: translateX(100%);
}

/* 修复下拉菜单中的筛选区域 */
.games-filter-section {
    height: 77px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
}

/* 修复游戏列表在下拉菜单中的布局 */
.games-list-section {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)) !important;
    gap: 0.5rem !important;
    padding: 0 !important;
    margin: 0 !important;
}

.games-section {
    overflow-y: auto !important;
    overflow-x: hidden !important;
    padding: 1rem !important;
}

/* 游戏列表项样式 */
.games-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.game-details-link {
    display: flex !important;
    align-items: flex-start !important;
    padding: 0.75rem !important;
    border-radius: 0.5rem !important;
    text-decoration: none !important;
    transition: background-color 0.3s !important;
    color: inherit !important;
}

.game-details-link:hover {
    background-color: #2a2c2f !important;
}

.icon {
    width: 2.75rem !important;
    height: 2.75rem !important;
    border-radius: 0.25rem !important;
    background-size: cover !important;
    background-position: center !important;
    margin-right: 0.75rem !important;
}

.game-title {
    color: white !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    margin-bottom: 0.25rem !important;
}

.new-game {
    color: #f2b600 !important;
    font-size: 0.75rem !important;
    font-weight: bold !important;
    margin-left: 0.5rem !important;
    text-transform: uppercase !important;
}

.game-card-badge {
    background-color: #fa5951;
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 0.15rem 0.5rem;
    border-radius: 0.25rem;
    display: inline-block;
    z-index: 20;
}

.absolute-bottom-left {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 20;
}

.game-title-no-wrap {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.platform-icons {
    display: flex !important;
    gap: 0.25rem !important;
}

.platform-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* 确保游戏列表容器正确显示 */
.games-section {
    flex: 1;
    overflow-y: auto;
    display: block;
}

.sub-sidebar-content .games-section {
    max-height: calc(100vh - 180px); /* 考虑顶部和筛选按钮的高度 */
}

/* 下载启动器按钮 */
.download-launcher {
    background: #151517 !important;
    border-top: 1px solid #2a2c2f !important;
}

.download-launcher .btn {
    background-color: #0077ff !important;
    color: white !important;
    border: none !important;
    padding: 12px !important;
    border-radius: 4px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 600 !important;
}

.download-launcher .btn:hover {
    background-color: #0066cc !important;
}


/* 修正移动端菜单动画 */
.xl\:hidden.fixed.top-0.left-0 {
    animation: fadeIn 0.3s ease;
}

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

.absolute.top-0.right-0 {
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

/* 修正Logo居中 */
.sidebar-top .absolute.left-5.right-5 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
}

/* 修正Games标题居中 */
.sub-sidebar-top .absolute.left-5.right-5 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
}

/* 修正Games菜单项垂直居中 */
.sidebar-btn.games {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.sidebar-btn.games span,
.sidebar-btn.games i {
    display: flex;
    align-items: center;
    height: 100%;
}


.launcher-info {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 436px;
    margin-top: 90px;
    overflow: hidden;
    position: relative;
    width: 100%;
    z-index: 1
}

.launcher-info .mobile-bg {
    background: url(../images/bg.png) no-repeat 50%;
    bottom: 0;
    /*height: 344px;*/
    left: 0;
    position: absolute;
    width: 100%;
    z-index: -1
}

.launcher-info .preview-img {
    height: 180px;
    margin: 0 0 35px 35px;
    width: 308px
}

.launcher-info .contents {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0 auto
}

.launcher-info .contents .title {
    color: #fff;
    font-family: Roboto;
    font-size: 27.5px;
    font-weight: 700;
    letter-spacing: .55px;
    margin-bottom: 20px;
    text-transform: uppercase
}

.launcher-info .contents .subtitle {
    color: hsla(0, 0%, 100%, .3);
    font-family: Roboto;
    font-size: 14px;
    letter-spacing: .28px;
    margin-bottom: 30px;
    text-align: center
}

.launcher-info .contents button {
    background-color: #07f;
    border: none;
    border-radius: 5px;
    color: #fff;
    height: 71px;
    margin: 0;
    outline: 0;
    padding: 0 20px 0 18px;
    -webkit-transition: background-color .2s, background-color .2s, border-color .2s, color .2s;
    transition: background-color .2s, background-color .2s, border-color .2s, color .2s;
    width: auto
}

.launcher-info .contents button:not(:active):not(.offPlatform):hover {
    background-color: #4ca1ff
}

.launcher-info .contents button:active:not(.offPlatform) {
    background-color: #0c5097;
    color: hsla(0, 0%, 100%, .5)
}

.launcher-info .contents button:active:not(.offPlatform) .download {
    opacity: .5
}

.launcher-info .contents button.offPlatform {
    background-color: #535353;
    color: hsla(0, 0%, 100%, .5);
    cursor: default
}

.launcher-info .contents button.offPlatform .download {
    opacity: .5
}

.launcher-info .contents button .button-contents {
    display: inline-block
}

.launcher-info .contents button .button-contents .download-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    text-align: left;
    text-transform: uppercase
}

.launcher-info .contents button .button-contents .download-subtitle {
    font-size: 14.5px;
    text-align: left
}

.launcher-info .contents button .download {
    display: inline-block;
    height: 26px;
    margin: 0 13px 5px 0;
    width: 21px
}

@media (min-width: 768px) {
    .launcher-info {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        background: url(../images/bg.png) no-repeat top;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        height: 304px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .launcher-info .mobile-bg {
        display: none
    }

    .launcher-info .preview-img {
        height: 206px;
        margin: 58px 22px 0 0;
        width: 352px
    }

    .launcher-info .contents {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        margin: 80px 0 20px 0
    }

    .launcher-info .contents .subtitle {
        text-align: left
    }
}

@media (min-width: 1024px) {
    .launcher-info {
        height: 290px
    }

    .launcher-info .preview-img {
        height: 228px;
        margin: 47px 9px 0 0;
        width: 389px
    }

    .launcher-info .contents .title {
        font-size: 24.5px;
        letter-spacing: .49px
    }

    .launcher-info .contents .subtitle {
        font-size: 12px;
        letter-spacing: .24px;
        margin-bottom: 25px
    }

    .launcher-info .contents button {
        height: 50px;
        padding: 0 13px
    }

    .launcher-info .contents button .button-contents .download-title {
        font-size: 12.5px;
        margin: 2px 0 0 0
    }

    .launcher-info .contents button .button-contents .download-subtitle {
        font-size: 10.5px
    }

    .launcher-info .contents button .download {
        background-size: contain;
        height: 19px;
        margin: 0 9px 3px 0;
        width: 15px
    }
}

@media (min-width: 1440px) {
    .launcher-info {
        background-repeat: repeat;
        height: 415px
    }

    .launcher-info .preview-img {
        height: 327px;
        margin: 67px 13px 0 0;
        width: 556px
    }

    .launcher-info .contents {
        margin: 140px 0 20px 0
    }

    .launcher-info .contents .title {
        font-size: 36.5px;
        letter-spacing: .73px;
        margin-bottom: 30px
    }

    .launcher-info .contents .subtitle {
        font-size: 16px;
        letter-spacing: .32px;
        margin-bottom: 35px
    }

    .launcher-info .contents button {
        height: 71px;
        padding: 0 20px 0 18px
    }

    .launcher-info .contents button .button-contents .download-title {
        font-size: 16px;
        margin: 0 0 5px 0
    }

    .launcher-info .contents button .button-contents .download-subtitle {
        font-size: 14.5px
    }

    .launcher-info .contents button .download {
        background-size: contain;
        height: 26px;
        margin: 0 13px 5px 0;
        width: 21px
    }
}

/* 顶部登录后下拉动画 */
.fade-enter-active, .fade-leave-active {
    transition: opacity 0.2s ease;
}

.fade-enter, .fade-leave-to {
    opacity: 0;
}

/* 登录页面渐变背景 */
.account-bg {
    background-image: radial-gradient(circle farthest-side at center, #2c2c2c 0, #141414 100%);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-color: #141414;
    width: 100%;
    height: 100%;
    min-width: 320px;
    overflow-x: hidden;
    padding: 0;
}
.account-main{
    background: transparent no-repeat top;
    background-size: cover;
}


/* 全局细灰暗滚动条 */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #1f2937; /* gray-800 */
}

::-webkit-scrollbar-thumb {
    background: #4b5563; /* gray-600 */
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6b7280; /* gray-500 */
}

/* Firefox 支持 */
* {
    scrollbar-width: thin;
    scrollbar-color: #4b5563 #1f2937;
}
/* 首页幻灯电脑版小图导航预览图片 */
.preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
