/*动画帧*/

@-webkit-keyframes transx_left {
	0% {
		-webkit-opacity: 0;
		-webkit-transform: translateX(-100%);
	}
	100% {
		-webkit-opacity: 1;
		-webkit-transform: translateX(0);
	}
}

@keyframes transx_left {
	0% {
		opacity: 0;
		transform: translateX(-100%);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

@-webkit-keyframes transx_right {
	0% {
		-webkit-opacity: 0;
		-webkit-transform: translateX(100%);
	}
	100% {
		-webkit-opacity: 1;
		-webkit-transform: translateX(0);
	}
}

@keyframes transx_right {
	0% {
		opacity: 0;
		transform: translateX(100%);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

@-webkit-keyframes transy_up {
	0% {
		-webkit-opacity: 0;
		-webkit-transform: translateY(-100%);
	}
	100% {
		-webkit-opacity: 1;
		-webkit-transform: translateY(0);
	}
}

@keyframes transy_up {
	0% {
		opacity: 0;
		transform: translateY(-100%)
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@-webkit-keyframes transy_down {
	0% {
		-webkit-opacity: 0;
		-webkit-transform: translateY(100%);
	}
	100% {
		-webkit-opacity: 1;
		-webkit-transform: translateY(0);
	}
}

@keyframes transy_down {
	0% {
		opacity: 0;
		transform: translateY(100%);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@-webkit-keyframes trans_rota {
	0% {
		-webkit-transform: rotate(0);
	}
	100% {
		-webkit-transform: rotate(360deg);
	}
}

@keyframes trans_rota {
	0% {
		transform: rotate(0);
	}
	100% {
		transform: rotate(360deg);
	}
}

@-webkit-keyframes fade_in {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes fade_in {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@-webkit-keyframes trans_scale{
	0%{
		opacity: 0;
		-webkit-transform: scale(1.1);
	}
	100%{
		opacity: 1;
		-webkit-transform: scale(1.2);
	}
}
@keyframes trans_scale{
	0%{ 
		transform:scale(1.1);
		opacity: 0;
	}
	100%{ 
		opacity: 1;
		transform: scale(1.2);
	}
}
html,
body {
	-webkit-touch-callout: none;
	-webkit-text-size-adjust: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-user-select: none;
	width: 100%;
	overflow: auto !important;
}


/*改写滚动条为全部透明*/

::-webkit-scrollbar
/*整体部分*/

{
	/*width: 0;
	height: 0;*/
}

::-webkit-scrollbar-track
/*滑动轨道*/

{
	background: rgba(0, 0, 0, 0);
}

::-webkit-scrollbar-thumb
/*滑块*/

{
	background: rgba(0, 0, 0, 0.0);
}

::-webkit-scrollbar-thumb:hover
/*滑块效果*/

{
	background: rgba(0, 0, 0, 0);
}
html { width: 100%; height:100%; font-size: 10px;}
@media only screen and (min-width: 360px) {
	html {
	 	font-size: 11px;
	}
}
@media only screen and (min-width: 410px) {
	html {
	 	font-size: 13px;
	}
}
html,body {
	margin: 0;
	padding: 0;
	overflow-x: hidden !important;
}
/*.home .swiper-pagination-bullet {
	width: 18px;
	height: 18px;
	color: #BBBBBB;
    background-color: #4C4C4C;
    display: inline-block;
    border-radius: 100%;
}
.home .swiper-pagination-bullet-active {
	color: #616161;
    background-color: #D3D3D3;
    border: 5px solid #4C4C4C;
    width: 8px;
    height: 8px;
}
.home .swiper-pagination {
	bottom: 70%!important;
}*/
.banner_img{
	width: 100%;
	height: 663px;
	position: relative;
	top: 0;
	left: 0;
}
.banner_img p.btn_bg{
	background: #fff;
	opacity: 0.2;
	color: #fff;
	width: 174px;
	height: 56px;
	z-index: 9999;
	margin-top: 451px;
	margin-left: 20px;
}
.banner_img span{
	display: inline-block;
	width: 172px;
	height:54px;
	border:1px solid #fff;
	color: #fff;
	font-size: 25px;
	line-height: 56px;
	text-align: center;
	margin-left: 20px;
	position: absolute;
	top: 451px;
}
.banner_img span:hover{
	cursor: pointer;
}
.banner_img>div{
	width: 1100px;
    margin: auto;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 0;
    margin-left: -550px;
}
.banner_img>ul{
	overflow: hidden;
	width: 1100px;
    margin: auto;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 0;
    margin-left: -550px;
    list-style:none;
}
.banner_img>ul li{
	float: left;
    height: 100px;
    margin-top: 451px;
    width: 90px;
    list-style:none;
    margin-right: 20px;
    margin-left: 20px;
}
.banner_img>ul li img{
	width: 72px;
	height: 71px;
	margin-left: 9px;	
}
.banner_img>ul li img,.banner_img>ul li p{
	cursor: pointer;
}
.banner_img>ul li img{
	animation: trans_scale 2s ease-out 2s forwards infinite;
}
.banner_img>ul li p{
	font-size: 12px;
	color: #fff;
	font-family: "微软雅黑";
	width: 90px;
	text-align: center;
	margin-top: 20px;
}
.swiper-container-fade .swiper-slide{
	height: 663px;
}
.bg-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.video {
	width: 100%;
	height: 660px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	/*background: rgba(39, 41, 49, 1);*/
	position: absolute;
	top: 0;
	left: 0;
}
.videoFont{
	width: 565px;
    height: 321px;
    background: url(../img/video.png) no-repeat;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-left: -282px;
    margin-top: -270px;
}
.videoFont p{
	background:#fff;
    opacity: 0.5;
    color: #fff;
    width: 204px;
    height: 56px;
    z-index: 9999;
    margin-top: 381px;
    margin-left: 182px;   
}
.videoFont span:hover,.videoFont span i:hover{
	cursor: pointer;
}
.videoFont span{
	display: inline-block;
	height: 56px;
	line-height: 56px;
	font-size: 18px;
	color: #fff;
	position: relative;
	top: -55px;
	margin-left: 230px;
	letter-spacing:5px;
	position: relative;
}
.videoFont span i{
	display: inline-block;
	position: absolute;
	top: 5px;
	left: -40px;
	width: 26px;
	height: 56px;
	margin-top: 12px;
	background: url(../img/videoIcon.png) no-repeat;
	background-size: 26px;
	padding-right: 10px;
}
video {
	object-fit: cover!important;
}
.vjs-loading-spinner {
	display: block !important;
}

@-webkit-keyframes showimg{
	0% {
		position: absolute;  
	    left: -100%;                  
	    top: 0;  
	    width: 30%;  
	    height: 100%;  
	    content: ""; 
	    background: linear-gradient(to right,rgba(255,255,255,0) 0,rgba(255,255,255,.3) 50%,rgba(255,255,255,0) 100%);  
	    transform: skewX(-45deg);
	    transition: 1s ease; 
	}
	100% {
		left: 300%;  
        transition: 1s ease; 
	}
}

*{
	margin: 0;
	padding: 0;
	font-family: "微软雅黑";
	outline:none;
}
/*头部公共*/
.header{
	height: 92px;
	width: 100%;
	background: #fff;
}
.headerBox{
	width: 1100px;
	margin: auto;
	height: 100%;
}
.logo{
	display: inline-block;
	width: 200px;
	height: 100%;
	background: url(../img/logo.png) no-repeat;
	background-size: 158px 44px;
	background-position-y: 24px;
}

.nav{
	display: inline-block;
	height: 100%;
	list-style: none;
	width: 540px;
	text-align: center;
}
.nav li:first-child{
	margin-left: 30px;
}
.nav li{
	float: left;
	font-size: 14px;
	color: #333;
	height: 100%;
	line-height: 92px;
	list-style: none;
	width: 60px;
	padding-right: 60px;
	cursor: pointer;
	position: relative;
}
.nav li.active,.nav li:hover{
	color: #ff9000;
}
.nav li:last-child{
	padding-right: 0;
}
.nav li>a{
	color: #333;
}
.nav li>i{
	display: inline-block;
	width: 9px;
	height: 6px;
	background: url(../img/arrow-icon.png) no-repeat;
}

.second-nav-list .arrow-up {
    position: absolute;
    width: 10px;
    height: 10px;
    border-left: 1px solid #e5e5e5;
    border-top: 1px solid #e5e5e5;
    transform: rotate(45deg);
    background-color: #fff;
    left: 45%;
    top: -7px;
}
.second-nav-container{
	position: fixed;
    display: none;
    width: 100%;
    left: 0;
    top: 6.2rem;
    line-height: 38px;
    height: 38px;
    -webkit-transtion: top .4s ease;
    transition: top .4s ease;
    background-color: #fff;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    z-index: 9;
}
.nav li.active,.nav li:hover{
	color: #ff9000;
}
.nav li.active>i,.nav li:hover>i{
	background: url(../img/arrow-icon-hover.png) no-repeat;
}
.nav li:last-child{
	padding-right: 0;
}
.second-nav-list{
	z-index: 10;
	position: absolute;
    display: none;
    height: 2rem;
    width: 32rem;
    line-height:2rem;
    bottom: -1.2rem;
    left: -13rem;
}
.second-nav-list .second-nav-item {
    float: left;
    line-height: 25px;
    margin: 0 .6rem;
    margin-top: 10px;
    color: #333;
    font-size: 1rem;
    width: 7rem;
}
.second-nav-list .second-nav-item:first-child{
	margin-left: 0;
}
.login{
	display: inline-block;
	width: 340px;
	height: 100%;
	text-align: right;
}
.login input{
	width: 82px;
	float: left;
	height: 30px;
	border: 1px solid #ff9000;
	border-radius: 1px;
	background: #fff;
	cursor: pointer;
	color: #FF9000;
	margin-top: 30px;
}
.login input:first-child{
	margin-right: 20px;
}
.login input.active{
	color: #fff;
	background: #ff9000;
}
.login input:hover{
	color: #fff;
	background: #ff8000;
}

/*头部二级菜单*/
.sub_nav_box {
    display: none;
    background-color: #fff;
    position: absolute;
    top: 72px;
    left: -20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    z-index: 9;
}
ul.sub_nav {
    min-width: 150px;
    float: inherit;
}
ul.sub_nav li {
    float: inherit;
    height: 42px;
    line-height: 42px;
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: left;
    border-bottom: 1px #e5e5e5 solid;
}
ul.sub_nav li:first-child{
	margin-left: 0;
}
ul.sub_nav li a, ul.normal li.active ul.sub_nav li a {
    display: block;
    font-size: 14px;
    white-space: nowrap;
    color: #333;
    padding: 0 20px;
    border-top: none;
}
ul.sub_nav li a {
    padding: 0 0 0 20px;
    transition: all 0.2s ease-out 0s;
}
ul.sub_nav li a:hover {
    text-indent: 10px;
}
ul.sub_nav li a:hover, ul.normal li.active ul.sub_nav li a:hover ,ul.sub_nav li a.active{
    color: #ff9000;
    border-top: none;
}
ul.sub_nav li a em {
    float: right;
    width: 7px;
    height: 8px;
    background: url(../img/bar_show.png) right -16px no-repeat;
    display: inline-block;
    margin-top: 18px;
    margin-right: 20px;
    transition: all ease-out .2s;
    opacity: 0;
}
ul.sub_nav li a:hover em,ul.sub_nav li a.active em{
	opacity: 1;
}


/*底部公共*/
.footer{
	width: 100%;
	height: 290px;
	background: url(../img/footer.png) no-repeat;
}
.footerBox{
	height: 100%;
	position: relative;
}
.footerBox ul{
	width: 1100px;
	margin: auto;
	overflow: hidden;
	list-style: none;
}
.footerBox ul li{
	float: left;
}
.footerBox ul li:first-child{
	height: 180px;
	border-left: 1px solid #8a9198;
	margin-top: 30px;
	padding-left: 80px;	
}
.footerBox ul li:first-child p{
	line-height: 25px;
}
.footerBox ul li P{
	font-size: 14px;
	color: #fff;
	line-height: 30px;
}
.footerBox ul li:first-child P:before{
	content: ".";
	font-size: 50px;
	margin-top: -3px;
	padding-right: 10px;
}
.footerBox ul li P:first-child{
	font-size: 30px;
	color: #fff;
	padding-bottom: 10px;
}
.footerBox ul li:last-child P:first-child{
	margin-top: 4px;
}
.footerBox ul li P:first-child:before{
	content: "";
}
.footerBox ul li:first-child P:first-child{
	margin-left: -10px;
	margin-top: -3px;
	line-height: 30px;
}

.footerBox ul li:nth-child(2){
	height: 180px;
	border: 1px solid #8a9198;
	margin-left: 80px;
	margin-top: 30px;
	padding:0 80px;	
	border-bottom: none;
	border-top: none;
}
.footerBox ul li:nth-child(2) p{
	padding-left: 25px;
	line-height: 40px;
}
.footerBox ul li:nth-child(2) p:first-child{
	padding-left: 0;
}
.footerBox ul li:nth-child(2) p.tel{
	background: url(../img/tel.png) no-repeat;
	background-size: 12px 13px;
	background-position: 5px;
}
.footerBox ul li:nth-child(2) p.email{
	background: url(../img/email.png) no-repeat;
	background-size: 13px 10px;
	background-position: 5px;
}
.footerBox ul li:nth-child(2) p.address{
	background: url(../img/address.png) no-repeat;
	background-size: 9px 14px;
	background-position: 5px;
}
.footerBox ul li:nth-child(3){
	height: 180px;
	border-right: 1px solid #8a9198;
	margin-top: 30px;
	padding:0 80px;		
}
.footerBox ul li:nth-child(3) div{
	width: 80px;
	height: 95px;
	border-radius: 3px;
	background: #fff;
	float: left;
	margin-top: 18px;
}
.footerBox ul li:nth-child(3) div:nth-child(3){
	position: relative;
	left: 10px;
}
.footerBox ul li:nth-child(3) div img{
	margin-left: 3px;
	width: 73px;
}
.footerBox ul li:nth-child(3) div p{
	font-size: 12px;
	color: #333;
	margin: -8px 0 0 9px;
}
.footerBox ul li:nth-child(3) div:last-child p{
	margin: -8px 0 0 15px;
}
.footerBox .copy{
	font-family: "微软雅黑";
    font-size: 14px;
    color: #fff;
    position: absolute;
    bottom: 0px;
    /* left: 90px; */
    text-align: center;
    width: 100%;
    background: #000;
    height: 40px;
    line-height: 40px;
    opacity: 0.5;
    /* margin-top: 10px; */
}
.mobileHeader{
	display: none;
}

/*兼容pad pro*/ 
@media (min-width:970px) and (max-width:1099px){
	.headerBox {
	    width: 100%;
	    margin: auto;
	    height: 100%;
	}
	.logo {
	    width: 160px;
	    margin-left: 60px;
	}
	.nav{
		width: 580px;
	}
	.footerBox ul li:nth-child(1){
		padding-left: 50px;
	}
	.footerBox ul li:nth-child(2){
		margin-left: 50px;
    	padding: 0 50px;
	}
	.footerBox ul li:nth-child(3){
		padding: 0 50px;
	}
}
/*兼容pad mini*/ 
@media (min-width:768px) and (max-width:970px){
	#banner{
		margin-top: 66.875px;
	}
	.headerIcon{
		width: 200px;
    	height: 100%;
		background: url(../img/logo.png) no-repeat;
		margin-left: 20px;
		margin-top: 10px;
	}
	.mobileHeader {
	    display: block;
	    width: 100%;
	    height: 66.875px;
	    background: #fff;
	    opacity: .9;
	    position: fixed;
	    top: 0;
	    z-index: 999;
	}
	.header{
		display: none;
	}
}

/*兼容手机*/ 
@media screen and (max-width:767px) {
	.mobileHeader {
	    display: block;
	    width: 100%;
	    height: 66.875px;
	    background: #fff;
	    opacity: 1;
	    position: fixed;
	    top: 0;
	    z-index: 1;
	}
	.headerIcon{
		width: 120px;
    	height: 34px;
		background: url(../img/logo.png) no-repeat;
		background-size: 120px 34px;
		margin-left: 20px;
		margin-top: 12px;
	}
}

/*手机头部*/
.nav-bg {
    background-color: rgba(0,0,0,.7);
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.nav_icon {
    width: 100%;
    height: 50px;
    background: url(../img/logoSmall.png) no-repeat,#fff;
    background-size: 30px 30px;
    background-position: 48.5% 10px;
    position: fixed;
    top: 0px;
    left: 0;
    z-index: 99999;
}

div.burger {
    background: #fff;
    opacity: .9;
    right: 0;
    width: 46.875px;
    height: 46.875px;
    position: absolute;
    top: 5px;
    cursor: pointer;
}
div.x, div.y, div.z {
    height: 3px;
    width: 26px;
    left: 50%;
    margin-left: -13px;
    margin-top: 25%;
}
div.x, div.y, div.z {
    position: absolute;
    top: 0;
    bottom: 0;
    background: #FF9000;
    border-radius: 2px;
    -webkit-transition: all 200ms ease-out;
    -moz-transition: all 200ms ease-out;
    -ms-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}
div.rotate45 {
	-ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 100ms ease-out;
    -moz-transition: all 100ms ease-out;
    -ms-transition: all 100ms ease-out;
    -o-transition: all 100ms ease-out;
    transition: all 100ms ease-out;
}
div.collapse {
	 background: #333;       
    top: 50%;
    margin-top: -2px;
    -webkit-transition: all 70ms ease-out;
    -moz-transition: all 70ms ease-out;
    -ms-transition: all 70ms ease-out;
    -o-transition: all 70ms ease-out;
    transition: all 70ms ease-out;
}
div.rotate38 {
    -ms-transform: rotate(47deg);
    -webkit-transform: rotate(47deg);
    transform: rotate(47deg);
    -webkit-transition: all 50ms ease-out;
    -moz-transition: all 50ms ease-out;
    -ms-transition: all 50ms ease-out;
    -o-transition: all 50ms ease-out;
    transition: all 50ms ease-out;
}
div.rotate135 {
    -ms-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    -webkit-transition: all 100ms ease-out;
    -moz-transition: all 100ms ease-out;
    -ms-transition: all 100ms ease-out;
    -o-transition: all 100ms ease-out;
    transition: all 100ms ease-out;
}
div.rotate140 {
    -ms-transform: rotate(134deg);
    -webkit-transform: rotate(134deg);
    transform: rotate(134deg);
    -webkit-transition: all 50ms ease-out;
    -moz-transition: all 50ms ease-out;
    -ms-transition: all 50ms ease-out;
    -o-transition: all 50ms ease-out;
    transition: all 50ms ease-out;
}
div.y {
    top: 10px;
}

div.z {
    top: 22px;
}
div.menu-bg.animate {
	display: none;
    opacity: 1;
    -webkit-transition: all 400ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
    -moz-transition: all 400ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
    -ms-transition: all 400ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
    -o-transition: all 400ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
    transition: all 400ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
}
div.menu-bg {
    width: 60%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1001;
    background: #fff;
    opacity: 0;
    -webkit-transition: all 300ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
    -moz-transition: all 300ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
    -ms-transition: all 300ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
    -o-transition: all 300ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
    transition: all 300ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
}

/*移动端导航*/
div.menuMobile {
    height: 100%;
    width: 100%;
    position: fixed;
    right: 0;
    top: 50px;
    z-index: 1003;
    display: none;
    background: #fff;
    border-top: 1px solid #f1f1f1;
}
.menu-splitL, .menu-splitR {
    overflow: hidden;
    position: absolute;
    left: 0;
    font-style: normal;
    width: 100%;
}
div.menuMobile ul li {
	font-family: "SF Pro SC","HanHei SC","SF Pro Text","Myriad Set Pro","SF Pro Icons","PingFang SC","Helvetica Neue","Helvetica","Arial",sans-serif;
    list-style: none;
    width: 80%;
    margin-left: 10%;
    line-height: 60px;
    border-bottom: 1px solid #f1f1f1;
    text-align: left;
    font-size: 17px;
    -webkit-transition: all 150ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
    -moz-transition: all 150ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
    -ms-transition: all 150ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
    -o-transition: all 150ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
    transition: all 150ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
}
div.menuMobile li.animate {
    font-size: 19px;
    opacity: 1;
    -webkit-transition: all 200ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
    -moz-transition: all 200ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
    -ms-transition: all 200ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
    -o-transition: all 200ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
    transition: all 200ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
}
div.menuMobile li.animate a>i{
	display: inline-block;
	width: 9px;
	height: 6px;
	background: url(../img/arrow-icon.png) no-repeat;
}
.menu-splitL li:nth-of-type(1) {
    margin-left: 44px;
    transition-delay: .12s;
}
.menu-splitL li.animate:nth-of-type(1) {
    margin-left: 0;
    transition-delay: .0s;
}
div.menuMobile ul li a {
   	color: #333;
    text-transform: uppercase;
    text-decoration: none;
    text-align: left;
    /*margin-left: 20px;*/
}
.takePhone {
    width: 10%;
    position: absolute;
    bottom: 100px;
    right: 46%;
    opacity: .8;
}
a {
    text-decoration: none;
    color: #fff;
}
.takePhone img {
    width: 100%;
    height: 100%;
}


.nav-bg {
    background-color: rgba(0,0,0,.7);
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: none;
}
.nav_icon{
	width: 100%;
    height: 50px;
    background: url(../img/logoSmall.png) no-repeat,#fff;
    background-size: 30px 30px;
    background-position:48.5% 10px;
    position: fixed;
    top: 0px;
    left:0;
    z-index: 99999;
    display: none;
}
.nav_icon .closeIcon{
	width: 1.2rem;
    height: 1.2rem;
    background: url(../img/close.png) no-repeat;
    background-size: 1.2rem;
    position: fixed;
    top: 1.5rem;
    right: 20px;
    font-family: "微软雅黑";
}

/*二维码公用*/
.qrcode {
    position: relative;
    z-index: 2;
    width: 73px;
}

.realQrcode {
    width: 100%;
    height: 100%;
    position: fixed;
    opacity:0.01;
    z-index: -1;
    left: 0;
    top: 0;
}


/*移动端底部*/
.mobileFooter{
	width: 100%;
	height: 42rem;
	background: #515761;
	background-size: cover;
	position: relative;
	display: none;
}
.mobileFooter ul{
	list-style: none;
	color: #fff;
	padding-bottom: 1rem;
	border-bottom: 1px solid #666;
}
.mobileFooter ul li:nth-child(1),.mobileFooter ul li:nth-child(2){
	border-bottom: none;
	border-top: none;
	margin-left: 1.8rem;
}
.mobileFooter ul li:nth-child(1) p{
	padding-left: 25px;
	line-height: 2rem;
}
.mobileFooter ul li:nth-child(1) p:first-child{
	padding:1rem 0;
	font-size: 1.5rem;
}
.mobileFooter ul li:nth-child(1) p.tel{
	background: url(../img/tel.png) no-repeat;
	background-size: 12px 13px;
	background-position: 5px;
	font-size: 1rem;
    padding-left: 2rem;
}
.mobileFooter ul li:nth-child(1) p.email{
	background: url(../img/email.png) no-repeat;
	background-size: 13px 10px;
	background-position: 5px;
	background-position: 5px 5px;
    padding-bottom: 1rem;
}
.mobileFooter ul li:nth-child(1) p.address{
	background: url(../img/address.png) no-repeat;
	background-size: 9px 14px;
	background-position: 5px;
}

.mobileFooter ul li:nth-child(2) div{
	padding:0 0 1rem 0;
	font-size: 1.5rem;
}
.mobileFooter ul li:nth-child(2) p{
	float: left;
	padding-right: 1.8rem;
}
.mobileFooter ul li:nth-child(2){
	margin-top: 3rem
}
.mobileFooter ul li:nth-child(3){
	overflow: hidden;
    height: auto;
	margin-top: 3rem;
	margin-left: 1.8rem;	
}
.mobileFooter ul li:nth-child(3) p{
	padding:1rem 0;
	font-size: 1.5rem;
}
.mobileFooter ul li:nth-child(3) div{
	width: 80px;
	height: 95px;
	border-radius: 3px;
	background: #fff;
	float: left;
}
.mobileFooter ul li:nth-child(3) div:nth-child(3){
	position: relative;
	left: 10px;
}
.mobileFooter ul li:nth-child(3) div img{
	margin-left: 3px;
}
.mobileFooter ul li:nth-child(3) div p{
	font-size: 1rem;
	color: #333;
	margin: -1.2rem 0 0 9px;
}
.mobileFooter ul li:nth-child(3) div:last-child p{
	margin: -1.2rem 0 0 15px;
}
.mobileFooter .copy{
	font-size: 1rem;
	color: #fff;
	position: absolute;
	width: 90%;
	margin-left: 5%;
	text-align: center;
	margin-top: 2rem;
}
@media (min-width:970px) and (max-width:1099px){
	.footerBox ul{
		width: 90%;
    	margin-left: 5%;
	}    
	.footerBox ul li:first-child{
		margin-left: 0;
	}
}
@media (min-width:768px) and (max-width:970px){
	.footerBox{
		width: 100%;
	}
	.footerBox ul li:first-child{
		margin-left: 0;
		padding-left:20px;
	}
	.footerBox ul li:nth-child(2){
		margin-left: 20px;
		padding: 0 20px;
	}
	.footerBox ul li:nth-child(3){
		padding: 0 20px;
	}
	.footerBox .copy{
		width: 100%;
	    text-align: center;
	    left: 0;
	}
}
