@charset "UTF-8";
.body{
	color: #1f1f1f
}
.m{
	max-width: 1180px;
	margin: 0 auto
}
header{
	height: 70px;
	padding: 20px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}
header .logo{
	width: 193px;
	height: 24px
}
header .top-links{
	flex: 1;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
	position: relative
}
header .top-links a{
	margin-left: 60px
}
header .top-links a:hover{
	text-decoration: underline
}
header .top-links .search-box{
	width: 280px;
	height: 30px;
	display: flex;
	align-items: center;
	padding: 10px;
	margin-right: -20px;
	border-radius: 6px;
	background: #fff;
	position: relative;
}
header .top-links .search-box .input{
	flex: 1;
	font-size: 14px
}
header .top-links .search-box .icon-search{
	display: inline-block;
	width: 20px;
	height: 20px;
	margin-left: 20px;
	cursor: pointer;
	background: url(../images/icon-search.png) no-repeat center/cover
}
header .top-links .search-box input[type="submit"]{
	width: 20px;
	height: 20px;
	cursor: pointer;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 10px;
	z-index: 2;
	opacity: 0;
}
header .top-links .search-box form{display: inherit; width: 100%;}
header .m-btn{
	position: absolute;
	top: 0;
	z-index: 110;
	display: none;
	width: 40px;
	height: 100%;
	align-items: center;
	justify-content: center;
}
header .m-nav{
	right: 0;		
}
header .m-nav button{
	width: 40px;
	height: 40px;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	border: 0;
	background-color: transparent;
	position: relative;
}
header .m-nav button .icon-left{
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	position: absolute;
	height: 2px;
	width: 13px;
	top: 17px;
	background-color: #333;
	left: 7px;
}
header .m-nav button .icon-left::before{
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	position: absolute;
	width: 13px;
	height: 2px;
	background-color: #333;
	content: "";
	top: -7px;
	left: 0;
}
header .m-nav button .icon-left::after{
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	position: absolute;
	width: 13px;
	height: 2px;
	background-color: #333;
	content: "";
	top: 7px;
	left: 0;
}
header .m-nav .btn-click .icon-left{
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	background-color: transparent;
}
header .m-nav .btn-click .icon-left::before{
	-webkit-transform: rotateZ(45deg) scaleX(1.4) translate(2px, 1px);
	transform: rotateZ(45deg) scaleX(1.4) translate(2px, 1px);
}
header .m-nav .btn-click .icon-left::after{
	-webkit-transform: rotateZ(-45deg) scaleX(1.4) translate(2px, -1px);
	transform: rotateZ(-45deg) scaleX(1.4) translate(2px, -1px);
}
header .m-nav button .icon-right{
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	position: absolute;
	height: 2px;
	width: 13px;
	top: 17px;
	background-color: #333;
	left: 18px;
}
header .m-nav button .icon-right::after{
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	position: absolute;
	width: 13px;
	height: 2px;
	background-color: #333;
	content: "";
	top: 7px;
	left: 0;
}
header .m-nav button .icon-right::before{
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	position: absolute;
	width: 13px;
	height: 2px;
	background-color: #333;
	content: "";
	top: -7px;
	left: 0;
}
header .m-nav .btn-click .icon-right{
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	background-color: transparent;
}
header .m-nav .btn-click .icon-right::after{
	-webkit-transform: rotateZ(45deg) scaleX(1.4) translate(-2px, -1px);
	transform: rotateZ(45deg) scaleX(1.4) translate(-2px, -1px);
}
header .m-nav .btn-click .icon-right::before{
	-webkit-transform: rotateZ(-45deg) scaleX(1.4) translate(-2px, 1px);
	transform: rotateZ(-45deg) scaleX(1.4) translate(-2px, 1px);
}
footer{
	height: 110px;
	flex: none;
	background: #1f1f1f;
	color: #fff
}
footer .container{
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center
}
footer .logo{
	margin-right: 26%;
	font-size: 26px;
	font-weight: 700;
	color: #fff
}
footer nav{
	flex: 1;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between
}
.faq .faq-item{
	border-bottom: 1px solid #e0e0e0;
	position: relative
}
.faq .faq-question{
	padding: 40px 0 20px;
	cursor: pointer;
	font-weight: 700;
	position: relative;
	padding-right: 50px;
}
.faq .faq-question::after{
	content: "";
	font-size: 20px;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	width: 24px;
	height: 24px;
	background: url(../images/index/plus.png) no-repeat center/cover
}
.faq .faq-answer{
	padding: 20px 0;
	display: none;
	font-size: 14px;
	line-height: 1.6
}
.faq .faq-answer.show{
	display: block
}
.faq .faq-question.expanded::after{
	content: "";
	font-size: 20px;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	width: 24px;
	height: 24px;
	background: url(../images/index/minus.png) no-repeat center/cover
}
.common-header{
	position: relative;
	min-height: 166px;
	flex: none;
	background: #eff5f9;
	overflow: hidden
}
.common-header::before{
	content: "";
	display: inline-block;
	width: 315px;
	height: 199px;
	position: absolute;
	bottom: -80px;
	left: 0;
	background: url(../images/header-bg-icon-left.png) no-repeat center/cover
}
.common-header::after{
	content: "";
	display: inline-block;
	width: 259px;
	height: 137px;
	position: absolute;
	top: -20px;
	right: 5px;
	background: url(../images/header-bg-icon-right.png) no-repeat center/cover
}
@media screen and (max-width:1920px){
.common-header::before{
	left: auto;
	right: calc((100% - 1180px)/ 2 + 1180px + 56px)
}
.common-header::after{
	right: auto;
	left: calc((100% - 1180px)/ 2 + 1180px + 140px)
}
.common-title{
	font-size: 20px
}
.common-title:after{
	width: 70px;
	height: 25px;
	top: 12px
}
}
.common-title{
	text-align: center;
	font-size: 24px;
	padding: 10px 0;
	font-weight: 700;
	position: relative
}
.common-title:after{
	content: "";
	position: absolute;
	top: 16px;
	left: 50%;
	transform: translateX(-50%);
	width: 94px;
	height: 35px;
	background: url(../images/index/line.png) no-repeat center/cover;
	z-index: -1
}
.row{margin: 0 -10px;}
.tc .list{
	margin-top: 20px;
	flex-wrap: wrap;
	display: flex;
	/*justify-content: center;
  	gap: 20px;*/
}
.tc .list .tc-item{
	margin-top: 20px;
	padding: 0 10px;
	width: 16.6667%;
}
.tc .list .tc-item a{
	width: 100%;
	cursor: pointer;
	position: relative;
	color: #fff;
	border-radius: 12px;
	overflow: hidden;
	display: block;	
}
.tc .list .tc-item a img{width: 100%;}
.tc .list .tc-item .mask{
	position: absolute;
	left: 0;
	bottom: -20px;
	width: 100%;
	height: 80px;
	background: linear-gradient(180deg, rgba(31,31,31,0) 14%, #1f1f1f 100%);
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 10px;
	font-size: 14px
}
.tc .list .tc-item .mask span{
	max-height: 100%;
	text-align: center
}
.plate .list{
	display: flex;
	/*justify-content: space-between;*/
	flex-wrap: wrap
}
.plate .list .item{
	margin-top: 20px;
	width: 16.6667%;
	padding: 0 10px;
}
.plate .list .item a{
	width: 100%;
	height: 252px;
	border: 1px solid #efeeee;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 14px 10px;
	font-size: 12px	
}
.plate .list .item a:hover{
	border-radius: 12px;
	background: #fff;
	box-sizing: border-box;
	border: 1px solid #4d9ffe;
	box-shadow: 0 4px 10px 0 rgba(0,0,0,.1)
}
.plate .list .item .img{
	display: -webkit-box;
  	display: -moz-box;
  	display: -webkit-flex;
  	display: -moz-flex;
  	display: -ms-flexbox;
  	display: flex;
  	justify-content: center;
  	align-items: center;
  	height: 90px;	
}
.plate .list .item img{
	width: -webkit-fit-content;
  	width: -moz-fit-content;
  	width: fit-content;
  	height: -webkit-fit-content;
  	height: -moz-fit-content;
  	height: fit-content;
  	-o-object-fit: contain;
  	object-fit: contain;
  	max-width: 95%;
  	max-height: 95%;
  	margin: 0 auto;
	object-fit: contain
}
.plate .list .item .url{
	font-weight: 700
}
.plate .list .item .desc{
	margin-top: 5px;
	line-height: 16px;
	overflow: hidden;
  	text-overflow: ellipsis;
  	display: -webkit-box;
  	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	max-height: 48px;
}
.plate .list .item .btn{
	width: 100%;
	height: 28px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 310px;
	box-sizing: border-box;
	border: 1px solid #338df0;
	margin: 0 auto;
}
.plate .list .item .btn:hover{
	cursor: pointer;
	color: #fff;
	background: linear-gradient(180deg, #2a87ec 0, #55a3ff 100%)
}
@media screen and (max-width: 1220px){
	.m{width: 98%;}	
	.m .m{width: 100%;}
	.plate .list .item{width: 25%;}
	.tc .list .tc-item{width: 20%;}
}
@media screen and (max-width: 920px){
	.common-header{width: 100%; overflow: unset;}
	.common-header::after, .common-header::before{display: none;}
	.m{width: 96%;}
	header .logo{width: 160px; height: auto;}
	header .top-links{
		display: none;
		position: absolute;	
		position: absolute;
    	top: 70px;
    	box-shadow: 0 4px 10px 0 rgba(0,0,0,.3);
    	padding: 20px 10px;
    	width: 100%;
		z-index: 10;
    	background-color: #eff5f9;
	}
	header .top-links a{
		padding: 15px 0;
		margin: 0;
    	width: 100%;
    	display: block;	
	}
	header .top-links .search-box{width: 100%; margin-bottom: 10px;}
	header .m-nav{
		display: -webkit-box;
    	display: -moz-box;
    	display: -webkit-flex;
    	display: -moz-flex;
    	display: -ms-flexbox;
    	display: flex;
	}	
	.plate .list .item{width: 33.3333%;}
	.tc .list .tc-item{width: 33.3333%;}
}
@media screen and (max-width: 620px){
	.m{width: 92%;}	
	header{height: auto; flex-direction: column; padding: 10px 0; align-items: flex-start;}
	header .top-links{top: 45px;}
	.plate .list .item{width: 50%;}
	.tc .list .tc-item{width: 50%;}
}