        /* 全局样式 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Microsoft YaHei', sans-serif;
        }
        
        body {
            color: #fff;
            background-image: url('https://www.chishu2018.com/game/aion2/bg.webp');
            background-repeat: no-repeat;
            background-position: center center;
            background-size: cover;
            background-attachment: fixed;
            min-height: 100vh;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        /* 导航栏样式 */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background-color: transparent;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 50px;
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        .navbar.scrolled {
            background-color: rgba(10, 10, 30, 0.9);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        }
        
        .logo {
            height: 60px;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 50px;
            position: relative;
        }
        
        .nav-links li a {
            font-size: 20px;
            font-weight: bold;
            color: #e0e0ff;
            transition: color 0.3s;
        }
        
        .nav-links li a:hover {
            color: #ffcc00;
        }
        
        .nav-links li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #ffcc00;
            transition: width 0.3s;
        }
        
        .nav-links li a:hover::after {
            width: 100%;
        }
        
        /* 通用部分样式 */
        .section {
            position: relative;
            width: 100%;
            overflow: hidden;
            padding: 80px 0;
            background-color: transparent;
        }
        
        .section-title {
            text-align: center;
            padding-bottom: 30px;
        }
        
        .section-title img {
            max-width: 80%;
            height: auto;
        }
        
        .container {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 40px;
        }
        
        /* 海报部分 */
        .poster {
            height: 100vh;
            min-height: 800px;
            position: relative;
            overflow: hidden;
            background-color: transparent;
            padding: 0;
        }
        
        .poster-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
        }
        
        .poster-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
            display: none;
        }
        
        .poster-content {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0 20px;
            background-color: rgba(0, 0, 0, 0.4);
        }
        
        .poster-logo {
            max-width: 1000px;
            margin-bottom: 40px;
        }
        
        .poster-subimage {
            max-width: 800px;
            display: block;
            margin: 0 auto 30px;
        }
        
        .social-group {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 20px;
        }
        
        .social-icon {
            width: 50px;
            height: 50px;
            margin: 0 15px;
            cursor: pointer;
            transition: transform 0.3s;
        }
        
        .social-icon:hover {
            transform: scale(1.2);
        }
        
        .group-number {
            font-size: 20px;
            color: #ffffff;
            margin-left: 10px;
        }
        
        /* 下滑提示动画 */
        .scroll-down {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            animation: float 2s ease-in-out infinite;
        }
        
        .scroll-down img {
            width: 231px;
            height: auto;
        }
        
        @keyframes float {
            0%, 100% {
                transform: translate(-50%, 0);
            }
            50% {
                transform: translate(-50%, 10px);
            }
        }
        
        /* 萌新指南部分 - 加大尺寸并增加间距 */
        .guide-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 40px;
            gap: 70px; /* 增加间距为40px */
        }
        
        .guide-item {
            width: 280px;
            height: 400px;
            position: relative;
            cursor: pointer;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0);
            transition: transform 0.3s;
        }
        
        .guide-item:hover {
            transform: scale(1.05);
        }
        
        .guide-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .guide-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.7);
            padding: 15px;
            text-align: center;
            font-size: 18px;
            color: #ffcc00;
        }
        
        /* 职业介绍部分 - 优化后的样式 */
        .job-section {
            margin-top: 40px;
            position: relative;
        }
        
        .job-container {
            display: flex;
            background-size: cover;
            background-position: center;
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            position: relative;
            min-height: 600px;
        }
        
        .job-image-container {
            flex: 0 0 1000px; /* 调整为1000px宽度 */
            position: relative;
            overflow: hidden;
        }
        
        .job-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .job-icon-overlay {
            position: absolute;
            top: 30px;
            left: 30px;
            width: 100px;
            height: 100px;
            background: rgba(0, 0, 0, 0);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
        }
        
        .job-icon-overlay img {
            width: 100px;
            height: 100px;
        }
        
        .job-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            padding: 40px;
            background: rgba(10, 10, 30, 0);
        }
        
        .job-name-container {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .job-name-img {
            max-width: 400px;
            margin: 0 auto;
        }
        
        .job-description {
            width: 300px;
            height: 390px;
            margin: 0 auto 30px;
            object-fit: cover;
        }
        
        .job-more-btn {
            display: inline-block;
            padding: 12px 35px;
            background: linear-gradient(to right, #ffcc00, #ff9900);
            color: #1a1a3a;
            border-radius: 30px;
            font-weight: bold;
            text-align: center;
            transition: all 0.3s;
            font-size: 16px;
            margin: 0 auto;
        }
        
        .job-more-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 204, 0, 0.4);
        }
        
        /* 修改后的职业选择器 - 调整为一排显示并增加左右间距 */
        .job-selector {
            display: flex;
            justify-content: center;
            margin: 50px 0 0;
            flex-wrap: nowrap; /* 确保不换行 */
            gap: 45px; /* 增加左右间距为25px */
            overflow-x: auto; /* 如果内容过多可以横向滚动 */
            padding: 10px 0;
        }
        
        .job-selector-item {
            width: 120px; /* 调整为120px */
            height: 120px; /* 调整为120px */
            cursor: pointer;
            transition: all 0.3s;
            position: relative;
            border-radius: 50%;
            overflow: hidden;
            border: none; /* 取消边框 */
            opacity: 0.5;
            filter: grayscale(100%);
            flex-shrink: 0; /* 防止缩小 */
        }
        
        .job-selector-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.3s;
        }
        
        .job-selector-item:hover {
            transform: scale(1.1);
            opacity: 0.8;
        }
        
        .job-selector-item.active {
            opacity: 1;
            filter: grayscale(0%);
        }
        
        /* 职业背景图 */
        .job-container.knight {
            background-image: url('https://www.chishu2018.com/game/aion2/imgs/job-bg.webp');
        }
        
        .job-container.warrior {
            background-image: url('https://www.chishu2018.com/game/aion2/imgs/job-bg.webp');
        }
        
        .job-container.blackmage {
            background-image: url('https://www.chishu2018.com/game/aion2/imgs/job-bg.webp');
        }
        
        .job-container.whitemage {
            background-image: url('https://www.chishu2018.com/game/aion2/imgs/job-bg.webp');
        }
        
        .job-container.bard {
            background-image: url('https://www.chishu2018.com/game/aion2/imgs/job-bg.webp');
        }
        
        .job-container.assassin {
            background-image: url('https://www.chishu2018.com/game/aion2/imgs/job-bg.webp');
        }
        
        .job-container.ranger {
            background-image: url('https://www.chishu2018.com/game/aion2/imgs/job-bg.webp');
        }
        
        .job-container.priest {
            background-image: url('https://www.chishu2018.com/game/aion2/imgs/job-bg.webp');
        }
        
        /* 副本攻略部分 - 加大尺寸并增加间距 */
        .dungeon-tabs {
            display: flex;
            justify-content: center;
            margin: 40px 0 30px;
            gap: 20px;
        }
        
        .dungeon-tab {
            padding: 12px 30px;
            background: rgba(0, 0, 0, 1);
            border-radius: 30px;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            border: 2px solid transparent;
        }
        
        .dungeon-tab:hover {
            background: rgba(0, 0, 0, 1);
        }
        
        .dungeon-tab.active {
            background: rgba(0, 0, 0, 1);
            border-color: #ffcc00;
            color: #ffcc00;
        }
        
        .dungeon-content {
            display: none;
            padding: 40px; /* 增加上下左右间距为40px */
        }
        
        .dungeon-content.active {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 70px;
        }
        
        /* 加大副本项目尺寸 */
        .dungeon-item {
            width: 350px;
            height: 250px;
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
            cursor: pointer;
        }
        
        .dungeon-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .dungeon-info {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .dungeon-item:hover .dungeon-info {
            opacity: 1;
        }
        
        .dungeon-title {
            font-size: 22px;
            font-weight: bold;
            color: #ffcc00;
            margin-bottom: 10px;
        }
        
        /* 休闲玩法悬停效果 - 加大尺寸并增加间距，每排显示3个 */
        .leisure-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            margin-top: 40px;
            gap: 70px; /* 增加间距为40px */
            padding: 0px; /* 增加上下左右间距为40px */
        }
        
        .leisure-item {
            width: 350px;
            height: 250px;
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
            cursor: pointer;
        }
        
        .leisure-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .leisure-item:hover img {
            transform: scale(1);
        }
        
        .leisure-caption {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(0, 0, 0, 0.7);
            padding: 15px 20px;
            border-radius: 30px;
            font-size: 20px;
            font-weight: bold;
            color: #ffcc00;
            opacity: 0;
            transition: all 0.3s;
        }
        
        .leisure-item:hover .leisure-caption {
            opacity: 1;
        }
        
        /* PVP玩法悬停效果 - 加大尺寸并增加间距，每排显示3个 */
        .pvp-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            margin-top: 40px;
            gap: 70px; /* 增加间距为40px */
            padding: 0px; /* 增加上下左右间距为40px */
        }
        
        .pvp-item {
            width: 350px;
            height: 250px;
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
            cursor: pointer;
        }
        
        .pvp-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .pvp-item:hover img {
            transform: scale(1);
        }
        
        .pvp-label {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(200, 0, 0, 0.8);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 16px;
            font-weight: bold;
            transform: translateX(50px);
            transition: transform 0.3s;
        }
        
        .pvp-item:hover .pvp-label {
            transform: translateX(0);
        }
        
        /* PVP下方图片 */
        .pvp-bottom-image {
            display: block;
            margin: 50px auto;
            max-width: 80%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
        }
        
        /* 页尾部分 */
        .footer {
            background: linear-gradient(to bottom, #000000, #000000);
            padding: 60px 0 30px;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
        }
        
        .footer-column {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
            padding: 0 20px;
        }
        
        .footer-logo {
            max-width: 200px;
            margin-bottom: 20px;
        }
        
        .footer-about {
            line-height: 1.6;
            color: #a0a0c0;
            margin-bottom: 20px;
        }
        
        .footer-social {
            display: flex;
        }
        
        .footer-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            margin-right: 10px;
            transition: all 0.3s;
        }
        
        .footer-social a:hover {
            background: #ffcc00;
            color: #1a1a3a;
            transform: translateY(-5px);
        }
        
        .footer-title {
            font-size: 20px;
            font-weight: bold;
            color: #ffcc00;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(255, 204, 0, 0.3);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #a0a0c0;
            transition: color 0.3s;
            display: block;
            padding: 5px 0;
        }
        
        .footer-links a:hover {
            color: #ffcc00;
            padding-left: 5px;
        }
        
        .footer-contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            color: #a0a0c0;
        }
        
        .footer-contact-icon {
            margin-right: 10px;
            color: #ffcc00;
            width: 20px;
            text-align: center;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #a0a0c0;
            font-size: 14px;
        }
        
        /* 响应式设计 */
        @media (max-width: 1800px) {
            .job-image-container {
                flex: 0 0 800px;
            }
        }
        
        @media (max-width: 1600px) {
            .job-image-container {
                flex: 0 0 700px;
            }
        }
        
        @media (max-width: 1400px) {
            .poster {
                min-height: 700px;
            }
            
            .poster-content {
                padding-left: 50px;
            }
            
            .job-image-container {
                flex: 0 0 600px;
            }
            
            .map-option {
                padding: 8px 20px;
                font-size: 16px;
                min-width: 100px;
            }
        }
        
        @media (max-width: 1200px) {
            .navbar {
                padding: 0 30px;
            }
            
            .nav-links li {
                margin-left: 20px;
            }
            
            .poster-content {
                padding-left: 30px;
                text-align: center;
            }
            
            .poster-logo {
                max-width: 80%;
                margin: 0 auto 30px;
            }
            
            .guide-item, .dungeon-item, .leisure-item, .pvp-item {
                width: 300px;
                height: 220px;
            }
            
            .job-container {
                flex-direction: column;
            }
            
            .job-image-container {
                flex: 0 0 100%;
                min-height: 500px;
            }
            
            .job-icon-overlay {
                top: 20px;
                left: 20px;
                width: 80px;
                height: 80px;
            }
            
            .job-icon-overlay img {
                width: 60px;
                height: 60px;
            }
            
            .job-selector-item {
                width: 100px;
                height: 100px;
            }
            
            .map-display {
                height: 700px;
            }
            
            .job-description {
                width: 300px;
                height: 390px;
            }
        }
        
        @media (max-width: 992px) {
            .navbar {
                height: 80px;
            }
            
            .logo {
                height: 50px;
            }
            
            .nav-links {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
                font-size: 24px;
                color: #fff;
                cursor: pointer;
            }
            
            .poster {
                min-height: 600px;
            }
            
            .poster-subimage {
                max-width: 350px;
            }
            
            .footer-column {
                flex: 100%;
                text-align: center;
            }
            
            .footer-social {
                justify-content: center;
            }
            
            body {
                background-attachment: scroll;
            }
            
            .job-selector-item {
                width: 80px;
                height: 80px;
                margin: 0 5px;
            }
            
            .job-image-container {
                min-height: 400px;
            }
            
            .map-row {
                flex-direction: column;
                align-items: center;
            }
            
            .map-option {
                width: 80%;
                max-width: 250px;
                margin: 5px 0;
            }
            
            .map-display {
                height: 600px;
            }
            
            .job-description {
                width: 300px;
                height: 390px;
            }
        }
        
        @media (max-width: 768px) {
            .container {
                padding: 0 30px;
            }
            
            .poster {
                min-height: 500px;
            }
            
            .poster-subimage {
                max-width: 280px;
            }
            
            .social-icon {
                width: 40px;
                height: 40px;
            }
            
            .group-number {
                font-size: 16px;
            }
            
            .guide-item, .dungeon-item, .leisure-item, .pvp-item {
                width: 100%;
                max-width: 350px;
                height: 250px;
            }
            
            .dungeon-tabs {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }
            
            .dungeon-tab {
                margin: 5px 0;
                width: 80%;
                text-align: center;
            }
            
            .job-selector-item {
                width: 70px;
                height: 70px;
                margin: 0 3px;
            }
            
            .job-content {
                padding: 25px;
            }
            
            .job-name-img {
                max-width: 250px;
                margin-bottom: 15px;
            }
            
            .job-description {
                width: 250px;
                height: 325px;
                margin-bottom: 20px;
            }
            
            .job-image-container {
                min-height: 350px;
            }
            
            .map-display {
                height: 500px;
            }
        }
        
        @media (max-width: 576px) {
            .container {
                padding: 0 20px;
            }
            
            .navbar {
                padding: 0 15px;
                height: 70px;
            }
            
            .logo {
                height: 40px;
            }
            
            .poster {
                min-height: 450px;
            }
            
            .poster-subimage {
                max-width: 250px;
            }
            
            .guide-item, .dungeon-item, .leisure-item, .pvp-item {
                height: 200px;
            }
            
            .job-selector-item {
                width: 60px;
                height: 60px;
            }
            
            .map-display {
                height: 400px;
            }
            
            .job-description {
                width: 200px;
                height: 260px;
            }
        }