*{
	padding: 0;
	margin: 0;
    font-family:sans-serif, "BlueSkyStandard","Microsoft Yahei",Palatino,Arial;
	font-size: 14px;
}

/*手机菜单*/
.mobile{
	width: 100%;
}
.mobile-inner{
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	background-color: #fafafa;
	position: relative;
}
.mobile-inner .logo{
	margin-left: 10%;
	display: inline-block;
	line-height: 50px;
}
.mobile-inner .logo img{
	width: 140px;
}
.mobile-inner p{
	color: #676767;
	line-height: 25px;
	font-size: 16px;
	padding-bottom: 30px;
	padding-right: 30px;
	padding-left: 30px;
	margin:0px;
}
.mobile-inner-header{
	background-color: rgba(0,0,0,0.9);
	width: 100%;
	height: 50px;
	position: absolute;
	top: 0px;
	left: 0px;
}
.mobile-inner-header-icon{
	color: #ffffff;
	height: 50px;
	font-size:25px;
	text-align: center;
	float:right;
	width: 90px;
	position: relative;
	-webkit-transition: background 0.5s;
	-moz-transition: background 0.5s;
	-o-transition: background 0.5s;
	transition: background 0.5s;
}
.mobile-inner-header-icon:hover{
	background-color: rgba(255,255,255,0.2);
	cursor: pointer;
}
.mobile-inner-header-icon span{
	position: absolute;
	left: calc((100% - 25px) / 2);
	top: calc((100% - 1px) / 2);
	width: 25px;
	height: 1px;
	background-color: rgba(255,255,255,1);
}
.mobile-inner-header-icon span:nth-child(1){
	transform: translateY(8px) rotate(0deg);
}
.mobile-inner-header-icon span:nth-child(3){
	transform: translateY(-8px) rotate(0deg);
}




	
.mobile-inner-header-icon-click span:nth-child(1){
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: clickfirst;
	}		
.mobile-inner-header-icon-click span:nth-child(2){
	opacity: 0;
}
.mobile-inner-header-icon-click span:nth-child(3){
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: clicksecond;
	}
	


@keyframes clickfirst {
  0% {
	  transform: translateY(8px) rotate(0deg);
	  
  }

  100% {
    transform: translateY(0) rotate(45deg);
  }
}	



@keyframes clicksecond {
  0% {
	  transform: translateY(-8px) rotate(0deg);
  }

  100% {
    transform: translateY(0) rotate(-45deg);
  }
}	

.mobile-inner-header-icon-out span:nth-child(1){
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: outfirst;
	}		
.mobile-inner-header-icon-out span:nth-child(3){
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: outsecond;
	}

@keyframes outfirst {
  0% {
    transform: translateY(0) rotate(-45deg);
  }

  100% {
    transform: translateY(-8px) rotate(0deg);
  }
}	



@keyframes outsecond {
  0% {
    transform: translateY(0) rotate(45deg);
  }

  100% {
    transform: translateY(8px) rotate(0deg);
  }
}

.mobile-inner-nav{
	background-color: rgba(0,0,0,0.9);
	width: 100%;
	position: absolute;
	top: 50px;
	left: 0px;
	height: calc(100vh - 50px);
	padding-top: 30px;
}
.mobile-inner-nav a,
.mobile-inner-nav div{
	display: inline-block;
	line-height: 50px;
	text-decoration: none;
	width: 80%;
	margin-left: 10%;
	color: #FFFFFF;
	border-bottom: solid 1px rgba(255,255,255,0.3);
	-webkit-transition: all 0s;
	-moz-transition: all 0s;
	-o-transition: all 0s;
	transition: all 0s;
	font-weight:300;
}
.mobile-inner-nav a:hover{
	color: rgba(255,255,255,0.4);
	border-bottom: solid 1px rgba(255,255,255,0.2);
}
.mobile-inner-nav a,
.mobile-inner-nav div{
		 
		  -webkit-animation-fill-mode: both;
		  animation-fill-mode: both;
		  -webkit-animation-name: bounceInLeft;
		  animation-name: bounceInLeft;
		}

			
		@-webkit-keyframes bounceInLeft {
		  from, 60%, 75%, 90%, to {
		    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		  }

		  from {
		    opacity: 0;
		    -webkit-transform: translate3d(-3000px, 0, 0);
		    transform: translate3d(-3000px, 0, 0);
		  }

		  60% {
		    opacity: 1;
		    -webkit-transform: translate3d(25px, 0, 0);
		    transform: translate3d(25px, 0, 0);
		  }

		  75% {
		    -webkit-transform: translate3d(-10px, 0, 0);
		    transform: translate3d(-10px, 0, 0);
		  }

		  90% {
		    -webkit-transform: translate3d(5px, 0, 0);
		    transform: translate3d(5px, 0, 0);
		  }

		  to {
		    -webkit-transform: none;
		    transform: none;
		  }
		}

		@keyframes bounceInLeft {
		  from, 60%, 75%, 90%, to {
		    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		  }

		  from {
		    opacity: 0;
		    -webkit-transform: translate3d(-3000px, 0, 0);
		    transform: translate3d(-3000px, 0, 0);
		  }

		  60% {
		    opacity: 1;
		    -webkit-transform: translate3d(25px, 0, 0);
		    transform: translate3d(25px, 0, 0);
		  }

		  75% {
		    -webkit-transform: translate3d(-10px, 0, 0);
		    transform: translate3d(-10px, 0, 0);
		  }

		  90% {
		    -webkit-transform: translate3d(5px, 0, 0);
		    transform: translate3d(5px, 0, 0);
		  }

		  to {
		    -webkit-transform: none;
		    transform: none;
		  }
		}





.bgmask{
	/*background-color: rgba(0,0,0,0.7);*/
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}








/*footer*/
footer{
	clear: both;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: #fff;
}
footer .content{
	max-width: 1250px;
	margin:0px auto;
	position: relative;
}
footer .icp{
	background-color: #0f1111;
	padding: 10px 0;
}
footer .icp span,
footer .icp a{
	color: #7f857e;
	font-size: 12px;
	margin: 0;
	    font-family: "Microsoft YaHei";
    font-weight: lighter;
}
footer .content.tp{
	padding: 50px 0;
	margin: 0px auto;
	height: 117px;
}
footer .content ul{
	display: inline-block;
	vertical-align: top;
	margin-right: 76px;
}
footer .content ul li{
	font-size: 16px;
	font-family: "Microsoft YaHei";
	font-weight:lighter;
}
footer .content ul li:nth-child(1){
	margin-bottom: 25px
}
footer ul li a{
	color: #99a1a2;
	font-size: 13px;
	margin-bottom: 15px;
	display: block;
	font-family: "Microsoft YaHei";
	font-weight:lighter;
}
.footeright{
	float: right;
}
.footerimg{
	vertical-align: top;
	width: 117px
}
.footertext{
	display: inline-block;
	vertical-align: -12px;
	text-align: right;
	margin-right: 54px;
}
.footertext p:nth-child(1){
	font-size: 16px;
	margin-bottom: 15px;
	    font-family: "Microsoft YaHei";
    font-weight: lighter;
}
.footertext p:nth-child(2) a{
	font-size: 30px;
	font-weight: bold;
	display: block;
	margin-bottom: 10px;
}
.footertext p:nth-child(3){
	color: #99a1a2;
	font-size: 13px;
	    font-family: "Microsoft YaHei";
    font-weight: lighter;
}
.footerimgmb{
	display: none;
}


@media screen and (max-width: 1250px){
	footer .icp .content span{
		margin-left: 10vw;
	}
	footer .content.tp{
		padding: 50px 0;
		margin: 0px 5vw;
		height: 117px;

	}
}
@media screen and (max-width: 1024px){
	footer .content ul{
		margin-right: 30px;
	}
	.footertext{
		margin-right: 30px;
	}
}

@media screen and (max-width: 768px){
	footer .content ul{
		margin-right: 30px;
	}
	
	.footeright{
		display: none;
	}
	.footerimgmb{
		display: inline-block;
	}
	
	.footertext{
		text-align: left;
		float: none;
		display: inline-block;
		width: 50%;
	}
	.footertext{
		margin-right: 0;
	}
	footer .content.tp{
		height: auto;
	}
}
@media screen and (max-width: 475px){
	.footertext{
		width: 100%;
	}
	.footerimgmb{
		display: block;
		width: 100%;
	}
	footer .icp .content span{
		margin: 0;
	}
	.icp{
		text-align: center;
	}
	footer .content{
		margin: 0px 5vw;
	}
}
.mobile{
	display: none;
}
@media screen and (max-width: 1024px){
	header .menu.pc{
		display: none;
	}
	.menu-mobile{
		display: block;
	}
	header{
		height: 0
	}
}







header{
	position: fixed;
	top: 0px;
	right: 0px;
	left: 0px;
	height: 80px;
	z-index: 500;
}
header .menu .menu-content{
	max-width: 1250px;
	line-height: 10px;
	height: 80px;
	overflow: hidden;
	margin: auto;
	display: flex;
	align-items: center;
}
header .menu{
	transition:all 0.8s ease-out;
	-moz-transition:all 0.8s ease-out; /* Firefox 4 */
	-webkit-transition:all .8s ease-out; /* Safari and Chrome */
}
header .menu.type-blue{
	background-color: rgba(0,0,0,0.13);
}
header .menu.type-white{
	background-color: rgba(255,255,255,0.97);
}

header .menu ul li{
	display: inline-block;
	vertical-align: middle;
	line-height: 80px;
	margin-left: 60px;
	position: relative;
}
header .menu a{
	display: inline-block;
	line-height: 50px;
}
header .menu ul{
	float: right;
}

header .menu ul span{
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;
}
header .menu ul span{
	vertical-align: 6px;
}
ul{
	list-style: none;
}
img{
	vertical-align: middle;
	display: inline-block;
	border:none;
}
a{
	text-decoration: none;
	color: #000;
}
body,html{
	height: 100%;
	width: 100%;
}
@media screen and (min-width: 1024px){
	.pc{
		display: block;
	}
	.mobile{
		display: none;
	}
}
@media screen and (max-width: 1024px){
	.pc{
		display: none
	}
	.mobile{
		display: block;
	}
}
.type-blue a {
    color: #fff;
    font-size: 14px;
    font-family: "Microsoft YaHei";
    font-weight: lighter;
}
.bgmain{
	background-image: url(../image/pcbg.png);
	height: 100%;
	width: 100%;
	background-size: cover;
	background-position: center;
}
.wbg .page{
	background-color: #f5f5f5;
}

.bgmain .el-input--prefix .el-input__inner,
.wbg .el-input--prefix .el-input__inner{
	padding-left: 54px;
}
.bgmain .el-button--primary {
    color: #FFF;
    background-color: #0F75E7;
    border-color: #0F75E7;
}
}
.wbg .el-button--primary {
    color: #FFF;
    background-color: #0F75E7;
    border-color: #0F75E7;
}

.el-icon-user-yf:before {
	content: '';
	width: 100%;
	height: 100%;
	background-image: url(../image/icon2.png);
	background-size: contain;
	background-position: center;
	display: inline-block;
	vertical-align: middle;
    background-repeat: no-repeat;
    margin: 0 10px;
}
.el-icon-yf-1:before {
	content: '';
	width: 100%;
	height: 100%;
	background-image: url(../image/icon5.png);
	background-size: contain;
	background-position: center;
	display: inline-block;
	vertical-align: middle;
    background-repeat: no-repeat;
    margin: 0 10px;
}
.el-icon-yf-2:before {
	content: '';
	width: 100%;
	height: 100%;
	background-image: url(../image/icon6.png);
	background-size: contain;
	background-position: center;
	display: inline-block;
	vertical-align: middle;
    background-repeat: no-repeat;
    margin: 0 10px;
}
.el-icon-yf-3:before {
	content: '';
	width: 100%;
	height: 100%;
	background-image: url(../image/icon7.png);
	background-size: contain;
	background-position: center;
	display: inline-block;
	vertical-align: middle;
    background-repeat: no-repeat;
    margin: 0 10px;
}
.el-icon-yf-4:before {
	content: '';
	width: 100%;
	height: 100%;
	background-image: url(../image/icon9.png);
	background-size: contain;
	background-position: center;
	display: inline-block;
	vertical-align: middle;
    background-repeat: no-repeat;
    margin: 0 10px;
}
.el-icon-yf-5:before {
	content: '';
	width: 100%;
	height: 100%;
	background-image: url(../image/icon10.png);
	background-size: contain;
	background-position: center;
	display: inline-block;
	vertical-align: middle;
    background-repeat: no-repeat;
    margin: 0 10px;
}
.el-icon-yf-6:before {
	content: '';
	width: 100%;
	height: 100%;
	background-image: url(../image/icon12.png);
	background-size: contain;
	background-position: center;
	display: inline-block;
	vertical-align: middle;
    background-repeat: no-repeat;
    margin: 0 10px;
}

.page{
	position: absolute;
	overflow: auto;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}
.nav{
	background-color: #dedede;
	line-height: 44px;
	padding: 0 15px;
	color: #fff;
	align-items: center;
	margin-bottom: 10px;
	border-radius: 0 0 4px 4px;
}
.nav .title{
	flex: 1;
	margin: 0;
	color: #fff;
	text-align: center;
}
.flex{
	display: flex;
}
.wrap{
	flex-wrap: wrap;
}
.flex1{
	flex: 1;
}
.text-center{
	text-align: center;
}
.login{
	min-height: 100vh;
	max-width:750px;
	display: flex;
	align-items: center;
	margin:   auto;
}
.login .form{
	margin: 15px;
	margin-top: -100px;
}
.login .icon{
	text-align: center;
	margin-bottom: 50px;
}
.login .icon img{
	width: 50px;
}
.login .title{
	color: #fff;
	text-align: center;
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 20px;
}
.login .desc{
	/*text-align: center;*/
	color: #fff;
	margin-bottom: 40px;
}
@media screen and (min-width: 1024px){
	.login .form-fy.el-form{
		display: flex;
	}
	.login .form-fy.el-form .el-form-item:first-child{
		flex:1;
		margin-right: 10px;
	}
	.login .form-fy.el-form .el-form-item:nth-child(2){
		width: 120px;
	}
}

.pcview.login .title{
	font-size: 36px;
}
.pcview.login .el-input--prefix .el-input__inner{
	font-size: 20px;
	height: 50px;
}
.pcview.login .el-button--primary{
	height: 50px;
}


.mbview.login .title{
	font-size: 30px;
}
.mbview.login .el-input--prefix .el-input__inner{
	height: 50px;
	font-size: 12px;
}
.mbview.login .el-button--primary{
	height: 50px;
}

.mbview.login .icp span{
	display: block;
	text-align: center;
	margin-top: 40px;
	margin-bottom: 40px;
	color: #fff;
	font-size: 10px;
}

.mbview.login .icp span{
	display: block;
	text-align: center;
	margin-top: 40px;
	margin-bottom: 40px;
	color: #fff;
	font-size: 10px;
}
.mbview.home .icp span{
	display: block;
	text-align: center;
	margin-top: 40px;
	margin-bottom: 40px;
	color: #fff;
	font-size: 10px;
}

.mbview.ycase .icp span{
	display: block;
	text-align: center;
	margin-top: 40px;
	margin-bottom: 40px;
	color: #22222DFF;
	font-size: 10px;
}
.mbview.expro .icp span{
	display: block;
	text-align: center;
	margin-top: 40px;
	margin-bottom: 40px;
	color: #22222DFF;
	font-size: 10px;
}


/*.home{
	max-width:750px;
	margin:  0 auto;
}
.home .add{
	margin: 15px;
	margin-top: 20px;
	margin-bottom: 20px;
}

.home .list{
	margin:0 15px;
}
.home .card{
	margin-bottom: 10px;
	background-color: #f9f9f9;
	border-radius: 4px;
	padding: 10px;
}
.home .card>div{
	display: flex;
	margin-bottom: 5px;
	justify-content: space-between;
}

.home .card>div span:first-child{
	color: #333;
}*/
.pcview.home{
	margin-top: 80px;
}
.pcview.home>div.flex{
	height: 100%;
	align-items: center;
}
.pcview.home button{
	max-width: 500px;
	width: 90%;
	font-size: 28px;
	margin: auto;
    padding: 15px 20px;
    font-weight: bold;
}
.pcview.home button span {
	
	font-size: 20px;
    padding: 15px 20px;
    font-weight: bold;
}
.pcview.home button img{
	width: 22px;
	vertical-align: middle;
	display: inline-block;
	margin-right: 10px;
}
.pcview.home .box.left{
	color: #fff;
}
.pcview.home .box.left button{
	margin-bottom: 20px;
}
.pcview.home .box.left .icon{
	text-align: center;
	margin-bottom: 50px;
}
.pcview.home .box.left  .icon img{
	width: 50px;
}
.pcview.home .box.left .title{
	color: #fff;
	text-align: center;
	font-size: 40px;
	font-weight: bold;
	margin-bottom: 20px;
}
.pcview.home .box.left .desc{
	/*text-align: center;*/
	max-width: 500px;
	width: 90%;
	margin: auto;
	color: #fff;
	margin-bottom: 40px;
}
.pcview.home .box.right{
	color: #fff;
	background-color: rgba(0,0,0,0.13);
	height: 100%;
}

.pcview.ycase{
	height: 100%;
	align-items: center;
}
.pcview.ycase>div.block{
	max-width: 500px;
	margin: auto;
	width: 90%;
	border-radius: 10px;
	overflow: hidden;
	background-color: #fff;
}
.pcview.ycase .title{
	background-color: #0F75E7;
	color: #fff;
	padding: 0 20px;
	padding-bottom: 15px;
	padding-top: 15px;
	line-height: 44px;
	font-size: 20px;
}
.pcview.ycase .title img{
	width: 20px;
	margin-right: 20px;
}
.pcview.ycase .form{
	background-color: #fff;
	padding: 10px 20px;
	margin-top: -10px;
	border-radius: 10px;
    padding-top: 20px;
	overflow: hidden;
}
.pcview.ycase .form .el-input__inner{
	background:rgba(245,245,245,1);
	border:1px solid rgba(252,255,255,1);
	border-radius:5px;
	padding-top: 10px;
	padding-bottom: 10px;
	height: 50px;
	font-size: 20px;
}
.pcview.ycase .el-textarea:before{
	content: '';
	display:inline-block;
	width: 28px;
    height: 28px;
    background-image: url(../image/icon12.png);
    background-size: contain;
    background-position: center;
    display: inline-block;
    vertical-align: middle;
    background-repeat: no-repeat;
    margin: 0 10px;
    position: absolute;
    top: 10px;
    left: 7px;
}

.pcview.ycase .el-textarea__inner{
	padding-left: 56px;
    height: 100px;
    font-size: 20px;
    background: rgba(245,245,245,1);
}

.pcview.expro{
	height: 100%;
	align-items: center;
}
.pcview.expro>div.block{
	max-width: 500px;
	margin: auto;
	width: 90%;
	border-radius: 10px;
	overflow: hidden;
	background-color: #fff;
}
.pcview.expro .title{
	background-color: #0F75E7;
	color: #fff;
	padding: 0 20px;
	padding-bottom: 15px;
	padding-top: 15px;
	line-height: 44px;
	font-size: 20px;
}
.pcview.expro .desc{
    padding-top: 20px;
    border-radius: 5px 5px 0 0 ;
	max-width: 500px;
	margin: auto;
	margin-top: -10px;
	background-color: #fff;
	padding-left: 5%;
	padding-right: 5%;
	color: #22222E;
}
.pcview.expro .desc p{
	margin-bottom: 15px;
}
.pcview.expro .title img{
	width: 20px;
	margin-right: 20px;
}
.pcview.expro .form{
	background-color: #fff;
	padding: 10px 20px;
	margin-top: 20px;
	border-radius: 10px;
    padding-top: 20px;
	overflow: hidden;
}
.pcview.expro .form .el-input__inner{
	background:rgba(245,245,245,1);
	border:1px solid rgba(252,255,255,1);
	border-radius:5px;
	padding-top: 10px;
	padding-bottom: 10px;
	height: 50px;
	font-size: 20px;
}

.pcview.ycaselist{
	height: 100%;
	overflow: auto;
	align-items: center;
}
.pcview.ycaselist>div.block{
	max-width: 500px;
	margin: auto;
	width: 90%;
	border-radius: 10px;
	overflow: hidden;
	margin-top: 40px;
	background-color: #fff;
}

.pcview.ycaselist .title{
	background-color: #0F75E7;
	color: #fff;
	padding: 0 20px;
	padding-bottom: 15px;
	padding-top: 15px;
	line-height: 44px;
}
.pcview.ycaselist .title img{
	width: 20px;
	margin-right: 20px;
}
.pcview.ycaselist .card{
	background-color: #fff;
	padding: 10px 20px;
	margin-top: -10px;
	border-radius: 10px;
	overflow: hidden;
    padding-top: 20px;
	color: #22222E;

}
.pcview.ycaselist .title div{
	font-size: 20px;
}
.pcview.ycaselist .card>div span{
	font-size: 20px;
}
.pcview.ycaselist .card>div span:first-child{
	font-size: 18px;
	color:rgba(34,34,46,1);
	opacity:0.5;
}
.pcview.ycaselist .card>div{
	border-bottom:1px solid #e7e7e7;
	padding:  10px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.pcview.ycaselist .card>div:last-child{
	border-bottom: none;
}
.pcview.ycaselist  .btn{
	width: 90%;
	margin: 40px auto;
}


   
.mbview{
	margin: auto;
	margin-top: 50px;
	padding: 0 5%;
}
.mbview.login{

}
.mbview.home button img{
	margin-right: 10px;
}
.home.mbview{
}
.home.mbview .desc{
	color: #fff;
	margin-bottom: 20px;
}
.home.mbview .desc img{
	width: 20px;
	margin-right: 10px;
}
.home.mbview .desc p:first-child{
	margin-bottom: 10px;
}
.home.mbview .desc p:last-child{
	color: rgba(255,255,255,0.5);
}
.home.mbview .title{
	text-align: center;
	color: #fff;
	font-size: 32px;
	margin-top: 20px;
	margin-bottom: 20px;
}
.mbview.home .button{
	margin-bottom: 30px;
}
.mbview.home .block{
	margin-bottom: 30px;
}
.mbview.home .card{
	background-color: #fff;
	padding: 10px 20px;
	margin-top: -25px;
	border-radius: 10px;
	overflow: hidden;
    padding-top: 25px;
	color: #22222E;

}
.mbview.home .card>div{
	border-bottom:1px solid #e7e7e7;
	padding:  10px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.mbview.home .card>div:last-child{
	border-bottom: none;
}
.mbview.home  .btn{
	width: 90%;
	margin: 10px auto;
}
.mbview.home .num{
	background-color: #0F75E7;
	width: 100px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	margin: auto;
	position: relative;
	z-index: 100;
	border-radius: 5px;
}
.mbview.ycase .title{
	color: #22222DFF;
	font-size: 40px;
	margin-top: 20px;
	text-align: center;
	font-weight: bold;
}
.mbview.ycase .desc{
	color: #22222DFF;
	margin-top: 20px;
	margin-bottom: 20px;
	text-align: center;
}
.mbview.ycase .el-textarea:before{
	content: '';
	display:inline-block;
	width: 25px;
	height: 25px;
	background-image: url(../image/icon12.png);
	background-size: contain;
	background-position: center;
	display: inline-block;
	vertical-align: middle;
    background-repeat: no-repeat;
    margin: 0 10px;
    position: absolute;
    top: 10px;
}

.mbview.ycase .el-textarea__inner{
	padding-left: 40px;
	height: 100px;
}
.mbview.expro .title{
	color: #22222DFF;
	font-size: 40px;
	margin-top: 20px;
	text-align: center;
	font-weight: bold;
}
.mbview.expro .desc{
	color: #22222DFF;
	margin-top: 20px;
	margin-bottom: 20px;
	text-align: center;
}