.flex-baseline {
    align-items: flex-start;
    margin-bottom: 44px;
}
.result-lists {
    display: flex;
    flex-direction: column;
    margin-top: 130px;
}
.result-list-right {
    width: 1000px;
}
.result-list-item {
    font-size: 18px;
    color: #000000;
    line-height: 56px;
    border-bottom: 1px solid transparent;
    cursor: pointer;
}
.result-list-item:hover,
.result-list-item.active {
    color: #D2171A;
    border-bottom: 1px solid #D2171A;
}

.result-list-box {
    display: flex;
    flex-direction: column;
    margin-bottom: 44px;
}
.result-list-box-item {
    display: flex;
    margin-bottom: 24px;
    height: 188px;
    color: #000000;
    background: #FFFFFF;
    box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.17);
    cursor: pointer;
}
.result-list-box-item:last-child {
    margin-bottom: 0;
}
.result-pic {
    width: 140px;
    height: 100%;
    margin-right: 18px;
}
.result-pic img {
    width: 100%;
    height: 100%;
}
.result-info {
    margin-left: 37px;
    flex: 1;
}
.result-name {
    font-weight: bold;
    font-size: 22px;
    color: #4F4D4D;
    line-height: 26px;
    margin-top: 39px;
}
.result-desc {
    margin-top: 40px;
    font-size: 16px;
    color: #4F4D4D;
    line-height: 30px;
}
.result-time {
    color: #D2171A;
    width: 73px;
    margin-top: 43px;
    margin-left: 88px;
    margin-right: 46px;
}
.result-time-date {
    font-size: 30px;
    line-height: 40px;
    white-space: nowrap;
}
.result-time-year {
    font-size: 16px;
}
.result-time-more {
    width: 58px;
    height: 2px;
    background: #C2C3C3;
    margin-top: 22px;
}

.forum-list-right {
    width: 940px;
}
.forum-list-pane {
    margin-bottom: 84px;
}
.forum-list-box {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    width: 100%;
}
.forum-list-box-item {
    cursor: pointer;
    width: 450px;
    height: 450px;
    color: #000;
    background: #FFFFFF;
    box-shadow: 0px 0px 10px 0px rgba(1,20,99,0.35);
}

.forum-pic {
    width: 450px;
    height: 300px;
}
.forum-pic img {
    width: 100%;
    height: 100%;
}
.forum-info {
    padding: 20px;
}
.forum-title {
    font-weight: bold;
    font-size: 20px;
    padding: 2px 0px 40px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.forum-time-info {
    margin-bottom: 19px;
    font-size: 16px;
    align-items: center;
}
.forum-address-info {
    align-items: center;
}
.forum-address {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.forum-time-icon {
    width: 15px;
    height: 15px;
    background: url(../images/research/icon-time.png);
    background-size: cover;
    background-repeat: no-repeat;
    margin-right: 14px;
}
.forum-address-icon {
    min-width: 14px;
    height: 18px;
    background: url(../images/research/icon-map.png);
    background-size: cover;
    background-repeat: no-repeat;
    margin-right: 14px;
}
.forum-list-box-item:hover {
    color: #fff;
    background-color: #D2171A;
    transition: all .2s;
}
.forum-list-box-item:hover .forum-time-icon {
    background: url(../images/research/icon-time-bai.png);
}
.forum-list-box-item:hover .forum-address-icon {
    background: url(../images/research/icon-map-bai.png);
}