*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
input:focus {
	outline: none;
}
.header {
	width: 100%;
	height: 80px;
	background-color: #fe0000;
}
.header_box {
	width: 100%;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header_logo {
	display: flex;
	align-items: center;
}
.header_logo img{
	height: 30px;
}
.header_nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header_nav_btn {
	width: 140px;
	height: 40px;
	margin-right: 10px;
	font-size: 14px;
	line-height: 40px;
	text-align: center;
	color: #fff;
	cursor: pointer;
	border-radius: 20px;
	border: 1px solid #fff;
}
.header_nav_btn:hover {
	color: #fe0000;
	background-color: #fff;
}
.top_mobile{
	display: none;
	font-size: 16px;
	cursor: pointer;
	position: relative;
}
.top_mobile:hover .top_mobile_hover{
	display: block;
}
.top_mobile_title{
	line-height: 40px;
	text-decoration: underline;
}
.top_mobile_hover{
	display: none;
	width: 160px;
	height: 140px;
	border-radius: 5px;
	background-color: #fff;
	box-shadow: 0px 1px 8px 0px rgba(58, 62, 65, 0.31);
	position: absolute;
	top: 40px;
	left: -20px;
}
.top_mobile_hover::before{
	content: "";
	width: 30px;
	height: 30px;
	background-color: #fff;
	transform: rotate(45deg);
	box-shadow: 0px 1px 8px 0px rgba(58, 62, 65, 0.31);
	position: absolute;
	top: -15px;
	left: 60px;
	z-index: 100;
}
.top_mobile_hover_view{
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #fff;
	position: absolute;
	z-index: 200;
}
.top_mobile_hover_title{
	font-size: 14px;
	text-align: center;
	color: #333333;
	padding-top: 30px;
}
.top_mobile_hover_a{
	display: block;
	height: 50px;
	font-size: 14px;
	line-height: 50px;
	text-align: center;
	text-decoration: none;
	color: #C2C2C2;
}
.top_mobile_hover_btn{
	height: 50px;
	font-size: 14px;
	text-align: center;
	color: #fe0000;
	cursor: pointer;
}

.banner{
	width: 100%;
	height: 480px;
	overflow: hidden;
	background-color: #fe0000;
	position: relative;
}
.banner_right{
	display: flex;
	position: absolute;
	bottom: 0px;
	right: -20px;
}
.banner_right img{
	width: 360px;
}
.banner_title{
	font-size: 70px;
	color: #fff;
	text-align: center;
	padding-top: 50px;
	position: relative;
	z-index: 1;
}
.banner_text{
	font-size: 26px;
	color: #fff;
	line-height: 50px;
	text-align: center;
	padding-top: 20px;
	position: relative;
	z-index: 1;
}
.banner_nav{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 50px;
	position: relative;
	z-index: 1;
}
.banenr_inp{
	width: 370px;
	height: 45px;
	background: #FFFFFF;
	border-radius: 3px;
	border: none;
	padding: 0 10px;
	font-size: 14px;
	color: #666666;
}

.banenr_btn{
	width: 147px;
	height: 45px;
	background: #ffbe58;
	border-radius: 3px;
	margin-left: 13px;
	text-align: center;
	line-height: 45px;
	font-size: 16px;
	color: #FFFFFF;
	cursor: pointer;
}

.banner_bot{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 70px;
	background-color: rgba( 0, 0, 0, 0.05);
	position: absolute;
	bottom: 0px;
	z-index: 1;
}
.banner_bot_item{
	display: flex;
	align-items: center;
	font-size: 16px;
	line-height: 22px;
	color: #fff;
	letter-spacing: 3px;
	padding: 0 30px;
}
.banner_bot_item:not(:last-child){
	border-right: solid 1px rgba( 255, 255, 255, 0.5);
}

.mertype{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 110px;
	background-color: #fff;
	box-shadow: 0px 0px 7px 0px rgba(86,104,114,0.15);
}
.mertype_item:not(:last-child){
	border-right: solid 1px #F1F1F1;
}
.mertype_box{
	display: flex;
	align-items: center;
	cursor: pointer;
	padding: 10px 35px;
	transform: scale(1);
	transition: all 0.38s;
}
.mertype_box:hover{
	transform: scale(1.05);
	font-weight: bold;
}
.mertype_box_img{
	width: 38px;
	height: 38px;
}
.mertype_box_img img{
	width: 100%;
}
.mertype_box_title{
	font-size: 20px;
	font-weight: 400;
	line-height: 30px;
	color: #333333;
	margin-left: 20px;
}
.mertype_box_a{
	font-size: 16px;
	font-weight: 400;
	line-height: 30px;
	color: #fe0000;
	margin-left: 26px;
}

.main_box{
	padding: 60px 0;
}
.main_box_title{
	font-size: 32px;
	text-align: center;
	color: #333333;
	padding-top: 20px;
}
.main_box_btn{
	width: 210px;
	height: 45px;
	font-size: 14px;
	line-height: 45px;
	text-align: center;
	color: #fff;
	cursor: pointer;
	margin: 30px auto 0;
	border-radius: 30px;
	background-color: #fe0000;
}
.main_box_list{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	width: 1200px;
	margin: 0 auto;
	overflow: hidden;
	margin-top: 30px;
}
.main_box_list_item{
	flex: 1;
	text-align: center;
}
.main_box_list.col_3{
	width: 1240px;
}
.main_box_list.col_3 .main_box_list_item{
	width: calc(100% / 3 - 40px);
	min-width: calc(100% / 3 - 40px);
	max-width: calc(100% / 3 - 40px);
	padding: 50px 0;
	margin: 20px;
}
.main_box_list.col_3 .main_box_list_item>img{
	height: 75px;
}
.main_box_list.col_4{
	width: 1240px;
}
.main_box_list.col_4 .main_box_list_item{
	width: calc(100% / 4 - 40px);
	min-width: calc(100% / 4 - 40px);
	max-width: calc(100% / 4 - 40px);
	padding: 50px 0;
	margin: 20px;
}
.main_box_list.col_4 .main_box_list_item>img{
	height: 75px;
}
.main_box_list.col_5{
	width: 1240px;
	padding: 10px;
}
.main_box_list.col_5 .main_box_list_item{
	width: calc(100% / 5 - 20px);
	min-width: calc(100% / 5 - 20px);
	max-width: calc(100% / 5 - 20px);
	padding-bottom: 17px;
	margin: 10px;
}
.main_box_list.col_6 {
	width: 1280px;
}
.main_box_list.col_6 .main_box_list_item{
	width: calc(100% / 6 - 80px);
	min-width: calc(100% / 6 - 80px);
	max-width: calc(100% / 6 - 80px);
	margin: 20px 40px;
}
.main_box_list.col_6 .main_box_list_item>img{
	width: 100%;
}
.main_box_list.style_list .main_box_list_item{
	border-radius: 14px;
	background-color: #fff;
	box-shadow: 0px 0px 24px 0px rgba(86,104,114,0.19);
}
.main_box_list_text{
	font-size: 20px;
	color: #333333;
	margin-top: 20px;
}
.main_box_list_a{
	font-size: 16px;
	color: #fe0000;
	cursor: pointer;
	margin-top: 40px;
}
.main_box_list_item_title{
	
}
.main_box_list_item_img{
	width: 100%;
	height: 190px;
	overflow: hidden;
	border-radius: 14px 14px 0 0;
	position: relative;
}
.main_box_list_item_img img{
	height: 190px;
	position: absolute;
	top: 50%;
	left: 50%;
	transition: all 0.5s;
	transform: translate3d(-50%,-50%,0) scale(1);
}
.main_box_list_item_img:hover img{
	transform: translate3d(-50%,-50%,0) scale(1.05);
}
.main_box_list_item_logo{
	width: 66px;
	height: 66px;
	margin: -33px auto 0;
	border-radius: 50%;
	box-shadow: 0px 2px 13px 0px rgba(74,84,101,0.11);
	position: relative;
	z-index: 1;
}
.main_box_list_item_logo img{
	width: 100%;
}
.main_box_list_item_title{
	font-size: 18px;
	line-height: 18px;
	text-align: center;
	color: #333333;
	margin-top: 20px;
}
.main_box_list_item_text{
	font-size: 13px;
	text-align: center;
	color: #828282;
	margin-top: 10px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.footer{
	width: 100%;
	background-color: #2B2B2B;
}
.footer_bot{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 56px;
	font-size: 12px;
	line-height: 56px;
	text-align: center;
	color: #929799;
	border-top: 2px solid #484545;
	background-color: #3C3C3C;
}
.footer_bot img{
	width: 18px;
	margin: 0 5px;
}
.footer_bot div{
	margin: 0 5px;
}

.biaoti-box{
	height: 70px;
}
.biaoti{
	width: 100%;
	height: 70px;
	text-decoration: none;
	background-color: #fe0000;
	transition: bottom 1s;
	position: fixed;
	bottom: 0;
	z-index: 600;
}
.biaoti_box{
	width: 982px;
	height: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.biaoti_box_left{
	font-size: 28px;
	font-weight: lighter;
	color: #FFFFFF;
}
.biaoti_box_right{
	width: 160px;
	height: 40px;
	font-size: 20px;
	line-height: 40px;
	text-align: center;
	text-decoration: none;
	color: #fe0000;
	border-radius: 20px;
	background-color: #FFFFFF;
}
.biaoti_box_right:hover{
	color: #FFFFFF;
	cursor: pointer;
	border: 1px solid #FFFFFF;
	background: none;
}

.kefu{
	position: fixed;
	bottom: 140px;
	right: 30px;
	z-index: 200;
}
.kefu_box{
	width: 130px;
	padding-top: 10px;
	padding-bottom: 20px;
	border-radius: 64px 64px 5px 5px;
	background-color: #fe0000;
	box-shadow: 0px 3px 22px 0px rgba(133, 144, 131, 0.7);
}
.kefu_box_img{
	display: block;
	width: 100%;
	margin: 0 auto;
}
.kefu_box_title{
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	color: #FFFFFF;
}
.kefu_box_title img{
	width: 20px;
	margin-right: 5px;
}
.kefu_box_phone{
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	color: #FFFFFF;
	margin-top: 10px;
}
.kefu_box_text{
	text-align: center;
	font-size: 14px;
	color: #FFFFFF;
	margin-top: 20px;
}
.kefu_box_bot{
	display: none;
	width: 100%;
	position: absolute;
	bottom: -60px;
}
.kefu_box_bot_lin{
	width: 2px;
	height: 25px;
	margin: 0 auto;
	background-color: #fe0000;
}
.kefu_box_bot_top{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	font-size: 20px;
	color: #FFFFFF;
	cursor: pointer;
	margin: 0 auto;
	border-radius: 50%;
	background-color: #fe0000;
}

.dlbg{
	display: none;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.5);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 800;
}
.dlbg_box{
	width: 520px;
	height: 500px;
	border-radius: 7px;
	background-color: #FFFFFF;
	position: relative;
}
.dlbg_box_cuo{
	cursor: pointer;
	position: absolute;
	top: 10px;
	right: 10px;
}
.dlbg_box_title{
	font-size: 24px;
	text-align: center;
	color: #333333;
	padding: 45px 0;
}
.dlbg_box_view{
	display: flex;
	align-items: center;
	width: 390px;
	height: 50px;
	overflow: hidden;
	margin: 0 auto 30px;
	border-radius: 25px;
	border: 1px solid #E5E9ED;
	background-color: #FFFFFF;
	position: relative;
}
.dlbg_box_inp{
	width: 100%;
	height: 40px;
	font-size: 16px;
	color: #AAAAAA;
	outline:none;
	padding-left: 15px;
	border: none;
}
.dlbg_box_view_btn{
	font-size: 16px;
	color: #fe0000;
	cursor: pointer;
	position: absolute;
	right: 15px;
}
.dlbg_box_btn{
	width: 390px;
	height: 50px;
	font-size: 16px;
	line-height: 50px;
	text-align: center;
	color: #FFFFFF;
	cursor: pointer;
	margin: 30px auto 0;
	border-radius: 25px;
	background-color: #fe0000;
}
.dlbg_box_bot{
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	color: #ffbe58;
	cursor: pointer;
	margin-top: 30px;
}

.wzck_kbbk_ktbg{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.5);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
}
.ktbg_box{
	display: none;
	width: 960px;
	height: 680px;
	border-radius: 7px;
	background-color: #FFFFFF;
	position: relative;
}
.ktbg_box_cuo{
	cursor: pointer;
	position: absolute;
	top: 10px;
	right: 10px;
}
.ktbg_box_left{
	display: flex;
	align-items: center;
	width: 260px;
	height: 100%;
	overflow: hidden;
	border-radius: 7px;
	background-color: #FFF8E9;
}
.ktbg_box_left img{
	width: 100%;
}
.ktbg_box_right{
	width: 700px;
	padding-top: 30px;
}
.ktbg_box_right_top{
	display: flex;
	width: 639px;
	height: 45px;
	margin: 0 auto;
	background-color: #F4F4F4;
}
.ktbg_box_right_top_box{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50%;
	text-align: center;
	line-height: 45px;
	background-size: 100% 100%;
}
.ktbg_box_right_top_box.active{
	color: #fff;
}
.ktbg_box_right_top_box:first-child.active{
	background-image: url(../images/title0.png);
}
.ktbg_box_right_top_box:last-child.active{
	background-image: url(../images/title1.png);
}
.ktbg_box_right_qrxx{
	display: flex;
	align-items: center;
	font-size: 14px;
	color: #666666;
	margin-bottom: 19px;
}
.ktbg_box_right_qrxx_name{
	width: 160px;
	min-width: 160px;
	text-align: right;
}
.ktbg_box_right_qrxx_item{
	display: flex;
	align-items: center;
}
.ktbg_box_right_qrxx_inp{
	width: 320px;
	height: 40px;
	font-size: 14px;
	padding: 0 10px;
	border-radius: 2px;
	border: 1px solid #EBEEF5;
}
.ktbg_box_right_qrxx_tps{
	font-size: 14px;
	text-align: center;
	color: #999999;
	padding-left: 10px;
	margin-top: 20px;
}
.ktbg_box_right_btn{
	width: 200px;
	height: 45px;
	font-size: 18px;
	line-height: 45px;
	text-align: center;
	color: #FFFFFF;
	cursor: pointer;
	border-radius: 4px;
	background-color: #fe0000;
}
.ktbg_box_right_tps{
	font-size: 12px;
	text-align: center;
	color: #999999;
	margin-top: 30px;
}
.qrxx_nav_box{
	display: flex;
	align-items: center;
	height: 40px;
	cursor: pointer;
	position: relative;
}
.qrxx_nav_box:not(:last-child){
	margin-right: 30px;
}
.qrxx_nav_box_checked{
	width: 18px;
	min-width: 18px;
	height: 18px;
	margin-right: 10px;
	background-image: url(../images/checked-1.png);
	background-size: 100% 100%;
}
.qrxx_nav_boxac .qrxx_nav_box_checked{
	background-image: url(../images/checked-2.png);
}

.ktbg_box_right_sskt_title{
	text-align: center;
	margin-top: 60px;
}
.ktbg_box_right_sskt_money{
	height: 50px;
	font-size: 30px;
	line-height: 50px;
	text-align: center;
	color: #fe0000;
}
.ktbg_box_right_sskt_nav{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 10px;
}
.ktbg_box_right_sskt_code{
	width: 200px;
	height: 200px;
	margin-right: 30px;
	position: relative;
}
.ktbg_box_right_sskt_code img{
	width: 100%;
	height: 100%;
}

.ktbg_box_right_sskt_code_bg{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background-color: rgba(255,255,255,0.96);
	position: absolute;
	top: 0;
	left: 0;
}

.ktbg_box_right_sskt_code_btn1{
	font-size: 14px;
	color: #FFFFFF;
	cursor: pointer;
	padding: 5px 10px;
	margin-right: 10px;
	background-color: #fe0000;
}
.ktbg_box_right_sskt_code_btn2{
	font-size: 14px;
	color: #999999;
	cursor: pointer;
}
.ktbg_box_right_sskt_bot{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 360px;
	height: 60px;
	margin: 30px auto 0;
	background-color: #fe0000;
}
.ktbg_box_right_sskt_bot_i{
	padding-top: 5px;
}
.ktbg_box_right_sskt_bot_text{
	font-size: 14px;
	color: #FFFFFF;
	margin-left: 10px;
}




.animation_dx {
	display: block;
  	text-decoration: none;
	transform: scale(1.03);
	animation-name: dx;
	animation-duration: 1s;
	animation-iteration-count: infinite;
	cursor: pointer;
}
@keyframes dx {
	0% {
		transform: scale(1.03);
		/*开始为原始大小*/
	}
	50% {
		transform: scale(0.98);
		/*开始为原始大小*/
	}
	100% {
		transform: scale(1.03);
		/*开始为原始大小*/
	}
}


@media screen and (min-width: 1200px) {
	body{
		min-width: 1200px;
	}
	.header_box {
		width: 1200px;
		margin: 0 auto;
	}
}
@media screen and (max-width: 1199px) {
	.header_box {
		padding: 0 5%;
	}
}
@media screen and (max-width: 1024px) {
	.header_box {
		padding: 0 30px;
	}
	.banner{
		height:300px;
	}
	.banner_right img{
		width: 220px;
	}
	.banner_title{
		font-size: 50px;
		padding-top: 30px;
	}
	.banner_text{
		font-size: 20px;
		line-height: 30px;
	}
	.banner_nav{
		margin-top: 30px;
	}
	.banenr_inp{
		width: 240px;
		height: 45px;
	}
	.banenr_btn{
		width: 120px;
		height: 45px;
		margin-left: 10px;
		line-height: 45px;
		font-size: 14px;
	}
	.banner_bot{
		height: 50px;
	}
	.banner_bot_item{
		font-size: 12px;
		line-height:20px;
		letter-spacing: 2px;
		padding: 0 15px;
	}
	.mertype{
		height: auto;
		padding: 20px 0;
	}
	.mertype_box{
		padding: 10px 20px;
	}
	.mertype_box_img{
		width: 26px;
		height: 26px;
	}
	.mertype_box_title{
		font-size: 16px;
		line-height: 20px;
		margin-left: 10px;
	}
	.mertype_box_a{
		font-size: 14px;
		line-height: 20px;
		margin-left: 15px;
	}
	.main_box{
		padding: 30px 0;
	}
	.main_box_title{
		font-size: 20px;
		padding-top: 10px;
	}
	.main_box_btn{
		margin-top: 15px;
	}
	.main_box_list{
		width: 100%;
		margin-top: 15px;
	}
	.main_box_list.col_3{
		width: 100%;
		padding: 0 20px;
	}
	.main_box_list.col_3 .main_box_list_item{
		width: calc(100% / 3 - 20px);
		min-width: calc(100% / 3 - 20px);
		max-width: calc(100% / 3 - 20px);
		padding: 20px 0;
		margin: 10px;
		box-shadow: 0px 0px 12px 0px rgba(86,104,114,0.19);
	}
	.main_box_list.col_3 .main_box_list_item>img{
		height: 50px;
	}
	.main_box_list.col_4{
		width: 100%;
		padding: 0 20px;
	}
	.main_box_list.col_4 .main_box_list_item{
		width: calc(100% / 4 - 20px);
		min-width: calc(100% / 4 - 20px);
		max-width: calc(100% / 4 - 20px);
		padding: 20px 0;
		margin: 10px;
		box-shadow: 0px 0px 12px 0px rgba(86,104,114,0.19);
	}
	.main_box_list.col_4 .main_box_list_item>img{
		height: 50px;
	}
	.main_box_list.col_5{
		width: 100%;
		padding: 10px;
	}
	.main_box_list.col_5 .main_box_list_item{
		width: calc(100% / 5 - 20px);
		min-width: calc(100% / 5 - 20px);
		max-width: calc(100% / 5 - 20px);
		padding-bottom: 15px;
		margin: 10px;
	}
	.main_box_list.col_5 .main_box_list_item .main_box_list_item_img{
		height: 120px;
	}
	.main_box_list.col_5 .main_box_list_item .main_box_list_item_img img{
		height: 140px;
	}
	.main_box_list_item_logo{
		width: 50px;
		height: 50px;
		margin-top: -25px;
	}
	.main_box_list_item_title{
		font-size: 16px;
		line-height: 16px;
		margin-top: 10px;
	}
	.main_box_list_item_text{
		font-size: 12px;
		margin-top: 10px;
		padding: 0 10px;
	}
	
	.main_box_list.col_6 {
		width: 100%;
		padding: 0 20px;
	}
	.main_box_list.col_6 .main_box_list_item{
		width: calc(100% / 6 - 50px);
		min-width: calc(100% / 6 - 50px);
		max-width: calc(100% / 6 - 50px);
		margin: 10px 25px;
	}
	.main_box_list_text{
		font-size: 16px;
		margin-top: 10px;
	}
	.main_box_list_a{
		font-size: 14px;
		margin-top: 20px;
	}
	.biaoti_box{
		width: 100%;
		padding: 0 30px;
	}
	.biaoti_box_left{
		font-size: 14px;
	}
	.biaoti_box_right{
		width: 160px;
		height: 40px;
		font-size: 20px;
		line-height: 40px;
	}
	.kefu{
		right: 15px;
	}
	.kefu_box{
		width: 120px;
		padding-bottom: 10px;
	}
	.kefu_box_img{
		width: 80%;
	}
	.kefu_box_title img{
		width: 16px;
	}
	.kefu_box_phone{
		font-size: 12px;
	}
	.kefu_box_bot_top{
		transform: translateY(-20%) scale(0.8);
	}
	.dlbg_box{
		width: 80%;
	}
	.dlbg_box_view{
		width: calc(100% - 60px);
	}
	.dlbg_box_btn{
		width: calc(100% - 60px);
	}
	.ktbg_box{
		width: 90%;
	}
	.ktbg_box_left{
		width: 30%;
	}
	.ktbg_box_right{
		width: 70%;
	}
	.ktbg_box_right_top{
		width: 90%;
	}
	.ktbg_box_right_qrxx{
		padding-right: 15px;
	}
	.ktbg_box_right_qrxx_name{
		width: 120px;
		min-width: 120px;
	}
}
@media screen and (max-width: 767px) {
	.header_box {
		padding: 0 20px;
	}
	.banner{
		height: 250px;
	}
	.banner_right{
		top: 0;
		bottom: auto;
	}
	.banner_right img{
		width: 180px;
	}
	.banner_title{
		font-size: 30px;
		text-align: left;
		padding: 20px 50% 0 20px;
	}
	.banner_text{
		font-size: 14px;
		line-height: 20px;
		text-align: left;
		padding: 20px 50% 0 20px;
	}
	.banner_nav{
		margin-top: 20px;
		padding-left: 20px;
		justify-content: flex-start;
	}
	.banenr_inp{
		width: 160px;
		height: 30px;
	}
	.banenr_btn{
		width: 80px;
		height: 30px;
		line-height: 30px;
	}
	.banner_bot{
		height: 50px;
	}
	.banner_bot_item{
		text-align: justify;
		letter-spacing: 0px;
		padding: 0 10px;
	}
	.mertype{
		padding: 10px 0;
	}
	.mertype_box{
		flex-wrap: wrap;
		padding: 0 5px;
		position: relative;
	}
	.mertype_box_img{
		width: 20px;
		height: 20px;
		position: absolute;
	}
	.mertype_box_title{
		font-size: 14px;
		margin-left: 25px;
	}
	.mertype_box_a{
		font-size: 12px;
		margin-left: 25px;
	}
	.main_box{
		padding: 15px 0;
	}
	.main_box_title{
		font-size: 16px;
	}
	.main_box_btn{
		width: 120px;
		height: 30px;
		line-height: 30px;
		margin-top: 10px;
	}
	.main_box_list{
		margin-top: 10px;
	}
	.main_box_list.col_3{
		padding: 0 10px;
	}
	.main_box_list.col_3 .main_box_list_item{
		width: calc(100% / 3 - 10px);
		min-width: calc(100% / 3 - 10px);
		max-width: calc(100% / 3 - 10px);
		padding: 10px 0;
		margin: 5px;
	}
	.main_box_list.col_3 .main_box_list_item>img{
		height: 30px;
	}
	.main_box_list.col_4{
		padding: 0 10px;
	}
	.main_box_list.col_4 .main_box_list_item{
		width: calc(100% / 2 - 10px);
		min-width: calc(100% / 2 - 10px);
		max-width: calc(100% / 2 - 10px);
		padding: 10px 0;
		margin: 5px;
		box-shadow: 0px 0px 8px 0px rgba(86,104,114,0.1);
	}
	.main_box_list.col_4 .main_box_list_item>img{
		height: 30px;
	}
	.main_box_list.col_5 .main_box_list_item{
		width: calc(100% / 2 - 10px);
		min-width: calc(100% / 2 - 10px);
		max-width: calc(100% / 2 - 10px);
		padding-bottom: 10px;
		margin: 5px;
	}
	.main_box_list.col_5 .main_box_list_item .main_box_list_item_img{
		height: 100px;
	}
	
	.main_box_list.col_6 {
		padding: 0 10px;
	}
	.main_box_list.col_6 .main_box_list_item{
		width: calc(100% / 3 - 20px);
		min-width: calc(100% / 3 - 20px);
		max-width: calc(100% / 3 - 20px);
		margin: 5px 10px;
	}
	.main_box_list.col_6 .main_box_list_item>img {
		width: 60%;
	}
	.main_box_list.col_6 .main_box_list_item .main_box_list_text{
		margin-top: 0;
	}
	
	.main_box_list_text{
		font-size: 14px;
		margin-top: 10px;
	}
	.main_box_list_a{
		font-size: 12px;
		margin-top: 10px;
	}
	.footer_bot{
		flex-wrap: wrap;
		height: auto;
		line-height: 20px;
		padding: 10px 0;
	}
	.biaoti-box,
	.biaoti{
		height: 50px;
	}
	.biaoti_box{
		padding: 0 15px;
	}
	.biaoti_box_left{
		font-size: 12px;
	}
	.biaoti_box_right{
		width: 120px;
		height: 30px;
		font-size: 14px;
		line-height: 30px;
	}
	.kefu{
		right: 0;
		bottom: 80px;
		transform: scale(0.8);
	}
	.dlbg_box{
		width: 90%;
		height: auto;
		padding-bottom: 30px;
	}
	.dlbg_box_title {
	    font-size: 16px;
	    padding: 25px 0;
	}
	.dlbg_box_view{
		width: calc(100% - 30px);
		height: 40px;
		margin: 0 15px 15px;
	}
	.dlbg_box_inp,
	.dlbg_box_view_btn{
		font-size: 14px;
	}
	.dlbg_box_btn{
		width: calc(100% - 30px);
		height: 40px;
		line-height: 40px;
		font-size: 14px;
		margin-top: 30px;
	}
	.dlbg_box_bot {
	    font-size: 14px;
	    margin-top: 15px;
	}
	.ktbg_box {
		height: auto;
		padding-bottom: 30px;
	}
	.ktbg_box_left{
		display: none;
	}
	.ktbg_box_right{
		width: 100%;
	}
	.ktbg_box_right_top{
		height: 30px;
	}
	.ktbg_box_right_top_box {
		font-size: 14px;
		line-height: 30px;
	}
	.ktbg_box_right_qrxx{
		padding-right: 10px;
		margin: 10px 0 !important;
	}
	.ktbg_box_right_qrxx_inp{
		width: 200px;
	}
	.ktbg_box_right_qrxx_item{
		flex-wrap: wrap;
	}
	.qrxx_nav_box{
		height: 30px;
	}
	.qrxx_nav_box:not(:last-child) {
	    margin-right: 10px;
	}
	.ktbg_box_right_qrxx_money {
		font-size: 24px !important;
	}
	.ktbg_box_right_qrxx_money~span{
		font-size: 12px !important;
	}
	.ktbg_box_right_btn {
	    height: 30px;
	    font-size: 14px;
	    line-height: 30px;
	}
	.ktbg_box_right_qrxx {
	    font-size: 12px;
	}
	.ktbg_box_right_qrxx_tps {
	    font-size: 12px;
	    margin-top: 10px;
		padding: 0 10px;
	}
}
@media screen and (max-width: 320px) {
	.header_nav_btn{
		width: 80px;
		height: 30px;
		line-height: 30px;
	}
	.banner{
		height: 220px;
	}
	.banner_right img{
		width: 160px;
	}
	.banner_title{
		font-size: 20px;
		padding-top: 10px;
	}
	.banner_text{
		font-size: 12px;
		padding-top: 10px;
	}
	.banner_bot{
		flex-wrap: wrap;
	}
	.mertype_box_title{
		font-size: 12px;
	}
	.mertype_box_img {
	    width: 16px;
	    height: 16px;
	}
	.ktbg_box_right_qrxx_name {
	    width: 90px;
	    min-width: 90px;
	}
	.ktbg_box_right_qrxx_inp {
	    width: 180px;
	}
}