.committeeman {
    position: relative;
}
.committeeman .top{
    background: #f1f1f1;
    text-align: center;
    line-height: 36px;
    font-size: 16px;
    border-radius: 5px 5px 0 0;
}
.committeeman .top .top-left {
    border-right: 1px solid #e0e0e0;
}

.committeeman .center .center-left {
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    height: 700px;
    overflow-y: auto;
}
.committeeman .center .center-left li{;
    color: #d43838;
    background: #fbebeb;
    border: 1px solid #eeafaf;
    margin: .8rem auto;
    border-radius: 8px;
    width: 80%;
    line-height: 24px;
    cursor: pointer;
}
.committeeman .center .center-left li a{
    display: block;
    color: #d43838;
}
.committeeman .center .center-left li.active,.committeeman .center .center-left li:focus,.committeeman .center .center-left li:hover{
    background: #d43838;
    border-color: #d43838;
}
.committeeman .center .center-left li.active a,.committeeman .center .center-left li:hover a {
    color: #fff;
}

.committeeman .center .center-left::-webkit-scrollbar {
    width: 5px;
}
.committeeman .center .center-left::-webkit-scrollbar-thumb {
    background-color: #A8A8A8;
    border-radius: 6px;
}

.committeeman .center .center-right {
    display: table;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-left: none;
    border-bottom-right-radius: 5px;
    height: 700px;
    overflow-y: auto;
    padding: 20px 0;
}

.committeeman-item {
    display: inline-block;
    text-align: center;
    margin-bottom: 10px;
    width: 25%;
    cursor: pointer;
}
.committeeman-item .pic {
    height: 140px;
}
.committeeman-item img {
    max-width: 100%;
    max-height: 100%;
}

.dialog__wrapper {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: auto;
    margin: 0;
}
.dialog__wrapper .dialog {
    position: relative;
    margin: 0 auto 50px;
    background: #fff;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,.3);
    box-sizing: border-box;
    width: 600px;
    text-align: center;
    z-index: 9999;
    margin-top: 15vh;
}
.dialog__wrapper .dialog__header {
    padding: 20px;
    padding-bottom: 10px;
}
.dialog__wrapper .dialog__headerbtn {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 0;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 16px;
}
.dialog__wrapper .dialog__title {
    line-height: 24px;
    font-size: 18px;
    color: #303133;
}
.dialog__wrapper .dialog__body {
    padding: 30px 20px;
    color: #606266;
    font-size: 14px;
    word-break: break-all;
}
.dialog__wrapper table {
    width: 100%;
    margin: 0 auto;
}
.dialog__wrapper table tr td {
    line-height: 30px;
    text-align: center;
    min-width: 80px;
}

.dialog__wrapper table tr .tdimg {
    width: 80px;
}
.dialog__wrapper table tr img{
    width: 100%;
}
.dialog__wrapper table tr .title {
    text-align: right;
    padding-right: 0.2rem;
    font-weight: 700;
}
.dialog__wrapper .dialog-mask {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: .5;
    background: #000;
}