/* 三列布局 */
.photoWrapper {
    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: 1368px;
    margin: 0 auto 25px;
}
.photoWrapper .btngLeft {
    width: 150px;
}
.photoWrapper .imgsMiddle {
    -webkit-flex:1;
    -moz-flex:1;
    flex:1;
    position: relative;
    min-height: 583px;
}
.photoWrapper .pagination {
    width: 120px;
}

/* 按钮组菜单样式 */
.photoWrapper .btngLeft ul {
    width: 139px;
    margin: 0 auto;
}
.photoWrapper .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;
}
.photoWrapper .btngLeft ul li a {
    width: 100%;
    display: inline-block;
    text-decoration: none;
    outline: none;
    color: #ffffff;
}
.photoWrapper .btngLeft ul li.activeMenu {
    background-color: #78A2E1
}

/* 数字角标 */
.photoWrapper .pagination .pageNum {
    text-align: center;
    color: #aeb5be;
    font-size: 0px;
}
.pageNum .numLeft  {
    font-size: 44px;
    color: #2799f6;
}
.pageNum .slash , .pageNum .numRight {
    font-size: 36px;
}

/* 相册 */
.photoWrapper .imgsMiddle .imgsWrapper {
    width: 964px;
    margin: auto;
	background-color: #ffffff;
    box-shadow: 0px 4px 12px 0px #b1bfd4;
    padding: 29px 81px 20px 83px;
    box-sizing: border-box;
}
.imgsMiddle .lastPic, .imgsMiddle .nextPic {
	width: 49px;
    height: 49px;
    position: absolute;
    top: 50%;
    cursor: pointer;
}
.imgsMiddle .lastPic {
    background: url(../../static/images/common/left.png) 0 0 no-repeat;
    left: 0;
}
.imgsMiddle .nextPic {
    background: url(../../static/images/common/right.png) 0 0 no-repeat;
    right: 0;
}
.imgsMiddle ul {
    display: none;
}
.imgsMiddle ul.activeUl {
    display: block;
}
.imgsMiddle ul li {
    display: none;
}
.imgsMiddle ul li.activeLi {
    display: block;
}
.imgsMiddle ul li img {
    width: 800px;
}
.imgsMiddle ul li p {
	font-size: 14px;
    line-height: 24px;
    text-align: center;
    margin-top: 10px;
}