/**

 */


.right-content-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    border-bottom: 1px solid #E5E5E5;;
    height: 50px;
    line-height: 50px;
    display: flex;

}

.right-content-title > span{
    border-bottom: 1px solid #BE0000;
    display: block;
    padding: 0px 5px 0px 0px;
}

.right-content-list {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.right-content-list-item {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 20px;
    height: 240px;
    border-bottom: 1px dotted #E5E5E5;
    padding: 20px 0px 30px;
    box-sizing: border-box;
    --moz-box-sizing: border-box;
    --webkit-box-sizing: border-box;
    width: 1000px;
}

.right-content-list-item-img {
    width: 270px;
    height: 180px;
    background: #9A6B6B;
    border-radius: 2px 2px 2px 2px;
}

.right-content-list-item-img img {
    width: 100%;
    height: 100%;
}

.right-content-list-item-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    margin-left: 20px;
    width: 710px;
    overflow: hidden;
    box-sizing: border-box;
}

.right-content-list-item-title {
    font-weight: bold;
    font-size: 20px;
    color: #333333;
    line-height: 35px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    width: 100%;
    margin-bottom: 10px;
}

.right-content-list-item-title > a {
    display: block;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    /*white-space: nowrap;*/
    word-wrap: break-word;
}

.right-content-list-item-desc {
    width: 100%;
    font-size: 14px;
    color: #333333;
    line-height: 30px;
    /** 最多三行**/
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    height: 60px;
    white-space: wrap;
    word-wrap: break-word;
}

.right-content-list-item-time {
    font-size: 14px;
    color: #999999;
    line-height: 36px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    height: 35px;
}

