.news-wrapper {
    background: #FCF9F5 url(/images/main1_bg.png) right -20px bottom no-repeat;
    width: 100%;
    padding: 20px 0;
}

.news {
    margin-top:20px;
    margin-bottom: 20px;
}

.news-content {
    margin-top: 20px;
}

.news-content-banner {
    width: 700px;
}

.news-content-banner-item {
    width: 700px;
    height: 610px;
    background: #FFFFFF;
}
.news-content-banner-img {
    width: 100%;
    height: 410px;
    object-fit: cover;
}
.news-content-banner-title {
    font-size: 18px;
    color: #000000;
    padding: 20px 30px;
    transition: all .2s linear;
}

.news-content-banner-item:hover  .news-content-banner-title{
    transition: all .3s linear;
    color: #AE1506;
    transform: translateX(5px);
}

.news-content-banner-article {
    padding: 0px 30px;
    font-size: 14px;
    color: #5E5E5E;
}

.news-content-banner-date {
    font-size: 14px;
    font-family: Georgia;
    color: #8B0012;
    padding: 20px 30px;
}



/*列表*/
.news-content-list {
    flex: 1;
    margin-left: 40px;
    width: 690px;
}
.news-list-item {
    width: 100%;
    height: 110px;
    background: #FFFFFF;
    box-shadow: 0px 1px 10px 2px rgba(204, 204, 204, 0.25);
    padding: 20px;
    display: flex;
    overflow: hidden;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all .2s linear;
}
.news-list-item:hover {
    box-shadow: 0px 3px 10px 4px rgba(173, 173, 173, 0.25);
    transition: all .2s linear;
    background: url("../images/linear-bg.png");
    background-size: 100%;
}

.news-list-item-date {
    font-family: Georgia;
    padding-right: 24px;
    display: flex;
    width: 100px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(151, 37, 25, 0.3);
}
.news-list-item-date-day {
    font-size: 30px;
    color: #972519;
}
.news-list-item-date-month {
    font-size: 16px;
    color: #828282;
}

.news-list-item-content {
    margin-left: 24px;
    flex: 1;
}

.news-list-item-content-title {
    font-size: 16px;
    font-weight: bold;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: 500px;
}
.news-list-item-content-article {
    font-size: 18px;
    color: #696969;
    margin-top: 6px;
    max-width: 550px;
}

.news-list-item:hover  .news-list-item-date-day{
    color: #FFFFFF;
}
.news-list-item:hover  .news-list-item-date-month{
    color: #FFFFFF;
}
.news-list-item:hover  .news-list-item-content{
    color: #FFFFFF;
}
.news-list-item:hover  .news-list-item-content-title{
    color: #FFFFFF;
}
.news-list-item:hover  .news-list-item-content-article{
    color: rgba(255,255,255,.7);
}