.news-list .item {
    border-bottom: 1px dotted #ccc;
}
.news-list .item a {
    display: block;
    padding: 15px 10px;
}
.news-list .item a:hover {
    background-color: rgba(0,0,0,0.05);
}
.news-list .date {
    color: #E40011;
    font-size: 18px;
    font-weight: bold;
    float: left;
}
.news-list .date:after {
    content: "/";
    display: inline-block;
    margin: 0 10px 0 12px;
    color: #3E3F45;
    font-weight: normal;
}
.news-list .name {
    display: block;
    color: #000;
    font-size: 18px;
    margin-left: 124px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.news-list .description {
    line-height: 1.4;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    color: #666;
}

.news-detail {
    max-width: 1090px;
    margin: 0 auto 30px;
}
.news-detail .date,
.news-detail .title {
    border-left: 2px solid;
    padding-left: 12px;
    display: block;
}
.news-detail .date {
    border-left-color: #E40011;
    color: #E40011;
    font-size: 14px;
    letter-spacing: 1px;
}
.news-detail .title {
    border-left-color: #666;
    color: #3E3F45;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 40px;
}


@media screen and (max-width: 500px) {
    .news-list .date {
        float: none;
        font-size: 15px;
    }
    .news-list .name {
        display: block;
        margin: 0 0 4px;
    }
}