.wrap {
    position: relative;
    padding: 20px;
    background-color: #FFF;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
}

.bar {
    position: relative;
    width: 100%;
}

.bar>img {
    width: 100%;
}

.bar-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 18px;
    background: linear-gradient(180deg, #E06F26 0%, #BD0401 100%);
    border-radius: 1px;
    display: inline-block;
}

.bar-title {
    position: absolute;
    left: 32px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: bold;
    font-size: 18px;
    color: #CA1528;
    letter-spacing: 2px;
    text-align: left;
    display: inline-block;
    line-height: 100%;
}

.news {
    width: 100%;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed #CCCCCC;
}

.news .dot {
    width: 5px;
    height: 5px;
    background: #CA1528;
    border-radius: 5px;
}

.news .name {
    width: 80%;
    font-weight: bold;
    font-size: 16px;
    color: #2C2C2C;
    text-align: left;
}

.news .date {
    width: 15%;
    font-size: 16px;
    color: #6D7278;
    text-align: right;
}

.pagebar {
    padding-top: 20px;
    overflow: hidden;
    clear: both;
}

.pagebar .pagination {
    display: flex;
    justify-content: center;
}

.pagination a {
    background: #fff;
    border: 1px solid #ccc;
    color: #333;
    font-size: 12px;
    padding: 8px 10px;
    margin: 0 8px;
    border-radius: 3px;
    line-height: 100%;
}

.pagination span {
    color: #A00004;
    font-size: 12px;
    padding: 7px 2px;
    margin: 0 2px;
    border-radius: 3px;
}

.pagination a:hover {
    color: #A00004;
    border: 1px solid #A00004;
}

.pagination a.page-num-current {
    color: #fff;
    background: #A00004;
    border: 1px solid #A00004;
}

@media (max-width: 849px) {
    .wrap {
        padding: 2.6vw;
    }

    .bar-icon {
        left: 1.8vw;
        width: 1.1vw;
        height: 2.4vw;
    }

    .bar-title {
        left: 4.3vw;
        font-size: 2.4vw;
    }

    .news {
        padding: 2.6vw 0;
    }

    .news .dot {
        width: 0.7vw;
        height: 0.7vw;
        border-radius: 0.7vw;
    }

    .news .name {
        font-size: 2.2vw;
    }

    .news .date {
        font-size: 2.2vw;
    }

    .pagebar {
        padding-top: 2.6vw;
    }

    .pagination a {
        font-size: 1.6vw;
        padding: 1.1vw 1.3vw;
        margin: 0 1.1vw;
        border-radius: 0.4vw;
    }

    .pagination span {
        font-size: 1.6vw;
        padding: 0.93vw 0.3vw;
        margin: 0 1.1vw;
        border-radius: 0.4vw;
    }
}