/* 页码 */

.page-item.active .page-link {
    background-color: var(--color) !important;
    border-color: var(--color) !important;
}

@media (max-width: 640px) {
    .page-item {
        margin: 5px !important;
    }

    .page-link {
        padding: 5px 8px !important;
        font-size: 12px !important;
    }

    .pagination-container {
        padding: 0 !important;
    }

    .page-total-count {
        font-size: 14px !important;
    }
}

/* 录入内容样式 */

figure.image img {
    width: auto;
    max-width: 100%;
}

figure.image-style-align-center {
    margin: 0 auto;
}

figure.image-style-align-center img {
    display: block;
    margin: 0 auto;
}

figure.table {
    margin: 0 auto;
}

figure table {
    width: 100%;
}

figure table p {
    margin: 0;
}

.NyContent {
    padding: 0;
    min-height: 300px;
}

@media (max-width: 640px) {
    .NyContent {
        padding: 0 15px;
    }
}

/* 主体宽度 */

/* .container {
    width: 1600px;
    max-width: 1600px;
}

 @media screen and (max-width: 1440px) {
    .container {
        width: 100%;
        max-width: 100%;
    }
}  */

/* 内页大图 */
.Nybanner {
    position: relative;
    z-index: 1;
    width: 100%;
    background: #000;
    display: flex;
    justify-content: center;
}

.Nybanner>img {
    position: relative;
    width: 100%;
    min-height: 200px;
    object-fit: cover;
    opacity: 1;
}

.Nybanner .text {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}


.Nybanner .text h1 {
    font-weight: bold;
    font-size: 48px;
    line-height: 1;
    text-align: left;
    color: #FFFFFF;
}

@media screen and (max-width: 1440px) {
    .Nybanner .text h1 {
        font-size: 42px;
    }

}

@media screen and (max-width: 1200px) {
    .Nybanner>img {
        min-height: 500px;
    }
}

@media screen and (max-width: 992px) {
    .Nybanner {
        margin-top: 60px;
    }

    .Nybanner>img {
        min-height: 300px;
    }
}

@media screen and (max-width: 640px) {
    .Nybanner {
        margin-top: 60px;
    }

    .Nybanner>img {
        min-height: 200px;
    }

    .Nybanner .text h1 {
        font-size: 24px;
        text-align: center;
    }

}