.news-list {
    height: 1330px;
    background: #fff;
    padding: 25px 50px 0px;
}

.news-list .news-list-tab {
    margin: 0px auto 40px;
    width: 790px;
    border-bottom: 1px solid #e6e5eb;
}

.news-list-tab a {
    float: left;
    color: #414141;
    font-size: 18px;
    text-align: center;
    height: 54px;
    line-height: 54px;
    width: 131px;
    margin-right: 31px;
    position: relative;
}

.news-list-tab a.last-a {
    margin-right: 0px;
}

.news-list a.on{
    color: #f2782f;
}

.news-list a:after {
    content: '';
    width:100%;
    position: absolute;
    left: 0px;
    bottom: -1px;
    height: 2px;
    background: #f2782f;
    transform: scale(0,0);
    transition: all .3s ease-in-out;
}

.news-list a.on:after {
    content: '';
    width: 100%;
    position: absolute;
    left: 0px;
    bottom: -1px;
    height: 2px;
    background: #f2782f;
    transform: scale(1,1);
    transition: all .3s ease-in-out;
}

.news-list-content > div {
    display: none;
}

.news-list-content .on {
    display: block;
}

.news-item {
    margin-bottom: 18px;
    border-bottom: 1px dashed #cacaca;
    padding-right: 179px;
    position: relative;
}

.news-item:hover .title-con {
    text-decoration: underline;
}

.news-item-title {
    line-height: 44px;
    color: #121524;
    font-size: 16px;
    font-weight: bold;
    overflow: hidden;
    text-overflow:ellipsis;
    white-space: nowrap;
}

.news-item  .desc {
    width: 100%;
    /* height: 70px; */
    line-height: 23px;
    /* overflow: hidden; */
    color: #666;
    padding-left: 7px;
    /* margin-bottom: 10px; */
    font-size: 14px;
    min-height: 70px;
}

.news-item .info {
    position: absolute;
    width: 179px;
    height: 100%;
    color: #999999;
    font-size: 16px;
    text-align: right;
    top: 0px;
    right: 0px;
    padding-top: 15px;
}

.write-time {
    padding-right: 10px;
}

.news-item .info .arrow {
    width: 88px;
    height: 41px;
    background: url("../images/common/arrow.jpg") no-repeat center center;
    position: absolute;
    right: 0px;
    top: 38px;
}  
