body{
	background: #1b1b1b;
  	font-family: DinPro,dinpro,PingFangSC-Regular,sans-serif;
}

::-webkit-scrollbar {
	width: 7px;
	height: 7px;
}

::-webkit-scrollbar-thumb {
	border-radius: 5px;
	background: #b2b2b2;
}

::-webkit-scrollbar-track {
	border-radius: 0;
	background: #fff;
}
.warning-txt{
	color:red;
}
#header{
	background: rgba(0,0,0,0.8);
	backdrop-filter: blur(3px);
	font-size: 16px;
	color: white;
	padding:0 10px;
	position: sticky;
	top:0;
	z-index: 999;
}
.hidden{
	display: none !important;
}
#header .container{
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
}
#header .container .logo{
	width: 200px;
	padding: 10px 0;
	display: flex;
	align-items: center;
}
#header .container .logo img{
	width: 100%;
	vertical-align: middle;
}
#header .container .game-group{
	display: flex;
	margin-left: 15px;
}
#header .container .game-group .game-group-li{
	padding: 10px 8px;
	display: flex;
	align-items: center;
	cursor: pointer;
	transition: .2s
}
#header .container .game-group .game-group-li:hover{
	color: #00ffff;
}
#header .container .game-group .game-group-li .game-menu{
	position: fixed;
	top: 100%;
	left: 0;
	right: 0;
	background: rgba(0,0,0,0.8);
	transition: .3s;
	max-height: 0;
	overflow: hidden;
	opacity: 0;
}
#header .container .game-group .game-group-li:hover .game-menu{
	max-height: 1000px;
	padding: 30px 0;
	opacity: 1;
}
#header .container .game-group .game-group-li .game-menu .game-block{
	max-width: 1280px;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
}
#header .container .game-group .game-group-li .game-menu .game-block .game-store{
	padding: 10px 0;
	height: 220px;
	cursor: pointer;
	border-radius: 10px;
	transition: 0.3s;
	position: relative;
}
#header .container .game-group .game-group-li .game-menu .game-block .game-store:hover{
	background: rgba(0,255,255,0.3);
	font-size: 18px
}
#header .container .game-group .game-group-li .game-menu .game-block .game-store .game-store-name{
	text-align: center;
	color: rgb(0,255,255);
	font-weight: 700;
}
#header .container .game-group .game-group-li .game-menu .game-block .game-store .game-store-img{
	height: 170px;
	transition: .2s
}
#header .container .game-group .game-group-li .game-menu .game-block .game-store:hover .game-store-img{
	transform: scale(1.1);
}
#header .container .game-group .game-group-li .game-menu .game-block .game-store .mask{
	position:absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background:rgba(35,35,35,0.5);
	z-index: 9
}
#header .container .game-group .game-group-li .game-menu .game-block .game-store .mask-txt{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	color: #fff;
	z-index: 10;
	background:#000;
	text-align: center;
	padding: 5px 0
}
#header .container .other{
	margin-left: auto;
	display: flex;
	align-items: center;
	padding: 10px 0;
}
#header .container .other li{
	display:flex;
	flex-direction: column;
	align-items: center;
	margin-right: 8px;
	cursor: pointer;
	font-size: 16px;
	transition: 0.3s;
}
#header .container .other li:hover{
	color: #00ffff;
}
#header .container .other li .txt{
	margin-top: 5px;
	font-size: 14px;
}
#header .container .not-login{
	display: flex;
	align-items: center;
	justify-content: space-around;
	width: 28%;
	padding:5px 0 
}
#header .container .not-login .account,
#header .container .not-login .password{
	width: 28%;
	position: relative;
}
#header .container .not-login .txt{
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
	font-size: 14px;
	transition: .2s
}
#header .container .not-login .login-input{
	outline: none;
	background: transparent;
	color: #00ffff;
	padding: 6px 10px;
	width: 100%;
	border: 2px solid white;
	border-radius: 9999px;
	transition: .2s
}
#header .container .not-login .login-input:focus{
	border-color: #00ffff;
}
#header .container .not-login .login-input:focus + .txt{
	padding: 0 5px;
	background: rgba(0,0,0);
	font-size: 12px;
	color: #00ffff;
	top: 0;
}
#header .container .not-login .login-input:valid{
	border-color: #00ffff;
}
#header .container .not-login .login-input:valid + .txt{
	padding: 0 5px;
	background: rgba(0,0,0);
	font-size: 12px;
	color: #00ffff;
	top: 0;
}
#header .container .not-login .login-remember-div{
	display: flex;
    flex-direction: column;
    font-size: 14px;
    color: #fff;
}
#header .container .not-login .login-remember-div input[type=checkbox]{
	margin: 0
}
#header .container .not-login .login-remember-div .forget-div{
	cursor:pointer;
}
#header .container .not-login .sign-in-up{
	display: flex;
	flex-direction: column;
	width: 14%
}
#header .container .not-login .sign-in-up .sign-in,
#header .container .not-login .sign-in-up .sign-up{
	font-size: 14px;
	background: #0071bc;
	color: white;
	cursor: pointer;
	text-align: center;
    padding: 3px 0;
	border-radius: 4px;
}
#header .container .not-login .sign-in-up .sign-up{
	margin-top: 5px
}
#header .container .not-login img{
	width: 100%;
	vertical-align: middle;
}
#header .container .is-login{
	display: flex;
	align-items: center;
	font-size: 14px;
	margin: 0 10px 0 20px;
}
#header .container .is-login .btn-points{
	position: relative;
	cursor: pointer;
}
#header .container .is-login .btn-points::after{
	content: "";
    position: absolute;
    border-style: solid;
    right: 0;
    top: 50%;
    bottom: 0;
    border-width: 8px 6px 0 6px;
    border-color: #fff transparent transparent transparent;
    transform: translateY(-50%) rotate(0deg);
	transition: .2s;
}
#header .container .is-login .btn-points.on::after{
	transform: translateY(-50%) rotate(180deg);
}
#header .container .is-login .main-quota{
	color: #feea11;
    position: relative;
	padding-right: 15px;
	pointer-events: none;
}
#header .container .is-login .btn-points .point-list{
	position: absolute;
    top: 35px;
    right: 0;
    width: 250px;
    background-color: #003b39;
	border: 2px solid #00ffff;
    border-radius: 5px;
    padding: 8px 0 0;
    font-size: 14px;
	z-index: 999;
	color: white;
	cursor: auto;
	opacity: 0;
	pointer-events: none;
	transition: .2s linear;
}

#header .container .is-login .btn-points .point-list.show{
	opacity: 1;
	pointer-events: auto;
}
#header .container .is-login .btn-points .point-list .game-store-content{
	height: 300px;
	overflow: auto;
}
#header .container .is-login .btn-points .point-list .game-store-content::-webkit-scrollbar-thumb{
	background: #00ffff;
	border-radius: 0
}
#header .container .is-login .btn-points .point-list .game-store-content::-webkit-scrollbar-track{
	background: transparent;
}
#header .container .is-login .btn-points .point-list::after{
	content: "";
    position: absolute;
    border-width: 0 8px 10px 8px;
    border-style: solid;
    border-color: transparent transparent #00ffff transparent;
    top: -10px;
    right: 16px;
}

#header .container .is-login .btn-points .point-list .list{
	display: flex;
	padding: 0 0 8px;
	margin: 0 0 8px 10px;
	border-bottom: 1px solid rgba(255,255,255,0.3);
}
#header .container .is-login .btn-points .point-list .list .game-store-name{
	width: 40%;
}
#header .container .is-login .btn-points .point-list .list:last-child{
	margin-bottom: 0;
}
#header .container .is-login .btn-points .point-list .return-main-quota{
	background: #272727;
	color: #fff;
	padding: 10px;
	border-top: 2px solid #00ffff;
	border-radius: 0 0 5px 5px;
}
#header .container .is-login .btn-points .point-list .return-main-quota .total{
	display: flex;
	font-size: 16px
}
#header .container .is-login .btn-points .point-list .return-main-quota .total .txt{
	width: 40%;
}
#header .container .is-login .btn-points .point-list .return-main-quota .total .total-quota{
	color: #00ffff;
	margin-left: 10px;
	padding-left: 5px;
	border-left: 1px solid rgba(255,255,255,0.3);
}
#header .container .is-login .btn-points .point-list .return-main-quota .turn-back{
	background: linear-gradient(to top, #0090ca, #00ecf6);
    border-radius: 9999px;
    cursor: pointer;
    text-align: center;
    display: block;
    color: #FFF;
    padding: 5px 0;
    text-shadow: 0 3px 3px rgba(0,0,0);
	margin-top: 8px;
	font-size: 16px;
}
#header .container .is-login .btn-points .point-list .list:last-child{
	border-bottom: none;
}
#header .container .is-login .btn-points .point-list .list .game-store-quota{
	color: #00ffff;
    margin-left: 10px;
    border-left: 1px solid rgba(255,255,255,0.3);
    padding-left: 5px;
}

#header .container .is-login .deposit-btn{
	margin-left: 6px;
    height: 24px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
    cursor: pointer;
    border-radius: 4px;
    letter-spacing: 2px;
    text-decoration: none;
    color: white;
    background-color: #0071bc;
	line-height: 24px;
}
#header .container .is-login .mem-center{
	margin-left: 10px;
	position: relative;
	cursor: pointer;
}
#header .container .is-login .total-outer{
	position: absolute;
	top: -10px;
	right: -12px;
	width: 18px;
	height: 18px;
	border-radius: 9999px;
	background: red;
	text-align: center;
	line-height: 18px;
	font-weight: bold;
	pointer-events: none;
}
#header .container .is-login .total-outer::after{
	content: attr(data-total);
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	border-radius: 9999px;
	background: orangered;
	font-weight: bold;
	animation: ripple 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
	pointer-events: none;
}
#header .container .is-login .mem-center .mem-center-ul{
	position: absolute;
	top: 30px;
	right: 0;
	background: #222;
	border: 2px solid #00ffff;
	width: 250px;
	padding: 10px 0;
	border-radius: 5px;
	opacity: 0;
	transition: 0.2s linear;
	pointer-events: none;
	z-index: 999
}

#header .container .is-login .mem-center .mem-center-ul.show{
	opacity: 1;
	pointer-events: auto;
}

#header .container .is-login .mem-center .mem-center-ul::after{
	content: "";
	position: absolute;
	border-width: 0 8px 10px 8px;
	border-style: solid;
	border-color: transparent transparent #00ffff transparent;
	top: -10px;
    right: 16px;
}
#header .container .is-login .mem-center .mem-center-li{
	height: 40px;
}
#header .container .is-login .mem-center .mem-center-li .left .total-outer{
	position: relative;
	left: 5px;
	top: 0;
	right: 0;
	bottom: 0;
}
#header .container .is-login .mem-center .mem-center-li .list-content{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 15px;
	color: white;
	text-decoration: none;
	height: 100%;
	transition: .2s;
}
#header .container .is-login .mem-center .mem-center-li .list-content:hover{
	background: rgba(255,255,255,0.1);
}
#header .container .is-login .mem-center .mem-center-li .list-content .left{
	display: flex;
	align-items: center;
}
#header .container .is-login .mem-center .mem-center-li .list-content .left .icon{
	width: 20px;
	vertical-align: middle;
}
#header .container .is-login .mem-center .mem-center-li .list-content .left .txt{
	font-size: 14px;
	margin-left: 10px
}
#header .container .is-login .mem-center .logout{
	width: 80%;
	padding: 10px 0;
	text-align: center;
	margin: 10px auto 0;
	color: white;
	background: #0071bc;
	cursor: pointer;
	font-size: 14px;
	border-radius: 5px;
	transition: .2s linear
}
#header .container .is-login .mem-center .logout:hover{
	background: #0085DD
}

.float-block{
	position: fixed;
	top: 200px;
	right: 0;
	z-index: 11;
	background: rgba(0,255,255,0.5)
}
.float-block .icon{
	height: 25px;
}
.float-block li{
	display:flex;
	flex-direction: column;
	align-items: center;
	cursor: pointer;
	background: rgba(0,0,0,0.7);
	width: 100px;
	padding: 15px;
	color: white;
	transition: .3s;
	margin: 1px 0
}
.float-block li:hover{
	background: rgba(255,255,255,0.2);
}
.float-block .float-txt{
	margin-top: 10px
}
.float-block .dis-1 .red_dis,
.float-block .dis-2{
	position:relative;
}
.float-block .dis-1 img{
	width: 35px;
	vertical-align: middle;
}
.float-block .dis-2 img{
	width: 50px;
}

.float-block .dis-2 .red-circle{
	width: 15px;
    height: 15px;
    background: red;
    border-radius: 9999px;
    position: absolute;
    left: 65px;
    top: 15px;
}
.float-block .dis-list .red_dis img.close{
	-webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
     filter: grayscale(100%);
}
.float-block .dis-list .red_dis.discountAnimate{
	animation: discountAnimate 2s infinite 0.5s;
}
.float-block .dis-list .red_dis .txt{
	position: absolute;
    font-weight: 600;
    text-shadow: 0 0 1px black;
    text-align: center;
    color: #fff;
    writing-mode: vertical-lr;
    top: 23px;
    left: 8px;
    font-size: 14px;
}

#register-container{
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	background-color: #1b1b1b;
	background-image: url("/mobile/templates/sty4_images/login-bg.jpg");
	background-position: center center;
	background-repeat: no-repeat;
    background-size: cover;
	z-index: 9999;
	overflow: auto;
}
#register-container .register-block{
	width: 500px;
	background: rgba(0,0,0,.5);
	padding: 30px 10px;
	border-radius: 8px;
	margin: 20px 0;
	height: 90%;
	overflow: auto;
}
#register-container .register-title{
	font-size: 38px;
    font-weight: 600;
    color: #fff;
	text-align: center
}
#register-container .register-content{
	padding: 0 0.72rem;
    margin-top: 0.5rem;
}
#register-container .register-content .random-btn{
	padding: 3px 5px;
	margin: 0 10px;
    background-color: goldenrod;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
	font-size: 18px;
}
#register-container .register-info-content .panel{
	margin-top: 15px;
}
#register-container .register-info-content .panel:first-child{
	margin-top: 0;
}
#register-container .register-info-content .panel .notes{
	color: red;
	font-size: 18px;
}
#register-container .register-info-content .panel .input-div{
	height: 50px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 9999px;
    background: hsla(0,0%,100%,.3);
	font-size: 24px;
}
#register-container .register-info-content .panel .input-div.require::before{
	content: '\2731';
    color: red;
	font-size: 20px;
	margin-right: 5px;
}
#register-container .register-info-content .panel .input-div .icon-v1{
	margin-right: 10px;
    color: #fff;
}
#register-container .register-info-content .panel .input-div .input-v1{
	flex-grow: 1;
    height: 100%;
    background-color: transparent;
    border: 0;
    color: #fff;
	font-size: 26px;
}
#register-container .register-info-content .panel .input-div .input-v1[name=userid]{
	width: 50%;
}
#register-container .register-info-content .panel .input-div .icon-v2{
    margin-left: 0.2rem;
    cursor: pointer;
	color: rgba(255,255,255,0.5);
}
#register-container .register-info-content .panel .input-div .invite-code-title{
	color: gold;
    font-weight: bold;
    margin-right: 10px;
	font-size: 22px;
}
#register-container .register-content .register-btn-div,
#register-container .register-content .go-login-btn-div{
	margin-top: 15px;
}
#register-container .register-content .register-btn-div button{
	background: linear-gradient(90deg,#dccab8,#d2b496);
    color: #fff;
    width: 100%;
    border: none;
    height: 50px;
    border-radius: 9999px;
    font-size: 24px;
    font-weight: 700;
    opacity: .5;
    cursor: pointer;
}
#register-container .register-content .go-login-btn-div button{
	background: linear-gradient(90deg,#fefefe,#ededed);
    color: #222;
    width: 100%;
    border: none;
    height: 50px;
    border-radius: 9999px;
    font-size: 26px;
    font-weight: 700;
    cursor: pointer;
}
#register-container .send-verification-code-btn{
	background: linear-gradient(to right, #dccab8, #d2b496);
    font-weight: bold;
    padding: 3px 5px;
    cursor: pointer;
    color: #fff;
    border-radius: 5px;
    font-size: 18px
}

@keyframes ripple{
	75%, 100% {
		transform: scale(1.8);
		opacity: 0;
	}
}
@keyframes discountAnimate {
    0% {
        transform: rotate(0deg);
        transition-timing-function: cubic-bezier(0.215, .61, .355, 1)
    }

    10% {
        transform: rotate(-10deg);
        transition-timing-function: cubic-bezier(0.215, .61, .355, 1)
    }

    20% {
        transform: rotate(10deg);
        transition-timing-function: cubic-bezier(0.215, .61, .355, 1)
    }

    28% {
        transform: rotate(-8deg);
        transition-timing-function: cubic-bezier(0.215, .61, .355, 1)
    }

    36% {
        transform: rotate(8deg);
        transition-timing-function: cubic-bezier(0.755, .5, .855, .06)
    }

    42% {
        transform: rotate(-4deg);
        transition-timing-function: cubic-bezier(0.755, .5, .855, .06)
    }

    48% {
        transform: rotate(4deg);
        transition-timing-function: cubic-bezier(0.755, .5, .855, .06)
    }

    52% {
        transform: rotate(-0deg);
        transition-timing-function: cubic-bezier(0.755, .5, .855, .06)
    }

    56% {
        transform: rotate(0deg);
        transition-timing-function: cubic-bezier(0.755, .5, .855, .06)
    }

    100% {
        transform: rotate(0deg);
        transition-timing-function: cubic-bezier(0.215, .61, .355, 1)
    }
}