* {
	margin: 0;
	padding: 0;
}
html {
	width: 100%;
	height: 100%;
	overflow: auto;
}
/* 媒体查询 - 大屏电脑 (1400px及以上) */
@media screen and (max-width: 1600px) {
		html {
			font-size: 14px;
		}
}
/* 媒体查询 - 小屏电脑 (1200px及以上) */
@media screen and (max-width: 1400px) {
		html {
			font-size: 13px;
		}
}
/* 媒体查询 - 小屏电脑 (1200px及以上) */
@media screen and (max-width: 1200px) {
		html {
			font-size: 12px;
		}
}
/* 媒体查询 - 小屏电脑 (1024px及以下) */
/* @media screen and (max-width: 1024px) {
	html {
		font-size: 14px;
	}
} */
/* 媒体查询 - 平板设备 (768px及以下) */
@media screen and (max-width: 768px) {
	 html {
	 	font-size: 12px;
	 }
}
/* 媒体查询 - 大屏手机 (576px及以下) */
@media screen and (max-width: 576px) {
	 html {
	 	font-size: 10px;
	 }
}
body {
	width: 100%;
	/* min-width: 1200px; */
	padding-top: 60px;
	font-size:16px;
	box-sizing: border-box;
	overflow:hidden;
	overflow: -moz-scrollbars-none; /* 老版本的Firefox */
	-ms-overflow-style: none; /* IE和Edge */
	scrollbar-width: none; /* 新版本Firefox */
}

body::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}

.bg-linear-blue{
	background: -webkit-linear-gradient(left, #00A1FF, #0680FF, #0B61FF);
	background: -o-linear-gradient(right, #00A1FF, #0680FF, #0B61FF);
	background: -moz-linear-gradient(right, #00A1FF, #0680FF, #0B61FF);
	background: linear-gradient(to right, #00A1FF, #0680FF, #0B61FF)
}
.bg-linear-green{
	background: -webkit-linear-gradient(left, #86EFAC, #4ADE80, #22C55E);
	background: -o-linear-gradient(left, #86EFAC, #4ADE80, #22C55E);
	background: -moz-linear-gradient(left, #86EFAC, #4ADE80, #22C55E);
	background: linear-gradient(to left, #86EFAC, #4ADE80, #22C55E)
}


.topbox {
	position: fixed;
	width: 100%;
	height: 80px;
	z-index: 600;
	left: 0;
	top: 0;
	align-items: center;
	background-color: #fff;
}
.nav-bg{
	background-color: #D8E6ED;
}
.bg-white{
	background-color: #fff !important;
}

.head{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.logo em {
	display: block;
	float: left;
	width: 6rem;
	height: 3rem;
	background: url(../images/logo/text_logo.png)no-repeat;
	background-size: 100%
}
.logo-white em{
	display: block;
	float: left;
	width: 6rem;
	height: 4rem;
	background: url(../images/logo/text_logo_white.png)no-repeat;
	background-size: 100%
}

.nav ul{
	display: flex;
	flex-wrap: nowrap;
}

.nav li {
	position: relative;
	margin: 0 2rem;
	line-height: 5rem;
	font-size: 0.9rem;
	height: 5rem;
	text-wrap: nowrap;
}

.nav li>a {
	display: block;
	color: #333;
	font-weight: 600;
}

/* .nav li:after {
	transition: all .3s ease-in;
	display: block;
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	height: 3px;
	width: 100%;
	background: 0 0
} */

/* .nav li.active:after {
	background: -webkit-linear-gradient(left, #0D70FE, #05A9FF);
	background: -moz-linear-gradient(left, #0D70FE, #05A9FF);
	background: -ms-linear-gradient(left, #0D70FE, #05A9FF);
	background: -o-linear-gradient(left, #0D70FE, #05A9FF);
	background: linear-gradient(left, #0D70FE, #05A9FF)
}

.nav li:hover:after {
	background: -webkit-linear-gradient(left, #0D70FE, #05A9FF);
	background: -moz-linear-gradient(left, #0D70FE, #05A9FF);
	background: -ms-linear-gradient(left, #0D70FE, #05A9FF);
	background: -o-linear-gradient(left, #0D70FE, #05A9FF);
	background: linear-gradient(left, #0D70FE, #05A9FF)
} */

.nav .active>a {
	color: #0567A2
}

.nav li:hover a {
	color: #0567A2
}

.heading-background {
	background: linear-gradient(120deg, transparent 0%, rgba(59, 130, 246, 0.2) 50%, transparent 100%);
	padding: 0 0.5rem;
	display: inline;
	position: relative;
}
/* .heading-background::after {
	content: '';
	position: absolute;
	bottom: -0.8rem;
	left: 5%;
	width: 90%;
	height: 0.3rem;
	background: linear-gradient(90deg, #D7E3FC, #E2EBF0);
	border-radius: 0.3rem;
} */
.apply_list ul{
	display: flex;
	flex-wrap: nowrap;
}
.apply_list li img {
	transition: filter .2s ease-in;
	display: block;
	width: 100%;
	height: 100%;
	background-size: 100% 100%;
	border-radius: 0.6rem;
/* 	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(1);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	filter: grayscale(100%) */
}

.apply_list li:hover img {
	-webkit-filter: none;
	-moz-filter: none;
	-ms-filter: none;
	-o-filter: none;
	filter: none
}

.apply_list li.active img {
	-webkit-filter: none;
	-moz-filter: none;
	-ms-filter: none;
	-o-filter: none;
	filter: none
}

.apply_list li {
	overflow: hidden;
	transition: transform .3s;
	transform: translateZ(0);
	display: inline-block;
	padding-bottom: 30px;
	box-sizing: border-box;
	background: #fff;
	position: relative;
	z-index: 10;
	top: 0;
	vertical-align: top;
	border-radius: 0.6rem;
	/* box-shadow: 0 2px 14px 4px rgba(15, 52, 93, .09) */
}

.apply_list li:hover {
	z-index: 100;
	transform: scale(1.1);
	/* padding-bottom: 42px; */
	/* box-shadow: 0 3px 28px 0 rgba(19, 53, 91, .24) */
}

.apply_pic img {
	width: 100%;
	height: 100%;
	background-size: 100%;
}

.apply_list li{
	margin-right: 5.7%;
}

.apply_list li:nth-child(4){
	margin-right: 0 !important;
}

.app_name {
	text-align: center;
	height:1.8rem;
	line-height: 1.8rem;
	margin-top: 2rem;
	color: #333;
	font-weight:550;
}

.footerbox {
	width: 100%;
	padding: 2rem 0;
	box-sizing: border-box;
	background-color: #35363e;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.footer{
	display: flex;
	justify-content: center;
	align-items: top;
}

.hot_tit {
	height: 2rem;
	margin-bottom: 1.2rem;
	line-height: 2rem;
	color: #fff;
	font-size: 1rem;
}



.fast_tit {
	height: 2rem;
	margin-bottom: 1.2rem;
	line-height: 2rem;
	color: #fff;
	font-size: 1rem;
}

.fast_list {
	color: #ccc;
	font-size: 0.8rem;
}

.fast_list p{
	line-height: 2.2;
}

.fast_list a {
	color: #ccc
}

.fast_list a:hover {
	color: #048ef6
}

.hot_line{
	width: 16vw;
}
.fast_nav{
	width: 10vw;
}
.copy {
	margin-top: 1.6rem;
	text-align: center;
	padding-top: 1rem;
	left: 0;
	border-top: 1px solid rgba(216, 216, 216, .16);
	height: 1rem;
	line-height: 1rem;
	color: #fff;
	font-size: 0.7rem;
}


.bg_blue_ban {
	background: -webkit-linear-gradient(left, #00130D, #021937, #021B46, #00130D);
	background: -moz-linear-gradient(left, #00130D, #021937, #021B46, #00130D);
	background: -ms-linear-gradient(left, #00130D, #021937, #021B46, #00130D);
	background: -o-linear-gradient(left, #00130D, #021937, #021B46, #00130D);
	background: linear-gradient(left, #00130D, #021937, #021B46, #00130D);
	/* background: -webkit-linear-gradient(right, #D7E3FC , #C8E2F4 ,#E2EBF0);
	background: -moz-linear-gradient(right, #D7E3FC , #C8E2F4 , #E2EBF0);
	background: -ms-linear-gradient(right, #D7E3FC , #C8E2F4 , #E2EBF0);
	background: -o-linear-gradient(right, #D7E3FC , #C8E2F4 , #E2EBF0);
	background: linear-gradient(right, #D7E3FC , #C8E2F4 , #E2EBF0) */
}
.text-white{
	color: #fff !important;
}

.lore_box {
	width: 100%;
	overflow: hidden;
	padding: 30px 0;
	box-sizing: border-box;
	background-color: #f5f5f5;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.animated-element {
	animation: fadeInUp 1.2s ease-out forwards;
	opacity: 0;
}



.abou_ban {
	width: 100%;
	overflow: hidden;
	height: auto
}

.abou_ban ul {
	/* width: 30000px */
}

.abou_ban li {
	/* width: 1230px; */
	/* float: left; */
	/* padding-bottom: 51px; */
	padding-top: 50px
}

.abou_ban div {
	background: #fff;
	margin: 0 15px;
	/* float: left; */
	_display: inline;
	overflow: hidden;
	text-align: center;
	width: calc(100% - 20px);
	padding: 10px 0;
	border-radius: 20px;
	/* -moz-transition: all .3s ease-in;
	-webkit-transition: all .3s ease-in;
	-o-transition: all .3s ease-in;
	transition: all .3s ease-in */
}

.abou_ban div a {
	display: block;
	border: 1px solid #fff;
	padding: 4rem;
}

.abou_ban div span {
	display: block;
	text-align: center
}

.abou_ban div img {
	margin: 0 auto;
	display: block;
	width: 80%;
}

.abou_ban div p {
	margin-top: 1.6rem;
	color: #333;
	text-align: center;
	height: 1.6rem;
	line-height: 1.6rem;
	/* font-size: 18px */
}

.abou_ban div:hover {
	/* box-shadow: 0 2px 14px 4px rgba(15, 52, 93, .09); */
	transform: scale(1.05);
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-o-transform: scale(1.05);
	-ms-transform: scale(1.05)
}

.abou_ban div:hover p {
	font-weight: 550;
}
