.articalWrapper {
    display: -webkit-flex;
    -webkit-flex-flow: row;
    -webkit-align-items: stretch;
    -webkit-justify-content:space-between;
    
    display: -ms-flex;
    -ms-flex-flow: row wrap;
    -ms-align-items: stretch;
    -ms-justify-content:space-between;
      
    display: flex;
    flex-flow: row;
    align-items: stretch;
    justify-content:space-between;
    width: 1387px;
    margin: 0 auto 30px;    
}
.articalWrapper .btngLeft {
    width: 170px;
}
.articalWrapper .artical {
    -webkit-flex:1;
    -moz-flex:1;
    flex:1;
}
/* 按钮组菜单样式 */
.articalWrapper .btngLeft ul {
    margin: 0 auto;
}
.articalWrapper .btngLeft ul li {
    height: 48px;
    line-height: 48px;
    background-color: #aeb5be;
	font-family: MicrosoftYaHei-Bold;
	font-size: 18px;
	letter-spacing: 0px;
    opacity: 0.8;
    text-align: center;
    margin-bottom: 15px;
}
.articalWrapper .btngLeft ul li a {
    width: 100%;
    display: inline-block;
    text-decoration: none;
    outline: none;
    color: #ffffff;
}
.articalWrapper .btngLeft ul li.activeMenu {
    background-color: #78A2E1
}

/* 文章 */
.articalWrapper .artical {
    margin-left: 50px;
	background-color: #ffffff;
    box-shadow: 0px 4px 12px 0px #b1bfd4;
    box-sizing: border-box;
}
.artical .content {
    overflow: auto;
    display: none;
    padding: 0 30px 30px;
}
.artical .content.active {
    display: block;
}
.artical .content .title {
    font-size: 24px;
    margin: 1em 0;
    text-align: center;
}
.artical .content p {
    text-indent: 34px;
    line-height: 30px;
}
.artical .content .imgWrapper {
    margin-top: 10px;
    text-align: center;
}
.artical .content .imgWrapper img{
    width: 70%;
}