.i-main{
	padding-top: 0;
	overflow: hidden;
}
@media screen and (max-width:1024px) {
	#headerCon,.index-banner,.index-content,.aboutUs-content{
		display: none;
	}
}
@media screen and (min-width:1024px) {
	.mo-banner,.moMain{
		display: none;
	}
	
}

/*咨询弹窗*/
.mobile-popup{
	width: 100%;
	height:100vh;
	background-color: rgba(0,0,0,0.6);
	position: fixed;
	left: 0;
	top:0;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	visibility: hidden;
	z-index: 10000;
}
.mobile-popup.on,.consult-popup-box.on{
	animation: popupanion 0.6s ease-in-out;
	animation-fill-mode: forwards;
}
.mobile-popup.off,.consult-popup-box.off{
	animation: popupanioff 0.6s ease-in-out;
	animation-fill-mode: forwards;
}
@keyframes popupanion{
	from{ opacity: 0; visibility: hidden;}
	to{ opacity:1; visibility: visible;}
}
@keyframes popupanioff{
	from{ opacity: 1; visibility: visible;}
	to{ opacity: 0; visibility: hidden;}
}
.mo-popup-content{
	width:90%;
	padding: 40px 20px 20px;
	background-color: #fff;
	border-radius: 10px;
}
.mo-popup-content li{
	margin: 10px 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.mo-popup-content .label-name{
	width: 60px;
	font-size: 14px;
	text-align: right;
	color: #727272;
}
.mo-popup-content input,
.mo-popup-content textarea{
	width: calc(100% - 60px);
	padding: 8px 10px;
	font-size: 12px;
	outline: none;
	border:1px solid #C7C7C7;
	border-radius: 6px;
}
.mo-popup-content textarea{
	min-height: 100px;
	resize: none;
}
.mo-popup-content li.xq-li{
	align-items: flex-start;
}
.cancelBtn,.defineBtn{
	display: block;
	width: 80px;
	height: 40px;
	line-height: 40px;
	margin: 20px 10px 0;
	border:1px solid #000;
	border-radius: 8px;
	text-align: center;
	text-decoration: none;
}
.cancelBtn:hover,.defineBtn:hover{
	text-decoration: none;
	opacity: 0.8;
}
.cancelBtn,.cancelBtn:hover{
	background-color: #fff;
	border-color: #D9D9D9;
	color:#666;
}
.defineBtn,.defineBtn:hover{
	background-color: #3085ff;
	border-color: #3085ff;
	color:#fff;
}

/*PC*/
.consult-box,.consult-img{
	width: 130px;
	height:170px;
}
.consult-box{
	position: fixed;
	top: 50%;
	right:30px;
	z-index: 100;
}
.consult-img{
	cursor: pointer;
}

.consult-popup-box{
	position: fixed;
	opacity: 0;
	visibility: hidden;
}
.center-box{
	width: 100%;
	height:100vh;
	background-color: rgba(0,0,0,0.6);
	top:0;
	left: 0;
	z-index: 10000;
}
.center-box .consult-content{
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.center-box .consult-content ul{
	width: 30%;
}
.right-box .consult-content ul{
	position: fixed;
	top:50%;
	right: 158px;
	transform: translateY(-25%);
}
.consult-content ul{
	display: inline-block;
	padding: 20px;
	background-color: #fffef2;
	border:1px solid #e9e9e9;
	border-radius: 6px;
}
.consult-content li{
	margin: 10px 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.consult-content .label-name{
	width: 60px;
	font-size: 14px;
	text-align: right;
}
.consult-content li input,.consult-content li textarea{
	width: calc(100% - 60px);
	padding: 6px 10px;
	outline: none;
	border:1px solid #cccccc;
	border-radius: 4px;
}
.consult-content li.xq-li{
	align-items: flex-start;
}
.consult-content li textarea{
	min-height: 80px;
	resize: none;
}
.carousel-inner .item .row {
	display: flex;
	justify-content: center;
	align-items: center;
}

/*2021-04-14添加二维码*/
.ervm-mark{
	width: 100%;
	height:100%;
	background: rgba(0,0,0,0.6);
	position: fixed;
	top:0;
	left: 0;
	z-index: 10000;
	display: none;
}
.ervm-box{
    width:260px;
	padding: 20px 40px;
	text-align: center;
	box-sizing: border-box;
	background-color: #fff;
	border-radius: 20px;
	box-shadow: 0 0 10px rgba(0,0,0,0.3);
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 10000;
    font-size: 0;
    display: none;
}
.ervm-box img{
	display: block;
    width: 100%;
    height: 100%;
    font-size: 0;
}
.ervm-box p{
	margin-top: 20px;
	font-size: 18px;
	color: #333;
}
.close-popupervm{
	float: right;
	cursor: pointer;
	position: relative;
	top:-50px;
	right:-70px;
	background-color: transparent;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 2px solid #fff;
}
.close-popupervm::before,.close-popupervm::after{
	content: '';
	width:2px;
	height:20px;
	background-color: #fff;
	position: absolute;
	top:2px;
}
.close-popupervm:hover{
    border-color: #4c74f7;
}
.close-popupervm:hover::before,.close-popupervm:hover::after{
	background-color: #4c74f7;
}
.close-popupervm::before{
	left: 12px;
	transform: rotate(45deg);
}
.close-popupervm::after{
	right:12px;
	transform: rotate(-45deg);
}
.footer .container > div a:hover{
	text-decoration: underline;
}
.footer .container > div:last-child a:hover{
	cursor: default;
	text-decoration: none;
}
.tab_content a:hover,.tab_content a:active{
	text-decoration: none;
}
.ervm-box1{
	display: none;
}
.scancodeBtn1:hover .ervm-box1{
	display: block;
}
.moFoot-warp .fl-txt{
	font-size:14px;
	color:rgba(255,255,255,0.7);
}
.moFoot-warp .fl-txt .copyright{
	text-align:center; 
	padding-top: 20px; 
	border-top:1px solid rgba(255,255,255,0.2);
}
.moFoot-warp .fl-txt .copyright a{
	display:block;
	color:rgba(255,255,255,0.7);
}
.footer .new-foot-tab-item-show li:hover a.mailto{
    cursor: pointer;
    text-decoration: underline;
}
.company-profile{
    padding-top:450px;
    background: url(http://qn-oss.wukongkeyan.com/296.png) no-repeat;
}