@charset "utf-8";



.tab-bd {
    position: relative;
    overflow: hidden;
}

.tab-bd>div {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    opacity: 0;
    z-index: -9;
    transition: all 0.5s;
    transform: translateY(1rem);
}

.tab-bd>div.on {
    position: relative;
    z-index: 9;
    opacity: 1;
    transform: translateY(0);
}

.banner-line div {
    width: 0;
    height: 1px;
    background: rgba(208, 178, 126, 0.3);
    transition: all 3s;
}

.banner-line {
    flex: 1;
    min-width: 0;
    height: 1px;
    position: relative;
    display: flex;

}

.banner.ani .banner-line div {
    width: 100%;
}

.banner-linel {
    justify-content: flex-end;
}

.banner-liner {
    justify-content: flex-start;
}

.banner-linel::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 6px;
    height: 6px;
    border: 1px solid #D0B27E;
    transform: translateY(-50%) rotateZ(45deg);
}

.banner-linel::after {
    content: "";
    position: absolute;
    top: 0;
    right: 6px;
    width: 6px;
    height: 6px;
    background: #D0B27E;
    border: 1px solid #D0B27E;
    transform: translateY(-50%) rotateZ(45deg);
}

.banner-liner::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 6px;
    border: 1px solid #D0B27E;
    transform: translateY(-50%) rotateZ(45deg);
}

.banner-liner::after {
    content: "";
    position: absolute;
    top: 0;
    width: 6px;
    height: 6px;
    background: #D0B27E;
    border: 1px solid #D0B27E;
    transform: translateY(-50%) rotateZ(45deg);
    left: 6px;
}
    .banner .slick-slide a img {
        top: 0;
        position: absolute;
        left: 0;
        height: 100%;
    }
    .banner .slick-slide a {
        padding-top: 50%;
    }
#downPage {
    width: 1rem;
    height: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9;
    background: url(../images/down-page1.png) no-repeat;
    background-size: 100% 100%;
    cursor: pointer;
    margin: 0 .6rem;
    opacity: 0;
    transition: opacity 2s;
    animation: _ani1 10s infinite linear;
}

.banner.ani #downPage {
    opacity: 1;
}

#downPage::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: url(../images/down-page1.png) no-repeat;
    background-size: 100% 100%;
    animation: ani_bj 3s infinite linear;
    opacity: 0;
}

#downPage img {
    animation: _ani2 10s infinite linear;
}

@keyframes _ani1 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes _ani2 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

@keyframes ani_bj {
    0% {
        opacity: 0;
        transform: scale(1);
    }

    50% {
        opacity: .8;
        transform: scale(1.45);
    }

    95% {
        opacity: 0;
        transform: scale(1.8);
    }

    100% {
        opacity: 0;
        transform: scale(1);
    }
}

.banner {
    position: relative;
    /* z-index: 9; */
    overflow: hidden;
    width: 100%;
}

.banner a {
    display: block;
}

.banner>img {
    display: block;
    width: 100%;
}

.banner .slick {
    position: relative;
    z-index: 9;
}

.banner-more {
    font-size: .18rem;
    color: #fff;
    padding-left: .15rem;
}

.banner .slick-slide a {
    display: block;
    position: relative;
}

.banner .slick-slide a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1.47rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.31) 100%);
}

.banner .slick-slide a>img, .banner .slick-slide a>video {
    display: block;
    width: 100%;
    /* height: 100vh; */
    object-fit: cover;
}

.banner .slick-slide a div {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner .slick-slide a div img {
    display: block;
    max-width: 70%;
    max-height: 1.83rem;
    transition: all 1s;
    transform: scale(0);
    opacity: 0;
}

.banner .slick-slide a div img.on {
    opacity: 1;
    transform: scale(1);
}

.banner .slick-slide.slick-current a>img {
    animation: img_scale linear 8s;
}

@keyframes img_scale {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }

}

.b-dot {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.48rem;
    z-index: 9;
    display: flex;
    justify-content: center;
    align-items: center;
}

.b-dot>div {
    width: 0.08rem;
    height: 0.24rem;
    background: rgba(255, 255, 255, .5);
    margin: 0 0.06rem;
    cursor: no-drop;
}

.banner .slick-dots {
    position: absolute;
    font-size: 0;
    display: flex !important;
    justify-content: center;
    align-items: flex-end;
    left: 0;
    bottom: .32rem;
    left: 0;
    right: 0;
}


.banner .slick-dots li {
    position: relative;
    display: flex;
    align-items: center;
    width: auto;
    height: auto;
    transition: all .5s;
    margin: 0;
}

.banner .slick-dots li:before {
    content: "";
    display: block;
    width: .24rem;
    border-top: 1px dashed #FFFFFF;
    margin: 0 0.05rem;
}

.banner .slick-dots li:nth-child(1):before {
    display: none;
}


.banner .slick-dots li span {
    display: block;
    position: relative;
    height: .37rem;
    transition: all .5s;
    width: 0.1rem;
}

.banner .slick-dots li span::before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: .1rem;
    height: .1rem;
    border: 1px solid #FFFFFF;
    border-radius: 50%;
    transition: all .5s;
}

.banner .slick-dots li span::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%) scale(0);
    background: url(../images/banner-dot-act.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    width: .37rem;
    height: .37rem;
    transition: all .5s;
}

.banner .slick-dots li.slick-active {
    opacity: 1;
    background: transparent;
}

.banner .slick-dots li.slick-active span {
    width: .37rem;
}

.banner .slick-dots li.slick-active span::after {
    transform: scale(1)
}

.banner .slick-dots li.slick-active::before {}

.banner .slick-dots li.slick-active span::before {
    opacity: 0;
}

.banner .slick-dots li.slick-active span::after {
    opacity: 1;
    transform: translateX(-50%) translateY(-50%) scale(1);
}






.banner .banner-prev {
    position: absolute;
    left: 0;
    width: 10%;
    top: 0;
    bottom: 0;
    transition: all .6s;
    cursor: pointer;
    z-index: 9;
}

.banner .banner-next {
    position: absolute;
    right: 0;
    width: 10%;
    top: 0;
    bottom: 0;
    transition: all .6s;
    cursor: pointer;
    z-index: 9;
}

.banner .banner-prev span {
    position: absolute;
    left: 50%;
    top: 47%;
    transform: translate(-50%, -50%);
    width: .635rem;
    height: .76rem;
    background: url(../images/prev.png) no-repeat center center;
    background-size: 1.27rem auto;
    opacity: 0;
    z-index: -1;
    cursor: pointer;
    transition: .6s
}

.banner .banner-next span {
    position: absolute;
    left: 50%;
    top: 47%;
    transform: translate(-50%, -50%);
    width: .635rem;
    height: .76rem;
    background: url(../images/next.png) no-repeat center center;
    background-size: 1.27rem auto;
    opacity: 0;
    z-index: -1;
    cursor: pointer;
    transition: .6s
}

.banner:hover .banner-prev span {
    opacity: .4;
    z-index: 9;
}

.banner:hover .banner-next span {
    opacity: .4;
    z-index: 9;
}

.banner .banner-prev span:hover {
    opacity: 1;
    z-index: 9;
}

.banner .banner-next span:hover {
    opacity: 1;
    z-index: 9;
}

/* index */
/* .index {
    z-index: 99;
    overflow: hidden;
    padding-top: .5rem;
    font-size: 0;
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 99;
    background: #fff;
} */

.index {
    overflow: hidden;
}

.tit {
    position: relative;
}



.tit-name {}

.tit-name h3 {
    display: flex;
    align-items: center;
    font-weight: 600;
    padding-top: .17rem;
    position: relative;
    z-index: 1;
    flex-direction: column;
    align-items: flex-end;
}

.tit-name h3+h3 {
    margin-left: .43rem;
}

.tit-name h3+h3 i {
    position: absolute;
    left: -.3rem;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    margin-top: .1rem;
    width: 0.09rem;
    height: 0.09rem;
    background-color: #fefdfe;
    opacity: 0.15;
    border-radius: 50%;
}

.tit-name h3::before {
    content: "";
    position: absolute;
    left: .17rem;
    top: 0;
    background: url(../images/tit-cbg.png) no-repeat;
    background-position: left center;
    background-size: 100% 100%;
    width: 1.58rem;
    height: 0.52rem;
    z-index: -1;
}


.tit-name b {
    font-size: 0.36rem;
    font-weight: normal;
    line-height: 0.54rem;
    color: #333333;
    display: block;
}

.tit-name span {
    color: #0D4589;
    font-size: .14rem;
    line-height: .18rem;
    display: flex;
    align-items: center;
    margin-top: -0.05rem;
    font-weight: normal;
    letter-spacing: 0.2em;
}

.tit-name span:before {
    content: "";
    display: block;
    width: .3rem;
    border-top: 1px solid #0D4589;
    margin-right: .06rem;
}


.tit-more {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.tit-more a {
    display: block;
    font-size: 0.16rem;
    font-weight: normal;
    font-stretch: normal;
    line-height: 0.24rem;
    letter-spacing: 0rem;
    color: #333333;
    padding-left: .35rem;
    background: url(../images/tit-more.png) no-repeat;
    background-position: right center;
    background-size: .42rem auto;
    padding-right: .48rem;
}

.tit-w .tit-name b {
    color: #fff;
}

.tit-w .tit-name h3::before {
    background: url(../images/tit-cbg-w.png) no-repeat;
    background-position: center center;
    background-size: auto 100%;
}

.tit-w .tit-name span {
    color: #fff;
}

.tit-w .tit-name span:before {
    border-color: #fff;
}


.tit-w .tit-more a {
    color: #ffffff;
    background: url(../images/tit-more-w.png) no-repeat;
    background-position: right center;
    background-size: .42rem auto;
}


.publine {
    display: flex;
    align-items: center;
    position: absolute;
    z-index: 9;
    left: 0;
    right: 0;
    pointer-events: none;
}

.publine-t {
    top: 0;
}

.publine-b {
    bottom: 0;
}

.publine::before {
    content: "";
    display: block;
    width: 3px;
    height: 3px;
    background: #fff;
    transform: rotateZ(45deg);
}

.publine::after {
    content: "";
    display: block;
    width: 3px;
    height: 3px;
    background: #fff;
    transform: rotateZ(45deg);
}

.publine div {
    flex: 1;
    min-width: 0;
    border-top: 1px dashed #fff;
}


.s1 {
    padding-top: .48rem;
    background: url(../images/s1-bg.png) no-repeat;
    background-position: center bottom;
    background-size: cover;
    padding-bottom: 1.16rem;
}

.s1-c {
    display: flex;
    margin-top: .35rem;
}

.s1-l {
    width: 8.17rem;
    margin-right: 0.36rem;
}

.s1-l .slick ul li {}

.s1-l .slick ul li a {
    display: block;
    position: relative;
}

.s1-l .slick ul li a .pic {
    padding-top: 67%;
}

.s1-l .slick ul li a .pic::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 78%, rgba(0, 11, 32, 0.62) 100%);
}

.s1-l .slick ul li a .info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 0.8rem;
    padding: 0 2.5rem 0 .25rem;
}

.s1-l .slick ul li a .info h3 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.24rem;
    font-weight: bold;
    line-height: 0.8rem;
    color: #ffffff;
}

.s1-l .slick .slick-dots {
    display: flex;
    align-items: center;
    justify-content: space-between;
    bottom: 0.25rem;
    width: auto;
    right: 0.8rem;
    width: 0.97rem;
}

.s1-l .slick .slick-dots li span {
    display: block;
    font-size: 0.14rem;
    font-weight: normal;
    line-height: 0.26rem;
    letter-spacing: normal;
    color: rgba(255, 255, 255, 0.62);
    transition: all .5s;
}

.s1-l .slick .slick-dots li.slick-active span {
    font-size: 0.2rem;
    color: #FFFFFF;
}

.s1-l .slick-prev {
    top: auto;
    left: auto;
    transform: none;
    right: 1.93rem;
    bottom: 0.23rem;
    width: 0.15rem;
    height: 0.3rem;
    background: url(../images/s1-prev.png) no-repeat;
    background-position: center center;
    background-size: auto 100%;
}

.s1-l .slick-next {
    top: auto;
    left: auto;
    transform: none;
    right: 0.45rem;
    bottom: 0.23rem;
    width: 0.15rem;
    height: 0.3rem;
    background: url(../images/s1-next.png) no-repeat;
    background-position: center center;
    background-size: auto 100%;
}


.s1-r {
    flex: 1;
    min-width: 0;
}

.s1-r ul li a {
    display: block;
    border-top: 1px dashed rgba(15, 81, 162, 0.27);
}

.s1-r ul li:nth-child(1) a {
    border-top: none;
}

.s1-r ul li:last-child a {
    border-bottom: 1px dashed rgba(15, 81, 162, 0.27);
}

.s1-r ul li a .info1 {
    height: 0.67rem;
    display: flex;
    align-items: center;
    padding-right: .3rem;
}

.s1-r ul li a .info1 h3 {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    position: relative;
    font-size: .18rem;
    line-height: .26rem;
    padding-left: .34rem;
    font-weight: normal;
}

.s1-r ul li a .info1 h3::before {
    content: "";
    position: absolute;
    left: .2rem;
    top: 50%;
    transform: rotate(45deg) translateY(-50%);
    width: 0.04rem;
    height: 0.04rem;
    background: #0F51A2;
}

.s1-r ul li a .info1 span {
    font-size: 0.16rem;
    font-weight: 600;
    line-height: 0.26rem;
    letter-spacing: normal;
    color: #0F51A2;
    font-family: sys-sb;
}

.s1-r ul li a .info2 {
    display: none;
    background: url(../images/s1-rinfobg.png) no-repeat;
    background-position: center center;
    background-size: cover;
    display: none;
    align-items: flex-start;
    height: 1.4rem;
    padding-top: .25rem;
    padding-left: .4rem;
    padding-right: .3rem;
    position: relative;
    margin-left: -.36rem;
}

.s1-r ul li a .info2 .date {
    display: flex;
    flex-direction: column;
    margin-right: .24rem;
    justify-content: center;
    align-items: center;
    font-family: sys-b;
}

.s1-r ul li a .info2 .date b {
    font-size: 0.26rem;
    font-weight: bold;
    line-height: 0.26rem;
    letter-spacing: normal;
    color: #FFFFFF;

}

.s1-r ul li a .info2 .date span {
    font-size: 0.18rem;
    font-weight: bold;
    line-height: 0.26rem;
    letter-spacing: normal;
    color: rgba(255, 255, 255, 0.74);
    margin-top: 0.08rem;
}

.s1-r ul li a .info2 .text {
    flex: 1;
    min-width: 0;
}

.s1-r ul li a .info2 .text h3 {
    font-size: 0.18rem;
    font-weight: bold;
    line-height: 0.26rem;
    letter-spacing: normal;
    color: #FFFFFF;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.s1-r ul li a .info2 .text p {
    font-size: 0.16rem;
    font-weight: normal;
    line-height: 0.26rem;
    letter-spacing: normal;
    color: rgba(255, 255, 255, 0.72);
    margin-top: 0.12rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: .52rem;
}

.s1-r ul li a .info2 .publine-t {
    top: 0.1rem;
    left: .4rem;
    right: 0.3rem;
}

.s1-r ul li a .info2 .publine-b {
    bottom: 0.1rem;
    left: .4rem;
    right: 0.3rem;
}



.s2 {}

.s2-c {
    display: flex;
}

.s2-l {
    position: relative;
    z-index: 1;
    width: 9.9rem;
    margin-right: .5rem;
    padding-top: .52rem;
    padding-bottom: 1.15rem;
}

.s2-l::before {
    content: "";
    position: absolute;
    left: -1.6rem;
    top: 0;
    right: -.5rem;
    bottom: 0;
    background: url(../images/s2-lbg.png) no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: -1;
}

.s2-l ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: .54rem;
}

.s2-l ul li {
    width: calc(50% - .11rem);
    position: relative;
    z-index: 1;
    padding-right: .05rem;
    padding-bottom: 0.08rem;
}

.s2-l ul li:nth-child(2)~li {
    margin-top: .15rem;
}

.s2-l ul li::before {
    content: "";
    position: absolute;
    left: 0.05rem;
    top: 00.08rem;
    right: 0;
    bottom: 0;
    background: #9AD1EE;
    z-index: -1;
    pointer-events: none;
    transition: all .5s;
}


.s2-l ul li a {
    display: block;
    border-radius: 0px 0px 0.1rem 0px;
    background: url(../images/s2-itembg-def.png) no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: 1;
    position: relative;
    padding: .3rem;
}

.s2-l ul li a .publine-t {
    top: .1rem;
    left: 0.05rem;
    right: 0.05rem;
}

.s2-l ul li a .publine-b {
    bottom: .1rem;
    left: 0.05rem;
    right: 0.05rem;
}

.s2-l ul li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: url(../images/s2-itembg.png) no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 0px 0px 0.1rem 0px;
    border: 1px solid #5ACBFF;
    z-index: -1;
    pointer-events: none;
    transition: all .5s;
    opacity: 0;
}

.s2-l ul li a .date {
    display: flex;
    align-items: center;
    font-family: sys-b;
}

.s2-l ul li a .date b {
    font-size: 0.24rem;
    font-weight: bold;
    line-height: .34rem;
    letter-spacing: normal;
    color: #003291;
}

.s2-l ul li a .date span {
    font-size: 0.18rem;
    line-height: .26rem;
    color: #9E9E9E;
    margin-left: 0.08rem;
}

.s2-l ul li a .info {
    border-top: 1px solid #DCDCDC;
    margin-top: .13rem;
    padding-top: .2rem;
}

.s2-l ul li a .info h3 {
    font-size: 0.18rem;
    font-weight: normal;
    line-height: 0.3rem;
    text-transform: uppercase;
    letter-spacing: normal;
    color: #333333;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: 0.6rem;
}

.s2-l ul li a .info p {
    font-size: 0.16rem;
    font-weight: normal;
    line-height: 0.26rem;
    letter-spacing: normal;
    color: #9E9E9E;
    margin-top: 0.09rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.s2-r {
    position: relative;
    z-index: 1;
    flex: 1;
    min-width: 0;
    padding-top: .52rem;
    padding-left: .55rem;
}

.s2-r .tit-name span {
    letter-spacing: 0;
}

.s2-r .tit-more a {
    display: none;
}

.s2-r .tit-more a.on {
    display: block;
}

.s2-r .tit-name h3.noon::before {
    opacity: 0;
}

.s2-r .tit-name h3::before {
    opacity: 1;
    transition: all .5s;
}

.s2-r .tit-name h3.noon span {
    opacity: 0;
}

.s2-r .tit-name h3 span {
    opacity: 1;
    transition: all .5s;
}

.s2-r::before {
    content: "";
    position: absolute;
    left: 0;
    right: -1.6rem;
    top: 0;
    bottom: 0;
    background: url(../images/s2-rbg.png) no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: -1;
    box-shadow: -0.07rem 0rem 0.24rem 0px rgba(0, 0, 0, 0.12);
}

.s2-r .tab-bd {
    margin-top: .52rem;
}

.s2-r .tab-bd ul {}

.s2-r .tab-bd ul li {
    position: relative;
    z-index: 1;
    padding-right: .05rem;
    padding-bottom: 0.08rem;
}

.s2-r ul li::before {
    content: "";
    position: absolute;
    left: 0.05rem;
    top: 00.08rem;
    right: 0;
    bottom: 0;
    background: #BDEBD7;
    z-index: -1;
    pointer-events: none;
    transition: all .5s;
}

.s2-r .tab-bd ul li+li {
    margin-top: .3rem;
}

.s2-r .tab-bd ul li a {
    display: block;
    background: url(../images/s2-itembg-def.png) no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 0px 0px .1rem 0px;
    padding: .2rem .27rem .2rem .27rem;
    z-index: 1;
    position: relative;
}

.s2-r .tab-bd ul li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: url(../images/s2-itembg.png) no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 0px 0px 0.1rem 0px;
    border: 1px solid #5ACBFF;
    z-index: -1;
    pointer-events: none;
    transition: all .5s;
    opacity: 0;
}

.s2-r .tab-bd ul li a .date {
    display: flex;
    align-items: center;
    font-family: sys-b;
}

.s2-r .tab-bd ul li a .date b {
    font-size: 0.24rem;
    font-weight: bold;
    line-height: .34rem;
    letter-spacing: normal;
    color: #333;
}

.s2-r .tab-bd ul li a .date span {
    font-size: 0.18rem;
    line-height: .26rem;
    color: #9E9E9E;
    margin-left: 0.08rem;
}

.s2-r .tab-bd ul li a .info {
    border-top: 1px solid #DCDCDC;
    padding-top: .27rem;
}

.s2-r .tab-bd ul li a .info h3 {
    font-size: 0.18rem;
    font-weight: normal;
    line-height: 0.3rem;
    text-transform: uppercase;
    letter-spacing: normal;
    color: #333333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.s3 {
    background: url(../images/s3-bg.png) no-repeat;
    background-position: center top;
    background-size: auto 5.58rem;
    padding-top: .48rem;
    position: relative;
    z-index: 2;
}

.s3-c {
    display: flex;
    justify-content: space-between;
    margin-top: .42rem;
}

.s3-l {
    width: 48.75%;
    border-radius: 0 0.2rem 0rem 0.2rem;
    background: #FFFFFF;
    box-shadow: 0rem 0.04rem 0.1rem 0rem rgba(0, 0, 0, 0.08);
}

.s3-r {
    width: 48.75%;
    border-radius: 0.2rem 0rem 0.2rem 0rem;
    background: #FFFFFF;
    box-shadow: 0rem 0.04rem 0.1rem 0rem rgba(0, 0, 0, 0.08);
}

.s3-c ul {
    padding-bottom: .35rem;
}

.s3-c ul li a {
    height: 1.05rem;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    padding: 0 .5rem;
    position: relative;
    z-index: 1;
}

.s3-c ul li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    transition: all .5s;
    background: url(../images/s3-itembg.png) no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: -1;
    pointer-events: none;
    opacity: 0;
}

.s3-c ul li a .pics {
    width: 1rem;
    height: 0.34rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: .1rem;
}

.s3-c ul li a .pics img {
    max-width: 100%;
    max-height: 100%;
}

.s3-c ul li a .info {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
}

.s3-c ul li a .info h3 {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.18rem;
    font-weight: normal;
    line-height: 0.26rem;
    letter-spacing: normal;
    color: #333333;
}

.s3-c ul li a .info span {
    font-size: 0.16rem;
    font-weight: 500;
    line-height: 0.26rem;
    letter-spacing: normal;
    color: #0C4994;
    font-family: sys-b;
    margin-left: .2rem;
}

.s3-c ul li a p {
    width: 100%;
    font-size: 0.14rem;
    font-weight: normal;
    line-height: 0.26rem;
    letter-spacing: normal;
    color: #C1DDFF;
    height: 0.26rem;
    transition: all .5s;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    height: 0;
    margin-top: 0;
}

.s3-c ul li a .publine {
    left: .5rem;
    right: 0.5rem;
}

.s3-c ul li a .publine::before {
    background: #CBE0FF;
}

.s3-c ul li a .publine::after {
    background: #CBE0FF;
}

.s3-c ul li a .publine div {
    border-color: #CBE0FF;
}


.s4 {
    background: url(../images/s4-bg.png) no-repeat;
    background-position: center center;
    background-size: cover;
    padding-top: 1.07rem;
    padding-bottom: 1.09rem;
    position: relative;
    z-index: 1;
}

.s4::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 12.78rem;
    background: url(../images/s4-bg.png) no-repeat;
    background-position: center bottom;
    background-size: cover;
    pointer-events: none;
    z-index: -1;
}

.s4 {}


.s4-c {
    margin-top: .5rem;
}

.s4-c ul {
    display: flex;
    box-shadow: 0rem 0.04rem 0.1rem 0rem rgba(15, 81, 162, 0.28);
}

.s4-c ul li {
    width: 2.5rem;
    display: flex;
    position: relative;
    background: #F5FBFF;
    overflow: hidden;
}

.s4-list {
    position: absolute;
    left: 2.5rem;
    right: 0;
    top: 0;
    bottom: 0;
    transform: translateY(100%);
    transition: all 0.5s;
}


.s4-tit {
    width: 2.5rem;
    height: 6.05rem;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.s4-tit a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 100%;
}

.s4-tit a::before {
    content: "";
    position: absolute;
    left: 0.15rem;
    top: 0.15rem;
    right: 0.15rem;
    bottom: 0.15rem;
    border: 1px solid #FFFFFF;
    opacity: .6;
    border-radius: 0.2rem;
}

.s4-tit a .pics {
    border-radius: 50%;
    box-sizing: border-box;
    border: 1px dashed #FFFFFF;
    width: 1.36rem;
    height: 1.36rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.s4-tit a .pics img {
    max-width: 80%;
    max-height: 80%;
}

.s4-tit a p {
    font-size: 0.28rem;
    font-weight: bold;
    line-height: 0.34rem;
    text-align: center;
    letter-spacing: normal;
    color: #FFFFFF;
    margin-top: .38rem;
}


.s4-list dl {
    padding: .45rem .3rem 0 .3rem;
}

.s4-list dl dd+dd {
    margin-top: .5rem;
}

.s4-list dl dd a {
    display: flex;
    align-items: flex-start;
}

.s4-list dl dd a .date {
    font-family: sys-b;
    min-width: .77rem;
}

.s4-list dl dd a .date b {
    font-size: 0.24rem;
    font-weight: bold;
    line-height: .34rem;
    letter-spacing: normal;
    color: #5A5A5A;
    display: block;
}

.s4-list dl dd a .date span {
    margin-right: .12rem;
    float: right;
    font-size: 0.18rem;
    font-weight: bold;
    line-height: .26rem;
    letter-spacing: normal;
    color: #9E9E9E;
    display: block;
}

.s4-list dl dd a .info {
    flex: 1;
    min-width: 0;
    position: relative;
    padding-left: .13rem;
}

.s4-list dl dd a .info::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.02rem;
    width: 1px;
    height: 0.26rem;
    background: rgba(12, 60, 150, 0.5);
}


.s4-list dl dd a .info h3 {
    font-size: 0.18rem;
    font-weight: normal;
    line-height: 0.3rem;
    text-transform: uppercase;
    letter-spacing: normal;
    color: #333333;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: 0.6rem;
}


.s5 {
    padding-top: .5rem;
    position: relative;
    padding-bottom: 1.56rem;
}

.s5::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: url(../images/s5-bg.png) no-repeat;
    background-position: center bottom;
    background-size: cover;
}

.s5 .tit-name span {
    letter-spacing: 0;
}

.s5-c {
    margin-top: .4rem;
}

.s5-c>ul {
    margin: 0 -.2rem;
}

.s5-c>ul li {
    position: relative;
    z-index: 1;
}


.s5-c ul li a {
    display: block;
    margin: 0 .2rem;
    position: relative;
    transition: all 0.5s;
}

.s5-c ul li a .pic {
    padding-top: 53.24%;
}

.s5-c>ul li.slick-active a {
    clip-path: polygon(0 .2rem, 100% .5rem, 100% calc(100% - .5rem), 0 calc(100% - .2rem));
}

.s5-c ul li.slick-current a {
    z-index: 9;
}

.s5-c ul li.slick-current+li a {
    clip-path: polygon(0 .5rem, 100% .2rem, 100% calc(100% - .2rem), 0 calc(100% - .5rem));
}

.s5-c ul li.slick-current a {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.s5-c ul li.slick-current a p {
    opacity: 1;
    transition: all 0.5s .3s;
}

.s5-c .slick-dots {
    position: static;
    margin-top: .32rem;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.s5-c .slick-dots li {
    height: .12rem;
    width: .12rem;
    border: 1px solid #0D4589;
    border-radius: 50%;
    margin: 0 .04rem;
    order: 3;
}

.s5-c .slick-dots li.slick-active {
    background: #0D4589;
    border: none !important;
}


.s5-c .slick-prev, .s5-c .slick-next {
    position: static;
    transform: translateY(0);
    height: 0.26rem;
    width: 0.94rem;
}

.s5-c .slick-prev {
    background: url(../images/s5_prev.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    margin-right: 0.35rem;
    order: 0;
}

.s5-c .slick-next {
    background: url(../images/s5_next.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    margin-left: 0.35rem;
    order: 5;
}

/* -------------- */

.adblock2 {
    background: url(../images/adbck-bg2.png) no-repeat;
    background-position: center center;
    background-size: cover;
}

.s6 {
    padding-top: .55rem;
    padding-bottom: .87rem;
    border-bottom: 1px solid rgba(79, 137, 208, 0.3);
}

.s6-c {
    margin-top: .48rem;
}

.s6-c ul {
    margin: 0 -.1rem;
}

.s6-c ul li a {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 1.84rem;
    padding: 0 .2rem;
    margin: 0 .1rem;
}

.s6-c ul li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: url(../images/s6-border1.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    z-index: -2;
    pointer-events: none;
    transition: all .5s;
}

.s6-c ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: url(../images/s6-border2.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    z-index: -1;
    pointer-events: none;
    transition: all .5s;
    opacity: 0;
}

.s6-c ul li a .icons {
    height: 0.51rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.s6-c ul li a .icons img {
    max-height: 100%;
    transition: all .5s;
    opacity: 1;
}

.s6-c ul li a .icons img:nth-child(2) {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    opacity: 0;
}

.s6-c ul li a p {
    font-size: 0.18rem;
    font-weight: normal;
    line-height: 0.3rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: normal;
    color: #FFFFFF;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
    width: 100%;
    margin-top: .25rem;
}

@media screen and(-ms-high-contrast:active), (-ms-high-contrast:none) {}


@media screen and (min-width: 1025px) {
    .s6-c ul li a:hover .icons {
        transform: rotateY(360deg);
        transition: all .5s;
    }

    .s6-c ul li a:hover::before {
        opacity: 0;
    }

    .s6-c ul li a:hover::after {
        opacity: 1;
    }

    .s6-c ul li a:hover .icons img {
        opacity: 0;
    }

    .s6-c ul li a:hover .icons img:nth-child(2) {
        opacity: 1;
    }

    .s6-c ul li a:hover p {
        color: #00397E;
    }

    .s4-c ul li.on .s4-list {
        transition: all .5s .3s;
        transform: none;
    }

    .s4-list dl dd a:hover .date b {
        color: #003291;
    }

    .s4-list dl dd a:hover .info h3 {
        color: #003291;
        font-weight: 600;
    }

    .s1-r ul li.on a .info1 {
        display: none;
    }

    .s1-r ul li.on a .info2 {
        display: flex;
    }

    .s1-r ul li.on a {
        border-color: transparent;
    }

    .s1-r ul li.on+li a {
        border-top-color: transparent;
    }

    .s2-l ul li:hover::before {
        background: #004192;
    }

    .s2-l ul li:hover a::before {
        opacity: 1;
    }

    .s2-l ul li:hover a .date b {
        color: #FFFFFF;
    }

    .s2-l ul li:hover a .date span {
        color: rgba(255, 255, 255, 0.95)
    }

    .s2-l ul li:hover a .info {
        border-color: rgba(255, 255, 255, 0.1);
    }

    .s2-l ul li:hover a .info h3 {
        color: #FFFFFF;
    }

    .s2-l ul li:hover a .info p {
        color: #9FCBFF;
    }

    .s2-r .tab-bd ul li:hover::before {
        background: #004192;
    }

    .s2-r .tab-bd ul li:hover a::before {
        opacity: 1;
    }

    .s2-r ul li:hover a .date b {
        color: #FFFFFF;
    }

    .s2-r ul li:hover a .date span {
        color: rgba(255, 255, 255, 0.95)
    }

    .s2-r ul li:hover a .info {
        border-color: rgba(255, 255, 255, 0.1);
    }

    .s2-r ul li:hover a .info h3 {
        color: #FFFFFF;
    }

    .s2-r ul li:hover a .info p {
        color: #9FCBFF;
    }

    .s3-c ul li a:hover::before {
        opacity: 1;
    }

    .s3-c ul li a:hover .info h3 {
        color: #FFFFFF;
    }

    .s3-c ul li a:hover .info span {
        color: #FFFFFF;
    }

    .s3-c ul li a:hover p {
        height: 0.26rem;
        opacity: 1;
        margin-top: .1rem;
    }

    .s3-c ul li a:hover .publine {
        opacity: 0;
    }

}

@media screen and (max-width: 1024px) {
    .s4-c ul {
        justify-content:space-between;
    }
    .s4-c ul li{
        width:3.5rem;
    }
    .s4-tit{
        width: 3.5rem;
    }
    .banner .slick-dots {
        bottom: .2rem;
        justify-content: center;
    }

    .banner .slick-slide a img {
        height: auto !important;
    }

    .banner .slick-slide a::after {
        height: 1rem;
    }

    .banner .banner-prev span, .banner .banner-next span {
        width: 0.63rem;
        height: 0.76rem;
        background-size: 0.63rem auto;
    }

    .banner .slick-dots li:before {
        width: .25rem;
        margin: 0 0.05rem;
    }

    .index {
        position: static;
        padding-top: 0;
        overflow: hidden;
    }

    .tit-name {
        justify-content: flex-start;
    }

    .tit-name b {
        font-size: .28rem;
        line-height: .3rem;
    }

    .tit-name span {
        margin-top: 0.05rem;
        letter-spacing: 0;
    }

    .s1-c {
        display: block;
    }

    .s1-l {
        width: auto;
        margin-right: 0;
    }

    .s1-r ul li a .info1 {
        padding-right: 0;
    }

    .s2-c {
        display: block;
    }

    .s2-l {
        width: auto;
        margin-right: 0;
    }

    .s2-r::before {
        left: -10px;
    }

    .s2-r {
        padding-left: 0;
    }

    .s3-c {
        display: block;
    }

    .s3-l {
        width: auto;
    }

    .s3-r {
        width: auto;
        margin-top: .3rem;
    }

    .tit-name h3+h3 {
        margin-left: .2rem;
    }


    .s1-l .slick ul li a .info h3 {
        font-size: .18rem;
        line-height: .6rem;
    }

    .s1-l .slick ul li a .info {
        height: auto;
    }

    .s1-r ul li a .info1 h3 {
        padding-left: .2rem;
    }

    .s1-r ul li a .info1 h3::before {
        left: 0;
    }

    .s2-r .tab-bd ul li a .date b {
        font-size: .2rem;
    }

    .s2-r .tab-bd ul li a .date span {
        font-size: .16rem;
    }

    .s2-r .tab-bd ul li a .info {
        padding-top: .15rem;
    }

    .s2-r .tab-bd ul li a {
        padding: .2rem;
    }

    .s3-c ul li a {
        padding: 0 .1rem;
        height: 0.8rem;
    }

    .s3-c ul li a .publine {
        left: .1rem;
        right: 0.1rem;
    }

    .s3-c ul li a .pics {
        width: .8rem;
    }

    .s3-c ul li a .info span {
        font-size: .14rem;
        margin-left: .1rem;
    }

    .s5-c .slick-prev {
        margin-right: .2rem;
    }

    .s5-c .slick-next {
        margin-left: .2rem;
    }

    .s4-tit a .pics {
        width: .8rem;
        height: 0.8rem;
    }

    .s4-tit a .pics img {
        max-width: 50%;
        max-height: 50%;
    }

    .s4-tit a p {
        font-size: .2rem;
        margin-top: .2rem;
    }


    .s1, .s2-l, .s2-r, .s3, .s4, .s6 {
        padding-top: .4rem;
    }

    .s1, .s2-l, .s2-r, .s4, .s5, .s6 {
        padding-bottom: .4rem;
    }

    .s1-c, .s2-l ul, .s2-r .tab-bd, .s3-c, .s4-c, .s5-c, .s6-c {
        margin-top: .3rem;
    }

    .s5 {
        padding-top: 0;
    }





}

@media screen and (max-width: 768px) {
    .s2-l ul li {
        width: 100%;
    }

    .s2-l ul li+li {
        margin-top: .2rem !important;
    }

    .s2-l ul li a {
        padding: .2rem;
    }

    .s4-c ul {
        display: block;
    }

    .s4-c ul li {
        width: auto;
        display: block;
    }

    .s4-tit {
        width: auto;
        height: 1.3rem;
    }

    .s4-tit a {
        flex-direction: row;
        align-items: center;
    }

    .s4-tit a p {
        margin-top: 0;
        margin-left: .2rem;
    }

    .s4-tit a::before {
        left: .05rem;
        right: .05rem;
        top: .05rem;
        bottom: .05rem;
    }
}

@media screen and (max-width: 480px) {}



.fixed-r {
    z-index: 99;
    position: fixed;
    width: 1.22rem;
    right: .4rem;
    top: 50%;
    transform: translateY(-50%) translateX(2rem);
    border-radius: 0.5rem;
    padding-bottom: .35rem;
    transition: all .5s;
    background: url(../images/fixed-rbg.png) no-repeat;
    background-size: 100% 100%;
    background-position: center 0.9rem;
}

.fixed-r.on {
    transform: translateY(-50%) translateX(0);
}

.fixed-logo {}

.fixed-logo a {
    display: block;
}

.fixed-logo a img {
    display: block;
    width: 100%;
}

.fixed-r ul {
    margin-top: .16rem;
}

.fixed-r ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.34);
    padding-bottom: 2px;
}

.fixed-r ul li a {
    display: block;
}

.fixed-r ul li a {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.6);
}

.fixed-r ul li a .icon img {
    width: 25px;
    display: block;
    margin: 0 auto;
    max-width: 50%;
}

.fixed-r ul li a p {
    text-align: center;
    font-size: 0.16rem;
    font-weight: normal;
    font-stretch: normal;
    line-height: 0.57rem;
    color: #ffffff;
}

.gotop {
    margin-top: .2rem;
    cursor: pointer;
    font-size: 0.16rem;
    font-weight: bold;
    line-height: 0.3rem;
    letter-spacing: normal;
    color: #FFFFFF;
    text-align: center;
}

.gotop img {
    display: block;
    width: 0.17rem;
    margin: 0 auto;
}

@media screen and (max-width:1024px) {
    .fixed-r {
        display: none;
    }
}