
.page-title {
    width: 100%;
    height: 560px;
    background-image: url(../images/newsBgImg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.page-title h3 {
    font-weight: bold;
    font-size: 60px;
    color: #FFFFFF;
}

.page-title p {
    font-size: 25px;
    color: #FFFFFF;
    margin-top: 40px;
}

.news .tabList {
    width: 100%;
    background-color: #fff;
}
.news .tabList {
    display: flex;
    padding: 10px;
    height: 70px;
    justify-content: center;
    box-sizing: border-box;
}
.news .tabList li {
    height: 50px;
    line-height: 50px;
    width: 216px;
    text-align: center;
    color: #222;
    background-color: #F6F6F6;
    cursor: pointer;
}
.news .tabList li.active {
    background-color: #E21824;
    color: #fff;
}
.news.show {
    display: block;
}
.news {
    background-color: #F6F6F6;
    padding-bottom: 100px;
    display: none;
}

.news h4 {
    font-weight: bold;
    font-size: 32px;
    color: #222222;
    padding-top: 56px;
    text-align: center;
    margin-bottom: 50px;
}
.news .newsList {
    display: flex;
    margin-bottom: 50px;
}
.news .newsList li {
    cursor: pointer;
}
.news .newsList li:hover .top img {
    transform: scale(1.1);
}
.news .newsList li .top {
    width: 406px;
    height: 280px;
    position: relative;
    overflow: hidden;
}
.news .newsList li .top .date {
    position: absolute;
    top: 0;
    left: 0;
    width: 72px;
    height: 82px;
    background-color: #E21824;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.news .newsList li .top .date .yearAndMonth {
    font-size: 14px;
    color: #fff;
}
.news .newsList li .top .date .date-day {
    font-weight: 500;
    font-size: 22px;
    color: #FFFFFF;
    margin-bottom: 4px;
}
.news .newsList li .top img {
    width: 406px;
    height: 280px;
    object-fit: cover;
    transition: .4s;
}
.news .newsList li .bottom {
    width: 406px;
    padding: 18px 20px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    text-align: left;
    line-height: 25px;
    background-color: #fff;
}
.news .newsList li:nth-of-type(n + 2) {
    margin-left: 40px;
}
.news .pagination {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}
.news .pagination > div {
    border: 1px solid #CCCCCC;
    box-sizing: border-box;
    color: #222;
    height: 38px;
    line-height: 36px;
    text-align: center;
    margin-right: 10px;
}
.news .pagination .item {
    width: 38px;
    cursor: pointer;
}
.news .pagination .item.active {
    background-color: #E21824;
    border-color: #E21824;
    color: #fff;
}

.news .prev ,
.news .next {
    width: 74px;
    cursor: pointer;
}
.news .disabled {
    color: #999999 !important;
    cursor: not-allowed;
}

.newsDetail {
    background-color: #F6F6F6;
    display: none;
    padding-bottom: 100px;
}
.newsDetail h4 {
    font-weight: bold;
    font-size: 30px;
    color: #222222;
    text-align: center;
    margin-bottom: 30px;
}
.newsDetail .look p {
    color: inherit;
}
.newsDetail .look {
    display: flex;
    justify-content: center;
    color: #999999;
    margin-bottom: 60px;
}
.newsDetail .look .addTime {
    margin-right: 40px;
}

.newsDetail .contentDetail {
    line-height: 30px;
}
.newsDetail.show {
    display: block;
}
.newsDetail .backList {
    padding: 40px 0;
}
.newsDetail .backList .backbtn {
    background-color: #E21824;
    width: 150px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
}
.newsDetail .backList .backbtn img {
    width: 9px;
    height: 16px;
    margin-right: 8px;
    vertical-align: -3px;
}
.newsDetail .backList .backbtn span {
    font-size: 16px;
    color: #FFFFFF;
}

.newsDetail .line {
    width: 100%;
    height: 1px;
    background-color: #ccc;
    margin-bottom: 60px;
}
.newsDetail .contentDetail figure {
    text-align: center;
}