html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul,li{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}table{border-collapse:collapse;border-spacing:0}*{box-sizing:border-box;-webkit-tap-highlight-color:transparent}input,button,textarea,select{font:inherit;color:inherit;background: none;border: none;}a{color:inherit;text-decoration:none}img{max-width:100%;height:auto}
:root{
    --primary-bg: #0c3467;
    --secondary-bg: #0a256f;
    --text-primary: #fff;
    --text-color: #e3e9e9;
    --link-color: #f1d872;
    --border-color: #fff;
    --default-btnbg: #000;
    --h2-titlecolor: #e9ce66;
    --btn-bg: #f96e1f;
    --btn-bg2: #dfd139;
    --btn-hover: #c4510e;
    --btn-bg2-hover: #f0df28;
    --article-bg:#31333b;
    --webkit-scrollbar-color: rgba(255,255,255,.2);
    --footer-bg: #191a2d;
    --footer-bg2: #111;
    --inner-bg:#31343b;
}
::-webkit-scrollbar{
    width: 4px;
    height: 4px;
}
::-webkit-scrollbar-thumb {
    background-color: none; 
    border-radius: 2px; 
  }
::-webkit-scrollbar-thumb:hover {
    background-color: var(--webkit-scrollbar-color); 
}
body{
    background-color: var(--primary-bg);
}
.contaner-banner{
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 8px;
    box-shadow: 3px 3px 5px rgba(0, 0, 0,.25);
}
.swiper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

  .swiper-slide {
    width: 100%;
    height: 100%;
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
    object-fit: cover;
  }
  .swiper-pagination-bullet{
    width: 30px !important;
    border-radius: 4px !important;
    background: var(--btn-bg) !important;
    box-shadow: 3px 3px 5px rgba(0, 0, 0,.25) !important;
  }
#app{
    display: flex;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    justify-content: flex-end;
}
#app .left-navs{
    width: 238px;
    height: 100vh;
    overflow-y: auto;
    background-color: var(--secondary-bg);
    box-shadow: 3px 3px 5px rgba(0, 0, 0, .25);
    padding: 10px 15px 40px;
    transition: all 1s ease-out;
    position: relative;
    left: 0;

}
#app .main-container{
    width: calc(100% - 238px);
    height: 100vh;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    transition: all 0.5s ease-out;
}
#app.hidenav .left-navs{
    position: relative;
    left: -238px;
    display: none;
}
#app.hidenav .main-container{
    width: 100%;
}
#app .left-navs .mobile-menu-colse{
    position: fixed;
    top: 15px;
    right: 15px;
    border: 2px solid var(--border-color);
    display: inline-flex;
    width: 32px;
    height: 32px;
    background: var(--border-color);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    display: none;
}
#app .left-navs .mobile-menu-colse img{
    width: 28px;
    height: 28px;
}
.container{
    width: 1224px;
    margin: 0 auto;
}
.flex{display: flex;}
.ac{align-items: center;}
.jc{justify-content: center;}
.jc-sb{justify-content: space-between;}
.jc-sa{justify-content: space-around;}
.nav-logo-menu{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}
.mobile-fixed{
    display: none;
}
.nav-logo-menu .logo{
    width: 142px;
}
.nav-logo-menu .menu{
    cursor: pointer;
}
.nav-logo-menu .menu img,
.main-header .menu img{
    width: 26px;
    height: 26px;
    filter: brightness(0) invert(1);
}
.nav-logo-menu .nav-top{
    display: flex;
    flex-direction: column;
}
.left-navs .nav-top .nav-top-item{
    display: block;
    margin-bottom: 5px;
    padding: 0;
}
.left-navs .nav-top .nav-top-item:hover{
    opacity: .8;
}
.left-navs .nav-top .nav-top-item img{
    display: block;
    width: 100%;
}
.left-navs .nav-list{
    margin-top: 20px;
}
.left-navs .nav-list li{
    margin-bottom: 25px;
}
.left-navs .nav-list li a{
    display: flex;
    align-items: center;
}
.left-navs .nav-list li img{
    width: 20px;
    height: 20px;
    margin-right:10px ;
}
.left-navs .nav-list li .name{
    color: var(--text-primary);
    font-weight: bold;
    font-size: 16px;
    white-space: nowrap;
}
.left-navs .nav-list li .name:hover,
.left-navs .nav-list li.cur .name{
    color: var(--link-color);
}
/* main-container */
.main-container::-webkit-scrollbar{
    display: none;
}
.main-container::-webkit-scrollbar-thumb {
    display: none;
}

.main-header{
    height: 95px;
    position: sticky;
    top: 0px;
    z-index: 900;
    overflow: hidden;
    background-color: var(--secondary-bg);
    box-shadow: 3px 3px 5px rgba(0, 0, 0, .25);
}
.main-header .menu{
    position: absolute;
    left: 20px;
    display: none;
}
#app.hidenav .main-header .menu{
    display: block;
}
.main-header .header-box .page-title img{
    height: 80px;
}
.main-header .header-box .main-header-r .btn-head{
    display: inline-flex;
    width: 124px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    box-sizing: border-box;
    color: var(--text-primary);
    margin-left: 8px;
}
.main-header .header-box .main-header-r .btn-login{
    background-color: var(--default-btnbg);    
    border: 1px solid var(--border-color);
}
.main-header .header-box .main-header-r .btn-register{
    background-image: linear-gradient(90deg,var(--btn-bg),var(--btn-bg2));
}
.main-content{
    margin-top: 25px;
}
.main-info{
    margin-top: 25px;
}
.main-info h2{
    font-size: 24px;
    color: var(--h2-titlecolor);
    text-align: center;
    line-height: 28px;
    margin-bottom: 15px;
    font-weight: 600;
}
.main-info p{
    text-align: center;
    font-size: 18px;
    color: var(--text-color);
    line-height: 24px;
}
/* footer */
.main-footer{
    margin-top: 40px;
    background: var(--footer-bg);
    padding:25px 0 0 0;
}
.main-container .footer-brand{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 10px;
}
.main-container .footer-brand li{
    box-sizing: border-box;
    padding: 10px;
}
.main-container .footer-brand li img{
    height: 40px;
}
.main-container .footer-content{
    background-color: var(--footer-bg2);
    padding: 25px 0;
    text-align: center;
    color: var(--text-color);
    line-height: 26px;
    font-size: 16px;
}
.hotgames{
    margin-top: 25px;
}
.hotgames .hotgames-title{
    display: flex;
    justify-content: space-between;
    height:50px;
    align-items: center;
    margin-bottom: 10px;
}
.hotgames .hotgames-title h2{
    font-size:20px ;
    color: var(--text-primary);
    font-weight: bold;
    display: flex;
    align-items: center;
}
.hotgames .hotgames-title h2 .icon{
    height: 36px;
    display: block;
    margin-right: 6px;
}
.hotgames .hotgames-title .more,
.main-index-content .main-index-ctitle .more{
    color: var(--text-primary);
    border: 1px solid var(--text-primary);
    border-radius: 6px;
    padding:8px 22px;
    font-size: 13px;
    font-weight: bold;
}
.hotgames .hotgames-title .more:hover{
    transform: scale(1.05);
}
.hotgame-lsit{
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.hotgame-lsit li{
    width: calc(16.7% - 12px);
    position: relative;
}
.hotgame-lsit li::after{
    display: block;
    content: " ";
    background: url("../images/hot_dz.avif") center center no-repeat;
    background-size: cover;
    width: 29px;
    height: 22px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
}
.hotgame-lsit li a{
    display: flex;
    aspect-ratio: 9 / 12;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}
.hotgame-lsit li a img{
    position: relative;
}
.hotgame-lsit li a::after{
    position: absolute;
    content: ' ';
    display: block;
    left: 0;
    right: 0;
    height:100%;
    z-index: 2;
}
.hotgame-lsit li a::after{
    bottom: 0;
    background: linear-gradient(to top, rgba( 0,0,0, 0.3), rgba( 0,0,0, 0.02), rgba( 0,0,0, 0.3));
}
.hotgame-lsit li a .info{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .6);
    opacity: 0;    
    transition: opacity .22s ease-in-out;
    z-index: 9;
}
.hotgame-lsit li a .info .play{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: inline-block;
    background: var(--btn-bg);
    border-radius: 50%;
}
.hotgame-lsit li a .info .play img{
    filter: brightness(0) invert(1);
    width: 40px;
    height: 40px;
}
.hotgame-lsit li a .info .name{
    position: absolute;
    bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-weight: bold;
    color: var(--text-primary);
    font-size: 16px;
}
.hotgame-lsit li a:hover .info{
    opacity: 1;
}
/* main-index-content */
.main-index-content{
    margin-top: 25px;
}
.main-index-content .main-index-ctitle{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
    margin-bottom: 15px;
}
.main-index-content .main-index-ctitle h2{
    color: var(--text-primary);
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
}
.main-index-content .main-index-ctitle h2 span{
    display: inline-block;
    font-size: 13px;
    background: var(--h2-titlecolor);
    padding: 4px 7px;
    border-radius: 4px;
    color: var(--default-btnbg);
    font-weight: normal;
    margin-right: 8px;
    letter-spacing: -0.2px;
}
.main-index-content .main-article{
    background: var(--article-bg);
    padding: 20px 10px;
    border-radius: 8px;
}
.main-index-content .main-article h3{
    color: var(--h2-titlecolor);
    font-size: 18px;
    font-weight: bold;
    margin: 18px 0;
    line-height: 24px;
}
.main-index-content .main-article p{
    color: var(--text-color);
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 10px;
}

.backtop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 999;
    cursor: pointer; /* 将鼠标设置为手型 */
}
.backtop img{
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

.backtop:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* 根据需要设置隐藏的初始状态 */
.backtop.show {
    opacity: 1;
}
/* breadcrumb */
.breadcrumb{
    height:54px ;
    background: var(--inner-bg);
    border-radius: 27px;
    margin: 25px auto;
   
}
.breadcrumb a{
    margin-right: 10px;
    background:var(--h2-titlecolor);
    padding: 7px 8px;
    border-radius: 12px;
    font-size: 14px;
    color: var(--footer-bg);
}
.breadcrumb a.homea{
    background: none;
    color: var(--text-color);
}
.breadcrumb a img, .inner-page .innerpagel .innerpage-block h2 img{
    width: 24px;
    height: 24px;
    margin-right: 6px;
}
.inner-page .innerpagel{
    width: 234px;
    
}
.inner-page .innerpagel .innerpage-block{
    background: var(--inner-bg);
    border-radius: 12px;
    box-shadow: 0 0px 5px rgba(0,0,0,.3);
    padding: 20px 10px;
    margin-bottom: 20px;
}
.inner-page .innerpagel .innerpage-block h2{
    padding: 10px 0;
    border-bottom:1px solid var(--footer-bg)
}
.inner-page .innerpagel .innerpage-block h2 a{
    color: var(--text-color);
    font-size: 16px;
}
.inner-page .innerpagel .innerpage-block .innerNavs{
    margin-top: 10px;
    flex-wrap: wrap;
    gap: 12px;
}
.inner-page .innerpagel .innerpage-block .innerNavs li{
    padding: 4px 8px;
    background: var(--link-color);
    border-radius: 999px;
    font-size: 14px;
}
.inner-page .innerpagel .innerpage-block .innerNavs li:hover{
    opacity: 0.8;
}
.inner-page .innerpager{
    width: calc(100% - 234px - 15px) !important;
    background: var(--inner-bg);
    border-radius: 12px;
    box-shadow: 0 0px 5px rgba(0,0,0,.3);
    padding: 20px 30px;
}
.inner-page .innerpager h1{
    text-align: center;
    color: var(--h2-titlecolor);
    font-size: 20px;
    line-height: 32px;
    margin: 15px auto;
}
.inner-page .innerpager h2{
    font-size: 16px;
    color: var(--text-color);
    line-height: 28px;
    text-align: center;
    margin-bottom: 10px;
}
.inner-page .innerpager img{
    max-width: 100%;
    margin: 10px auto;
    display: block;
}
.inner-page .innerpager p{
    color: var(--text-color);
    margin-bottom: 10px;
}
.inner-box{
    background: var(--footer-bg2);
    padding: 20px 30px;
    border-radius: 12px;
    margin-bottom: 15px;
}
.inner-box .inner-boxl img{
    height: 240px;
}
.inner-page .inner-boxr{
    flex-direction: column;
    margin-bottom: 20px;
}
.inner-box .inner-boxr a{
    background: var(--text-color);
    color: var(--default-btnbg);
    padding:10px 22px;
    border-radius: 12px;
   margin-bottom: 15px;
}
.inner-box .inner-boxr .higt{
    background:linear-gradient(90deg, var(--btn-bg), var(--btn-bg2));
}
.inner-page .innerpager p{
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 28px;
}
.inner-page .innerpager ul {
    margin-top: 30px;
}
.inner-page .innerpager ul li{
    color: var(--text-color);
    line-height: 30px;
    display: flex;
    align-items: center;
}
.inner-page .innerpager ul li::before{
    width: 4px;
    height: 4px;
    margin-right: 12px;
    background: var(--text-color);
    content: " ";
}