.news {
    width: 1200px;
    margin: 40px auto;
}

.news-title {
    text-align: center;
    display: flex;
    justify-content: center;
}

.news-title h2 {
    font-size: 40px;
    color: #2360D0;
    cursor: pointer;
    user-select: none;
}

.news-title h2:hover::after {
    width: 100%;
}

.news-title h2::after {
    content: '';
    display: block;
    width: 20%;
    height: 5px;
    margin: 0 auto;
    background-color: #000;
    transition: all 0.5s;
}

.news-items ul {
    display: flex;
    flex-flow: row wrap;
    margin-top: 20px;
}

.news-items li {
    width: 32%;
    border: 1px solid #ccc;
    padding: 12px;
    box-sizing: border-box;
    transition: 0.5s all;
    margin-top: 25px;
    margin-right: 15px;
}

.news-items li:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 40px rgba(35, 96, 208, 0.5);
}

.news-items img {
    vertical-align: bottom;
    max-width: 100%;
}

.news-items .data-title {
    display: flex;
    align-items: center;
}

.news-items .data-title .data {
    margin-top: 20px;
    border-right: 1px solid #E5E5E5;
    padding-right: 20px;
    flex-shrink: 0;
}

.news-items .data-title .data h3 {
    font-size: 45px;
    color: #000;
    font-weight: bold !important;
    font-family: arial !important;
    line-height: 35px;
}

.news-items .data-title .data span {
    color: #707070;
}

.news-items .data-title .news-title {
    font-size: 18px;
    margin-left: 20px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    flex-shrink: 0;
    width: 250px;
    display: block;
}

.news-items .more {
    border-top: 1px solid #E5E5E5;
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    padding-top: 10px;
}

.news-items .more div {
    color: #7F7F7F;
}