﻿/*移动端头部*/
.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 .mobsearch{
	padding: 0 20px;
}
.mobheader .mobsearch a:hover svg path{
	fill: #ef0202;
}
.mobheader .moblan{
	height: 70px;
	padding: 0 20px;
	border-left: 1px solid rgba(0,0,0,0.1);
	border-right: 1px solid rgba(0,0,0,0.1);
	position: relative;
	z-index: 0;
	transition: all 0.4s ease;
}
.mobheader .moblan .item{
	line-height: 36px;
	transition: all 0.4s ease;
}
.mobheader .moblan .item img{
	height: 16px;
}
.mobheader .moblan .item span{
	font-size: 13px;
	margin-left: 8px;
}
.mobheader .moblan .list{
	display: block;
	width: 100%;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translate(-50%, 50px);
    opacity: 0;
    z-index: 10;
    background: rgba(12,15,26,0.95);
    pointer-events: none;
    transition: all 0.4s ease;
}
.mobheader .moblan .list a{
	display: block;
	padding: 15px 10px;
	font-size: 12px;
	color: #fff;
}
.mobheader .moblan .list a:first-child{
	border: none;
}
.mobheader .moblan:hover .item span{
	color: #ef0202;
	font-weight: bold;
}
.mobheader .moblan:hover:hover .list{
	transform: translate(-50%, 0);
	opacity: 1;
	pointer-events: auto;
}
.mobheader .moblan .list a:hover{
	background: #ef0202;
}
.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: 2px;
	background: #ef0202;
}
.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: 15px;
}

.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 .topsearch{
	padding: 0 16px;
	margin-top: 30px;
}
.mobnav .topsearch form input{
	width: calc(100% - 50px);
	line-height: 42px;
	border: 1px solid #dbdbdb;
	border-radius: 2px;
	padding: 0 12px;
	font-size: 13px;
}
.mobnav .topsearch form button{
	width: 44px;
	height: 44px;
	color: #fff;
	border-radius: 2px;
	font-size: 13px;
}
.mobnav .center {
	padding: 10px 16px 20px;
}
.mobnav .center .nav li {
	margin-top: 10px;
}
.mobnav .center .nav li h3 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 10px 10px 20px;
	background: #f5f5f5;
	border-radius: 2px;
}
.mobnav .center .nav li h3 a {
	display: block;
	text-align: center;
	font-size: 15px;
	line-height: 30px;
	color: #1a1a1a;
}
.mobnav .center .nav li h3 i {
	display: block;
	width: 34px;
    height: 34px;
    position: relative;
}
.mobnav .center .nav li h3 i:before,
.mobnav .center .nav li h3 i:after {
	content: "";
	background: #333;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	transition: all 0.4s;
}

.mobnav .center .nav li h3 i:before {
	width: 14px;
	height: 2px;
}

.mobnav .center .nav li h3 i:after {
	width: 2px;
	height: 14px;
}
.mobnav .center .nav li .m-subnav {
	padding: 12px 0;
	display: none;
}
.mobnav .center .nav li .m-subnav dl {
	margin: -5px;
}
.mobnav .center .nav li .m-subnav .list a{
	display: block;
	text-align: center;
    font-size: 14px;
    line-height: 46px;
    border-bottom: 1px dashed #dbdbdb;
    color: #666;
}
.mobnav .center .nav li .m-subnav .list a:hover{
	background: #ef0202;
	color: #fff;
}
.mobnav .center .nav li .m-subnav dl dd img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.mobnav .center .nav li .m-subnav dl dd a {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	width: 100%;
	height: 100%;
	font-size: 14px;
	line-height: 24px;
	background: rgba(0, 0, 0, 0.6);
	color: #fff;
	padding: 10px 20px;
	position: absolute;
	left: 0;
	top: 0;
}
.mobnav .center .nav li.on h3 a {
	color: #ef0202;
}
.mobnav .center .nav li.on h3 i {
	transform: rotate(135deg);
}
.mobnav .lan{
	line-height: 48px;
	width: calc(100% - 32px);
	margin: 0 auto;
	border-radius: 4px;
}
.mobnav .lan a{
	width: calc((100% - 4px) / 3);
	display: block;
	line-height: 46px;
	background: #0c0f1a;
	border-radius: 2px;
}
.mobnav .lan a:hover,
.mobnav .lan a.current{
	background: #ef0202;
}
.mobnav .lan:hover{
	background: #cd7e61;
}
.mobnav .bottom {
	padding: 30px 16px;
}
.mobnav .bottom dl dt{
	font-size: 20px;
	margin-bottom: 20px;
}
.mobnav .bottom dl dd{
	font-size: 13px;
	margin-bottom: 16px;
	color: #666;
}
.mobnav .bottom dl dd:last-child{
	margin-bottom: 0;
}
.mobnav .bottom dl dd i{
	margin-right: 8px;
}
.mobnav .bottom dl dd p a{
	font-size: 14px;
}
.mobnav .bottom dl dd p a:hover{
	color: #ef0202;
}

@media only screen and (max-width: 767px) {
	/*移动端头部*/
	.mobheader .mobhead .left {
	    padding: 0 16px;
	}
	.mobheader .mobhead .left img {
	    height: 24px;
	}
	.mobheader .mobsearch {
	    display: none;
	}
	.mobheader .mobhead .right .moblan {
	    height: 60px;
	    padding: 0 16px;
	}
	.mobheader .mobhead .right .moblan span {
	    line-height: 60px;
	    margin-left: 8px;
	}
	.mobheader .mobhead .right .mobmenu {
	    padding: 0 16px;
	}
	.mobheader .mobhead .right .mobmenu h4 {
	    font-size: 14px;
	}
	.mobnav{
		width: 100%;
	}
	.mobnav .top {
	    height: 60px;
	}
	.mobnav .top .logo img{
		height: 24px;
	}
}