.flex-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3.125vh 0;
}

.flex-header .tabs {
    display: flex;
    align-items: baseline;
}

.flex-header a {
    font-size: calc(12px + .625vw);
    color: #999EAD;
    display: flex;
    flex-shrink: 0;
}

.flex-header a+a {
    margin-left: calc(30px + 1.5625vw);
}

.flex-header a.title {
    font-size: calc(16px + .8333vw);
    color: #FFFFFF;
}

.flex-header label.title {
    font-size: calc(16px + .8333vw);
    color: #FFFFFF;
}

.flex-header a.title::after {
    content: "";
    width: calc(12px + .2083vw);
    height: calc(12px + .2083vw);
    border: 4px solid #FF1414;
    border-radius: 50%;
    display: inline-block;
    align-self: flex-start;
    margin-left: calc(8px + .3646vw);
}

.flex-header .back-home {
    width: calc(90px + 4.6875vw);
    height: calc(20px + 1.0417vw);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #fff;
    cursor: pointer;
    border-radius: calc(10px + .5208vw);
    font-size: calc(12px + .3125vw);
    color: #FFFFFF;
    flex-shrink: 0;
}

.list .item {
    background: #1B1E24;
    height: 31.25vh;
    overflow: hidden;
    cursor: pointer;
    display: none;
    position: relative;
}

.list .item:hover::after {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border: 1px solid #999EAD;
    position: absolute;
    content: '';
    z-index: 1;
}

.list .item .img>img {
    width: calc(273px + 14.1667vw);
    height: 31.25vh;
    object-fit: cover;
}

.list .item .detail {
    flex: 1;
    padding: 0 calc(15px + .7813vw);
}

.list .item .detail .item-title {
    font-size: calc(14px + .7292vw);
    font-weight: bold;
    color: #FFFFFF;
    padding: 4.1667vh 0 0;
}

.list .item .detail .item-desc {
    font-size: calc(12px + .4167vw);
    color: #FFFFFF;
    line-height: 4.1666vh;
    height: 8.3333vh;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-top: calc(15px + .7813vw);
}

.list .item .detail .item-props {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: calc(12px + .3125vw);
    font-weight: 400;
    color: #999EAD;
    padding: calc(15px + .7813vw) 0;
}

.list .item .detail .item-props .prop {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.list .item .detail .item-props .prop-views::before {
    content: "";
    width: 20px;
    height: 15px;
    background-image: url(../images/icon-views.png);
    background-size: cover;
    margin-right: 5px;
}

.article {
    width: calc(570px + 29.6875vw);
    margin: 0 auto;
}

article p{
    margin:0 !important;
}

.news-deital .flex-props {
    display: flex;
    align-items: center;
    font-size: calc(12px + .3125vw);
    color: #999EAD;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
    padding-bottom: 20px;
}

.news-deital .flex-props .hit {
    display: flex;
    align-items: center;
    margin-left: calc(20px + 1.0417vw);
}

.news-deital .flex-props .hit>img {
    width: 20px;
    margin-right: 5px;
}

article {
    padding-top: 30px;
    font-size: calc(12px + .3125vw);
    color: #999EAD;
    line-height: calc(15px + .7813vw);
}

article img {
    max-width: 100%;
}


 .paging {
    display: flex;
    justify-content: center;
    padding: 3.125vh 0 0;
}

.paging>a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(20px + 1.0417vw);
    height: calc(20px + 1.0417vw);
    border-radius: 50%;
    margin: 0 10px;
}

.paging>a.page-item {
    border: 1px solid #FFFFFF;
    font-size: calc(12px + .3125vw);
    color: #FFFFFF;
}

.paging .btn-prev[disabled] img {
    content: url('../images/icon-prev-disabled.png');
    cursor: not-allowed;
}

.paging .btn-next[disabled] img {
    content: url('../images/icon-next-disabled.png');
    cursor: not-allowed;
}