.xx-news > .head {
    background-image: url(../images/news-head.jpg);
    background-repeat: no-repeat;
    background-position: center top;
}
.xx-news > .head .container {
    height: 47.5rem;
    position: relative
}
.xx-news > .head .title {
    position: absolute;
    left: 4.0625rem;
    top: 10rem;
    background-image: url(../images/logo-xl.png);
    background-repeat: no-repeat;
    background-size: auto 5rem;
    background-position: -1.25rem -.625rem;
}
.xx-news > .head .title h1 {
    font-weight: 900;
    font-size: 3.75rem;
    padding: 5rem 0 1.875rem;
    position: relative
}
.xx-news > .head .title h1::after {
    content: '';
    width: 6.25rem;
    height: 2px;
    background-color: #333;
    position: absolute;
    left: 0;
    bottom: 0;
}
.xx-news > .head .title h4 {
    margin-top: 1.25rem;
}
.xx-news > .head .title .btn {
    margin-top: 3.125rem;
}

/** 资讯列表 **/
.xx-news > .list .container {
    padding-top: 3.75rem;
    padding-bottom: 1.875rem;
}
.xx-news > .list .container h1 {
    text-align: center;
}
.xx-news > .list ul {
    list-style: none;
    padding: 0;
    margin: 3.125rem 0 0;
}
.xx-news > .list li {
    border-bottom: 1px solid #e0e0e0;
    padding: 1.875rem 0;
    display: flex;
    display: -webkit-flex;
    flex-direction: row;
}
.xx-news > .list li .image {
    margin-right: 1.875rem;
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    justify-content: center;
    padding: .3125rem;
    border-radius: 1.875rem .625rem;
    border: 1px solid #dfdfdf;
    background-color: #fef7f7;
}
.xx-news > .list li .image img {
    width: 16rem;
    border-radius: 1.875rem .625rem;
}
.xx-news > .list li .article {
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
}
.xx-news > .list li .article .holder {
    flex-grow: 1;
}
.xx-news > .list li .article .title {
    display: flex;
    display: -webkit-flex;
    flex-direction: row;
}
.xx-news > .list li .article .title h4 {
    padding-bottom: .9375rem;
    margin-bottom: .625rem;
    position: relative;
    color: #333;
}
.xx-news > .list li .article .title h4:hover {
    color: #d7000f;
}
.xx-news > .list li .article .title h4::after {
    content: '';
    width: 6.25rem;
    height: 2px;
    background-color: #d7000f;
    position: absolute;
    left: 0;
    bottom: 0;
}
.xx-news > .list li .article .title .art-label {
    margin-left: .625rem;
}
.xx-news > .list li .article p {
    font-size: .875rem;
    color: #666;
}
.xx-news > .list li .article .foot {
    display: flex;
    display: -webkit-flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
}
.xx-news > .list li .article .foot .date {
    font-size: .875rem;
    color: #999;
    padding-left: 1.25rem;
    background-image: url(../images/news-clock.png);
    background-repeat: no-repeat;
    background-size: 1rem auto;
    background-position: 0 .1875rem;
}

/** 翻页 **/
.xx-news > .page .container {
    display: flex;
    display: -webkit-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 3.125rem 0;
}
.xx-news > .page .container > * {
    margin: 0 .3125rem;
}
.xx-news > .page .container > span {
    font-size: .875rem;
    margin-right: .9375rem;
}
.xx-news > .page .container a {
    text-decoration: none;
}
.xx-news > .page .container a:hover,
.xx-news > .page .container .page-num-current {
    background-color: #dc3545 !important;
    color: white !important;
}
.xx-news > .page .container .page-num {
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    color: #dc3545;
    border-color: #dc3545;
    background-color: #fef7f7;
}


@media (max-width: 1200px) {
    .xx-news > .head {
        background-position: center center;
        background-size: auto 100%;
    }
    .xx-news > .head h4 {
        font-size: 2rem;
    }

    .xx-news > .list h1 {
        font-size: 3rem;
    }
    .xx-news > .list li {
        flex-direction: column;
    }
    .xx-news > .list li .image {
        margin-right: 0;
    }
    .xx-news > .list li .image img {
        width: 100%;
    }
    .xx-news > .list li .article h4 {
        font-size: 2.5rem;
        padding: 1rem 0 !important;
    }
    .xx-news > .list li .article .badge {
        font-size: 1.5rem;
        margin-top: 1.5rem;
    }
    .xx-news > .list li .article p {
        font-size: 1.5rem;
    }
    .xx-news > .list li .article .holder {
        display: none;
    }
    .xx-news > .list li .article .foot .date {
        font-size: 1.5rem;
        padding-left: 2rem;
        background-size: 1.5rem auto;
        background-position: 0 .5rem;
    }

    .xx-news > .page .container > * {
        font-size: 1.5rem !important;
    }
}