@charset "utf-8";

body {
    overflow-x: hidden;
}



@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;
}

.banner a {
    display: block;
}

.banner>img {
    display: block;
    width: 100%;
}

.banner .slick {
    position: relative;
    z-index: 9;
}

.banner .slick-slide a {
    display: block;
    position: relative;
}

.banner .slick-slide a::before {
    content: "";
    position: absolute;
    left: 0;
    height: 1.8rem;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.498) 100%);
    z-index: 1;
}

.banner .slick-slide a>img {
    display: block;
    width: 100%;
    height: calc(100vh - 1.4rem);
    object-fit: cover;
}



@keyframes img_scale {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }

}


@keyframes img_scale3 {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

.banner .slick .slick-current .box2 {
    opacity: 1;
    z-index: 0;
    -webkit-animation: box2 7s linear 0s;
    animation: box2 7s linear 0s
}


.banner .slick .box0 {
    opacity: 1;
    z-index: 0;
    opacity: 1;
    z-index: 0;
    -webkit-animation: box0 7s linear 0s;
    animation: box0 7s linear 0s
}


.banner .slick .slick-current .box2 {
    opacity: 1;
    z-index: 0;
    -webkit-animation: box2 7s linear 0s;
    animation: box2 7s linear 0s
}

.banner .slick .box1 {
    -webkit-animation: box1 1000ms cubic-bezier(0.5, 0, 0.2, 1) 0s;
    animation: box1 1000ms cubic-bezier(0.5, 0, 0.2, 1) 0s;
    z-index: 0
}

@-webkit-keyframes box0 {
    0% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1)
    }

    100% {
        -webkit-transform: scale(1.05, 1.05);
        transform: scale(1.05, 1.05)
    }
}

@keyframes box0 {
    0% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1)
    }

    100% {
        -webkit-transform: scale(1.05, 1.05);
        transform: scale(1.05, 1.05)
    }
}

@-webkit-keyframes box1 {
    0% {
        -webkit-transform: scale(1.05, 1.05);
        transform: scale(1.05, 1.05);
        opacity: 1
    }

    100% {
        -webkit-transform: scale(1.5, 1.5);
        transform: scale(1.5, 1.5);
        opacity: 0
    }
}

@keyframes box1 {
    0% {
        -webkit-transform: scale(1.05, 1.05);
        transform: scale(1.05, 1.05);
        opacity: 1
    }

    100% {
        -webkit-transform: scale(1.5, 1.5);
        transform: scale(1.5, 1.5);
        opacity: 0
    }
}

@-webkit-keyframes box2 {
    0% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1)
    }

    100% {
        -webkit-transform: scale(1.05, 1.05);
        transform: scale(1.05, 1.05)
    }
}

@keyframes box2 {
    0% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1)
    }

    100% {
        -webkit-transform: scale(1.05, 1.05);
        transform: scale(1.05, 1.05)
    }
}

.banner .slick-dots {
    position: absolute;
    font-size: 0;
    display: flex !important;
    justify-content: center;
    align-items: flex-end;
    left: 0;
    bottom: .3rem;
    left: 0;
    right: 0;
}


.banner .slick-dots li {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    width: auto;
    height: auto;
    transition: all .5s;
    margin: 0;
}

.banner .slick-dots li:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    background: #AF2626;
    width: .18rem;
    height: .18rem;
    border-radius: 50%;
    z-index: -1;
    transition: all .5s;
    opacity: 0;
}

.banner .slick-dots li:after {
    content: "";
    display: block;
    width: 0;
    border-top: 1px solid #FFFFFF;
    margin: 0 0.2rem 0 .1rem;
}
 


.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: .26rem;
    height: .26rem;
    transition: all .5s;
}

.banner .slick-dots li:nth-child(1) span::after {
    background: url(../images/banner-dot-act.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
}

.banner .slick-dots li:nth-child(2) span::after {
    background: url(../images/banner-dot-act2.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
}

.banner .slick-dots li:nth-child(3) span::after {
    background: url(../images/banner-dot-act3.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
}

.banner .slick-dots li:nth-child(4) span::after {
    background: url(../images/banner-dot-act4.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
}

.banner .slick-dots li:nth-child(5) span::after {
    background: url(../images/banner-dot-act5.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
}

.banner .slick-dots li:nth-child(6) span::after {
    background: url(../images/banner-dot-act6.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
}

.banner .slick-dots li:nth-child(7) span::after {
    background: url(../images/banner-dot-act7.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
}

.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 span::before {
    opacity: 0;
}

.banner .slick-dots li.slick-active span::after {
    opacity: 1;
    transform: translateX(-50%) translateY(-50%) scale(1);
}

.banner .slick-dots li.slick-active::after {
    width: 0.52rem;
}

.banner .slick-dots li.slick-active::before {
    opacity:1;
}

/* index */

.index {
    z-index: 99;
    background: #fff;
    position: relative;
    padding-top: 1px;
    overflow: hidden;
}



.itit {
    margin-bottom: .25rem;
    position: relative;
}

.itit div {
    display: flex;
    align-items: center;
    font-size: 0.4rem;
    font-weight: bold;
    line-height: 0.48rem;
    color: #282828;
    font-family: SourceHanSerifCN-Bold;
}



.itit div span {
    color: #C2010B;
}

.itit div b {
    color: #333;
}

.itit p {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 0.14rem;
    font-weight: normal;
    line-height: 0.2rem;
    text-transform: uppercase;
    letter-spacing: normal;
    color: #CA9E79;
    margin-top: .13rem;
}

.itit a {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    font-size: 0.18rem;
    font-weight: normal;
    line-height: 0.24rem;
    color: #CA9E79;
    transition: all .5s;
    background: url(../images/tit-morebg.png) no-repeat;
    background-position: right center;
    background-size: auto .17rem;
    padding-right: .5rem;
    font-family: 'sys-r';
}


.pubarr {}

.pubarr div {
    width: 0.3rem;
    height: 0.3rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all .5s;
    opacity: .5;
    cursor: pointer;
}

.pubarr div.swiper-button-disabled {
    opacity: 0.2 !important;
}

.pubarr div:hover {
    opacity: 1;
}

.pubarr div.prev {
    background: url(../images/icon-prev.png) no-repeat;
    background-position: center center;
    background-size: .24rem auto;
}

.pubarr div.next {
    background: url(../images/icon-next.png) no-repeat;
    background-position: center center;
    background-size: .24rem auto;
}



.s1 {
    position: relative;
    z-index: 1;
}

.s1::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -.68rem;
    background: url(../images/s1-bgr.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    width: 19.2rem;
    height: 8.27rem;
    z-index: -1;
}

.s1::after {
    content: "";
    position: absolute;
    left: -2.09rem;
    right: 0;
    bottom: -1.48rem;
    background: url(../images/s1-bgl.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    z-index: -1;
    width: 5.23rem;
    height: 6.28rem;
}

.s1-c {
    display: flex;
    padding-top: .6rem;
}

.s1-l {
    flex: 1;
    min-width: 0;
}

.s1-m {
    width: 7.95rem;
    margin: 0 .4rem;
    background: url(../images/s1-mbg.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    padding: .14rem;
    position: relative;
}

.s1-m .itit {
    position: static;
    margin-bottom: 0;
    padding-top: 1px;
}

.s1-m .itit div {
    position: absolute;
    z-index: 9;
    transform: translateY(-100%);
    margin-top: 66%;
    line-height: .69rem;
    background: #FCF9F3;
    width: 1.94rem;
    font-size: .26rem;
    justify-content: center;
}

.s1-m .itit a {
    z-index: 9;
    top: auto;
    bottom: .2rem;
    transform: none;
    right: .35rem;
}

.s1-m ul li a {
    display: block;
}

.s1-m ul li a .pic {
    padding-top: 66%;
}

.s1-m ul li a .info {
    text-align: center;
    padding-top: .3rem;
    padding-left: .3rem;
    padding-right: .3rem;
}

.s1-m ul li a .info h3 {
    font-size: 0.24rem;
    font-weight: normal;
    line-height: 0.4rem;
    text-align: center;
    letter-spacing: normal;
    color: #333333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.s1-m ul li a .info p {
    font-size: 0.16rem;
    font-weight: normal;
    line-height: 0.4rem;
    text-align: center;
    letter-spacing: normal;
    color: #9E9E9E;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.s1-m ul.slick-dots {
    position: static;
    justify-content: center;
    display: flex;
    margin-top: .3rem;
}

.s1-m ul.slick-dots li {
    margin: 0 .13rem;
    position: relative;
    display: flex;
    align-items: center;
    width: auto;
    height: auto;
}



.s1-m ul.slick-dots li::after {
    content: "";
    display: block;
    width: 0;
    height: 1px;
    background: #CA9E79;
    margin-right: 0;
    transition: all .5s;
}

.s1-m ul.slick-dots li button {
    display: block;
    margin: 0;
    padding: 0;
    width: 0.18rem;
    height: 0.18rem;
    position: relative;

}

.s1-m ul.slick-dots li button::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 0.18rem;
    height: 0.18rem;
    border-radius: 50%;
    transition: all .5s;
    opacity: 0;
    background: rgba(206, 10, 20, 0.1);
}

.s1-m ul.slick-dots li button::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 0.13rem;
    height: 0.13rem;
    border-radius: 50%;
    border: 1px solid #CA9E79;
    transition: all .5s;
}

.s1-m ul.slick-dots li.slick-active::after {
    width: .52rem;
    margin-left: .12rem;
}

.s1-m ul.slick-dots li.slick-active button::before {
    opacity: 1;
}

.s1-m ul.slick-dots li.slick-active button::after {
    width: 0.1rem;
    height: 0.1rem;
    background: #CE0A14;
    border-color: transparent;
}

.s1-r {
    flex: 1;
    min-width: 0;
}

.s1-first {}

.s1-first a {
    display: block;
}

.s1-first a .pic {
    padding-top: 65%;
}

.s1-first a .pic span {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: #FFFFFF;
    text-align: center;
    font-size: 0.16rem;
    font-weight: normal;
    color: #95663E;
    width: 101px;
    line-height: 0.33rem;
    font-family: Philosopher;
}

.s1-first a h3 {
    font-size: 0.18rem;
    font-weight: normal;
    line-height: 0.3rem;
    letter-spacing: normal;
    color: #333333;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: .6rem;
    margin-top: .12rem;
}

.s1-l ul {
    margin-top: 0.2rem;
}

.s1-l ul li a {
    display: block;
    border-top: 1px dashed #D8D8D8;
    padding: .2rem 0;
}

.s1-l ul li a h3 {
    font-size: 0.18rem;
    font-weight: normal;
    line-height: 0.3rem;
    letter-spacing: normal;
    color: #333333;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: .6rem;
}

.s1-l ul li a span {
    display: block;
    font-size: 0.16rem;
    font-weight: normal;
    line-height: 0.24rem;
    text-align: justify;
    /* 浏览器可能不支持 */
    letter-spacing: normal;
    color: #95663E;
    margin-top: .1rem;
}




.s1-r ul {}

.s1-r ul li:nth-child(1) a {
    padding-top: 0;
    border-top: none;
}

.pibitem1 {
    display: block;
    padding: .2rem 0;
    position: relative;
    transition: all .5s;
    z-index: 1;
    border-top: 1px dashed #D8D8D8;
}

.pibitem1 .info {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    transition: all .5s;
}

.pibitem1 .info .date {
    margin-right: 0.13rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: Philosopher;
}

.pibitem1 .info .date b {
    display: block;
    font-size: 0.3rem;
    font-weight: normal;
    font-stretch: normal;
    line-height: 0.34rem;
    letter-spacing: 0rem;
    color: #95663E;
}

.pibitem1 .info .date span {
    font-size: 0.16rem;
    font-weight: normal;
    font-stretch: normal;
    line-height: 0.26rem;
    letter-spacing: 0rem;
    color: #95663E;
}

.pibitem1 .info .text {
    flex: 1;
    min-width: 0;
}

.pibitem1 .info .text p {
    width: 100%;
    font-size: 0.18rem;
    font-weight: normal;
    font-stretch: normal;
    line-height: 0.3rem;
    letter-spacing: 0rem;
    color: #333333;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    max-height: .6rem;
}


.s2 {
    padding-top: .85rem;
    position: relative;
    z-index: 1;
}

.s2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.28rem;
    background: url(../images/s2-bg.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    width: 19.35rem;
    height: 7.43rem;
    z-index: -1;
}

.s2-c {
    display: flex;
}

.s2-l {
    flex: 1;
    min-width: 0;
}

.s2-lc {
    display: flex;
}

.s2-ll {
    width: 5.5rem;
    margin-right: .17rem;
    background: linear-gradient(180deg, #FCEDDD 0%, #FFFBF4 100%);
    box-shadow: 0rem 0rem 0.1rem 0rem rgba(178, 164, 145, 0.1);
    border-radius: 0 .3rem 0 0;
}

.s2-lr {
    flex: 1;
    min-width: 0;
    border-radius: .3rem 0 0 0;
    overflow: hidden;
    padding: .48rem .5rem .4rem .5rem;
    background: linear-gradient(180deg, #FCF4E7 0%, #FFFFFE 100%);
    box-shadow: 0px 0px 10px 0px rgba(178, 164, 145, 0.1);
    position: relative;
    z-index: 1;
}

.s2-lr::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: -.28rem;
    background: url(../images/s2-lrbg.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    width: 1.8rem;
    height: 2.12rem;
    z-index: -1;
    transform: translateX(50%);
}


.s2-lr .swiper-slide a {
    display: block;
    position: relative;
    transition: all .5s;
}

.s2-lr .swiper-slide a::before {}

.s2-lr .swiper-slide a::after {}

.s2-lr .swiper-slide a .pic {
    padding-top: 57.8%;
}

.s2-lr .swiper-slide a .info {
    padding-top: .16rem;
}

.s2-lr .swiper-slide a .info h3 {
    font-size: 0.2rem;
    font-weight: 500;
    line-height: 0.32rem;
    letter-spacing: normal;
    color: #333333;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: 0.64rem;
}

.s2-lr .swiper-slide a .info dl {
    margin-top: .2rem;
}

.s2-lr .swiper-slide a .info dl dd {
    display: flex;
    align-items: center;
}

.s2-lr .swiper-slide a .info dl dd+dd {
    margin-top: .1rem
}

.s2-lr .swiper-slide a .info dl dd div {
    position: relative;
    width: 0.23rem;
    display: flex;
    align-items: center;
    margin-right: .11rem;
}

.s2-lr .swiper-slide a .info dl dd div::after {}

.s2-lr .swiper-slide a .info dl dd div img {
    display: block;
    width: 0.16rem;
}

.s2-lr .swiper-slide a .info dl dd p {
    flex: 1;
    min-width: 0;
    font-size: 0.16rem;
    font-weight: 350;
    line-height: 0.22rem;
    letter-spacing: normal;
    color: #777777;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.s2-lr .swiper-slide a {}


.s2-lr .pubpage {
    position: static;
    justify-content: center;
    display: flex;
    margin-top: .4rem;
}

.s2-lr .pubpage li {
    margin: 0 .13rem;
    position: relative;
    display: flex;
    align-items: center;
    width: auto;
    height: auto;
    opacity: 1;
}



.s2-lr .pubpage li::after {
    content: "";
    display: block;
    width: 0;
    height: 1px;
    background: #CA9E79;
    margin-right: 0;
    transition: all .5s;
}

.s2-lr .pubpage li button {
    display: block;
    margin: 0;
    padding: 0;
    width: 0.18rem;
    height: 0.18rem;
    position: relative;
    background: none;
    border: none;

}

.s2-lr .pubpage li button::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 0.18rem;
    height: 0.18rem;
    border-radius: 50%;
    transition: all .5s;
    opacity: 0;
    background: rgba(206, 10, 20, 0.1);
}

.s2-lr .pubpage li button::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 0.13rem;
    height: 0.13rem;
    border-radius: 50%;
    border: 1px solid #CA9E79;
    transition: all .5s;
}

.s2-lr .pubpage li.swiper-pagination-bullet-active::after {
    width: .52rem;
    margin-left: .12rem;
}

.s2-lr .pubpage li.swiper-pagination-bullet-active button::before {
    opacity: 1;
}

.s2-lr .pubpage li.swiper-pagination-bullet-active button::after {
    width: 0.1rem;
    height: 0.1rem;
    background: #CE0A14;
    border-color: transparent;
}

.s2-r {
    width: 5.05rem;
    margin-left: .33rem;
}

.s2-r ul li:nth-child(1) a {
    border-color: transparent;
}

.s2-r ul li a:nth-child(2) {
    background: url(../images/s2-ritembg.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    padding: .17rem .22rem;
    display: none;
}

.s2-r ul li a:nth-child(2) .pics {
    width: 2.4rem;
    margin-right: .18rem;
}

.s2-r ul li a:nth-child(2) .pics .pic {
    padding-top: 62.5%;
}

.s2-r ul li a:nth-child(2) .info {
    flex: 1;
    min-width: 0;
}

.s2-r ul li a:nth-child(2) .info h3 {
    font-size: 0.18rem;
    font-weight: normal;
    line-height: 0.3rem;
    letter-spacing: normal;
    color: #C2010B;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: .6rem;
}

.s2-r ul li a:nth-child(2) .info span {
    display: block;
    font-family: Philosopher;
    font-size: 0.16rem;
    font-weight: normal;
    line-height: 0.24rem;
    text-align: justify;
    /* 浏览器可能不支持 */
    letter-spacing: normal;
    color: #95663E;
    margin-top: .38rem;
}

.s2-r .pibitem1 {
    padding: .27rem 0;
}



.s3 {
    padding-top: .8rem;
    margin-bottom: .2rem;
}


.s3-c {
    margin-top: .55rem;
    position: relative;
}

.s3-c .prev {
    right: 100%;
    margin-right: .3rem;
}

.s3-c .next {
    left: 100%;
    margin-left: .3rem;
}

.s3-c .swiper-container {
    padding-left: 1px;
    padding-right: 1px;
}

.s3-c .swiper-slide {
    position: relative;
    height: auto;
}

.s3-c .swiper-slide::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 18px;
    border-right: 1px solid #D9A369;
    border-top: 1px solid #D9A369;
    border-bottom: none;
}

.s3-c .swiper-slide:nth-child(5n+1)::before {
    border-left: 1px solid #D9A369;
}

.s3-c .swiper-slide::after {
    content: "";
    position: absolute;
    left: 0;
    right: 18px;
    bottom: 0;
    border-bottom: 1px solid #D9A369;
}

.s3-c .swiper-slide:nth-child(5n+1)::after {
    left: 15px;
}

.s3-c .swiper-slide a {
    display: block;
    height: 100%;
    position: relative;
    min-height: 6.26rem;
}

.s3-c .swiper-slide a::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    background: url(../images/s3-itemrxj.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    width: 19px;
    height: 20px;
}

.s3-c .swiper-slide:nth-child(5n+1) a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    background: url(../images/s3-itemlxj.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    width: 19px;
    height: 20px;
}

.s3-c .swiper-slide.item1 a .pic {
    padding-top: 83.125%;
}

.s3-c .swiper-slide.item2 a .pic {
    padding-top: 131.25%;
}

.s3-c .swiper-slide.item3 a .pic {
    padding-top: 156.25%;
}

.s3-c .swiper-slide.item4 a .pic {
    padding-top: 131.25%;
}

.s3-c .swiper-slide.item5 a .pic {
    padding-top: 88.4375%;
}

.s3-c .swiper-slide a .info {
    padding: .17rem;
}

.s3-c .swiper-slide a .info h3 {
    display: flex;
    align-items: center;
    font-size: 0.26rem;
    font-weight: normal;
    line-height: 0.5rem;
    letter-spacing: normal;
    color: #333333;
    justify-content: center;
}

.s3-c .swiper-slide a .info h3::before {
    content: "";
    display: block;
    background: url(../images/s3-itembft.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    width: 0.35rem;
    height: 0.17rem;
    margin-right: .17rem;
}

.s3-c .swiper-slide a .info h3::after {
    content: "";
    display: block;
    background: url(../images/s3-itemaft.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    width: 0.35rem;
    height: 0.17rem;
    margin-left: .17rem;
}

.s4 {
    position: relative;
    z-index: 1;
    padding-top: 1.56rem;
}

.s4::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    right: 0;
    background: url(../images/s4-bg.png) no-repeat;
    background-position: center top;
    background-size: 100% 100%;
    height: 8.68rem;
    z-index: -1;
    pointer-events: none;
}



.s4-t {
    display: flex;
    margin: 0 -.1rem;
}

.s4-tl {
    width: 33.33%;
    padding: 0 .1rem;
}

.s4-tl .text {
    padding-top: .3rem;
}

.s4-tl .text p {
    font-size: 0.18rem;
    font-weight: normal;
    line-height: 0.36rem;
    letter-spacing: normal;
    color: #9E9E9E;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    max-height: 1.44rem;
}


.s4-item {
    display: block;
    position: relative;
}

.s4-item .pic::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1.38rem;
    max-height: 40%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}

.s4-item:hover .pic::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1.38rem;
    max-height: 40%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #c2020c 100%) !important;
}
.s4-item .info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: .2rem;
    display: flex;
    align-items: center;
    z-index: 9;
}

.s4-item .info div {
    height: 0.35rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.s4-item .info div img {
    max-height: 100%;
}

.s4-item .info p {
    padding-left: .27rem;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.24rem;
    font-weight: normal;
    line-height: .36rem;
    letter-spacing: normal;
    color: #FFFFFF;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
/*.s4-item .info:hover p{color:#c2010b;}*/

.s4-item .info p::before {
    content: "";
    position: absolute;
    left: .13rem;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.4);
    height: 0.15rem;
    width: 1px;
}

.s4-tr {
    flex: 1;
    min-width: 0;
}

.s4-tr ul {
    display: flex;
}

.s4-tr ul li a {
    margin: 0 .1rem;
}

.s4-tr ul li:nth-child(1) {
    width: 63%;
}

.s4-tr ul li:nth-child(1) a .pic {
    padding-top: 68.18%;
}

.s4-tr ul li:nth-child(2) {
    width: 37%;
}

.s4-tr ul li:nth-child(2) a .pic {
    padding-top: 118.42%;
}

.s4-b ul {
    display: flex;
    margin: 0 -.1rem;
    margin-top: .2rem;
}

.s4-b ul li {
    width: 33.33%;
}

.s4-b ul li a {
    margin: 0 .1rem;
}

.s4-b ul li a .pic {
    padding-top: 69.23%;
}

.s5 {
    margin-top: .7rem;
    position: relative;
    z-index: 1;
}

.s5::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1.26rem;
    right: 0;
    bottom: 0;
    background: url(../images/s6-bg.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    height: 861px;
}

.s5-c {
    margin-top: .45rem;
    position: relative;
}

.s5-c .prev {
    right: 100%;
    margin-right: .3rem;
}

.s5-c .next {
    left: 100%;
    margin-left: .3rem;
}

.s5-c .swiper-slide {}

.s5-c .swiper-slide a {
    display: block;
}

.s5-c .swiper-slide a .pic {
    padding-top: 57.89%;
}

.s6 {
    margin-top: 1.03rem;
    position: relative;
    z-index: 1;
    padding-bottom: .64rem;
}


.s6-c {
    position: relative;
    z-index: 1;
    padding: 0 .5rem;
}

.s6-c::before {
    content: "";
    position: absolute;
    left: 50%;
    top: .55rem;
    width: 100vw;
    transform: translateX(-50%);
    border-top: 1px dashed rgba(202, 158, 121, 0.6);
    box-shadow: 0rem 0.04rem 0.1rem 0rem #E8B78E;

}

.s6-c ul li a {
    display: block;
    padding-top: 1.12rem;
    position: relative;
}

.s6-c ul li a b {
    position: absolute;
    left: 50%;
    top: .55rem;
    transform: translateX(-50%) translateY(-50%);
    background: url(../images/s6-bicon.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    width: 0.36rem;
    height: 0.36rem;
    transition: all .5s;
}

.s6-c ul li a div {
    position: absolute;
    left: 50%;
    top: .57rem;
    transform: translateX(-50%) translateY(-50%) scale(0);
    opacity: 0;
    background: url(../images/s6-iiconbg.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    width: 1.12rem;
    height: 1.12rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .5s;
}

.s6-c ul li a div img {
    max-width: 60%;
    max-height: 60%;
}

.s6-c ul li a p {
    font-size: 0.24rem;
    font-weight: normal;
    line-height: 0.3rem;
    letter-spacing: normal;
    color: #333333;
    margin-top: .2rem;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transform: translateY(-.25rem);
    transition: all .5s;
}








@media screen and (min-width: 1025px) {
    .pibitem1:hover .info .text p, .s1-l ul li a:hover h3, .s1-first a:hover h3, .s1-m ul li a:hover .info h3, .s2-lr .swiper-slide a:hover .info h3, .s3-c .swiper-slide a:hover .info h3, .pibitem1:hover .info .date b, .pibitem1:hover .info .date span {
        color: #CE0A14;
    }

    .itit a:hover {
        color: #CE0A14;
        background: url(../images/tit-morebg2.png) no-repeat;
        background-position: right center;
        background-size: auto .17rem;
    }

    .s2-r ul li.on a {
        display: none;
    }

    .s2-r ul li.on a:nth-child(2) {
        display: flex;
    }

    .s2-r ul li.on+li a {
        border-top: transparent;
    }

    .s6-c ul li a:hover b {
        opacity: 0;
    }

    .s6-c ul li a:hover div {
        opacity: 1;
        transform: translateX(-50%) translateY(-50%) scale(1);
    }

    .s6-c ul li a:hover p {
        transform: translateY(0);
    }

    .s4-tl .itit a {
        position: static;
        display: block;
        text-align: right;
        margin-top: 1.15rem;
        margin-right: .66rem;
        transform: none;
    }

}


@media screen and (max-width: 1024px) {

    html,
    body,
    .banner,
    .banner .slick,
    .banner .slick div,
    .banner .slick-slide a,
    .banner .slick-slide a img {
        height: auto !important;
    }

    .index {
        position: relative;
    }

    .itit {
        justify-content: flex-start;
    }

    .itit div {
        font-size: .24rem;
        line-height: .3rem;
    }

    .itit p {
        margin-top: 0;
    }

    .banner .slick-dots {
        bottom: 0.1rem;
        transform: scale(0.7);
        transition: center bottom;
    }

    .pubarr {
        display: flex;
        justify-content: center;
        margin-top: .25rem;
    }

    .pubarr div {
        margin: 0 .1rem !important;
        position: static;
        transform: none;
        opacity: 1;
    }

    .s1-l ul li a {
        padding: .15rem 0;
    }

    .s2-lr {
        padding: .25rem .15rem;
    }

    .s1-m ul.slick-dots {
        margin-top: .15rem;
        justify-content: flex-start;
    }

    .s1-m .itit a {
        bottom: .12rem;
    }

    .s1-m ul.slick-dots li {
        margin: 0 .05rem;
    }

    .s1-m ul.slick-dots li.slick-active::after {
        width: .25rem;
        margin-left: 0.05rem;
    }

    .s1-m .itit div {
        font-size: .2rem;
        width: 1.2rem;
    }

    .s1-m ul li a .info {
        padding: .15rem 0;
    }

    .s2-r ul li a:nth-child(1) {
        display: block;
    }

    .s2-r ul li a:nth-child(2) {
        display: none;
    }

    .s2-r .pibitem1 {
        padding: .15rem 0;
    }

    .s3-c .swiper-slide a .pic {
        padding-top: 130% !important;
    }

    .s3-c .swiper-slide a .info h3::before {
        display: none;
    }

    .s3-c .swiper-slide a .info h3::after {
        display: none;
    }

    .s3-c .swiper-slide a .info {
        padding: .1rem;
    }

    .s3-c .swiper-slide a {
        min-height: auto;
    }

    .s3-c .swiper-slide a .info h3 {
        line-height: .36rem;
    }

    .s3-c .swiper-slide a::before {
        opacity: 0;
    }

    .s3-c .swiper-slide:nth-child(5n+1) a::after {
        opacity: 0;
    }

    .s3-c .swiper-slide::before {
        bottom: 0;
    }

    .s3-c .swiper-slide::after {
        left: 0 !important;
        right: 0 !important;
    }

    .s4 {
        background: linear-gradient(to bottom, #fff, #f5ece1, #fff);
    }

    .s4::before {
        display: none;
    }

    .s4-item .info {
        padding: .1rem;
    }

    .s4-item .info div {
        height: .2rem;
    }

    .s4-tr ul li, .s4-b ul li {
        width: auto !important;
    }

    .s4-b ul {
        margin-top: 0;
    }

    .s6-c {
        padding: 0;
    }

    .s6-c ul li a {
        padding-top: .8rem;
    }

    .s4-tl .text {
        padding-top: 0;
    }




    .s1-c, .s2-c, .s4-t, .s4-tr ul, .s4-b ul {
        display: block;
    }

    .s2-r {
        width: auto;
        margin-left: 0;
        margin-top: .35rem;
    }

    .s4-tl {
        width: auto;
        margin-bottom: .3rem;
    }

    .s1-m {
        width: auto;
        margin: .35rem auto;
    }

    .s1-m ul li a .info h3 {
        font-size: .18rem;
        line-height: .3rem;
    }

    .s2-lr .swiper-slide a .info h3, .s3-c .swiper-slide a .info h3, .s4-item .info p, .s6-c ul li a p {
        font-size: .18rem;
    }


    .s1-c, .s2, .s3, .s4 {
        padding-top: .5rem;
    }

    .s6 {
        padding-bottom: .5rem;
    }

    .s3-c, .s5-c, .s6 {
        margin-top: .3rem;
    }

    .s5 {
        margin-top: .5rem;
    }





}

@media screen and (max-width: 768px) {
    .s2-lc {
        display: block;
    }

    .s2-ll {
        width: auto;
        margin-right: 0;
        margin-bottom: .3rem;
    }
}