/*news*/
.news-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    border-bottom: 1px solid #e7e7e7;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.news-list > div:first-child {
    width: 34%;
    position: relative;
    overflow: hidden;
    line-height: 0;
}

.news-list > div:first-child img {
    width: 100%;
    transition: all 0.4s ease-out 0s;
}

.news-list > div:first-child:hover img {
    transform: scale(1.1);
}

.news-list > div:first-child:hover .news-date {
    background: #0075d2;
}

.news-list > div:last-child {
    width: 66%;
    padding-left: 24px;
    font-size: 16px;
    line-height: 24px;
}

.news-date {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    text-align: center;
    background: #000000;
    padding: 9px 7px 0 7px;
    color: #ffffff;
    font-size: 18px;
    line-height: 100%;
    transition: all 0.4s ease-out 0s;
}

.news-date span {
    display: block;
    font-size: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
    line-height: 100%;
    padding-bottom: 7px;
    margin-bottom: 7px;
}

.news-title {
    font-size: 30px;
    line-height: 100%;
    position: relative;
    color: #000000;
    font-size: 30px;
    padding-bottom: 14px;
    margin-bottom: 22px;
}

.news-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 128px;
    height: 1px;
    background: #0075d2;
    display: block;
}

.news-btn {
    text-align: right;
}

.news-btn a {
    display: inline-block;
    width: 132px;
    line-height: 37px;
    text-align: center;
    background: #fff;
    border: 1px solid #0075d2;
    color: #0075d2;
    font-size: 15px;
    border-radius: 20px;
}

.news-btn a:hover {
    background: #0075d2;
    color: #ffffff;
}

/*news-detail*/
.news-detail-top {
    padding-bottom: 40px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-end;
}

.news-detail-top > div:first-child {
    width: 80px;
    position: relative;
}
.news-detail-top .news-date {background: #0075d2!important;}

.news-detail-top > div:last-child {
    width: calc(100% - 80px - 38px);
    margin-left: 38px;
    position: relative;
    font-size: 30px;
    line-height: 100%;
    color: #000;
    padding-bottom: 22px;
}

.news-detail-top > div:last-child:after {
    content: "";
    display: block;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: #0075d2;
    position: absolute;
}

.news-date2 {
    position: relative;
    top: auto;
    left: auto;
}