/* 通用 */
/* 主体宽度-------------------------------------------------------- */
/* 主体宽度-------------------------------------------------------- */
/* 主体宽度-------------------------------------------------------- */
/* .container {
    width: 1600px;
    max-width: 1600px;
}

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



/* 内页通用样式 */
/* 内页大图-------------------------------------------------------- */
/* 内页大图-------------------------------------------------------- */
/* 内页大图-------------------------------------------------------- */
.Nybanner {
    position: relative;
    width: 100%;
    /* height: 25vw;
    min-height: 250px; */
    background: #000;
    display: flex;
    justify-content: center;
}

.Nybanner img {
    position: relative;
    width: 100%;
    opacity: 1;
    object-fit: cover;
}



@keyframes ShowTop {
    0% {
        opacity: 0;
        position: relative;
        top: -50px;
    }

    100% {
        opacity: 1;
        position: relative;
        top: 0px;
    }
}

@keyframes ShowBottom {
    0% {
        opacity: 0;
        position: relative;
        bottom: -50px;
    }

    100% {
        opacity: 1;
        position: relative;
        bottom: 0px;
    }
}

.Nybanner .text h1 {
    color: #fff;
    font-size: 48px;
    letter-spacing: 10px;
    line-height: 1.5;
    text-align: center;
    animation: ShowTop 1s ease-in-out 0s 1 alternate forwards;
}

.Nybanner .text span {
    display: block;
    background: #2A62AE;
    height: 70px;
    width: 4px;
    animation: ShowBottom 1s ease-in-out 0s 1 alternate forwards;
}

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

    .Nybanner .text span {
        height: 45px;
        width: 3px;
    }
}

@media screen and (max-width: 992px) {
    .Nybanner .container {
        height: 100%;
    }
}

/* 框架结构-------------------------------------------------------- */
/* 框架结构-------------------------------------------------------- */
/* 框架结构-------------------------------------------------------- */
.NyBigBox {
    position: relative;
    padding-top: 60px;
    padding-bottom: 120px;
    z-index: 9;
}

@media screen and (max-width: 640px) {
    .NyBigBox {
        padding-top: 30px;
        padding-bottom: 60px;
    }
}

.NyBox {
    display: flex;
    flex-wrap: wrap;
}

.NyBox .left {
    width: 340px;
    padding-right: 90px;
}

.NyBox .right {
    width: calc(100% - 340px);
}


.NyBox .left h1 {
    margin: 0;
    border-top: 4px solid #034390;
    background: #f2f2f2;
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    text-transform: capitalize;
}

.postListBox {
    border-left: 4px solid #034390;
}

.postList_1 {
    position: relative;
}

.postList_1 a {
    position: relative;
    border-bottom: 1px solid #D9D9D9;
    padding-left: 45px;
    color: #000;
    font-size: 18px;
    font-weight: 700;
    height: 75px;
    display: flex;
    align-items: center;
}

.postList_2 {
    height: 0;
    overflow: hidden;
}

.postList_2 a {
    display: block;
    color: #5B5B5B;
    border-bottom: 1px solid #D9D9D9;
    line-height: 60px;
    padding-left: 60px;
}

@media screen and (max-width: 1440px) {
    .NyBox .left {
        width: 300px;
        padding-right: 60px;
    }

    .NyBox .right {
        width: calc(100% - 300px);
    }
}

@media screen and (max-width: 992px) {
    .NyBox .left {
        width: 240px;
        padding-right: 30px;
    }

    .NyBox .right {
        width: calc(100% - 240px);
    }

    .NyBox .left h1 {
        height: 75px;
        font-size: 24px;
    }

    .postList_1 a {
        padding-left: 30px;
        font-size: 16px;
        height: 60px;
    }
}

@media screen and (max-width: 640px) {
    .NyBox .left .NyNavList {
        display: none;
    }

    .NyBox .left {
        width: 100%;
        padding-right: 0;
    }

    .NyBox .right {
        margin-top: 45px;
        width: 100%;
    }

    .NyBox .left h1 {
        height: 60px;
        font-size: 18px;
    }
   .NyBox .left h1::after {
        content: "";
        display: block;
        background: url(/assets/img/left_6.png) no-repeat center;
        background-size: 100% 100%;
        position: relative;
        width: 15px;
        height: 20px;
        transform: rotateZ(-90deg);
        left: 15px;
    }
    .postListBox {
        border-left: 0px;
    }

    .postList_1 a {
        padding-left: 0;
        font-size: 14px;
        height: 45px;
        line-height: 45px;
        text-align: center;
        display: block;
    }
}

/* 内页内容-------------------------------------------------------- */
/* 内页内容-------------------------------------------------------- */
/* 内页内容-------------------------------------------------------- */


.NyBox {
    min-height: 300px;
}

.Ny_text {
    padding: 45px 0 30px;
    min-height: 300px;
}

.Ny_text p {
    
}

@media screen and (max-width: 640px) {

    .Ny_text {
        padding: 15px 0 30px;
        min-height: 300px;
    }
}

/* 面包屑样式-------------------------------------------------------- */
/* 面包屑样式-------------------------------------------------------- */
/* 面包屑样式-------------------------------------------------------- */
.mbx {
    background: #f2f2f2;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    font-size: 14px;
    border-left: 4px solid #034390;
}

.mbx img {
    margin-right: 5px;
}

.mbx a {
    color: #000;
    font-size: 14px;
    margin: 0 10px;
}

@media screen and (max-width: 640px) {

    .mbx a,
    .mbx {
        font-size: 12px;
        letter-spacing: -1px;
    }
}

/* 录入内容样式-------------------------------------------------------- */
/* 录入内容样式-------------------------------------------------------- */
/* 录入内容样式-------------------------------------------------------- */
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;
}

.Ny_xiangqing {
    padding: 30px 0;
    min-height: 500px;
}

/* .Ny_xiangqing p {
    text-indent: 32px;
} */


/* 左右导航样式-------------------------------------------------------- */
/* 左右导航样式-------------------------------------------------------- */
/* 左右导航样式-------------------------------------------------------- */

@media screen and (max-width: 960px) and (min-width: 0px) {}


@media screen and (max-width: 640px) and (min-width: 0px) {}

/* 页码 */

.page-item.active .page-link {
    background-color: #034390 !important;
    border-color: #034390 !important;
}
@media screen and (max-width: 640px) and (min-width: 0px) {

.page-item .page-link{padding: 5px;font-size: 12px;}
    
}

