/* 页码 */

.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;
    width: 100%;
    background: #000;
    display: flex;
    justify-content: center;
}

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

.Nybanner .text {
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    padding: 0 var(--container);
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
}



.Nybanner .text h1 {
    padding-left: 20px;
    font-size: 36px;
    line-height: 1;
    margin-bottom: 10px;
    position: relative;
    color: #fff;
    font-weight: bold;
}

.Nybanner .text h1::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: #50BA14;
}

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


}

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

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

    .Nybanner .text h1 {
        font-size: 32px;
    }


}

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

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

}