body {
    background: #f8f8f8;
}

.head-wrap {
    width: 100%;
    background: #ffffff;
    height: 120px;
}

.head-wrap .head-logo {
    width: 1200px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.head-wrap .head-logo .head-line {
    display: inline-block;
    margin: 0 14px 0 18px;
    width: 2px;
    height: 32px;
    background: #DEDEDE;
    border-radius: 1px;
}

.content-wrap{
    display: flex;
    justify-content: space-between;
    width: 1200px;
    height: 620px;
    margin: 10px auto 20px auto;
}

.content-wrap .left-menu{
    padding: 16px 0;
    width: 195px;
    height: 100%;
    background: #ffffff;
}

.content-wrap .left-menu .first-category{
    width: 100%;
    height: 48px;
    color: #333333;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    line-height: 48px;
}

.content-wrap .left-menu .second-category {
    display: block;
    width: 100%;
    height: 38px;
    color: #666666;
    font-size: 14px;
    text-align: center;
    line-height: 38px;
    cursor: pointer;
}

.content-wrap .left-menu .second-category:hover{
    background: #F3F3F3;
}

.content-wrap .left-menu .active{
    color: #EA6101;
    background: #F3F3F3;
}

.content-wrap .right-list{
    padding: 15px 0;
    width: 995px;
    height: 100%;
    background: #ffffff;
}

.content-wrap .right-list .information-item{
    display: flex;
    justify-content: space-between;
    padding: 0 64px;
    width: 100%;
    height: 56px;
    line-height: 56px;
    cursor: pointer;
}

.content-wrap .right-list .information-item:hover{
    background: #F3F3F3;
}

.content-wrap .right-list .information-item:hover .text{
    color: #EA6101;
}

.content-wrap .right-list .information-item .text{
    width: 700px;
    overflow: hidden;
    white-space: nowrap;
    word-break: break-all;
    text-overflow: ellipsis;
    font-size: 16px;
    color: #333333;
    font-weight: bold;
}

.content-wrap .right-list .information-item .time{
    font-size: 14px;
    color: #999999;
}