.container {
	width: 1200px;
	margin: 0 auto;
	padding: 0 16px;
}
.text-shadow {
	text-shadow: 1px 1px 1px #333;
}
.header {
	display: flex;
	align-items: center;
	gap: 24px;
	height: 100px;
}
.header .logo {
	width: 200px;
}
.header .web_name {
	font-size: 36px;
	font-weight: bold;
}

.banner {
	height: 500px;
	background: url(../images/banmer.jpg) center top no-repeat;
	background-size: cover;
}
.banner .container {
	height: 100%;
	display: flex;
	align-items: center;
	justify-items: center;
}
.banner p {
	color: #fff;
	font-size: 50px;
}
.title {
	font-size: 36px;
	font-weight: bold;
	margin: 50px 0 24px 0;
	text-align: center;
}
.title .lign {
	color: #029ae0;
}
.about {
	margin-bottom: 24px;
}
.about p,
.functions p {
	text-align: center;
	max-width: 850px;
	margin: 0 auto;
}
.functions{
	margin-bottom: 50px;
}
.functions ul {
	display: flex;
	gap: 24px;
	margin-top: 32px;
}

.functions li {
	flex: 1;
	position: relative;
	color: #fff;
	overflow: hidden;
	border-radius: 15px;
}
.functions li div {
	line-height: 0;
}
.functions .hd {
	position: absolute;
	width: 100%;
	top: 10px;
	font-size: 18px;
	text-align: center;
	line-height: 40px;
	transition: all 0.5s ease-out;
}
.functions li:hover .hd {
	top: calc(100% - 50px);
}
.functions img {
	width: 100%;
	border-radius: 15px;
	transition: all 0.5s ease-out;
}
.functions ul li:hover img{
	filter: blur(5px);
	transform: scale(1.02);
}
.functions .info {
	position: absolute;
	width: 100%;
	transition: all 0.5s linear;
	opacity: 0;
	text-align: left;
	padding: 0px 16px 40px 16px;
	font-size: 14px;
}
.functions li:hover .info {
	transform: translateY(-120%);
	opacity: 1;
}

.advantage{
	
	height: 500px;
	background: url(../images/advantage.jpg) center top no-repeat;
	background-size: cover;
	color: #fff;
	text-align: center;
}
.advantage .container{
	height: 100%;
	display: flex;
	flex-flow: column;
	align-items: center;
	justify-content: center;
}
.advantage h2{
	font-size: 36px;
	font-weight: bold;
	margin-bottom: 32px;
}
.advantage .info{
	margin:  0 auto;
	font-size: 24px;
	max-width: 860px;
}

.scheme{

}
.scheme ul{
	display: flex;
	gap: 36px;
}
.scheme ul li{
	
	flex: 1;
	position: relative;
	color: #fff;
	overflow: hidden;
	border-radius: 15px;
}
.functions li div {
	line-height: 0;
}
.scheme ul li img{
	width: 100%;
	border-radius: 15px;
	transition: all .5s ease-out;
}
.scheme .about{
	position: absolute;
	top: 0px;
	width: 100%;
	height: 100%;
 	text-align: center;
	transition: all .5s ease-out;
	transform: translateY(10px);
}
.scheme .hd{
	height: 40px;
	line-height: 40px;
}
.scheme .info{
	font-size: 14px;
}
.scheme ul li:hover .about{
	transform: translateY(20%);
}
.scheme ul li:hover img{
	filter: blur(5px);
	transform: scale(1.02);
}

.btn-box{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-bottom: 32px;
}
.btn-box div{
	padding: 0 15px;
	height: 40px;
	line-height: 40px;
	background: #F0EDED;
	border-radius: 5px;
	transition: all .3s linear;
	cursor: pointer;
}
.btn-box .active{
	background: #029AE0;
	color: #fff;
}
.tabs-box{
	font-size: 14px;
	padding:16px 32px;
	line-height: 1.8;
	border-radius: 16px;
	background-color: rgba(204, 204, 204, .2);
}
.tabs-box > div{
	display: none;
}
.tabs-box .active{
	display: block;
}
.tabs-box h3{
 margin: 16px 0;
}
.footer{
	margin-top: 32px;
	background-color: #F0EDED;
	text-align: center;
	font-size: 14px;
	padding: 10px 0;
}

.contact-box{
	display: flex;
}
.contact-box .left{
	width: 320px;
}
.contact-box .right{
	flex: 1;
}
.contact-box .right img{
	width: 100%;
}
.contact-box .list{
	display: flex;
	gap: 8px;
	margin-bottom: 8px;
}
.contact-box .list img{
	width: 22px;
}