﻿/*移动端头部*/
.mobheader .mobhead {
	display: flex;
	width: 100%;
	background: #fff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.06);
}
.mobheader .mobhead .logo {
	padding: 0 20px;
}
.mobheader .mobhead .logo img{
	height: 30px;
}

.mobheader .moblan{
	height: 70px;
	margin-right: 30px;
}
.mobheader .moblan a{
	display: block;
    width: 80px;
    line-height: 32px;
    border-radius: 50px;
    background: #f68b1f;
    font-size: 12px;
    text-transform: uppercase;
}
.mobheader .mobhead .right .mobmenu{
	padding: 0 20px;
}
.mobheader .mobhead .right .mobmenu dl {
	transform: rotateY(180deg);
	margin-right: 10px;
	width: 30px;
}
.mobheader .mobhead .right .mobmenu dl dd {
	width: 0;
	height: 1px;
	background: #fff;
}
.mobheader .mobhead .right .mobmenu dl dd:first-child {
	animation: sjnav 2.4s linear infinite;
}
.mobheader .mobhead .right .mobmenu dl dd:nth-child(2) {
	margin: 6px 0;
	width: 20px;
}
.mobheader .mobhead .right .mobmenu dl dd:last-child {
	animation: sjnav 2.4s linear infinite;
	animation-delay: 0.4s;
}
.mobheader .mobhead .right .mobmenu h4 {
	font-size: 14px;
}
.mobmask {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 1000;
	width: 100%;
	height: 100vh;
	background: rgba(7, 16, 26, 0.8);
	transition: all 0.5s;
	visibility: hidden;
	opacity: 0;
	transition-delay: 0.2s;
}
.mobmask.active {
	opacity: 1;
	visibility: visible;
}
.mobnav {
	width: 50%;
	height: 100vh;
	background: #FFFFFF;
	position: fixed;
	z-index: -1;
	top: 0;
	left: -50%;
	overflow-y: auto;
	opacity: 0;
	transition: all 0.3s;
}
.mobnav.active {
	transition-delay: 0.3s;
	opacity: 1;
	left: 0;
	z-index: 99999;
}
.mobnav .top {
	height: 70px;
	padding: 0 16px;
	position: sticky;
	top: 0;
	z-index: 9999;
	background: #fff;
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.06);
}
.mobnav .top .logo img{
	height: 30px;
}
.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: #333;
	border-radius: 1px;
}
.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 .center {
	padding: 20px 16px;
}
.mobnav .center .nav li {
	margin: 10px 0;
}
.mobnav .center .nav li a{
	display: block;
	background: #f5f5f5;
	line-height: 50px;
	font-size: 15px;
}
.mobnav .center .nav li a:hover{
	color: #fff;
	background: #223f9b;
}

.mobnav .lan a{
	background: #f68b1f;
	display: block;
	line-height: 50px;
	font-size: 15px;
}
.mobnav .bottom{
	padding: 30px 16px;
}
.mobnav .bottom .info h3{
	font-size: 18px;
	margin-bottom: 12px;
}
.mobnav .bottom .info p{
	line-height: 24px;
}
.mobnav .bottom dl{
	margin-top: 16px;
}
.mobnav .bottom dl dt{
	border: 1px solid #dbdbdb;
	margin-right: 16px;
}
.mobnav .bottom dl dt img{
	width: 90px;
}
.mobnav .bottom dl dd span{
	display: block;
	color: #223f9b;
	font-size: 16px;
}
.mobnav .bottom dl dd p{
	color: #1a1a1a;
	margin: 20px 0 10px;
}
.mobnav .bottom dl dd a{
	display: block;
	color: #f68b1f;
	font-size: 22px;
	font-weight: bold;
}

@media only screen and (max-width: 767px) {
	/*移动端头部*/
	.mobheader .mobhead .left {
	    padding: 0 16px;
	}
	.mobheader .mobhead .left img {
	    height: 24px;
	}
	.mobheader .mobhead .right .moblan {
	    height: 60px;
	    margin-right: 16px;
	}
	.mobheader .moblan a {
	    line-height: 30px;
	}
	.mobheader .mobhead .right .mobmenu {
	    padding: 0 16px;
	}
	.mobnav{
		width: 100%;
	}
	.mobnav .top {
	    height: 60px;
	}
	.mobnav .top .logo img{
		height: 24px;
	}
}