/*
*初始化样式
*/
body, form, ul, li, p, dl, dd, dt ,h,td,th,h3{
	margin: 0;
	padding: 0;
}
body{
	font-size:14px;
}
li,ul{
	list-style: none;
}
input,textarea{
	border:1px solid #ccc;
}
a {
	color:#000;
}
a:link {
	color:#000;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #000;
}
a:hover {
	text-decoration: none;
}
a:active {
	text-decoration: none;
}

.wrap{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.top{
	width: 60%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 25px;
}

.top .logo{
	width: 250px;
}

.top .logo img{
	width: 250px;
}

.top .menu{
	width: 50%;
	height: 80px;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	font-size: 20px;
}

.top .menu .item{
	width: 120px;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
}

.top .menu .active span a{
	color: #00a0e9;
}

.top .menu .item span{
	cursor: pointer;
}

.top .menu .item span a:hover{
	color: #00a0e9;
}

.top .login{
	cursor: pointer;
	font-size: 16px;
	color: #525252;
}

.outer{
	width: 100%;
	background-color: #EEEFF4;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
}

.game_list{
	width: 1300px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	margin-top: 15px;
}

.game_list .item{
	width: 22%;
	display: flex;
	flex-direction: row;
	background-color: #fff;
	margin-right: 3.7%;
	margin-bottom: 20px;
	border: 1px solid #ebebeb;
	border-radius: 5px;
	height: 120px;
}

.game_list .item .left{
	width: 40%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: 1%;
}

.game_list .item .left img{
	width: 100px;
	cursor: pointer;
	border-radius: 15px;
}

.game_list .item .right{
	width: 54%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin-left: 5%;
}

.game_list .item .right .info{
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	margin-top: 10px;
}

.game_list .item .right .info .name{
	font-size: 16px;
	cursor: pointer;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	margin-right: 3px;
}

.game_list .item .right .info .desc{
	width: 90%;
	font-size: 14px;
	color: #6c6c6c;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	margin-top: 10px;
}

.game_list .item .right .apply{
	font-size: 13px;
	background: #fff;
	border: 1px solid #00a0e9;
	width: 60%;
	height: 27px;
	border-radius: 5px;
	color: #00a0e9;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 10px;
	cursor: pointer;
}

.game_list .item .right .apply:hover{
	background: #00a0e9;
	color: #fff;
}

.foot{
	width: 100%;
	background-color: #f1f1f1;
	border-top: 1px solid #ddd;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.foot .corp{
	width: 60%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #ddd;
	padding-bottom: 40px;
	padding-top: 20px;
}

.foot .corp .title{
	font-size: 18px;
	font-weight: bold;
}

.foot .corp .content{
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	margin-top: 20px;
}

.foot .corp .content .item{
	display: flex;
	flex-direction: column;
	margin-right: 5%;
}

.foot .corp .content .item .title{
	font-size: 16px;
	display: flex;
	justify-content: flex-start;
}

.foot .corp .content .item .qq{
	display: flex;
	justify-content: flex-start;
	margin-top: 15px;
}

.foot .corp .content .item .wx{
	display: flex;
	flex-direction: row;
	margin-top: 10px;
}

.foot .corp .content .item .wx .img{
	width: 100px;
	margin-right: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	color: #575656;
}

.foot .corp .content .item .wx .img img{
	width: 100px;
}

.foot .corp .content .item .wx .img span{
	margin-top: 10px;
}

.foot .link{
	width: 60%;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	border-top: 1px solid #fff;
	padding-top: 20px;
}

.foot .link .content{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.foot .link .item{
	margin-right: 15px;
	margin-bottom: 20px;
}

.foot .link .item a{
	color: #575656;
}

.foot .bottom{
	width: 60%;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 20px;
	margin-bottom: 20px;
}

.foot .bottom .nav{
	width: 100%;
	display: flex;
	justify-content: center;
}

.foot .bottom .copyright{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 10px;
}

.foot .bottom .copyright a{
	display: flex;
	justify-content: center;
	align-items: center;
}

.foot .bottom .copyright img{
	width: 30px;
}

.foot .bottom .company{
	width: 100%;
	display: flex;
	justify-content: center;
	margin-top: 10px;
}
/*添加筛选项*/
.gameList {
	background: #FFFFFF;
	margin-top: 20px;
}
.game-sx, .gameList {
	padding-top: 0px;
}
.list_container {
	width: 1270px;
	margin: 0 auto;
	padding: 15px;

}
.list_title {
	height: 50px;
	line-height: 50px;
	font-size: 20px;
	font-weight: normal;
	position: relative;
	border-bottom: 1px solid #ccc;
	color: #333;
	border-left: 3px solid;
	padding-left: 10px;
}
.title_left0 {
	display: none;
	border: 0px;
	color: #434343;
}
.title_left0 {
	border-color: #00a0e9;
	color: #00a0e9;
}
.gameList_select {
	border: 0px;
	margin: 0px;
	padding: 0;
}
.gameList_select li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 43px;
}
.gameList_select li>div>div> span {
	text-align: left;
	font-size: 17px;
	line-height: 34px;
	display: inline-block;
	float: none;
	width: 95px;
	color: #333333;
}
.g_s_type {
	float: none;
	display: inline-block;
}
.g_s_type a {
	width: 78px;
	height: 32px;
	line-height: 32px;
	color: #666;
	margin-left: 8px;
	font-size: 14px;
	display: inline-block;
	text-align: center;
	background: #f5f5f5;
	border-radius: 4px;
}
.g_s_type a.active {
	color: #fff;
	background-color: #00a0e9;
	box-shadow: 0px 2px 10px 0px rgba(58, 139, 255, 0.5);
}
.g_s_type a:hover {
	background: #00a0e9;
	color: #fff;
	box-shadow: 0px 2px 10px 0px rgba(58, 139, 255, 0.5);
}
/*搜索*/
.hreadSearch {
	background: #f4f4f4;
	border-radius: 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.hreadSearch select, .hreadSearch input[type=submit] {
	float: left;
	height: 30px;
	line-height: 30px;
	border-radius: 3px 0 0 3px;
}
.hreadSearch input[type=submit] {
	width: 70px;
	text-align: center;
	border-radius: 0 3px 3px 0;
	color: #FFFFFF;
	background-position: 10% 6px;
	padding-left: 10px;
	cursor: pointer;
}
.hreadSearch input[type=submit] {
	border-radius: 0px;
	background: #00a0e9;
	border: #00a0e9 1px solid;
	font-size: 15px;
	width: 60px;
	color: #fff;
	padding: 0px;
}
.hreadSearch input[type=submit] {
	border: 0px;
}
.hreadSearch input[type=text] {
	float: left;
	border-right: none;
	border-left: none;
	line-height: 28px;
	border: 0px;
	border-right: none;
	border-left: none;
	background: #f4f4f4;
	height: 30px;
	width: 170px;
	padding-left: 10px;
}
