﻿/*移动端头部*/
.mobheader{
	display: none;
}
@media only screen and (max-width: 1023px) {
	.mobheader{
		display: block;
	}
	.mobheader.scrollTop .mobhead{
		background: rgba(255,255,255,1);
		box-shadow: 0 0 80px 0 rgba(0,0,0,0.06);
	}
	
}

.mobheader{
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99999;
	transition: all 0.4s ease;
}
.mobheader .mobhead{
	background: rgba(255,255,255,0.1);
	transition: all 0.4s;
	height: 70px;
}
.mobheader .mobhead .logo {
	padding: 0 20px;
}
.mobheader .mobhead .logo img{
	height: 30px;
}
.mobheader .search form{
	background: #f5f5f5;
	border-radius: 2px;
	transition: all 0.4s ease;
	width: 280px;
}
.mobheader .search form input{
	line-height: 36px;
	font-size: 12px;
	padding: 0 12px;
	width: calc(100% - 40px);
}
.mobheader .search form button{
	width: 40px;
	color: #808080;
}
.mobheader .mobhead .menu{
	padding: 0 20px;
}
.mobheader .mobhead .menu dl {
	transform: rotateY(180deg);
	margin-right: 10px;
	width: 30px;
}
.mobheader .mobhead .menu dl dd {
	width: 0;
	height: 1px;
	background: #005da3;
}
.mobheader .mobhead .menu dl dd:first-child {
	animation: sjnav 2.4s linear infinite;
}
.mobheader .mobhead .menu dl dd:nth-child(2) {
	margin: 6px 0;
	width: 20px;
}
.mobheader .mobhead .menu dl dd:last-child {
	animation: sjnav 2.4s linear infinite;
	animation-delay: 0.4s;
}
.mobheader .mobhead .menu h3{
	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: 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: 60px;
	padding: 0 16px 0 20px;
}
.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: 30px 20px;
}
.mobnav .bottom form{
	background: #f5f5f5;
	border-radius: 2px;
	transition: all 0.4s ease;
	width: 100%;
}
.mobnav .bottom form input{
	line-height: 36px;
	font-size: 12px;
	padding: 0 12px;
	width: calc(100% - 40px);
}
.mobnav .bottom form button{
	width: 40px;
	color: #808080;
}
.mobnav .bottom .nav{
	margin-top: 10px;
}
.mobnav .bottom .nav li {
	padding: 10px 0;
	border-bottom: 1px solid #dbdbdb;
}
.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: 14px;
	line-height: 32px;
	color: #1a1a1a;
}
.mobnav .bottom .nav li h3 em{
	width: 20px;
	height: 20px;
	font-size: 12px;
}
.mobnav .bottom .nav li .m-subnav{
	display: none;
}
.mobnav .bottom .nav li .m-subnav a {
	display: block;
	line-height: 24px;
	margin: 10px 0;
	color: #999;
	padding-left: 20px;
	position: relative;
	font-size: 12px;
}
.mobnav .bottom .nav li .m-subnav a:before{
	content: "";
	width: 8px;
	height: 8px;
	border: 1px solid #CCCCCC;
	border-radius: 50%;
	position: absolute;
	left: 4px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.4s;
}
.mobnav .bottom .nav li .m-subnav a:after{
	content: "";
    width: 4px;
    height: 4px;
    background: #CCCCCC;
    border-radius: 50%;
    position: absolute;
    left: 7px;
    top: 50%;
	transform: translateY(-50%);
    transition: all 0.4s;
}
.mobnav .bottom .nav li h3 a:hover,
.mobnav .bottom .nav li.on h3 a{
	color: #005da3;
}
.mobnav .bottom .nav li.on h3 em i {
	transform: rotate(180deg);
}
.mobnav .bottom .nav li .m-subnav a:hover{
	color: #005da3;
}
.mobnav .bottom .nav li .m-subnav a:hover:before{
	border-color: #005da3;
}
.mobnav .bottom .nav li .m-subnav a:hover:after{
	background: #005da3;
}

.mobnav .bottom .info{
	margin-top: 30px;
}
.mobnav .bottom .info dt{
	font-size: 15px;
	padding-bottom: 4px;
}
.mobnav .bottom .info dd{
	margin: 16px 0;
}
.mobnav .bottom .info dd a{
	color: #005da3;
}

@media only screen and (max-width: 640px) {
	.mobheader .mobhead {
	    height: 60px;
	}
	.mobheader .mobhead .logo {
	    padding: 0 16px;
	}
	.mobheader .search{
		display: none;
	}
	.mobheader .mobhead .menu {
	    padding: 0 16px;
	}
	.mobnav {
    	width: 80%;
    }
    .mobnav .top {
	    height: 56px;
	    padding: 0 12px 0 16px;
	}
	.mobnav .bottom {
	    padding: 30px 16px;
	}
}