.game-container {
    width: 1200px;
    margin: 0 auto;
    padding-top: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid #3b3b43;
}

.game_nav {
    padding: 18px 0px;
    border-bottom: .01rem solid hsla(0, 0%, 100%, .1);
}



span {
    padding: 10px;
}

.game_nav a {
    color: #8d8ca4;
    text-decoration: none;
    margin: 10px;
}
.game_nav a:nth-child(2){
    color: #ffffff;
}

.game_nav a:hover {
    color: #ffffff;
}

.game-banner {
    display: flex; /* 核心属性：将父容器变为 Flex 容器 */
    gap: 20px; /* 可选：两个子元素之间的间距，避免挤在一起 */
    align-items: flex-start; /* 可选：子元素顶部对齐（避免因高度不同导致错位） */
    margin-top: 30px; /* 可选：与上方导航的间距，优化视觉 */
}

.banner-left {
    width: 600px; /* 宽度与内部轮播容器 .banner-left-wrapper 一致 */
    height: 358px;
}

.banner-left-wrapper {
    width: 600px;
    height: 358px;
    position: relative;
    overflow: hidden;
    border-radius: 18px;
}
.banner-left-wrapper:hover img{
    transform: scale(1.1);
    transition: transform 0.8s ease;
}

/* 轮播项样式 */
.banner-left-wrapper a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

/* 当前激活的轮播项 */
.banner-left-wrapper a.active {
    opacity: 1;
    z-index: 1;
}

.banner-left-wrapper img {
    width: 600px;
    height: 358px;
    object-fit: cover;
    border-radius: 18px;
    display: block;

}
.banner-left-wrapper a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(180deg, transparent, #000 75.52%);
    opacity: 0.7;
    border-radius: 18px;
}

.banner-left-wrapper .gameInfor {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 5px 10px;
    color: #fff;
    z-index: 10;
}

.banner-left-wrapper .gameName {
    font-size: 18px;
    font-weight: normal;
    margin: 0 0 5px 0;
}

.banner-left-wrapper .label span {
    display: inline-block;
    background: rgba(0, 0, 0, 0.2);
    padding: 2px 8px;
    margin-right: 5px;
    border-radius: 3px;
    font-size: 14px;
    border: 1px solid #b6b5b5;
}

/* 分页指示器样式 */
.game-list-swiper-pagination {
    position: absolute; /* 绝对定位，相对于轮播图片容器 */
    bottom: 10px; /* 距离底部的距离 */
    right: 10px; /* 距离右侧的距离，实现右下角定位 */
    z-index: 100; /* 确保在图片上层 */
    display: flex; /* 让圆点横向排列 */
    gap: 10px; /* 圆点之间的间距，可根据需要调整 */
}

.game-list-swiper-pagination span {
    padding: 0;
}

.game-list-bullet {
    display: inline-block;
    width: 10px; /* 圆点宽度，可根据需要调整 */
    height: 10px; /* 圆点高度，可根据需要调整 */
    border-radius: 50%; /* 改为圆角矩形，更接近示例样式 */
    background-color: rgba(255,255,255,0.3); /* 未激活圆点的颜色，可根据需要修改 */
    cursor: pointer;
    transition: background-color 0.3s;
}

.game-list-bullet-active {
    background-color: #fff; /* 激活圆点的颜色，可根据需要修改 */
}

.banner-right {
    width: 600px;
    height: 350px;
    display: flex;
    flex-direction: row; /* 横向排列 */
    flex-wrap: wrap; /* 允许换行 */
    gap: 20px 10px; /* 左右间距 */
}

.banner-right img {
    width: 100%;
    height: 105%;
    object-fit: cover;
    border-radius: 18px;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* 新增阴影过渡 */
    box-shadow: inset 0 -10px 15px -5px rgba(0, 0, 0, 1); /* 顶部内阴影 */
    filter: brightness(0.7);
}

.banner-right img:hover {
    transform: scale(1.05); /* 悬浮时放大 1.1 倍，可根据需求调整倍数 */
    box-shadow: none; /* 取消阴影 */
}

.banner-box__bottom .game-name {
    font-size: 14px;
    width: 250px;
    font-weight: normal;
    color: #fff; /* 文字颜色设为白色，更醒目 */
}

.banner-right a {
    width: calc(50% - 5px); /* 计算宽度，留出间距 */
    position: relative; /* 为子元素绝对定位提供参考 */
    display: block;
}

.banner-box {
    position: absolute; /* 绝对定位，覆盖图片 */
    bottom: 50px; /* 距离底部的距离，可调整 */
    left: 25px; /* 距离左侧的距离，可调整 */
    z-index: 1; /* 确保在图片上层 */
}

.banner-right a {
    width: calc(50% - 5px); /* 两个a各占约一半，减去一半间距 */
}
.column2 {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
}
.column2-left{
    width: 822px;
}
.column2-right{
    width: 378px;
    padding-left: 20px;
}
.column2-left h2,.column2-right h2 {
    font-size: 24px;
    font-weight: normal;
    width: 96px;
    display: inline-block;
}
.el-icon-arrow-right{

}
.column2_left_arrow {
    text-align: center;
    line-height: 25px;
    display: inline-block;
    margin-bottom: 15px;
    margin-left: 20px;
    text-decoration: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    color: #fff;
}
.column2_left_arrow:hover {
    background-color: #ffcc00;
    color: #000;
}
.column2_box {
    display: flex;
    flex-wrap: wrap;
}
.column2_box a{
    width: 266px;
    height: 144px;
    margin-right: 8px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}
.column2_box a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(180deg, transparent, #000 75.52%);
    opacity: 0.7;
    border-radius: 15px;
}
.column2_left_item {
    width: calc(33.333% - 10px);
    text-decoration: none;
}
.column2_left_item:hover img{
    transform: scale(1.1);
    transition: transform 0.3s ease;
}
.column2-banner-box{
    z-index: 1;
    position: absolute;
    bottom: 0;
}
.banner-bg {
    width: 100%;
    height: auto;
    display: block;
}

.column2-banner-box__bottom {
    padding: 8px;
}

.column2-game-name {
    width: 214px;
    font-size: 14px;
    color: #fff;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.column2_introduction {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.column2_introduction a{

}
.introduction_item {
    display: flex;
    text-decoration: none;
}

.img-bg-box, .img-bg-box img{
    width: 168px;
    height: 92px;
    border-radius: 18px;
    overflow: hidden;
}
.img-bg-box:hover img{
    transform: scale(1.1);
    transition: transform 0.3s ease;
}
.img-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.des-box {
    width: 180px;
    margin-left: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.title {
    font-size: 14px;
    color: #fff;
    padding-top: 6px;
    margin-bottom: 10px;
}

.des {
    font-size: 12px;
    color: #8d8d8d;
}
.activityBigBanner img {
    width: 100%;
    height: auto;
    border-radius: 18px;
}

.recommendAndVanguard {
    margin-top: 30px;
    display: flex; /* 设置为Flex容器 */
    align-items: flex-start; /* 子元素顶部对齐 */
    gap: 20px; /* 子元素之间的间距，可根据需要调整 */
}

.recommendAndVanguard h2{
    padding-bottom: 20px;
    font-weight: normal;
    display: inline-block;
}

.recommend {
    width: 600px;
}

.recommendBox {
    flex-direction: row; /* 横向排列 */
    flex-wrap: wrap; /* 允许换行 */
}

.recommend-list {
    display: inline-block;
    width: 280px;
    margin-right: 10px;
    margin-bottom: 18px;
    align-items: center;
    text-decoration: none;
    color: #fff;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    height: 252px;
    background-color: rgba(255, 255, 255, 0.1);
}

.recommend-list:hover .small img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.recommend-list:hover .gameIcon span {
    color: #ffd633; /* 悬浮时的文字颜色 */
}

.small {
    width: 291px;
    height: 252px;
    overflow: hidden; /* 隐藏超出容器的部分 */
    border-radius: 18px 18px 0 0;
    z-index: 2;
}

.small img {
    width: 291px;
    height: 168px;
    border-radius: 18px 18px 0 0;
    transition: transform 0.3s ease;
}

.game-detail {
    color: #ffffff;
    width: 291px;
    height: 90px;
    padding: 26px 18px 26px 18px;
    flex: 1;
    position: absolute;
    bottom: 10px;
    left: 0px;
    border-radius: 10px;
    z-index: 1;

}
.game-detail h3{
    font-size: 16px;
    width: 245px;
    height: 24px;
    font-weight: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.vanguard-des{
    color: #a3a3a3;
    font-size: 12rpx;
    line-height: 20px;
    width: 245px;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-wrap: break-word;
    margin: 0;
}
.gameIcon span {
    font-size: 16px;
    width: 60%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    height: 20px;
    vertical-align: bottom;
    padding: 0;
    color: #fff;
}

.game-des span {
    padding: 0;
    font-size: 16px;
    color: #fff;
    line-height: 1; /* 清除行高对对齐的影响 */
}
.vanguard {
    width: 600px;

}

.right-box a {
    text-decoration: none;
}

.game-box img {
    width: 64px;
    height: 64px;
}

.specialArea h2 {
    width: 33%;
    height: 100px;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    text-align: center;
    line-height: 100px;
}

.specialArea img {
    vertical-align: middle; /* 额外确保图片与文字中线对齐 */
}

.specialArea h2:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.games-update__header h2 {
    font-size: 20px;
    font-weight: bold;
}
.navigation button {
    border: none;
    background: none;
    cursor: pointer;
    font-size: 24px;
    color: #666;
}

.banner-list a{
    display: inline-block;
    width: 379px;
    padding: 10px;
    position: relative;
    box-sizing: border-box
}
.banner-list img{
    width: 100%;
    height: 213px;
    border-radius: 18px;
    transition: transform 0.3s ease;
    box-shadow: inset 0 -10px 15px -5px rgba(0, 0, 0, 1); /* 顶部内阴影 */
    filter: brightness(0.7);
}
.banner-list img:hover{
    transform: scale(1.05);
    transition: transform 0.3s ease;
}
.banner-box__bottom{
    width: 379px;
    position: absolute;
    color: #ebecef;
}
.app-box h2{
    font-size: 20px;
}
.app-box a{
    width: 13%;
    height: 220px;
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    text-decoration: none;
    padding: 20px 0;
    color: #fff;
    margin: 0 5px;
    position: relative;
    border-radius: 5px;
}
.app-box img{
    width: 83px;
    height: 83px;
}
.app-box a:hover{
    background-color: rgba(255, 255, 255, 0.3);
}
.game-list-container .game-name{
    margin: 0 auto;
    width: 120px;
    height: 20px;
    text-overflow: ellipsis;
    font-size: 16px;
}
.game-list-container .label span{
    font-size: 12px;
    border: 1px solid #fff;
    border-radius: 5px;
    padding: 5px;
}
.yuyue a{
    margin: 0 7px;
}
.yuyue .label span{
    margin: 0 2px;
}
.footer-msg{
    margin-top: 60px;

}