.newsList {
    width: 90%;
    margin: 0 auto;
}

.new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.date {
    width: 15%;
    font-size: 1.2vw;
    font-weight: bold;
    color: #999;
    text-align: center;
    margin-right: 20px;
    white-space: nowrap;
}

    .date img {
        width: 30px;
    }

.news-content {
    flex: 1;
}

.new-left {
    width: 70%;
}

.arrow {
    background: #19BBC6;
    color: white;
    width: 40px;
    margin: 0 auto;
}

.content-title {
    color: #19BBC6;
    font-size: 18px;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
    .content-title p:last-child {
        color: #8B8B8B;
        font-size: 14px;
        position: relative;
        padding-bottom: 15px;
    }

        .content-title p:last-child::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            background: #ccc;
            height: 1px;
        }

.main-content {
    color: #707070;
    font-size: 12px;
    line-height: 1.5em;
}

    .main-content .btn-primary {
        border-radius: 0;
        background: #F8B052;
        border: none;
        margin-top: 30px;
    }

        .main-content .btn-primary.lookDetail {
            background: #19BBC6;
        }
            .main-content .btn-primary.lookDetail:hover{
                color: #fff !important;
            }
            .news-right {
                flex: 1;
                text-align: right;
                box-sizing: border-box;
                padding-left: 5%;
            }

    .news-right img {
        width: 100%;
    }
