html{font-size:12px}
@media screen and (min-width:321px) and (max-width:375px){html{font-size:11px}}
@media screen and (min-width:376px) and (max-width:414px){html{font-size:12px}}
@media screen and (min-width:415px) and (max-width:639px){html{font-size:15px}}
@media screen and (min-width:640px) and (max-width:719px){html{font-size:20px}}
@media screen and (min-width:720px) and (max-width:749px){html{font-size:22.5px}}
@media screen and (min-width:750px) and (max-width:799px){html{font-size:23.5px}}
@media screen and (min-width:800px){html{font-size:25px}}


body,
html {
  font-family: "sye";
}
@font-face {
  font-family: 'sye';
  src: url('../font/sye.OTF') format('truetype');
}
*{ 
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-tap-highlight-color: transparent; 
	}
/*select{
	appearance:none;
	-moz-appearance:none;
	-webkit-appearance:none;
	border:none;
}*/
.header{
	width: 100%;
	height: 100px;
	display: flex;
	justify-content: space-around;
	align-items: center;
	background:rgb(0,0,0,0);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 2;
	transition: all .5s; 
}


.header.active{
	background: rgba(0,0,0,0.8);
}
.header .logo a{
	display: block;
	width: 129px;
	height: 35px;
}
.header .logo a img{
	width: 100%;
	height: 100%;
	display: block;
}
.header .nav{
	height: 100px;
}
.header .nav>ul{
	height: 100px;
}
.header .nav>ul>li{
	float: left;
	/*height: 100px;*/
	width: auto;
	padding: 0 20px;
	position: relative;
}
.header .nav>ul>li>a{
	font-size: 14px;
	color: #fff;
	display: block;
	width: 100%;
	height: 95px;
	line-height: 95px;
	border-bottom: none;
}
.header .nav>ul>li:hover>a{
	border-bottom: 5px solid #8d704e;
	color: #8d704e ;
	
}



.header .nav>ul>li .secondnav{
	position: absolute;
	bottom: 0;
	top: 100%;
	left: 0;
	width:700px;
	height: 300px;
	z-index: 5;
	box-sizing:border-box;
	padding:1rem 0;
	display:none;
	transition: all 5s;
}
.header .nav>ul>li .secondnav.active{
	display: block;
}
.header .nav>ul>li .secondnav ul{
	float: left;
}
.header .nav>ul>li .secondnav .pic{
	float: left;
	margin-left: 2rem;
}
.header .nav>ul>li .secondnav ul li{
	/*margin: 0.2rem 0;*/
	padding: 0 20px;
}
.header .nav>ul>li .secondnav ul li:first-child{
	margin-top:0 ;
}
.header .nav>ul>li .secondnav ul li a{
	color: #333;
	font-size: 12px
}
.header .nav>ul>li .secondnav ul li a:hover{
	color: #00a7e1;
}














.header .search{
	display: flex;
	align-items: flex-start;
}
.header .search form{
	position: relative;
	width: 180px;
	height: 26px;
	border: 2px solid #fff;
	border-radius:15px ;
	display: flex;
	align-items: center;
	justify-content: space-around;
	overflow: hidden;
}
.header .search form .sub{
	width: 16px;
	height: 16px;
	background: url(../images/search.png) no-repeat center;
	float:left;
	cursor: pointer;
	margin-left: 5px;
}
.header .search form .txt{
	width: 150px;
	height: 26px;
	float: right;
	background: rgba(0,0,0,0);
	color: #fff;
	font-size: 14px;
}
.header .search .language{
	margin: 0 10px;
	display: block;
	width: 30px;
	height:40px;
	position: relative;
}
.header .search .language:hover{
	background: url(../images/arrow.png) no-repeat center 35px;
}
.header .search .language:hover .qiehuan{
	display: block;
}
.header .search .language .qiehuan{
	position: absolute;
	top: 100%;
	left: 0;
	transform: translateX(-35%);
	background: #fff;
	box-sizing: border-box;
/*	width: 150px;
	height: 100px;*/
	padding: 5px;
	display: none;
	text-align: center;
}
.header .search .language .qiehuan span{
	display: block;
	padding:5px;
	color: #333;
	border-bottom: 1px solid #333;
	font-size: 12px
}

.header .search .personal{
	margin: 0 10px;
	display: block;
	width: 30px;
	height:40px;
	position: relative;
	cursor: pointer;
}
.header .search .personal:hover{
	background: url(../images/arrow.png) no-repeat center 35px;
}
.header .search .personal:hover .qiehuan{
	display: block;
}
.header .search .personal .qiehuan{
	position: absolute;
	top: 100%;
	left: 0;
	transform: translateX(-35%);
	background: #fff;
	box-sizing: border-box;
	display: none;
	width: 150px;
	height: 100px;
	padding: 5px;
}
.header .search .personal .qiehuan a{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding:5px;
	color: #333;
	border-bottom: 1px solid #333;
	font-size: 12px
}
.header .search .personal .qiehuan span img{
	width: auto;
	margin-right: 5px;
	width: 18px;
	height: 18px;
}


.header .sonnav-wrapper{
	width:100%;
	height:300px;
	position: absolute;
	top: 100%;
	left: 0;
	background: rgba(255,255,255,0);
	transition: all .5s;
	height: 0px;
}
.header .sonnav-wrapper.active{
	height: 300px;
	background: rgba(255,255,255,1);
}
.phone-header{
	width: 100%;
	height: 50px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #373839;
	box-sizing: border-box;
	padding: 0 10px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	display: none;
}

.phone-header .logo{
	width: 80px;
	height: 25px;
}


.phone-nav{
	position: fixed;
	top: 50px;
	left: 0;
	z-index: 5;
	background:#00a7e1;
	height: 100%;
	width: 100%;
	box-sizing: border-box;
	padding-top:20px;
	transition: all .5s;
	opacity: 0;
	transform: translateY(-110%);
}
.phone-nav.active{
	opacity: 1;
	transform: translateY(0%);
}



.phone-nav ul li a{
	display: block;
	width: 100%;
	height: 50px;
	line-height: 50px;
	text-align: left;
	color: #fff;
	box-sizing: border-box;
	padding-left: 30px;
}
.phone-nav .search{
	display: flex;
	align-items: center;
	margin-top: 20px;
}
.phone-nav form{
	position: relative;
	width: 200px;
	height: 26px;
	border: 2px solid #fff;
	border-radius:15px ;
	display: flex;
	align-items: center;
	justify-content: space-around;
	overflow: hidden;
	margin-left: 30px;
	margin-right: 10px;
}
.phone-nav form .sub{
	width: 16px;
	height: 16px;
	background: url(../images/search.png) no-repeat center;
	float:left;
	cursor: pointer;
}
.phone-nav form .txt{
	width: 150px;
	height: 26px;
	float: right;
	background: rgba(0,0,0,0);
	color: #fff;
	font-size: 14px;
}

.banner img{
	width: 100% !important;
}
.banner .swiper-pagination-bullet{
	background: #f2f2f2;
}
.banner .swiper-pagination-bullet-active{
	width: 18px;
	height: 26px;
	background: url(../images/shandian.png) no-repeat center;
}
.swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction{
	display: flex;
	align-items: center;
	justify-content: center;
}



.footnav-wrapper{
	width: 100%;
	background: #373839;
}
.footnav{
	width: 100%;
	max-width: 1220px;
	background: #373839;
	margin: 0 auto;
	height: 340px;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	box-sizing: border-box;
	padding-top:40px;
}
.footnav .link{
	float: left;
	width: 60%;
}
.footnav .link .one{
	float: left;
	margin-right:2vw;
}
.footnav .link .one h4{
	font-size:14px;
	font-weight: bold;
	color: #fff;
	border-bottom: 2px solid #bd3a00;
	margin-bottom: 20px;
	width: 120px;
	box-sizing: border-box;
	padding: 5px;
}
.footnav .link .one h4 i{
	float: right;
	display: none;
	transition: all .5s;
}
.footnav .link .one h4.active i{
	transform: rotate(360deg);
}


.footnav .link .one ul li{
	margin:3px 0;
}
.footnav .link .one ul li a{
	color: #fff;
	font-size:12px;
	color: #fff;
}
.footnav .link .one ul li a:hover{
	color: #00a7e1;
}

.footnav .link .one li.dianhua,.footnav .link .one li.dingwei,.footnav .link .one li.aite{
	box-sizing: border-box;
	padding-left:30px;
}
.footnav .link .one li.dingwei{
	background: url(../images/dingwei.png) no-repeat 0px top;
}
.footnav .link .one li.dianhua{
	background: url(../images/dianhua.png) no-repeat 0px top;
}
.footnav .link .one li.aite{
	background: url(../images/aite.png) no-repeat 0px top ;
}

.footnav .mes{
	width: 30%;
	float: right;
	margin-right: 24px;
}

.footnav .mes h5,.footnav .mes h6,.footnav .mes span,.footnav .mes p{
	color: #fff;
	font-size: 12px;
}
.footnav .mes h5{
	font-weight: bold;
}

.footnav .mes form{
	margin: 5px 0;
}
.footnav .mes form div{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.footnav .mes form div img{
	width: 31px;
	height: 20px;
	
}
.footnav .mes form input.mail{
	width: 216px;
	height: 21px;
	border: 2px solid #fff;
	color: #fff;
	font-size: 14px;
	 box-sizing: border-box;
	 padding-left: 5px ;
	 background: rgba(0,0,0,0);
	 margin: 0 10px;
}
.footnav .mes form input.sub{
	width: 96px;
	height: 25px;
	color: #fff;
	font-size: 10px;
	background: #cccccc;
	border-radius:15px ;
	text-align: center;
	line-height: 26px;
}
.footnav .mes form input.check{
	margin-right: 5px;
}

.footnav .mes .share{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 15px;
	width: 70%;
	position: relative;
}

.footer-wrapper{
	width: 100%;
	background: #000000;
}
.footer-wrapper .footer{
	width: 100%;
	height: 120px;
	max-width: 1220px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.footer-wrapper .footer div{
	width: 49%;
	height: 100%;
	display: flex;
	justify-content: space-around;
	align-items: center;
}
.footer-wrapper .footer div span{
	font-size: 14px;
	color: #666;
}

#div2{
	top: 50px;
	left: 140px;
}


@media screen and (max-width:1480px){
	.header .nav>ul>li .secondnav{
		left: -100%;
	}
	.header{
		justify-content: center;
	}
}











@media screen and (max-width:1200px){
	body{
		padding-top: 50px;
	}
	.header{
		display: none;
	}
	.phone-header{
		display: flex;
	}
	.footnav{
		height: auto;
		
		justify-content: center;
		align-items: center;
	}
	.footnav .link{
		width: 100%;
		display: flex;
		justify-content: center;
	}
	.footer-wrapper .footer{
		height: 120px;
		flex-direction: column;
	}
	.footer-wrapper .footer div{
		width: 80%;
		margin: 20px 0;
	}
	.wst{
		height: auto;
		display: flex;
		flex-direction: column;
	}
	.wst div{
		width: 100% !important;
		text-align: center;
	}
	
}


@media screen and (max-width:768px){
	 .footnav{
	 	flex-direction: column;
	 }
	.footnav .link{
		display: flex;
		flex-direction: column;
	}
	.footnav .link .one{
		width: 100% !important;
	}
	.footnav .link .one h4{
		width: 100%;
		margin-bottom: 0;
		box-sizing: border-box;
		padding-left: 10px;
		padding-right: 20px;
	}
	.footnav .link .one ul{
		display: none;
	}
	.footnav .link .one ul li{
		background: #444;
		box-sizing: border-box;
		padding-left: 10px;
		margin:5px 0;
	}
	.footnav .link .one ul li a{
		color: #cfcfcf;
	}
	.footnav .mes{
		width: 80%;
		text-align: center;
		box-sizing: border-box;
		padding: 1rem 0;
	}
	.footnav .mes form div{
		flex-direction: column;
		height: 80px;
		justify-content: space-around;
	}
	.footer-wrapper .footer{
		height: auto;
		flex-direction: column;
	}
	.footer-wrapper .footer .partners{
		width: 100%;
		display: flex;
		flex-direction: column;
		margin:10px 0;
		justify-content: space-around;
	}
	.footer-wrapper .footer .partners div{
		margin: 0;
		width:85%;
		
	}
	.footer-wrapper .footer .partners div a{
		width: 20%;
		text-align: center;
	}
	.footnav .link .one h4{
		cursor: pointer;
	}
	.footnav .link .one h4 i{
		display: block;
		font-size: 1.5rem !important;
	}
	.footnav .mes .share{
		width:65%;
		margin: 0 auto;
	}
	.imagemail{
		display: flex !important;
		justify-content: center !important;
		flex-direction: row !important;
		height: auto !important;
	}
}

@media screen and (max-width:540px){
	.main{
		padding: 0;
	}
}

@media screen and (max-width:480px){
	.main .top ul{
		display: flex;
		flex-direction: column;
	}
	.main .top{
		margin: 0;
	}
	.main .top ul li{
		width: 100%;
		margin: 10px 0;
	}
	
	.main .bottom{
		height: auto;
		display: flex;
		flex-direction: column;
		position: initial !important;
		margin: 0;
	}
	.main .bottom div{
		width: 100%;
		position: initial !important;
		margin: 10px 0;
	}
	
}



@media screen and (min-width:769px){
	.footnav .link .one ul{
		display: block !important;
	}
	
}


















.faqscate-wrapper{
	width: 100%;
	background: #f2f2f2;
}
.faqscate-wrapper .faqs{
	width: 100%;
	max-width: 1220px;
	height: auto;
	margin: 0 auto;
	box-sizing: border-box;
	padding:2rem ;
}
.faqscate-wrapper .faqs .title{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.faqscate-wrapper .faqs .title h4{
	font-size: 24px;
	color: #666;
}
.faqscate-wrapper .faqs .title h6 a{
	display: inline-block;
	width: auto;
	font-size: 0.9rem;
	color: #bd302a;
	margin-left: 1rem;
}
.faqscate-wrapper .faqs .title h6 a:hover{
	border-bottom: 1px solid #bd302a;
}
.faqscate-wrapper .faqs ul{
	margin-top:2rem;
	overflow: hidden;
	display: flex;
	justify-content:flex-start;
	flex-wrap: wrap;
	box-sizing: border-box;
	padding: 1rem;
}
.faqscate-wrapper .faqs ul li{
	float: left;
	margin-bottom: 0.5rem;
	margin-right: 0.5rem;
}
.faqscate-wrapper .faqs ul li a{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	width: 10rem;
	height: 4rem;
	border: 1px solid #cccccc;
	font-size: 12px;
	color: #999;
	box-sizing: border-box;
	padding-left: 1rem;
	transition: all .5s;
}
.faqscate-wrapper .faqs ul li a:hover{
	transform: translateY(-10px);
	box-shadow: 0 4px 30px rgba(0,0,0,.15);
	color: #00A7E1;
}
.faqscate-wrapper .faqs>h4{
	font-size: 20px;
	color: #bd302a;
	text-align: center;
	margin-top:5rem;
}





@media screen and (max-width:1200px){
	.main .top{
		height: auto;
	}
	.main .top .center .text{
		margin: 1rem 0;
	}
	.main .top .center{
		height: auto;
		margin: 0;
		flex-direction: column;
		justify-content: space-around;
		align-items: center;
	}
	.main .top .center form{
		width: 60%;
	}
	.faqscate-wrapper .faqs .title h4{
		font-size:24px;
	}
}
@media screen and (max-width:960px){
	.faqscate-wrapper .faqs ul{
		justify-content: flex-start;
	}
	.faqscate-wrapper .faqs ul li{
		margin: 0.5rem;
	}
}
@media screen and (max-width:768px){
	.faqscate-wrapper .faqs{
		height: auto;
	}
	.faqscate-wrapper .faqs>h4{
		margin-top: 2rem;
	}
	.faqscate-wrapper .faqs ul li a{
		overflow: hidden;
		text-overflow:ellipsis;
		white-space: nowrap;
	}
	.banner .title form{
		display: none;
	}
}
@media screen and (max-width:640px){
	.main .top .center form{
		width: 80%;
	}
	.main .top .center .text{
		width: 80%;
	}
	.faqscate-wrapper .faqs ul{
		justify-content: space-between;
	}
	.faqscate-wrapper .faqs ul li{
		width: 45%;
	}
	.faqscate-wrapper .faqs ul li a{
		width: 100%;
	}
}

@media screen and (max-width:480px){
	
	
	.faqscate-wrapper .faqs .title{
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: flex-start;
		box-sizing: border-box;
		padding-left: 3.5rem;
	}
	.faqscate-wrapper .faqs .title h6 a{
		margin-left: 0;
		margin-right: 10px;
	}
	.faqscate-wrapper .faqs ul{
		justify-content: center;
	}
	.faqscate-wrapper .faqs ul li{
		width: 80%;
	}
	.faqscate-wrapper .faqs ul li a{
		width: 100%;
	}
	.main .tab ul li a{
		font-size: 1rem !important;
	}
}







