.grid {
    display: grid;
}
.w-1920 {
    width: 1920px;
}

.w-100 {
    width: 100%;
}

.h-100 {
    height: 100%;
}

.w-1920 {
    width: 1920px;
}

.w-1600 {
    width: 1600px;
}

.w-1520 {
    width: 1520px;
}

.w-1400 {
    width: 1400px;
}

.w-1280 {
    width: 1280px;
}

.w-1220 {
    width: 1220px;
}

.w-1200 {
    width: 1200px;
}

.w-1140 {
    width: 1140px;
}

.w-1000 {
    width: 1000px;
}

.m-0-a {
    margin: 0 auto;
}

.mt-10 {
    margin-top: 10px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-20 {
    margin-top: 20px;
}

.flex {
    display: flex;
}

.flex-1 {
    flex: 1;
}

.grid {
    display: grid;
}

/* 水平居中 */
.jc-c {
    justify-content: center;
}

/* 垂直居中 */
.ai-c {
    align-items: center;
}

/* 水平 垂直  居中 */
.jc-ai-c {
    justify-content: center;
    align-items: center;
}

/* 两端对齐 */
.jc-sb {
    justify-content: space-between;
}

/* 分配相同空间 */
.jc-sa {
    justify-content: space-around;
}

/* 靠右 */
.jc-fe {
    justify-content: flex-end;
}

/* 靠左 */
.jc-fs {
    justify-content: flex-start;
}

/* 靠右 垂直居中 */
.jc-fe-ai-c {
    justify-content: flex-end;
    align-items: center;
}

/* 靠左 垂直居中 */
.jc-fs-ai-c {
    justify-content: flex-start;
    align-items: center;
}

/* 靠右 */
.jc-fe {
    justify-content: flex-end;
}

/* 靠下 */
.ai-fx {
    align-items: flex-end;
}

/* 改变主轴方向 向下 */
.fd-c {
    flex-direction: column;
}

/* 等分间距 */
.jc-se {
    justify-content: space-evenly;
}

/* 换行显示 */
.fw-w {
    flex-wrap: wrap;
}


.navbar {
    box-shadow: 0 0 1.25rem rgba(30,34,40,.04);
    background: rgba(255,255,255,.97);
}

.bg-gray {
    background-color: #F1F1F1 !important;
}
#tags-main {
    padding: 20px 0;
    background: #F1F1F1;
}

.tags-box {}

.tags-title-container .nav-bread .x12 {
    padding: 20px 0;
}

.tags-title-container h2 {
    font-size: 20px;
    padding-bottom: 10px;
    font-family: Source Han Sans;
    font-weight: bold;
    color: #2B4FD1;
    border-bottom: 4px solid #2B4FD1;
}

.layout .line {
    background: #ffffff;
    padding: 20px;
    margin-top: 20px;
    border-radius: 10px;
}

.layout .line .title-l {
    margin-bottom: 20px;
}

.layout .line .title-l h2 {
    font-size: 20px;
    padding-left: 10px;
    font-family: Source Han Sans;
    font-weight: bold;
    color: #2B4FD1;
    border-left: 4px solid #2B4FD1;
}

.layout .line .tags-links {
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.layout .line .tags-links a {
    line-height: 30px;
    color: #000000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.container {
    max-width: 1920px !important;
}
.container-list .normal-list li {
    height: 30px;
    line-height: 30px;
}

.container-list .normal-list li a {
    color: #000000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.container-list .text-center .pagination {
    margin-top: 30px;
    padding: 20px 0;
}

.container-list .text-center .pagination li {
    margin-left: 10px;
    cursor: pointer;
}

.container-list .text-center .pagination a,
.container-list .text-center .pagination span {
    border: 1px solid #2B4FD1;
    padding: 10px;
}

.container-list .text-center .pagination li:hover a,
.container-list .text-center .pagination li:hover span,
.container-list .text-center .pagination li.active a,
.container-list .text-center .pagination span.current {
    background: #2B4FD1;
    color: #ffffff;
}



@media screen and (max-width: 1920px) {
    #tags-main .tags-box {
        width: 100%;
        padding: 0 20px;
    }
}

@media screen and (max-width: 1440px) {
    .layout .line .tags-links {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media screen and (max-width: 1024px) {
    .layout .line .tags-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .layout .line .tags-links {
        grid-template-columns: repeat(1, 1fr);
    }
}