@keyframes topNavShowAnimation {
	0%, 60%, 75%, 90%, 100% {
	    transition-timing-function: cubic-bezier(0.215,.61,.355,1);
	}
	0% {
		opacity: .01;
		transform: translate3d(0,-16rem,0);
	}
	60% {
		opacity: 1;
		transform: translate3d(0,15px,0);
	}
	75% {
		transform: translate3d(0,-8px,0);
	}
	90% {
		transform: translate3d(0,4px,0);
	}
	100% {
		transform: none;
	}
}

@keyframes topNavHideAnimation {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		transform: translate3d(0, -100%, 0);
	}
}

.page-header .header-left-icon {
	background-color: #F2F2F2;
}

.page-header .header-right-icon .kw-icon-close {
	display: none;
}

.kw-icon-menu {
	background-image: url(../img/common/menu_icon.png);
	background-size: .46rem .33rem;
}

.kw-icon-login {
	background-image: url(../img/index/login_icon.png);
	background-size: .54rem .54rem;
}

.kw-icon-close {
	background-image: url(../img/common/close_icon.png);
	background-size: .33rem .33rem;
}

.page-main .sub-title {
	margin-top: .4rem;
	text-align: center;
	color: #414141;
}

.page-main .sub-title-cn {
	font-weight: 800;
	font-size: .56rem;
	line-height: .56rem;
}

.page-main .sub-title-en {
	margin-top: .11rem;
	font-size: .14rem;
	line-height: .14rem;
}

.page-main .sub-title-line {
	margin: .14rem auto 0;
	width: .38rem;
	height: .05rem;
	background: #38A7EE;
}

.page-nav {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	padding-top: 1.15rem;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, .95);
	z-index: 20;
	overflow: auto;
}

.page-nav.nav-show {
	display: block;
	animation: topNavShowAnimation .8s ease-in-out both;
}

.page-nav.nav-hide {
	display: block;
	animation: topNavHideAnimation .5s ease-in-out both;
}

.page-nav .page-nav-list {
	padding: 0 .3rem;
}

.page-nav .page-nav-item {
	height: 1.95rem;
	text-align: center;
	border-bottom: 1px solid rgba(2, 2, 3, .1);
}

.page-nav .page-nav-item a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
}

.page-nav .page-nav-item a .nav-title {
	font-size: .36rem;
	line-height: .36rem;
	margin-bottom: .28rem;
	color: #000;
}

.page-nav .page-nav-item a .nav-title-en {
	font-size: .24rem;
	line-height: .24rem;
	color: #999999;
}

.top-banner img{
	display: block;
	width: 100%;
}

.hot-game {
	margin-top: .76rem;
}

.game-list {
	margin-top: .4rem;
	padding: 0 .38rem;
}

.game-list .game-item a{
	display: flex;
	width: 100%;
	height: 1.65rem;
	box-sizing: border-box;
	padding: .26rem 0;
	border-bottom: 1px solid #E8E8E8;
}

.game-list .game-item:last-child a {
	border-bottom: none;
}

.game-list .game-item .game-icon {
	margin-right: .3rem;
	width: 1.13rem;
	height: 1.13rem;
}

.game-list .game-item .game-icon img {
	display: block;
	width: 100%;
	height: 100%;
}

.game-list .game-item .game-info {
	display: flex;
	flex: 1;
	width: 100%;
	justify-content: center;
	flex-direction: column;
}

.game-list .game-item .game-info .game-title {
	display: flex;
}

.game-list .game-item .game-info .game-title .game-name {
	color: #333;
	font-size: .34rem;
}

.game-list .game-item .game-info .game-title .game-tag {
	padding: .05rem;
	font-size: .2rem;
	color: #fff;
	height: .3rem;
	background-color: #1E7BEC;
	margin-top: .05rem;
	margin-left: .12rem;
	border-radius: 0.08rem;
}

.game-list .game-item .game-info .game-desc {
	margin-top: .2rem;
	color: #959595;
	font-size: .24rem;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}

.game-list .game-item .game-arrow {
	width: .2rem;
	height: 100%;
	background: url(../img/game_center/right_arrow.png) no-repeat right center / .11rem .19rem;
}