﻿/*移动端头部*/
.mobheader{
	display: none;
}
@media only screen and (max-width: 1023px) {
	.mobheader{
		display: block;
	}
	.mobheader.scrollTop{
		top: -50px;
	}
	.mobheader.scrollTop .top{
		top: -50px;
	}
	.mobheader.scrollTop > .bottom .pclogo img {
	    height: 40px;
	}
	.mobheader.scrollTop > .bottom .pcnav .nav li>a h3 {
	    line-height: 80px;
	}
}

.mobheader{
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99999;
	transition: all 0.4s ease;
	box-shadow: 0 0 20px 0 rgba(0,0,0,0.04);
}
.mobheader > .top ul li{
	margin-right: 30px;
}
.mobheader > .top ul li:first-child{
	display: none;
}
.mobheader > .top ul li h3{
	margin-left: 10px;
	font-size: 14px;
	line-height: 50px;
}
.mobheader > .top ul li h3 a:hover{
	color: #9ad41f;
}
.mobheader > .top a:hover{
	text-decoration: underline;
}
.mobheader > .bottom{
	transition: all 0.4s ease;
	position: relative;
	z-index: 0;
}
.mobheader > .bottom:before {
    content: "";
    width: 100%;
    height: 100%;
    background: #fff;
    position: absolute;
    left: 30%;
    top: 0;
    transform: skewX(-50deg);
    z-index: -1;
}

.mobheader .bottom .mobhead .logo {
	padding: 0 20px;
}
.mobheader .bottom .mobhead .logo img{
	height: 30px;
}
.mobheader .bottom .mobhead .right .mobmenu{
	padding: 0 20px;
}
.mobheader .bottom .mobhead .right .mobmenu h3{
	font-size: 16px;
	line-height: 70px;
	margin-left: 10px;
}
.mobmask {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 1000;
	width: 100%;
	height: 100vh;
	background: rgba(19,29,46, 0.8);
	transition: all 0.5s;
	visibility: hidden;
	opacity: 0;
	transition-delay: 0.2s;
}
.mobmask.active {
	opacity: 1;
	visibility: visible;
}
.mobnav {
	width: 40%;
	height: 100vh;
	background: #FFFFFF;
	position: fixed;
	z-index: -1;
	top: 0;
	right: -40%;
	overflow-y: auto;
	opacity: 0;
	transition: all 0.3s;
	pointer-events: none;
}
.mobnav.active {
	transition-delay: 0.3s;
	opacity: 1;
	right: 0;
	z-index: 99999;
	pointer-events: auto;
}
.mobnav .top {
	height: 50px;
	padding: 0 12px 0 16px;
}
.mobnav .top h3{
	font-size: 16px;
}
.mobnav .top .mobnavclose {
	width: 30px;
	height: 30px;
	position: relative;
}
.mobnav .top .mobnavclose:before,
.mobnav .top .mobnavclose:after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background: #fff;
	border-radius: 2px;
}
.mobnav .top .mobnavclose:before {
	width: 20px;
	height: 2px;
	transform: translate(-50%, -50%) rotate(45deg);
}
.mobnav .top .mobnavclose:after {
	width: 2px;
	height: 20px;
	transform: translate(-50%, -50%) rotate(225deg);
}
.mobnav .bottom {
	padding: 6px 16px 28px;
}
.mobnav .bottom .nav li {
	margin: 15px 0;
}
.mobnav .bottom .nav li h3 {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.mobnav .bottom .nav li h3 a {
	display: block;
	text-align: center;
	font-size: 16px;
	line-height: 30px;
	color: #1a1a1a;
}
.mobnav .bottom .nav li h3 em{
	width: 24px;
	height: 24px;
	border-radius: 2px;
	font-size: 14px;
	display: none;
}
.mobnav .bottom .nav li .m-subnav {
	border-bottom: 1px solid #dbdbdb;
	padding-bottom: 5px;
}
.mobnav .bottom .nav li .m-subnav a {
	display: block;
	text-transform: capitalize;
	line-height: 22px;
	margin: 10px 0;
	padding-left: 12px;
	position: relative;
	font-size: 14px;
}
.mobnav .bottom .nav li .m-subnav a:before{
	content: "";
	width: 6px;
	height: 6px;
	background: #dbdbdb;
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 8px;
	transition: all 0.4s;
}
.mobnav .bottom .nav li h3 a:hover,
.mobnav .bottom .nav li.on h3 a{
	color: #f04b1f;
}
.mobnav .bottom .nav li.on h3 em i {
	transform: rotate(180deg);
}
.mobnav .bottom .nav li .m-subnav a:hover{
	color: #f04b1f;
	text-decoration: underline;
}
.mobnav .bottom .nav li .m-subnav a:hover:before{
	background: #f04b1f;
}
.mobnav .bottom .lanlist a{
	width: calc((100% - 4px) / 2);
	margin: 2px 0;
	padding: 0 10px 0 20px;
	background: #131d2e;
	border-radius: 4px;
}
.mobnav .bottom .lanlist a img{
	width: 15px
}
.mobnav .bottom .lanlist a span{
	display: block;
	line-height: 45px;
	margin-left: 10px;
	color: #FFFFFF;
}
.mobnav .bottom .lanlist a:hover,
.mobnav .bottom .lanlist a.lan_current{
	background: #004ea2;
}

@media only screen and (max-width: 767px) {
	.mobheader.scrollTop {
	    top: -40px;
	}
	.mobheader > .top ul li{
		display: none;
		margin: 0;
	}
	.mobheader > .top ul li i svg{
		width: 12px;
		height: 12px;
	}
	.mobheader > .top ul li h3 {
	    margin-left: 8px;
	    font-size: 13px;
	    line-height: 40px;
	}
	.mobheader > .top ul li:first-child {
	    display: flex !important;
	}
	.mobheader > .bottom:before {
	    left: 40%;
	}
	.mobheader .bottom .mobhead .logo img {
	    height: 24px;
	}
	.mobheader .bottom .mobhead .right .mobmenu i svg{
	   width: 20px;
	   height: 20px;
	}
	.mobheader .bottom .mobhead .right .mobmenu {
	    padding: 0 16px;
	}
	.mobheader .bottom .mobhead .right .mobmenu h3 {
	    font-size: 14px;
	    line-height: 60px;
	    margin-left: 8px;
	}
	.mobnav{
		width: 80%;
	}
	.mobnav .top {
	    padding: 0 12px 0 16px;
    }
	.mobnav .bottom .nav li {
	    margin: 12px 0;
	}
}