body {
    background: #f8f8f8;
}

.wrap{
    margin-top: 20px;
    margin-bottom: 20px;
}

.container {
    margin: auto;
    width: 1200px;
}

.editorWrapper {
    background: #FFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 1px 2px #d9d9d9;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.editorWrapper .editorItem {
    flex-wrap: wrap;
    width: 260px;
    text-align: center;
    padding: 20px 0;
    box-sizing: content-box;
    vertical-align: top;
    min-height: 400px;
    margin-right: 20px;
    margin-left: 5px;
    border-right: 1px solid #EEE;
}
.editorWrapper .editorItem:nth-child(4n) {
    border-right: 1px solid #fff;
    margin-right: 0;
}
.editorWrapper .editorItem .editorAvatar {
    margin-bottom: 10px;
}
.editorWrapper .editorItem .editorAvatar img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
}
.editorWrapper .editorItem .editorName {
    color: #222;
    font-size: 16px;
    font-weight: bold;
    line-height: 34px;
}
.editorWrapper .editorItem .editorContacts {
    font-size: 14px;
    color: #333;
    line-height: 34px;
}
.editorWrapper .editorItem .editorIntro {
    color: #666;
    line-height: 24px;
    text-align: left;
    margin: 0 auto;
    padding: 0 20px;
}
