body {
    margin: 0;
    user-select: none;
    font-size: 16px;
    background-color: #f6f4f1;
}
img {
    display: block;
    max-width: 100%;
}
a {
    color: #333;
    text-decoration: none;
    cursor: pointer;
}
.container {
    background-color: #fff;
    box-shadow: 2px 2px 10px #999;
    border-radius: 5px;
    margin: 20px auto;
    width: 1200px;
    min-width: 1200px;
}
.header {
    font-size: 22px;
    color: #000;
    font-weight: 500;
    text-align: center;
    background-color: #eee;
    padding: 10px 0;
}
.content {
    padding: 40px 60px;
}
.group {
    border-bottom: 1px solid #f0f0f0;
    padding: 40px 0;
}
.title {
    border-bottom: 2px solid #ccc;
}
.title span {
    display: inline-block;
    color: #fff;
    background-color: #d01122;
    font-weight: 500;
    padding: 5px 10px;
}
.news-list {
    padding: 15px;
}
.news-list .item {
    display: flex;
    align-items: center;
    margin: 20px 0;
}
.news-list .item::before {
    display: block;
    content: "";
    width: 4px;
    min-width: 4px;
    height: 4px;
    background-color: #163e94;
}
.news-list .item .news-tit{
    flex: 1;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    margin: 0 20px 0 10px;
}
.news-list .item .date{
    font-size: 14px;
    color: #999;
    white-space: nowrap;
}
.more {
    text-align: right;
    padding: 0 15px;
}
.more a {
    color: #d01122;
}
@media screen and (max-width: 1200px) {
    .main-bottom {
        width: 1200px;
    }
}
