/* 重置默认样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto; /* 允许正常纵向滚动，避免整页被禁用 */
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    position: relative;
}

/* 主容器 */
.main-container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
}

/* 通用section样式 */
.section {
    width: 100%;
    min-height: 100vh;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
}

/* 根据背景图比例调整各部分高度 */
.section-1 {
    height: 100vh;
}

.section-2 {
    height: 100vh;
}

.section-3 {
    height: 100vh;
}

/* 导航条样式 */
.navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 70;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    height: auto;
    background: none;
}

.nav-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* 顶部导航按钮（临时用背景色方便调整位置） */
.top-menu-btn {
    position: absolute;
    top: 21%;          /* 上下位置，后面可以再微调 */
    width: 8%;         /* 按钮宽度，大致覆盖"首页"区域 */
    height: 60%;       /* 按钮高度 */
    background-color: transparent;
    border: none;
    cursor: pointer;
    color: transparent;
    font-size: 18px;
    z-index: 100;      /* 确保按钮在导航图片之上 */
    pointer-events: auto; /* 确保可以点击 */
}

/* 分别控制三个按钮的左右位置 */
.top-menu-btn-home {
    left: 30%;
}

.top-menu-btn-two {
    left: 44%;
}

.top-menu-btn-three {
    left: 64%;
}

.nav-left, .nav-center, .nav-right {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-left {
    flex: 0 0 auto;
}

.nav-center {
    flex: 1;
    justify-content: center;
    gap: 20px;
}

.nav-right {
    flex: 0 0 auto;
}

.fac-button {
    max-width: 100%;
    height: auto;
    max-height: 50px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.fac-button:hover {
    transform: scale(1.05);
}

.nav-link {
    color: #ffd700;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #ffd700;
}

.nav-separator {
    color: #ffd700;
    font-size: 10px;
    font-weight: bold;
}

.login-btn {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #333;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.login-btn:hover {
    background: linear-gradient(45deg, #ffed4e, #ffd700);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

/* 浮窗样式 */
.floating-window {
    position: fixed;
    top: 206px;
    right: 20px;
    width: 200px;
    height: 445px;
    background-image: url('./images/right_menu_bg.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;

    width: 100%;
    height: 100%;
    justify-content: flex-start;
    align-items: center;
    margin-top: 105px;
    margin-left: 18px;
}

.floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 130px;
}

.floating-btn:hover {
    transform: translateX(-5px) scale(1.05);
}

.btn-icon {
    width: 100%;
    height: auto;
    max-width: 130px;
    object-fit: contain;
    pointer-events: none;
}

/* 底部按钮区域 */
.bottom-buttons {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 8;
    justify-content: center;
    align-items: center;
}

.bottom-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.bottom-btn:hover {
    transform: translateY(-3px) scale(1.05);
}

.bottom-btn-icon {
    height: 100%;
    width: auto;
    object-fit: contain;
}


/* 第二部分文字链接区域 */
.text-links-section {
    display: none !important;
}

/* 第二部分图片 */
.section2-image {
    display: none !important;
}

.guanggao-image {
    width: 100%;
    height: auto;
    max-width: 800px;
    max-height: 500px;
    object-fit: contain;
    display: block;
    z-index: 1;
}

/* PC端中等屏幕适配 - 防止重叠 */
@media (max-width: 1600px) and (min-width: 769px) {
    .text-links-section {
        right: 15%;
        width: 400px;
        font-size: 14px;
    }
    
    .section2-image {
        left: 15%;
    }
    
    .guanggao-image {
        max-width: 600px;
        max-height: 400px;
    }
}

@media (max-width: 1366px) and (min-width: 769px) {
    .text-links-section {
        right: 10%;
        width: 350px;
        top: 55%;
    }
    
    .section2-image {
        left: 10%;
        top: 38%;
    }
    
    .guanggao-image {
        max-width: 500px;
        max-height: 350px;
    }
}

@media (max-width: 1200px) and (min-width: 769px) {
    .text-links-section {
        right: 5%;
        width: 300px;
        top: 50%;
    }
    
    .section2-image {
        left: 5%;
        top: 35%;
    }
    
    .guanggao-image {
        max-width: 400px;
        max-height: 300px;
    }
    
    .text-title {
        font-size: 13px;
    }
    
    .text-date {
        font-size: 11px;
    }
}

/* 自定义滚动条样式 */
.text-links-section::-webkit-scrollbar {
    width: 6px;
}

.text-links-section::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.text-links-section::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.text-links-section::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}




/* 第三部分轮播图 */
.career-section {
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80%;
    max-width: 90%;
    height: 60vh;
    padding: 2%;
    z-index: 10;
}

.career-carousel {
    position: absolute;
    width: 100%;
    height: 100%;
    margin-bottom: 0;
    overflow: unset;
    border-radius: 1vw;
    z-index: 1;
}

.career-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.career-item.active {
    opacity: 1;
}

.career-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
    transform: scale(1.2);
}

.career-buttons {
    display: flex;
    gap: 1.5vw;
    justify-content: center;
    align-items: center;
    margin-top: -1.5vw;
    position: absolute;
    z-index: 15;
    top: 87%;
    left: 56%;
}

.career-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    transition: transform 0.3s ease;
}

.career-btn:hover {
    transform: scale(1.05);
}

.career-btn-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    display: block;
}

.career-btn .active-img {
    display: block;
}

.career-btn .inactive-img {
    display: none;
}

.career-btn:not(.active) .active-img {
    display: none;
}

.career-btn:not(.active) .inactive-img {
    display: block;
}

/* 内容容器 */
.content {
    text-align: center;
    color: white;
    z-index: 2;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    max-width: 800px;
    margin: 0 20px;
    margin-top: auto;
    margin-bottom: auto;
}

.content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.content p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* 各个部分的背景图片 */
.section-1 {
    background-image: url('./images/bg_1.jpg');
}

.section-2 {
    background-image: url('./images/bg_2.jpg');
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    overflow: hidden !important;
}

.section-3 {
    background-image: url('./images/bg_3.jpg');
}

.section-4 {
    background-image: url('./images/bg_4.jpg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    height: auto;
    min-height: 300px;
}

/* 第二部分世界观展示轮播：左图 + 右按钮（按钮用 top/right 绝对定位，不挤压左侧图） */
.worldview-carousel {
    position: absolute;
    top: 51%;
    left: 51%;
    transform: translate(-50%, -50%);
    width: 98%;
    max-width: 1600px;
    display: block;
    z-index: 10;
    box-sizing: border-box;
}

.worldview-slides {
    position: relative;
    width: 100%;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 20px;
    box-sizing: border-box;
}

.worldview-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.worldview-slide.current {
    position: relative;
    opacity: 1;
    pointer-events: auto;
}

.worldview-slide img {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    display: block;
}

.worldview-btns {
    position: absolute;
    right: -6%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.worldview-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: block;
    transition: transform 0.2s ease;
}

.worldview-btn:hover {
    transform: scale(1.05);
}

.worldview-btn .btn-normal,
.worldview-btn .btn-active {
    display: block;
    width: auto;
    height: auto;
    max-width: 240px;
    max-height: 100px;
    object-fit: contain;
}

.worldview-btn .btn-active {
    display: none;
}

.worldview-btn.current .btn-normal {
    display: none;
}

.worldview-btn.current .btn-active {
    display: block;
}

/* 1920x1080 及以下视口用 -11%（含浏览器缩放时视口变小的情况），4K 及以上用 -26% */
@media (min-width: 1200px) and (max-width: 2100px) {
    .worldview-carousel {
        left: 50%;
    }
    .worldview-btns {
        right: 4%;
        top: 50%;
    }
}

/* 适配 1680x881 一类分辨率：世界观轮播整体略缩小，右侧按钮左移，避免中间留缝 */
@media (min-width: 1650px) and (max-width: 1710px) and (min-height: 860px) and (max-height: 900px) {
    .worldview-carousel {
        width: 88%;
        max-width: 1400px;
    }
    .worldview-slide img {
        max-width: 79%;
        margin: 0 auto;
    }
    .worldview-btns {
        right: 1%;
    }
}

/* 第四部分游戏亮点轮播图 */
.game-highlights-section {
    position: absolute;
    top: 37%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 38%;
    max-width: 1200px;
    z-index: 10;
    box-sizing: border-box;
}

/* 桌面大分辨率（如 1920 宽）下，把游戏亮点轮播整体下移到 top:41%，并整体放大一些 */
@media (min-width: 1800px) and (max-width: 2000px) {
    .game-highlights-section {
        top: 41%;
        width: 45%;
    }
    .game-highlights-wrapper {
        height: 430px;
    }
}

.game-highlights-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.game-highlights-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    perspective: 1200px;
    perspective-origin: center center;
    overflow: visible;
    box-sizing: border-box;
}

.game-highlight-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(0);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
}

.game-highlight-item.current {
    opacity: 1;
    transform: translateX(0) scale(1.1); /* 再放大一些 */
    z-index: 10;
}

.game-highlight-item.previous {
    opacity: 0.85;
    transform: translate(-38%, 6%) scale(0.8); /* 左侧抽屉略微下移 */
    z-index: 1;
}

.game-highlight-item.following {
    opacity: 0.85;
    transform: translate(38%, 6%) scale(0.8); /* 右侧抽屉略微下移 */
    z-index: 1;
}

.game-highlight-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    /* border-radius: 20px; */
    box-shadow: none;
    border: none;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
}

.game-highlight-item.current .game-highlight-image {
    box-shadow: none;
    border: none;
    filter: brightness(1.05) contrast(1.02);
}

.game-highlight-item.previous .game-highlight-image,
.game-highlight-item.following .game-highlight-image {
    box-shadow: none;
    border: none;
    filter: brightness(0.6) contrast(0.9); /* 抽屉做暗一点的处理 */
}

.game-highlights-indicators {
    display: flex;
    position: absolute;
    bottom: -57%;
    left: 50%;
    transform: translateX(-50%);
    gap: 15px;
    z-index: 10;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
}

/* 桌面大分辨率（如 1920 宽）下，单独把游戏亮点指示点上移到 bottom:-19% */
@media (min-width: 1800px) and (max-width: 2000px) {
    .game-highlights-indicators {
        bottom: -34%;
    }
}

.game-highlight-dot {
    width: auto;
    height: auto;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.game-highlight-dot .dot-img {
    display: block;
    width: auto;
    height: auto;
    transition: all 0.3s ease;
}

.game-highlight-dot .active-dot-img {
    display: none;
}

.game-highlight-dot .inactive-dot-img {
    display: block;
}

.game-highlight-dot.current .active-dot-img {
    display: block;
}

.game-highlight-dot.current .inactive-dot-img {
    display: none;
}

.game-highlight-dot:hover {
    transform: scale(1.2);
}

.game-highlight-dot.current {
    transform: scale(1.1);
}

/* 超小测试按钮：2px 红色点 */
.tiny-test-btn {
    width: 15%;
    height: 5%;
    padding: 0;
    margin: 0;
    background-color: transparent;
    border: none;
    outline: none;
    font-size: 0; /* 隐藏文本 */
    cursor: pointer;
    position: absolute;
    top: 92%;
    left: 47%;
}

.game-highlight-btn {
    position: absolute;
    top: 61%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 15;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.game-highlight-btn:hover {
    transform: translateY(-50%) scale(1.1);
}

.game-highlight-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.game-highlight-btn-prev {
    left: -105px;
}

.game-highlight-btn-next {
    right: -105px;
}

.game-highlight-btn-img {
    width: 60px;
    height: 45px;
    display: block;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.game-highlight-btn:hover .game-highlight-btn-img {
    filter: brightness(1.1);
}

/* 响应式设计 - 移动端适配 */
@media (max-width: 768px) {
    .main-container {
        width: 100%;
        overflow-x: hidden;
    }
    
    .content h1 {
        font-size: 2rem;
    }
    
    .content p {
        font-size: 1rem;
    }
    
    .content {
        margin: 0 10px;
        padding: 15px;
    }
    
    .section {
        min-height: 50vh;
        width: 100%;
        overflow: hidden;
    }
    
    .section-1 {
        height: 50vh;
    }
    
    .section-2 {
        height: auto;
        min-height: 55vh;
    }

    /* 第二部分世界观轮播：手机端保持「左图 + 右按钮」结构，只是整体缩小一点 */
    .worldview-carousel {
        position: absolute;
        top: 52%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        max-width: none;
        display: block;
    }

    .worldview-slides {
        min-height: 220px;
        padding-right: 10px;
    }

    .worldview-slide img {
        max-height: 55vh;
    }

    .worldview-btns {
        right: 2%;
        top: 50%;
        transform: translateY(-50%);
        flex-direction: column;
        gap: 6px;
    }

    .worldview-btn .btn-normal,
    .worldview-btn .btn-active {
        max-width: 90px;
        max-height: 40px;
    }
    
    .section-3 {
        height: 50vh;
    }
    
    .section-4 {
        height: auto;
        min-height: 300px;
    }
    
    .navigation {
        padding: 0;
        height: auto;
    }
    
    .nav-image {
        width: 100%;
        height: auto;
    }
    
    .floating-window {
        width: 120px;
        height: 300px;
        right: 10px;
        top: 80px;
    }
    
    /* 第二部分H5适配 */
    .section2-content {
        flex-direction: column;
        gap: 10px;
        padding: 10px;
    }
    
    .text-links-section {
        position: relative;
        width: 80%;
        max-width: none;
        left: 10%;
        transform: none;
        margin-bottom: 10px;
        max-height: 200px;
        overflow-y: auto;
        padding-right: 5px;
    }
    
    .text-link {
        font-size: 10px;
        padding: 4px 0;
    }
    
    .text-title {
        font-size: 10px;
    }
    
    .text-date {
        font-size: 8px;
    }
    
    .section2-image {
        top: 30%;
        left: 10%;
        width: 80%;
    }
    
    .guanggao-image {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
    
    /* 第三部分H5适配 */
    .career-section {
        width: 80%;
        max-width: none;
        padding: 2vw;
        top: 50%;
        height: 40vh;
    }
    
    .career-carousel {
        height: 30vh;
        min-width: 70%;
        max-width: 100%;
    }
    
    .career-buttons {
        top: 80%;
        left: 50%;
        transform: translateX(-50%);
        gap: 2vw;
    }
    
    .career-btn-img {
        width: 6vw;
        height: 6vw;
        max-width: 35px;
        max-height: 35px;
    }
    
    /* 第四部分H5适配 */
    .game-highlights-section {
        width: 80%;
        top: 45%;
    }
    
    .game-highlights-wrapper {
        height: 25vh;
        perspective: 40vw;
    }
    
    .game-highlight-btn-prev {
        left: -6vw;
    }
    
    .game-highlight-btn-next {
        right: -6vw;
    }
    
    .game-highlight-btn-img {
        width: 4vw;
        height: 3vw;
        max-width: 35px;
        max-height: 25px;
    }
    
    .game-highlights-indicators {
        bottom: -40px;
        gap: 6px;
    }
    
    .game-highlight-dot {
        width: auto;
        height: auto;
    }
    
    .game-highlight-dot .dot-img {
        max-width: 20px;
        max-height: 20px;
    }
    
    /* H5背景图适配 - 铺满等比例缩放 */
    .section-1 {
        background-size: cover !important;
        background-position: center center !important;
    }
    
    .section-2 {
        background-size: cover !important;
        background-position: center center !important;
    }
    
    .section-3 {
        background-size: cover !important;
        background-position: center center !important;
    }
    
    .section-4 {
        background-size: cover !important;
        background-position: center center !important;
    }
    
    .floating-buttons {
        gap: 8px;
        margin-top: 103px;
        margin-left: 8px;
    }
    
    .btn-icon {
        max-width: 90px;
    }
    
    .bottom-buttons {
        bottom: 20px;
        gap: 6px;
    }
    
    .bottom-btn-icon {
        height: 25px;
    }
    
    .text-links-section {
        left: 30px;
        width: 250px;
        max-height: 250px;
        overflow-y: auto;
    }
    
    .text-title {
        font-size: 14px;
    }
    
    .text-date {
        font-size: 12px;
    }
    
    .section2-image {
        padding: 20px;
    }
    
    .guanggao-image {
        max-width: 100%;
    }

    
    
    .career-section {
        width: 98%;
        padding: 15px;
        max-width: none;
        top: 50%;
    }
    
    .career-carousel {
        height: 250px;
        min-width: 250px;
        max-width: 100%;
    }
    
    .career-buttons {
        top: -5%;
        left: 50%;
        transform: translateX(-50%);
        gap: 10px;
    }
    
    .career-btn-img {
        width: 35px;
        height: 35px;
    }
}

/* 响应式设计 - 小屏幕手机 */
@media (max-width: 480px) {
    .content h1 {
        font-size: 1.5rem;
    }
    
    .content p {
        font-size: 0.9rem;
    }
    
    .content {
        margin: 0 5px;
        padding: 10px;
    }
    
    .section {
        min-height: 10vh;
        margin: 0;
        padding: 0;
    }
    
    .section-1 {
        height: 21vh;
    }
    
    .section-2 {
        height: 30vh;
    }
    
    .section-3 {
        height: 30vh;
    }
    
    .section-4 {
        height: auto;
        min-height: 180px; /* H5 底部导航区域降低整体高度 */
    }
    
    
    .navigation {
        padding: 0;
        height: auto;
    }
    
    .nav-image {
        width: 100%;
        height: auto;
    }
    
    .floating-window {
        width: 80px;
        height: 200px;
        right: 5px;
        top: 40px;
    }
    
    .floating-buttons {
        gap: 6px;
        margin-top: 68px;
        margin-left: 5px;
    }
    
    .btn-icon {
        max-width: 60px;
    }
    
    .bottom-buttons {
        bottom: 7px;
        gap: 2px;
    }
    
    /* 第二部分手机端适配 */
    .section2-content {
        padding: 4px;
        gap: 4px;
    }
    
    .text-links-section {
        margin-bottom: 1px;
        width: 35%;
        left: 60%;
        top: 68%;
        transform: translateY(-50%);
        position: absolute;
        max-height: 80px;
        overflow-y: auto;
    }
    
    .text-link {
        font-size: 1px;
        padding: 0.25px 0;
        border-bottom: 0.25px solid rgba(255, 255, 255, 0.1);
    }
    
    .text-title {
        font-size: 1px;
        margin-right: 2px;
    }
    
    .text-date {
        font-size: 0.75px;
    }
    
    .section2-image {
        top: 40%;
        left: 0%;
        width: 60%;
    }
    
    
    /* 第二部分世界观轮播手机端适配 */
    .worldview-carousel {
        position: absolute;
        top: 55%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 82%;
        max-width: none;
    }
    
    .worldview-slides {
        min-height: 180px;
        padding-right: 0;
    }
    
    .worldview-slide img {
        max-height: 30vh;
    }
    
    .worldview-btns {
        position: absolute;
        right: -8%;
        top: 47%;
        transform: translateY(-50%);
        margin-top: 0;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 0px;
    }
    
    .worldview-btn .btn-normal,
    .worldview-btn .btn-active {
        max-width: 68px;
        max-height: 30px;
    }
    
    /* 第三部分手机端适配 */
    .career-section {
        width: 70%;
        padding: 1vw;
        top: 65%;
        height: 30vh;
    }
    
    
    .career-buttons {
        top: 85%;
        left: 67%;
        gap: 1vw;
    }
    
    .career-btn-img {
        width: 3vw;
        height: 3vw;
        max-width: 20px;
        max-height: 20px;
    }
    
    /* 第四部分手机端适配 */
    .game-highlights-section {
        width: 50%;
        top: 60%;
    }
    
    .game-highlights-wrapper {
        height: 15vh;
        perspective: 30vw;
    }
    
    .game-highlight-btn-prev {
        left: -8vw;
    }
    
    .game-highlight-btn-next {
        right: -8vw;
    }
    
    .game-highlight-btn-img {
        width: 2.5vw;
        height: 2vw;
        max-width: 20px;
        max-height: 15px;
    }
    
    .game-highlights-indicators {
        bottom: -30px;
        gap: 4px;
    }
    
    .game-highlight-dot {
        width: auto;
        height: auto;
    }
    
    .game-highlight-dot .dot-img {
        max-width: 15px;
        max-height: 15px;
    }
    
    /* 手机端背景图适配 */
    .section-1 {
        background-size: cover !important;
        background-position: center center !important;
    }
    
    .section-2 {
        background-size: cover !important;
        background-position: center center !important;
    }
    
    .section-3 {
        background-size: cover !important;
        background-position: center center !important;
    }
    
    .section-4 {
        background-size: cover !important;
        background-position: center center !important;
    }
    
    .bottom-btn-icon {
        height: 10px;
    }
    
    
    
    .text-title {
        font-size: 8px;
    }
    
    .text-date {
        font-size: 9px;
    }
    
    
    .guanggao-image {
        max-width: 80%;
    }
    

    
    .career-carousel {
        height: 350px;
        min-width: 520px;
        margin-bottom: 0;
    }
 
    
    .career-btn-img {
        width: 50px;
        height: 50px;
    }
    
    

    .career-img {
        width: 75%;
        height: 50%;
        object-fit: contain;
        max-width: 100%;
        max-height: 100%;
        transform: scale(1.2);
    }
}

/* 手机横屏适配 */
@media (max-width: 896px) and (orientation: landscape) {
    .section {
        height: 100vh !important;
        min-height: 100vh !important;
    }
    
    .section-1 {
        height: 100vh !important;
    }
    
    .section-2 {
        height: 100vh !important;
    }
    
    .section-3 {
        height: 100vh !important;
    }
    
    .section-4 {
        height: auto !important;
        min-height: 200px !important;
    }
    
    /* 导航栏横屏适配 */
    .navigation {
        padding: 0;
        height: auto;
    }
    
    .nav-image {
        width: 100%;
        height: auto;
    }
    
    /* 浮窗横屏适配 */
    .floating-window {
        width: 100px;
        height: 250px;
        right: 8px;
        top: 60px;
    }
    
    .floating-buttons {
        gap: 6px;
        margin-top: 103px;
        margin-left: 5px;
    }
    
    .btn-icon {
        max-width: 70px;
    }
    
    /* 底部按钮横屏适配 */
    .bottom-buttons {
        bottom: 15px;
        gap: 4px;
    }
    
    .bottom-btn-icon {
        height: 20px;
    }
    
    /* 第二部分横屏适配 */
    .text-links-section {
        position: absolute;
        right: 15%;
        top: 50%;
        transform: translateY(-50%);
        width: 300px;
        max-height: 150px;
        overflow-y: auto;
    }
    
    .text-link {
        font-size: 8px;
        padding: 3px 0;
    }
    
    .text-title {
        font-size: 8px;
    }
    
    .text-date {
        font-size: 6px;
    }
    
    .section2-image {
        top: 40%;
        left: 15%;
        width: 70%;
    }
    
    .guanggao-image {
        max-width: 100%;
        height: auto;
    }
    
    /* 第三部分横屏适配 */
    .career-section {
        width: 60%;
        top: 50%;
        height: 50vh;
    }
    
    .career-carousel {
        height: 200px;
        min-width: 300px;
    }
    
    .career-buttons {
        top: 70%;
        left: 50%;
        transform: translateX(-50%);
        gap: 8px;
    }
    
    .career-btn-img {
        width: 30px;
        height: 30px;
    }
    
    /* 第四部分横屏适配 */
    .game-highlights-section {
        width: 60%;
        top: 45%;
    }
    
    .game-highlights-wrapper {
        height: 200px;
        perspective: 50vw;
    }
    
    .game-highlight-btn-prev {
        left: -10vw;
    }
    
    .game-highlight-btn-next {
        right: -10vw;
    }
    
    .game-highlight-btn-img {
        width: 3vw;
        height: 2.5vw;
        max-width: 30px;
        max-height: 25px;
    }
    
    .game-highlights-indicators {
        bottom: -35px;
        gap: 8px;
    }
    
    /* 横屏背景图适配 */
    .section-1 {
        background-size: cover !important;
        background-position: center center !important;
    }
    
    .section-2 {
        background-size: cover !important;
        background-position: center center !important;
    }
    
    .section-3 {
        background-size: cover !important;
        background-position: center center !important;
    }
    
    .section-4 {
        background-size: contain !important;
        background-position: center center !important;
    }
}

/* 平滑滚动 */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    scroll-padding-top: 0;
}

/* 确保背景图片正确显示 - 仅PC端 */
@media (min-width: 769px) {
    .section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: inherit;
        background-size: cover;
        background-position: center;
        z-index: 1;
    }
}

/* 系统选择弹窗样式 */
.payment-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.payment-modal.active {
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    width: 90%;
    max-width: 400px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: #333;
}

.modal-title {
    text-align: center;
    font-size: 18px;
    color: #333;
    margin-bottom: 30px;
    font-weight: 500;
}

.modal-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.modal-btn {
    padding: 12px 40px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    color: white;
}

.modal-btn.ios {
    background: linear-gradient(135deg, #0d0e0d 0%, #050a00 100%);
}

.modal-btn.ios:hover {
    background: linear-gradient(135deg, #020300 0%, #0a0a0a 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 195, 74, 0.4);
}

.modal-btn.android {
    background: linear-gradient(135deg, #0d0e0d 0%, #0c0c0c 100%);
}

.modal-btn.android:hover {
    background: linear-gradient(135deg, #0a0a0a 0%, #111111 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(156, 204, 101, 0.4);
}

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

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* 提示弹框样式 */
.alert-modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.alert-modal.active {
    display: flex !important;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.alert-content {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px 40px;
    max-width: 350px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
    position: relative;
}

.alert-close {
    position: absolute;
    top: 2%;
    right: 6%;
    font-size: 28px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
}

.alert-close:hover {
    color: #333;
}

.alert-message {
    font-size: 18px;
    color: #333;
    margin: 0;
    font-weight: 500;
    padding-top: 10px;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .modal-content {
        padding: 25px;
        max-width: 320px;
    }

    .modal-title {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .modal-buttons {
        gap: 15px;
    }

    .modal-btn {
        padding: 10px 30px;
        font-size: 14px;
    }
}