.slogn{width:100%;height:460px;background:url(../images/aboutbanner.jpg) no-repeat center;background-size:cover;}

.recprocontent{
    background: white;
}

.asubject{
    width:100%;
    text-align:center;
    margin-bottom:50px;
}
.asubjectbg{
    font-size: 50px;
    color:#eee;
    font-weight: bold;
}
.asubjecttx{
    font-size: 35px;
    font-weight: bold;
    color: #555;
    margin-top:-40px;
}

.aboutcontent{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    margin-top:30px;
}
.aboutleft{
    width:50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}
.aboutright{
    width:45%;
}
.aboutright img{
    width:100%;
}
.aboutdesc{
    width: 100%;
    padding:5px;
    font-size:16px;
}
.aboutdesc p{
    line-height: 26px;
}



/*********navigate bar***********/
.pronavband{
    width:95%;
    max-width: 1200px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 20px auto;
}
.pronav{
	display:flex;
	flex-direction:row;
	align-items:center;
}
.pronav i{
    color:#FF3C00;
}

.pnavitem{
	font-size:14px;
	color:#16181A;
	cursor: pointer;
    border-right: #ccc 1px solid;
    position: relative;
    padding: 0 20px;
}
.pnavitem:after {
    position: absolute;
    bottom: -18px;
    left: 50%;
    width: 0%;
    height: 3px;
    display: block;
    background: #e60012;
    content: "";
    transform: translateX(-50%);
    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
  }
  .pnavactive:after,
  .pnavitem:hover:after{
    width: 80%;
  }
  .pnavactive,
  .pnavitem:hover{
    color: red;
  }

  @media screen and (max-width: 700px) {
    .aboutcontent{
        display: flex;
        flex-direction: column-reverse;
    }
    .aboutleft{
        width:100%;
    }
    .aboutright{
        width: 100%;
    }
    .mhide{display: none;}
}