@charset "UTF-8";

html {
    background: rgba(0, 0, 0, 0.8);
}

.contianer {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}

/* 侧边栏 */
.whiteLine {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    position: fixed;
    left: 34.5px;
    z-index: 4;
}

.selectItem {
    height: 100%;
    color: white;
    position: fixed;
    z-index: 10;
    top: 296px;
}

.selectItemBack {
    width: 200px;
    height: 45px;
    position: relative;
    display: flex;
    cursor: pointer;
    align-items: center;
    margin-bottom: 15px;
    letter-spacing: 2px;
    caret-color: rgba(0, 0, 0, 0);
}

.selectItemBack img {
    position: absolute;
    top: -10px;
    height: 150%;
    width: 100%;
}

.selectItemBack.active {
    border-top: 2px solid #d8a967;
    border-bottom: 2px solid #d8a967;
}

.selectItemBack.active,
.selectItemBack:hover {
    background: linear-gradient(to right, rgba(216, 169, 103, 0.5), rgba(0, 0, 0, 0));
}

.selectItemBack i {
    margin-right: 22px;
    margin-left: 34px;
    font-size: 3px;
    font-weight: bold;
}

.selectItemBack.active i {
    margin-right: 15px;
    margin-left: 20px;
    font-size: 28px;
    font-weight: normal;
}

/* 导航条 */
.menuPart {
    min-width: 1366px;
    width: 100%;
    position: absolute;
    top: 10px;
    z-index: 5;
}

.header {
    width: 70%;
    display: flex;
    height: 100px;
    align-items: center;
    min-width: 1300px;
    border-radius: 50px;
    background-color: rgba(0, 0, 0, 0.6);
    position: relative;
}

.header ul {
    list-style-type: none;
    width: 100%;
    margin-top: 0;
    margin-bottom: 0px;
    height: 100px;
}

.header li {
    height: 100%;
    width: 20%;
    float: left;
    text-align: center;
    font-size: 14px;
    position: relative;
}

.head_logo {
    float: left;
    width: 25%;
    padding-left: 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.headImg {
    padding-top: 5px;
    width: 100px;
    /* border-radius: 50%; */
}

.header>ul>li>a {
    color: white;
    font-family: PingFangSC-regular;
    font-size: 14px;
    cursor: pointer;
}

.header>ul>li>a:hover>span {
    color: white;
}

.header>ul>li>a>span {
    color: rgba(255, 255, 255, 0.4);
}

.header>ul>li>a>.headerTitle {
    margin-bottom: 0px;
    margin-top: 25px;
    font-size: 16px;
}

.header>ul>li>a>.headerTitleEng {
    font-size: 10px;
}

.firstLi {
    padding-top: 4.5px;
    display: flex;
    justify-content: center;
}

.firstLiText {
    margin-bottom: 0px;
    margin-top: 25px;
    font-size: 16px;
    text-shadow: 3px 1px 5px #ffffff;
}

.firstLiTextEng {
    color: white;
    font-size: 10px;
    color: white;
}

.fangkuai {
    position: absolute;
    bottom: 0;
    left: 27%;
    width: 100px;
    height: 4px;
    background-color: #e5004f;
}

.bg2 {
    padding-top: 4.5px;
}

.bg2 a {
    text-decoration: none;
}

.firstLi a {
    text-decoration: none;
}

.headerPart {
    display: flex;
    justify-content: center;
}

.dropMenu {
    display: none;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 0px 0px 50px 50px;
    width: 70%;
    min-width: 1300px;
}

/* 主内容 */
.home {
    min-width: 1366px;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    min-height: 800px;
}

.wholePage {
    width: 100%;
    height: 100%;
}

/* 公告通知 */
.advertise-announcement {
    position: absolute;
    top: 120px;
    z-index: 6;
    width: 60%;
    left: 20%;
    height: 30px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
}

.advertise-announcement a {
    text-decoration: none;
    display: inline-block;
    height: 30px;
    line-height: 30px;
    padding-right: 300px;
    cursor: pointer;
}

.qu-container {
    display: flex;
    height: 30px;
    margin: 0 20px;
}

.noticePhoto {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    margin-right: 5px;
}

.carouselText {
    color: white;
    font-size: 12px;
    font-family: times New Roman;
    height: 30px;
    cursor: pointer;
}

.swiper {
    width: 100%;
    height: 100%;
}

.mySwiper1 .swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
}

.mySwiper1 .swiper-slide .backGroundPage {
    height: 100%;
    width: 100%;
    position: absolute;
}

.mySwiper1>.swiper-pagination-bullets {
    bottom: 50px;
}

.mySwiper1 .swiper-pagination-bullet {
    opacity: 1;
    width: 140px;
    height: 8px;
    border-radius: 0px;
    background: white;
    overflow: hidden;
    cursor: pointer;
}

.mySwiper1 .swiper-pagination-bullet-active .redLine {
    background: #e5004f;
    width: 100%;
    height: 100%;
    animation: load 8s linear;
    -webkit-animation: load 8s linear;
}

@-webkit-keyframes load {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

@keyframes load {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

.product_info,
.product_info_content {
    height: 100%;
    width: 100%;
    position: relative;
    color: #ffffff;
    font-family: PingFangSC-medium;
}

.product_info img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 保持图片比例并覆盖容器 */
}

.product_info_bg {
    position: fixed;
}

.product_info_title {
    position: absolute;
    left: 67%;
    top: 15%;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.6);
}

.product_info_text {
    position: absolute;
    left: 50%;
    top: 20%;
    height: 45%;
}

.platformGameName {
    height: 135px;
    width: 250px;
    word-break: break-all;
    color: #ffffff;
    font-size: 42px;
    font-family: PingFangSC-medium;
    display: flex;
    align-items: flex-end;
}

.gameTextcontent {
    position: absolute;
    top: 55%;
    width: 520px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    line-height: 25px;
    font-family: PingFangSC-Regular, sans-serif;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 10px 30px;
    text-indent: 2em;
}

.jumpBtnStyle {
    position: absolute;
    bottom: 0;
    display: flex;
    width: 100px;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    height: 34px;
    font-family: PingFangSC-Regular;
    color: #ffffff;
    background: rgba(0, 0, 0, 0);
    border: 1px solid #ffffff;
    cursor: pointer;
    margin-top: 50px;
}

.jumpBtnStyle i {
    font-size: 14px;
    transform: rotate(180deg);
}

/* 游戏中心缩略图 */
.thumbs {
    width: 40%;
    height: 200px;
    position: absolute;
    bottom: 38px;
    right: 12%;
    display: flex;
    align-items: center;
}

.thumbs .swiper-slide {
    display: flex;
    justify-content: center;
}

.thumbs .thumbs-box {
    height: 100%;
    width: 120px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: linear-gradient(to left bottom, #fff, rgba(255, 255, 255, 0.2));
}


.thumbs .thumbs-box:hover {
    border-bottom: 10px solid #b01210;
    transition: all 0.2s;
}

.thumbs .swiper-slide-thumb-active .thumbs-box {
    bottom: 10px;
    box-shadow: 10px 15px #b01210;
    transition: all 0.4s;
}

.thumbs .swiper-slide-thumb-active .thumbs-box:hover {
    border: 0;
}

.thumbs .thumbs-box img {
    height: 150%;
    pointer-events: none;
    transform: scale(1.5) rotateY(180deg);
    position: absolute;
    top: 20px;
    right: -45%;
}

/* 上下导航按钮 */
.thumbs .swiper-button-next,
.thumbs .swiper-button-prev {
    position: unset;
    margin: 20px;
}

.thumbs .swiper-button-prev::after,
.thumbs .swiper-button-next::after {
    top: 50%;
    color: #eee;
    font-size: 16px;
    padding: 10px 15px;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
}

.thumbs .swiper-button-prev:hover::after,
.thumbs .swiper-button-next:hover::after {
    background-color: rgba(0, 0, 0, 0.6);
}

/* 公众号 */
.account {
    width: 100%;
    height: 100%;
    background: url("../../image/account3.png") no-repeat;
    background-size: cover;
    background-position: center;
}

.account img {
    width: 100%;
    height: 80%;
    object-fit: contain; 
    position: absolute;
    bottom: 10%;
    left: 0;
}

/* 底部 */
.foot {
    font: 12px / 1.5 "Hiragino Sans GB", "Microsoft YaHei", simsun;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000;
    padding: 15px;
    color: #888;
    text-align: left;
    font-size: 12px;
    line-height: 25px;
    font-family: "宋体";
}

.foot .layui-breadcrumb a:hover {
    color: #de2910 !important;
}

.foot .footLogo{
    height: 70px;
    line-height: 100px;
    text-align: right;
    padding-right: 60px;
}

.foot .footLogo img{
    height: 100%;
}

.foot img {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    top: -2px;
}

.foot a {
    color: #888;
}

.foot a:hover {
    color: #de2910;
}