.news{
    width: 100%;
    height: auto;
    overflow: hidden;
    padding: 50px 0;
}
.news-content{
    width: 100%;
    height: auto;
    overflow: hidden;
    margin-top: 20px;
}
.news-details{
    width: 980px;
    height: auto;
    float: left;
    color: #4c4c4c;
    overflow: hidden;
}
.right-content{
    width: 400px;
    height: auto;
    float: right;
    background-color: rgba(0,0,0,0.08);
    padding: 20px 30px;
    border-radius: 4px;
}
.news-date{
    margin-top: 20px;
    color: rgba(0,0,0,0.5);
}
.news-details img{
    max-width: 100%;
}
.news-details p{
    margin-bottom: 20px;
}
.news-item{
    width: 100%;
    height: 200px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 20px;
}
.news-item img{
    width: 100%;
    height: 100%;
}
.news-item p{
    width: 100%;
    height: 40px;
    position: relative;
    top: -45px;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    line-height: 40px;
    background-color: rgba(0,0,0,0.4);
    padding: 0 10px;
}
@media (max-width: 600px) {
    .news{
        padding: 20px 10px;
    }
    .news h1{
        font-size: 22px;
    }
    .news-details{
        width: 100%;
    }
    .right-content{
        width: 100%;
    }
}

