/* 引入阿里妈妈数黑体 */

@font-face {
    font-family: 'AlimamaShuHeiTi-Bold';
    src: url('../fonts/AlimamaShuHeiTi-Bold.woff2') format('woff2'),
        url('../fonts/AlimamaShuHeiTi-Bold.woff') format('woff'),
        url('../fonts/AlimamaShuHeiTi-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'AlimamaFangYuanTiVF-Thin';
    src: url('../fonts/AlimamaFangYuanTiVF-Thin.woff2') format('woff2'),
        url('../fonts/AlimamaFangYuanTiVF-Thin.woff') format('woff'),
        url('../fonts/AlimamaFangYuanTiVF-Thin.ttf') format('truetype');
    font-style: normal;
    font-display: swap;
}

body {
    min-height: 100vh;
    background-color: #333;
    position: relative;
    margin: 0;
    padding: 0;
}

/* .bodybg {
    background-size: 100vw 100vh !important;
}

.bodybg2 {
    background-size: 100vw 100vh !important;
} */


        /* 添加自定义样式 */
        .ud-hero-content {
            padding: 0;
            text-align: center;
        }
        
        .section-title {
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 35px;
            margin-bottom: 15px;
        }
        
        .section-title p {
            font-size: 18px;
            color: #637381;
        }

        #season .col-lg-4 img {
            width: auto;
            max-height: calc(100vh - 80px);
            object-fit: contain;
            display: block;  /* 添加这行 */
            margin: 0 auto;  /* 添加这行 */
        }
        #season .container-fluid {
            margin: 0;
            padding: 0;
            height: 100%;
        }

        #season .row {
            height: 100%;
            align-items: center;
        }

/* 添加一个遮罩层用于背景切换时的过渡效果 */
.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
    z-index: 1;
}

.bg-overlay.active {
    opacity: 1;
}

/* 确保内容在遮罩层上方 */
.ud-header, 
.ud-hero,
.back-to-top {
    position: relative;
    z-index: 2;
}


.ud-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #fff;
}

.ud-hero-content p {
    font-size: 18px;
    line-height: 28px;
    color: #fff;
    margin-bottom: 40px;
}

.ud-hero-buttons {
    margin-top: 40px;
}

.ud-hero-buttons .ud-main-btn {
    margin: 0 10px;
}

.card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.card:hover {
    transform: translateY(-5px);
}

.card-body {
    padding: 25px;
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.card-text {
    color: #637381;
    line-height: 1.6;
}

/* 导航栏动画 */
.ud-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* z-index: 99; */
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.ud-hero {
    align-items: center;
    margin: 0;
    padding: 0;
    width: 100%;

    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100vw 100vh;
    /* background-attachment: fixed; */
    min-height: 100vh;
    background-color: #333;
    transition: background-image 0.8s ease-in-out;
    position: relative;
    margin: 0;
    padding: 0;
    overflow: hidden; /* 防止出现滚动条 */
}

body {
    min-height: 100vh;
    background-color: #333;
    transition: background-image 0.8s ease-in-out;
    position: relative;
    margin: 0;
    padding: 0;
}


.ud-hero.active {
    display: flex;
    opacity: 1;
}

/* 修改菜单项容器样式 */
.nav-item {
    position: relative;
    transition: all 0.3s ease;
    padding: 0;
    min-width: 100px;
    text-align: center;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav-item:hover{
	
}
/* 修改菜单项样式 */
.ud-menu-scroll {
    font-family: 'AlimamaShuHeiTi-Bold', sans-serif;
    font-size: 19px!important;
    color: #ffffff !important;
    transition: all 0.3s ease;
    text-decoration: none;
    padding: 0;
    line-height: 1;
    position: relative;
    z-index: 1;
    width: 100%;
}

/* 选中图片样式 */
.nav-item img {
    position: absolute;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none; /* 防止图片影响鼠标事件 */
    z-index: 0;
}

/* 激活状态显示选中图片 */
.nav-item.active img {
    opacity: 1;
}

.menuseason,.menuindex {
    .nav-item a , .nav-item a:hover  {
        color: #fff!important;
        opacity: 1!important;
        text-shadow: #0799df 0px 0px 6.89538px, 
                    #0799df 0px 0px 6.89538px, 
                    #0799df 0px 0px 6.89538px,
                    #0799df 0px 0px 13.7908px
    }

    /* 菜单项容器激活状态 */
    .nav-item.active .ud-menu-scroll {
        color: #FF65B3 !important;
        text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
    }

    /* 鼠标悬停效果 */
    .nav-item:hover .ud-menu-scroll {
        /* color: #FF65B3 !important; */
        color: #fff!important;
        text-decoration: none;
    }

    .nav-item-first:hover .ud-menu-scroll {
        color: #FF65B3 !important;
        text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
    }
}

.menugameword {
    .nav-item a {
        color: #fffad9!important;
    }

    /* 菜单项容器激活状态 */
    .nav-item.active .ud-menu-scroll {
        color: #adffd2 !important;
    }

    /* 鼠标悬停效果 */
    .nav-item:hover .ud-menu-scroll {
        /* color: #adffd2 !important; */
        color: #fff!important;
        text-decoration: none;
    }
}

.menuwuqiku {
    .nav-item a {
        color: #3e6cd6!important;
    }

    /* 菜单项容器激活状态 */
    .nav-item.active .ud-menu-scroll {
        color: #FFCC92 !important;
    }

    /* 鼠标悬停效果 */
    .nav-item:hover .ud-menu-scroll {
        /* color: #FFCC92 !important; */
        color: #fff!important;
        text-decoration: none;
    }
}

.menujueseji {
    .nav-item a {
        color: #716990!important;
    }

    /* 菜单项容器激活状态 */
    .nav-item.active .ud-menu-scroll {
        color: #FFFFFF !important;
    }

    /* 鼠标悬停效果 */
    .nav-item:hover .ud-menu-scroll {
        /* color: #FFFFFF !important; */
        color: #fff!important;
        text-decoration: none;
    }
}

.menudongtai {
    .nav-item a {
        color: #ffffff!important;
    }

    /* 菜单项容器激活状态 */
    .nav-item.active .ud-menu-scroll {
        color: #befffb !important;
    }

    /* 鼠标悬停效果 */
    .nav-item:hover .ud-menu-scroll {
        /* color: #befffb !important; */
        color: #fff!important;
        text-decoration: none;
    }
}



/* 调整导航菜单容器 */
.navbar-nav {
    align-items: center;
    height: 80px;
}
.navbar-nav:hover + .submenu.show{
	display: block !important;
}

/* 确保导航栏背景透明 */
.ud-header {
    background: transparent;
}

/* 调整子菜单样式 */
.ud-submenu .ud-submenu-link {
    font-family: 'AlimamaShuHeiTi-Bold', sans-serif;
    font-size: 19px;
    color: #ffffff;
}

/* 调整logo大小 */
#sitelogo {
    transition: all 0.3s ease;
    width: auto;
}

/* 优化section切换动画 */
.fade-enter {
    opacity: 0;
}

.fade-enter-active {
    opacity: 1;
    transition: opacity 0.5s ease;
}

.fade-exit {
    opacity: 1;
}

.fade-exit-active {
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* 调整内容容器样式 */
.container-fluid {
    padding: 0 15px;
    height: 100%;
}

/* 调整图片容器样式 */
.ud-hero .row {
    width: 100%;
    margin: 0;
    height: 100%;
}

/* 调整图片大小，确保适应容器 */
#season img {
    max-height: calc(100vh - 80px);
    object-fit: contain;
    width: auto;
}

/* 确保header固定在顶部 */
.ud-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 80px;
}

/* 调整内容垂直居中 */
.ud-hero-content {
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* 调整back-to-top按钮位置 */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1001;
}

/* 赛季图片容器样式 */
.season-img {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    /* padding: 0 15px; */
}



/* 赛季图片容器样式 */
 .season-img1 {
    transition: background-image 1s ease-in-out;
}

.season-img img {
    max-height: calc(100vh - 80px);
    width: auto;
    object-fit: contain;
    transition: transform 0.5s ease;
}

/* 悬停效果 */
/* .season-img:hover img {
    transform: scale(1.05);
} */

.season-img-gaoguang {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

/* 遮罩层样式 */
.season-overlay {
    position: absolute;
    top: 0;
    left: 15px;
    right: 15px;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s ease;
}

.season-content {
    text-align: center;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.season-content h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 10px;
    font-family: 'AlimamaShuHeiTi-Bold', sans-serif;
}

.season-content p {
    color: #fff;
    font-size: 16px;
    margin: 0;
    font-family: 'AlimamaShuHeiTi', sans-serif;
}

/* 悬停时的遮罩层效果 */
.season-img:hover .season-overlay {
    opacity: 1;
}

.season-img:hover .season-content {
    transform: translateY(0);
}

/* 下载按钮容器 */
.download-btn-wrapper {
    position: relative;
    margin-left: 20px;
}

/* 下载按钮图片 */
.download-btn {
    height: 43px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* 鼠标悬停效果 */
.download-btn:hover {
    transform: scale(1.1);
}

/* 下拉框样式 */
.download-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-image: url('../images/site/index/menubg.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    border-radius: 8px;
    padding: 20px;
    width: 100%; /* 设置宽度与按钮一致 */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000; /* 确保下拉框在最上层 */
}

.dropdown-item {
    background-image: url(../images/site/index/item-bg-normal.png);
    background-size: contain;
    background-repeat: repeat-x;
    margin-bottom: 10px;
    padding: 8px 20px;
    color: #fff;
    font-family: 'AlimamaShuHeiTi-Bold', sans-serif;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

/* 显示下拉框 */
.download-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item:hover {
    /* background: rgba(255, 101, 179, 0.6); */
    background-image: url(../images/site/index/itembg-selected.png);
    background-color: transparent!important;
    color: white;
    text-shadow: 
        0 0 20px #FF65B3,
        0 0 20px #FF65B3,
        0 0 20px #FF65B3,
        0 0 40px #FF65B3;
}

/* 游戏世界左侧容器样式 */
#leftcontainer {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
}

.gameword-left-images {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    height: 100%;
    width: 100%;
}

.gameword-img-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gameword-img-wrapper-img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s ease;
    cursor: pointer;
    background-image: url('../images/site/gameworld/hoverbg.png');
}

.gigwrapper {
    background-image: url('../images/site/gameworld/bgnormal1.png');
    background-size: 100% 100%;
    height: 130px;
    width: 80%;
    position: relative;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gigwrapper:hover {
    background-image: url('../images/site/gameworld/bghover1.png');
}

.gigwrapper a {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
}

.gigwrapper .text-name {
    font-family: 'AlimamaShuHeiTi-Bold', sans-serif;
    font-size: 26px;
    color: #ffffff;
    margin-left: 50px;
    margin-top: 20px;
}

.gigwrapper .play-btn {
    width: auto;
    height: 100px;
    margin-right: 60px;
    transition: transform 0.3s ease;
}

.gameword-img-wrapper-img:hover {
    background-image: url('../images/site/gameworld/hoverbg.png');
}

.gameword-img {
    max-width: 100%;
    height: 190px;
    object-fit: contain;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gameword-img3 {
    transition: transform 0.8s ease;
    cursor: pointer;
    margin-left:6rem; 
    height: 65vh;
}

.gameword-img-entry {
    max-width: 100%;
    height: 130px;
    object-fit: contain;
    transition: transform 0.3s ease;
    cursor: pointer;
    margin-left:20rem;
}

/* 可选：添加鼠标悬停效果 */
.gameword-img:hover, .gameword-img3:hover {
    transform: scale(1.05);
}

.loopanimated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

.loopanimated2 {
    animation: up-down 4s ease-in-out infinite alternate-reverse both;
}

.loopanimatedswing {
    animation: gentleSwing 4s ease-in-out infinite alternate-reverse both;
}

@keyframes gentleSwing {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(10px);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes up-down {
    0% {
      transform: translateY(10px);
    }
  
    100% {
      transform: translateY(-10px);
    }
}

.weapon-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 300px;
    margin-top: 20px;
	/* padding-right: 50px; */
}

.weapon-item {
    height: 100px;
    background-image: url('../images/site/wuqi-weixuanzhong.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.weapon-menu .active {
    background-image: url('../images/site/wuqi-xuanzhong.png');
}

.weapon-name {
    position: absolute;
    /* letter-spacing: 5px; */
    top: 2px;
    left: 10px;
    color: #fff;
    font-family: 'AlimamaShuHeiTi-Bold', sans-serif;
    font-size: 14px;
    z-index: 2;
}

.weapon-img {
    max-height: 80%;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    margin-top: 20px;
    margin-left: -80px;
}
.weapon-icon{
	position: absolute;
	top: 19px;
	right: 30px;
	z-index: 2;
	width: 50px;
}
.weapon-item:hover .weapon-img {
    transform: scale(1.1);
}

.imgWeapon {
    transition: all 0.3s ease;
    cursor: pointer;
}

.imgWeapon:hover {
    transform: scale(1.01);
}

.role-more {
    width: 50%;
    height: auto;
    transition: transform 0.3s ease;
    cursor: pointer;
	position: relative;
	right: -55px;
}

.role-more:hover {
    transform: scale(1.1);
}

.weapon-more {
    width: 80%;
    height: auto;
    transition: transform 0.3s ease;
    cursor: pointer;
	margin-left: -42px;
}

.weapon-more:hover {
    transform: scale(1.1);
}


#boxleft2 {
    display: flex;
    position: relative;
    height: 100%;
}

#img1 {
    object-fit: contain;
    margin: auto;
    transition: transform 0.3s ease;
    width: 100%;
}

#img1:hover {
    transform: scale(1.05);
}

#img2 {
    position: absolute;  /* 使用绝对定位 */
    top: 0;             /* 贴近顶部 */
    right: 0;           /* 贴近右侧 */
    width: 40%;         /* 控制小图的宽度 */
    object-fit: contain;
    transition: transform 0.3s ease;
    z-index: 2;         /* 确保在大图上层 */
}

#img2:hover {
    transform: scale(1.1);
}

#wuqibig {
    max-height: 60vh;
    object-fit: contain;
}

#role-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 20px;
    justify-content: space-between;
    margin-top: 20px;
    width: 85%;  /* 设置宽度为父元素的80% */
    max-width: 550px;
    margin-left: auto;  /* 水平居中 */
    margin-right: auto;
}

.role-item {
    width: calc(25% - 15px); /* 每行4个，减去间距 */
    height: 190px;
    background-image: url('../images/site/juese-weixuanzhong.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: 10px;
}

.role-item img {
    margin-top: -1.5rem;
    width: 70%;
    margin-left: 1.3rem;
}

.role-item:hover {
    background-image: url('../images/site/juese-xuanzhong.png');
    transform: scale(1.05);
}

.role-item.active {
    background-image: url('../images/site/juese-xuanzhong.png');
}

.dongtai-content {
    width: 100%;
    display: flex;
    flex-direction: column;  /* 竖直方向排列 */
    gap: 2rem;              /* div之间的间距 */
    padding: 2rem 0;        /* 上下内边距 */
}

.dongtai-top {
    width: 50%;      /* 设置宽度为父元素的50% */
    min-height: 50px;
    margin: 0 auto;  /* 水平居中 */
    display: flex;   /* 使用flex布局 */
    justify-content: center;
    align-items: center;
    background-color: transparent;  /* 移除临时背景色 */
}

.dongtai-bottom {
    width: 100%;
    /* min-height: 300px;    
    background-color: rgba(255, 255, 255, 0.1);  */
}

.dongtai-nav {
    display: flex;
    justify-content: space-between;  /* 改为space-between实现等距分布 */
    padding: 1rem 0;
    background-image: url('../images/site/dongtai/titlebg-unselected.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
}

.dongtai-nav-item {
    font-family: 'AlimamaShuHeiTi-Bold', sans-serif;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 33.33%;          /* 每个项目占据1/3宽度 */
    text-align: center;     /* 文字居中 */
    padding: 0.5rem 0;      /* 只保留上下内边距 */
    display: flex;          /* 使用flex布局 */
    justify-content: center;/* 文字水平居中 */
    align-items: center;    /* 文字垂直居中 */
}

.dongtai-nav-item.active {
    background-image: url('../images/site/dongtai/titlebg-selected.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    color: #befffb;
    width: 33.33%;         /* 确保选中状态也是1/3宽度 */
}

.dongtai-nav-item:hover {
    color: #befffb;
}

.dongtai-tabs {
    width: 100%;
}

.tab-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 5px;
}

.tab-item {
    flex: 1;
    padding: 10px 20px;
    text-align: center;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'AlimamaShuHeiTi-Bold', sans-serif;
    position: relative;
    border-radius: 6px;
}

.tab-item.active {
    background: #1a6fff;
    color: #befffb;
}

.tab-item:hover {
    color: #befffb;
}

.tab-content {
    margin-top: 2px;
}

.tab-pane {
    display: none;
    padding: 20px;
    /* background: rgba(255, 255, 255, 0.1); */
    border-radius: 8px;
}

.tab-pane.active {
    display: block;
}

#updates {
    height: 60vh;
    overflow-y: auto;
    padding-right: 10px;  /* 为滚动条留出空间 */
}

/* 自定义滚动条样式 */
#updates::-webkit-scrollbar {
    width: 6px;
}

#updates::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

#updates::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.update-item {
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.update-content {
    width: 80%;
    margin: 0 auto;
}

.update-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.update-title {
    color: #fff;
    font-size: 16px;
    font-family: 'AlimamaShuHeiTi-Bold', sans-serif;
}

.update-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 10px 0;
}

.update-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.5;
    max-height: 3em;  /* 两行的高度 */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;  /* 限制两行 */
    -webkit-box-orient: vertical;
}

.ud-menu-scroll:hover + .submenu{
    display: block !important;
}
.nav-item {
    position: relative;
    min-width: 135px;
    text-align: center;
  }
  .ud-menu-scroll {
    position: relative;
    display: block;
    padding: 10px 20px;
  }
  .menu-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: auto;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
  }
  .ud-menu-scroll.active .menu-bg {
    opacity: 1;
  }

.homeintroimg {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    padding: 0 15px;
}

.homeintroimg img {
    max-height: calc(100vh - 80px);
    width: auto;
    object-fit: contain;
    transition: opacity 0.5s ease-in-out;
    opacity: 1;
    will-change: opacity;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.gameword-img-wrapper {
    position: relative;  /* 确保父元素是相对定位 */
  }

  .file-label {
    position: absolute;
    top: 10px;
    left: 50px;
    color: #adffd2;  /* 金色文字 */
    font-family: Arial, sans-serif;
    letter-spacing: 5px;
    font-size: 14px;
    font-weight: bold;
    z-index: 1;
  }

  /* 赛季菜单文字样式 */
  .season-text {
    color: #FF65B3;
    font-size: 25px !important;
    margin-top: -5px;
    text-shadow: 
      -1px -1px 0 #fff,  
       1px -1px 0 #fff,
      -1px  1px 0 #fff,
       1px  1px 0 #fff;
    font-weight: bold;
  }

  /* .season-img-backgournd::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    transform: translate(-10%, -10%); 
  }

  .season-img-backgournd:hover::before {
    opacity: 1;
    background: url('__CDN__/assets/images/site/index/gaoguang.png') no-repeat top left;
    background-size: 80% auto; 
  } */

  .season-img {
    position: relative;
    margin: 0 2px;  /* 添加左右间距 */
    flex: 1;  /* 让每个图片占据相等的空间 */
    max-width: 33.33%;  /* 限制最大宽度为三分之一 */
  }

  .guanrunimg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: auto;
    pointer-events: none;  /* 确保不会影响其他元素的交互 */
  }

  #div1 {
    display: flex;  /* 使用flex布局 */
    justify-content: space-between;  /* 等距分布 */
    align-items: center;  /* 垂直居中 */
    width: 100%;  /* 确保容器占满宽度 */
    padding-bottom: 2vh;  /* 增加底部间距 */
  }

  .season-img1 {
    width: 100%;  /* 图片宽度占满容器 */
    height: auto;  /* 保持图片比例 */
    margin-left: 0;  /* 移除之前的负边距 */
  }

  /* 添加图片发光效果 */
  .card-img-top-season {
    transition: all 0.3s ease;
  }

  .card-img-top-season:hover {
    filter: drop-shadow(0 0 20px rgba(24, 176, 250, 0.8)) drop-shadow(0 0 25px rgba(24, 176, 250, 0.4));
  }

  .gigwrapper {
    width: 455px;
  }

  .gigwrapper .play-btn {
    height: 105px;
    margin-right: 40px;
    margin-top: 8px;
  }

  .weapon-item {
    height: 120px;
  }

  .weapon-menu {
    height: 400px;
  }

  /* 自定义滚动条样式 */
  ::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }
  
  ::-webkit-scrollbar-track {
    background: transparent;
  }
  
  ::-webkit-scrollbar-thumb {
    background: #045298;
    border-radius: 4px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: #045298;
  }
  
  /* 隐藏滚动条上下箭头 */
  ::-webkit-scrollbar-button {
    display: none;
  }

  .role-intro-wrapper {
    position: absolute;
    right: 3vw;
    top: 20vh;
    transform: translateY(-50%);
    color: #2c50a0;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
    width: 320px;
  }

  .role-name {
    margin-bottom: 20px;
    position: relative;
  }
  .role-name::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, #fff, transparent);
  }
  .character-name {
    /* display: flex; */
    align-items: center;
 }

 .name-flex-item {
    flex-grow: 1;
 }

.character-name-cn {
    font-family: 'AlimamaShuHeiTi-Bold', sans-serif;
    font-size: 34px;
    color: #ffffff;
    /* text-shadow: 0 0 10px rgba(255, 255, 255, 0.5); */
    /* text-shadow: 0 0 10px #3f44be; */
    text-shadow: #3f44be 0px 0px 10px, #3f44be 0px 0px 10px, #3f44be 0px 0px 10px, #3f44be 0px 0px 18.7908px;
}

.character-name-en {
    font-family: 'AlimamaShuHeiTi-Bold', sans-serif;
    font-size: 24px;
    color: #2c50a0;
    text-shadow: 0 0 10px #3f44be;
    text-align: right;
}

  .cn-name {
    font-size: 36px;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
  }
  .en-name {
    font-size: 24px;
    opacity: 0.8;
    display: block;
  }
  .role-info {
    font-family: 'AlimamaFangYuanTiVF-Thin';
    font-size: 14px;
    line-height: 2;
  }

  .role-intro-subtitle {
    font-family: 'AlimamaFangYuanTiVF-Thin';
    font-weight: bold;
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 20px;
    color: #2c50a0;
  }

  .role-info p {
    margin: 0;
    color: #2c50a0;
  }
  #boxleft2 {
    position: relative;
  }

  .weapon-detail-item-name {
    grid-area: name;
    justify-self: start;
    align-self: start;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.weapon-name-header {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 5px;
}

.weapon-name-cn {
    font-family: 'AlimamaShuHeiTi-Bold', sans-serif;
    font-size: 32px;
    color: #ffcc92;
    margin: 0;
    display: inline-block;
    line-height: 1.2;
    text-shadow: #364698 0px 0px 10px, #364698 0px 0px 10px, #364698 0px 0px 10px, #364698 0px 0px 18.7908px;
}

.weapon-name-en {
    font-family: 'AlimamaShuHeiTi-Bold', sans-serif;
    font-size: 20px;
    color: #ffcc92;
    margin: 0;
    display: inline-block;
    margin-top: 15px;
    position: absolute;
    right: 5px;
    line-height: 1.2;
    text-shadow: #364698 0px 0px 10px, #364698 0px 0px 10px, #364698 0px 0px 10px, #364698 0px 0px 18.7908px;
}

.weapon-name-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, #ffcc92, transparent);
    margin: 10px 0;
}

.weapon-name-desc {
    font-family: 'AlimamaFangYuanTiVF-Thin', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-top: 10px;
    max-width: 800px;
    text-shadow: #3f44be 0px 0px 10px, #3f44be 0px 0px 10px, #3f44be 0px 0px 10px, #3f44be 0px 0px 18.7908px;
}

