@charset "utf-8";

body {
    overflow-x: hidden;
}

.banner-btm {
    position: absolute;
    bottom: 0.4rem;
    z-index: 9;
    left: 50%;
    transform: translateX(-50%);
    margin: 0 auto;
    width: 100%;
    max-width: 1500px;
    display: flex;
    align-items: center;
}

.banner-arrow {
    width: 0.5rem;
    height: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.banner-arrow img {
    height: .34rem;
}

.banner-prev::before {
    background: url(/images/prev.png) no-repeat;
    background-position: center center;
    background-size: 0.34rem;
}

.banner-next::before {
    background: url(/images/next.png) no-repeat;
    background-position: center center;
    background-size: .34rem;
}

.s1-lprev::before {
    background: url(/images/prev-r.png) no-repeat;
    background-position: center center;
}

.s1-lnext::before {
    background: url(/images/next-r.png) no-repeat;
    background-position: center center;
}

.s2-rprev::before {
    background: url(/images/prev-r.png) no-repeat;
    background-position: center center;
}

.s2-rnext::before {
    background: url(/images/next-r.png) no-repeat;
    background-position: center center;
}

.s6-c .slick-prev::before {
    background: url(/images/prev-r.png) no-repeat;
    background-position: center center;
}

.s6-c .slick-next::before {
    background: url(/images/next-r.png) no-repeat;
    background-position: center center;
}

.arrow-hov {
    position: relative;
}

.arrow-hov::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
}

.arrow-hov:hover::before {
    animation: scaleTwo 1s 1;
}

.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;
}

#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;
}

.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::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: url(/images/banner-zz1.png) repeat-x;
    background-position: center top;
    z-index: 2;
}

.banner .slick-slide a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: url(/images/banner-zzc2.png) repeat-x;
    background-position: center bottom;
    z-index: 1;
}

.banner .slick-slide a>img {
    display: block;
    width: 100%;
    height: 100vh;
}

.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.1);
    }

    100% {
        transform: scale(1);
    }

}

.banner .slick-dots {
    font-size: 0;
    text-align: right;
    bottom: 60px;
    left: 0;
    right: 0;
    display: flex !important;
    justify-content: center;
    align-items: center;
    padding: 0 .15rem;
}

.banner .slick-dots li {
    display: flex;
    border-radius: 50%;
    margin: 0 12px;
    transition: all 0.3s;
    vertical-align: middle;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;

}

@keyframes cilcle {
    0% {
        transform: rotateZ(0);
    }

    100% {
        transform: rotateZ(360deg);
    }
}

.banner .slick-dots li button {
    border-radius: 50%;
    margin: 0;
    padding: 0;
    width: 10px;
    height: 10px;
    background-color: #ffffff;
}

.banner .slick-dots li.slick-active {
    border-color: #fff;
    background: url(/images/baanner-dot-bor.png) no-repeat;
    background-size: 100% 100%;
    animation: cilcle 2s infinite linear;
}

/* index */
.index {
    z-index: 99;
    background: #fff;
}

.s1 {
    padding-top: .8rem;
    padding-bottom: 1.1rem;
    background: url(/images/s1-bj.jpg) no-repeat;
    background-position: center center;
    background-size: cover;
    overflow: hidden;
}

.title {
    display: flex;
    justify-content: space-between;
}

.titname {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: flex-end;
    position: relative;
    height: 0.9rem;

}

.titname::before {
    content: "";
    position: absolute;
    right: .23rem;
    left: -9999px;
    height: 1px;
    background: rgba(159, 24, 24, 0.08);
    top: .53rem;
    z-index: 1;
}

.titname::after {
    content: "";
    position: absolute;
    left: .41rem;
    width: 1px;
    top: -2rem;
    bottom: -.7rem;
    border-left: 1px dashed rgba(159, 24, 24, 0.12);
}

.titicon {
    margin-right: .3rem;
    margin-top: .08rem;
}

.titicon img {
    display: block;
}

.tittext div {
    display: flex;
}

.tittext h3 {
    display: flex;
    align-items: center;
    font-size: 0.38rem;
    font-weight: bold;
    line-height: 0.38rem;
    font-family: "sysong";
    padding-right: .9rem;
    background: url(/images/titname-sup.png) no-repeat;
    background-position: right top;
    background-size: .74rem auto;
}

.tittext h3 span {
    color: #333333;
}

.tittext h3 i {
    display: inline-block;
    width: 0.08rem;
    height: 0.08rem;
    border-radius: 50%;
    background: #333;
    margin: 0 .1rem;
}

.tittext h3 b {
    color: #9F1818;
}

.tittext p {
    font-size: 0.16rem;
    font-weight: normal;
    line-height: 0.3rem;
    color: #777777;
    margin-top: .2rem;
}

.titmore {
    background: url(/images/tit-more-logo.png) no-repeat;
    background-position: left .08rem;
    background-size: auto .7rem;
    padding-top: .15rem;
    padding-left: .27rem;
    position: relative;
}

.titmore::before {
    content: "";
    position: absolute;
    left: -.23rem;
    top: 0.53rem;
    width: 1px;
    background: rgba(159, 24, 24, 0.08);
    height: 0.21rem;
    transform: translateY(-50%);
}

.titmore::after {
    content: "";
    position: absolute;
    right: -.15rem;
    top: 0.53rem;
    width: 1px;
    background: rgba(159, 24, 24, 0.08);
    height: 0.21rem;
    transform: translateY(-50%);
}

.titmore a {
    display: block;
    font-family: 'sysong';
    font-size: 0.2rem;
    font-weight: normal;
    line-height: 0.75rem;
    color: #9F1818;
    padding-right: .2rem;
    background: url(/images/tit-more-bg.png) no-repeat;
    background-position: right center;
    background-size: auto .2rem;
}

.titmore a::after {
    content: "";
    position: absolute;
    left: 100%;
    margin-left: .15rem;
    height: 1px;
    right: -9999px;
    top: 0.53rem;
    background: rgba(159, 24, 24, 0.08);
}

.s1-c {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: .7rem;
    padding-left: .41rem;
}

.s1-l {
    width: 6.38rem;
    margin-right: 4%;
    position: relative;
}

.s1-l ul li a {
    display: block;
}

.s1-l ul li a .pic {
    padding-top: 65%;
}

.s1-l ul li a .info {
    padding-top: .28rem;
}

.s1-l ul li a .info h3 {
    font-size: 0.22rem;
    font-weight: bold;
    line-height: 0.32rem;
    text-align: justify;
    /* 浏览器可能不支持 */
    color: #333333;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;

    height: .64rem;
}

.s1-l ul li a:hover .info h3 {
    color: #9F1818;
}

.s1-l .slick-dots {
    position: relative;
    margin-top: .4rem;
    text-align: left;
    font-size: 0;
    height: 50px;
    line-height: 50px;
    z-index: 1;
    display: flex !important;
    align-items: center;
}

.s1-l .slick-dots li {
    width: auto;
    height: auto;
    margin: 0 .25rem 0 0;
    position: static;
    vertical-align: middle;
}


.s1-l .slick-dots li button {
    width: auto;
    height: auto;
    display: block;
    padding: 0;
    margin: 0;
    font-family: Arial;
    font-size: 0.18rem;
    font-weight: normal;
    line-height: 0.24rem;
    color: rgba(159, 24, 24, 0.4);
}

.s1-l .slick-dots li.slick-active button {
    font-family: Impact;
    font-size: 0.32rem;
    font-weight: normal;
    line-height: 0.24rem;
    color: #9F1818;
}

.s1-l .slick-dots li svg {
    fill: none;
    stroke: #9F1818;
    stroke-width: 1px;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    width: 50px;
    height: 50px;
    position: absolute;
    right: 40px;
    top: 0;
    opacity: 0;
}

.s1-l .slick-dots li.slick-active svg {
    opacity: 1;
    animation: indexsvg 2.8s linear forwards;
}

.s1-svg {
    width: 50px;
    height: 50px;
    background: url(/images/s1-llogo.png) no-repeat;
    background-position: center center;
    background-size: 19px;
    margin: 0 20px;
    border: 1px solid rgba(159, 24, 24, .2);
    border-radius: 50%;
}

@keyframes indexsvg {
    0% {
        stroke-dashoffset: 96;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

.s1-arrow {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 9;

}

.s1-arrow>div {
    display: flex;
    align-items: center;
}

.s1-arrow>div div {
    cursor: pointer;
}

.s1-arrow>div div img {
    display: block;
    cursor: pointer;
}


.s1-r {
    flex: 1;
    min-width: 0;
}

.s1-rt a {
    display: flex;
    align-items: center;
    background: url(/images/s1-rborder1.png) no-repeat;
    background-size: 100% 100%;
    padding: .3rem .3rem .3rem 6%;
}

.s1-rt a .info {
    flex: 1;
    min-width: 0;
}

.s1-rinfo b {
    display: block;
    background: url(/images/icon-date.png) no-repeat;
    background-position: left center;
    background-size: .2rem auto;
    padding-left: .3rem;
    font-family: Impact;
    font-size: 0.24rem;
    font-weight: normal;
    line-height: 0.3rem;
    text-transform: uppercase;
    color: #9F1818;
}

.s1-rinfo h3 {
    font-size: 0.18rem;
    font-weight: normal;
    line-height: 0.28rem;
    color: #333333;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: .56rem;
    margin-top: .24rem;
}

.s1-rinfo span {
    display: block;
    background: url(/images/s1-rmore.png) no-repeat;
    background-position: left center;
    background-size: auto .1rem;
    height: 0.1rem;
    margin-top: .5rem;
}

.s1-rt a .pics {
    width: 3.26rem;
    margin-left: 5%;
}

.s1-rt a .pics .pic {
    padding-top: 67%;
}

.s1-rb {
    margin-top: .35rem;
}

.s1-rb ul {
    display: flex;
    justify-content: space-between;
}

.s1-rb ul li {
    width: 48%;
}

.s1-rb ul li a {
    display: block;
    padding: 14% 10%;
    background: url(/images/s1-rborder2.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    transition: all 0.5s;
}

.s1-rb ul li a .s1-rinfo p {
    font-size: 0.14rem;
    font-weight: normal;
    line-height: 0.24rem;
    text-align: justify;
    /* 浏览器可能不支持 */
    color: #777777;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: 0.48rem;
    margin-top: .3rem;
}

.s1-rb ul li a:hover {
    background: url(/images/s1-rborder3.png) no-repeat;
    background-position: center center;
    background-size: 100%;
}

.s1-rb ul li a:hover .s1-rinfo b {
    color: #fff;
    background: url(/images/icon-date-w.png) no-repeat;
    background-position: left center;
    background-size: 0.2rem auto;
}

.s1-rb ul li a:hover .s1-rinfo h3 {
    color: #fff;
}

.s1-rb ul li a:hover .s1-rinfo h3 i {
    background-image: linear-gradient(#fff, #fff);
}

.s1-rb ul li a:hover .s1-rinfo p {
    color: rgba(255, 255, 255, 0.9)
}


.s2 {
    background: url(/images/s2-bj.jpg) no-repeat;
    background-size: cover;
    background-position: center center;
    overflow: hidden;
    padding: .9rem 0 .55rem 0;
    position: relative;
}

.s2::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%) translateY(-62%);
    width: 7.5rem;
    height: 7.5rem;
    background: url(/images/s2-tlogo.png) no-repeat;
    background-size: 100% 100%;
    animation: _ani3 20s infinite linear;
}

@keyframes _ani3 {
    0% {
        transform: translateX(-50%) translateY(-62%) rotate(0deg);
    }

    100% {
        transform: translateX(-50%) translateY(-62%) rotate(360deg);
    }
}

.s2-c {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.s2-l {
    width: 35%;
    display: flex;
}

.s2-l .title {

    flex-direction: column;

    padding-right: 10%;
}


.s2-l .titname {
    /* flex-direction: column; */
    display: block;
    height: auto;
}

.s2-l .tittext {
    display: flex;
    margin-top: .3rem;
}

.s2-l .tittext div {
    writing-mode: vertical-lr;
    writing-mode: tb-lr;
    order: 3;
}

.s2-l .tittext h3 {
    padding-right: 0;
    margin-left: .3rem;
    padding-bottom: .9rem;
    background: url(/images/titname-sub.png) no-repeat;
    background-position: center bottom;
    background-size: 0.15rem auto;
}

.s2-l .tittext h3 i {
    margin: 0.1rem 0;
}

.s2-l .tittext p {
    margin-top: 0;
    order: 1;
    writing-mode: vertical-lr;
    writing-mode: tb-lr;
}

.s2-l .titmore {
    padding-left: 0;
    padding-top: .5rem;
    background-position: center top;
    width: .82rem;
    writing-mode: vertical-lr;
    writing-mode: tb-lr;
}

.s2-l .titmore::before {
    width: 0.21rem;
    left: 50%;
    height: 1px;
    top: -.2rem;
    transform: translateX(-50%);
}

.s2-l .titmore::after {
    width: 0.21rem;
    left: 50%;
    height: 1px;
    bottom: -0.2rem;
    transform: translateX(-50%);
    right: auto;
    top: auto;
}

.s2-l .titmore a {

    padding-right: 0;
    padding-bottom: .2rem;
    width: 100%;
    background: url(/images/tit-more-bg2.png) no-repeat;
    background-position: center bottom;
    background-size: auto 0.2rem;
    text-align: center;
    line-height: .82rem;
}

.s2-l .titmore a::after {
    width: 1px;
    top: 100%;
    bottom: -9999px;
    left: 50%;
    transform: translateX(-50%);
    margin-top: .2rem;
    height: auto;
    margin-left: 0;
    opacity: 0;
}

.s2-l .titname::after {
    bottom: .2rem;
}

.s2-l ul {
    flex: 1;
    min-width: 0;
    padding-top: 1.3rem;
}

.s2-l ul li {
    margin-top: .4rem;
}

.s2-l ul li:nth-child(1) {
    margin-top: 0;
}

.s2-l ul li a {
    display: flex;
    align-items: center;
}

.s2-l ul li a .date {
    width: 0.86rem;
    height: 0.86rem;
    background: url(/images/s2-ldate-bj.png) no-repeat;
    background-size: 100% 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: .2rem;
    transition: all 0.5s;
}

.s2-l ul li a .date span {
    display: block;
    font-family: Impact;
    font-size: 0.24rem;
    font-weight: normal;
    line-height: 0.3rem;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
}

.s2-l ul li a .info {
    flex: 1;
    min-width: 0;
}

.s2-l ul li a .info h3 {
    font-size: 0.18rem;
    font-weight: normal;
    line-height: 0.28rem;
    color: #333333;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    max-height: 0.56rem;
}

.s2-l ul li a:hover .date {
    background: url(/images/s2-ldate-bj2.png) no-repeat;
    background-size: 100% 100%;
}

.s2-l ul li a:hover .info h3 {
    font-weight: 600;
    color: #9F1818;
}

.s2-l ul {}



.s2-r {
    width: 62%;
}

.s2-rc {
    margin-top: .48rem;
    margin-left: .41rem;
    position: relative;
}

.s2-rc ul li {
    padding: .12rem .1rem;
}

.s2-rc ul li a {
    display: block;
    padding: .3rem .3rem .4rem .3rem;
}

.s2-rc ul li a .date {
    display: flex;
    justify-content: space-between;
}

.s2-rc ul li a .date div {
    height: 0.3rem;
    display: flex;
    align-items: center;
}

.s2-rc ul li a .date div img {
    display: none;
    max-height: 100%;
}

.s2-rc ul li a .date div img:nth-child(1) {
    display: block;
}

.s2-rc ul li a .date span {
    font-family: Impact;
    font-size: 24px;
    font-weight: normal;
    line-height: 30px;
    text-transform: uppercase;
    letter-spacing: 0em;
    color: #9F1818;
    display: block;
    padding-left: .3rem;
    background: url(/images/icon-date.png) no-repeat;
    background-position: left center;
    background-size: 0.2rem auto;
}

.s2-rc ul li a .pic {
    padding-top: 68%;
    margin-top: .3rem;
}

.s2-rc ul li a h3 {
    font-size: 0.18rem;
    font-weight: normal;
    line-height: 0.26rem;
    color: #333333;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: 0.52rem;
    margin-top: .25rem;
}

.s2-rc ul li a h3 i {
    background-image: linear-gradient(#fff, #fff);
}

.s2-rc ul li a .itemore {
    display: flex;
    justify-content: space-between;
    background: url(/images/s1-rmore.png) no-repeat;
    background-position: right center;
    background-size: .55rem;
    margin-top: .2rem;
}

.s2-rc ul li a .itemore b {
    display: block;
    font-size: 0.16rem;
    font-weight: normal;
    line-height: 0.28rem;
    color: #9F1818;
    padding-left: .3rem;
    background: url(/images/icon-eye-r.png) no-repeat;
    background-position: left center;
    background-size: .21rem;
}

.s2-rc ul li.slick-current {
    background: url(/images/s-ritem-bj.jpg) no-repeat;
    background-position: center center;
    background-size: cover;
}

.s2-rc ul li.slick-current a {
    background: url(/images/s2-rborder.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
}

.s2-rc ul li.slick-current a .date img {
    display: block;
}

.s2-rc ul li.slick-current a .date img:nth-child(1) {
    display: none;
}

.s2-rc ul li.slick-current a .date span {
    color: #D0B27E;
    background: url(/images/icon-date-y.png) no-repeat;
    background-position: left center;
    background-size: 0.2rem auto;
}

.s2-rc ul li.slick-current a h3 {
    color: #fff;
}

.s2-rc ul li.slick-current a .itemore {
    background: url(/images/rmore-y.png) no-repeat;
    background-position: right center;
    background-size: .55rem;
}

.s2-rc ul li.slick-current a .itemore b {
    color: #D0B27E;
    background: url(/images/icon-eye-y.png) no-repeat;
    background-position: left center;
    background-size: 0.21rem;
}


.s2-r .slick-dots {
    position: relative;
    margin-top: .1rem;
    text-align: left;
    font-size: 0;
    height: 60px;
    line-height: 60px;
    z-index: 1;
    display: flex !important;
    align-items: flex-end;
}

.s2-r .slick-dots li {
    width: auto;
    height: auto;
    margin: 0 .25rem 0 0;
    position: static;
    vertical-align: middle;
}


.s2-r .slick-dots li svg {
    fill: none;
    stroke: #9F1818;
    stroke-width: 1px;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    width: 50px;
    height: 50px;
    position: absolute;
    left: 40px;
    bottom: 0;
    opacity: 0;
}

.s2-arrow {
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    right: 0;
    z-index: 9;
}

.s2-arrow>div {
    display: flex;
    align-items: center;
}

.s2-arrow>div div {
    cursor: pointer;
}

.s2-arrow>div div img {
    display: block;
    cursor: pointer;
}

.s2-arrow ol {
    display: flex;
    align-items: center;
}

.s2-arrow ol li {
    margin-left: .2rem;
    cursor: pointer;
    position: relative;
}

.s2-arrow ol li img {
    display: block;
}

.s2-arrow ol li div {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 130%;
    margin-bottom: 10px;
    border-radius: 5px;
    padding: 5px;
    background: #fff;
    opacity: 0;
    transition: all .5s;
    visibility: hidden;
    z-index: 9;
    box-shadow: 0 0 5px rgba(0, 0, 0, .2);
}

.s2-arrow ol li div img {
    display: block;
    width: 1.1rem;
    height: auto;
}

.s2-arrow ol li div::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    border-width: 8px 8px 0 8px;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
}

.s2-arrow ol li:hover div {
    opacity: 1;
    bottom: 100%;
    visibility: visible;
}

.s2-svg {
    width: 50px;
    height: 50px;
    background: url(/images/s1-llogo.png) no-repeat;
    background-position: center center;
    background-size: 19px;
    margin: 0 20px;
    border: 1px solid rgba(159, 24, 24, .2);
    border-radius: 50%;
}

.s2-r .slick-dots li.slick-active svg {
    opacity: 1;
    animation: indexsvg 2.8s linear forwards;
}

.s3 {
    background: url(/images/s3-bj.jpg) no-repeat;
    background-position: center center;
    background-size: cover;
    padding: .9rem 0 0.8rem 0;
    overflow: hidden;
}


.title2 .titicon {
    position: relative;
}

.title2 .titicon::after {
    content: "";
    position: absolute;
    left: -0.2rem;
    top: 50%;
    width: 1px;
    height: 0.21rem;
    transform: translateY(-50%);
    background: rgba(159, 24, 24, 0.08);
}

.title2 .titicon::before {
    content: "";
    position: absolute;
    right: 100%;
    margin-right: .2rem;
    left: -9999px;
    height: 1px;
    top: 50%;
    z-index: 1;
    background: rgba(159, 24, 24, 0.08);
}

.title2 .titname {
    justify-content: center;
}

.title2 .titname::before {
    background: rgba(208, 178, 126, 0.2);
    right: 0;
    margin-right: .23rem;
    /* opacity: 0; */
    left: 50%;
    margin-left: -1.1rem;
}

.s3 .titicon::before {
    background: rgba(208, 178, 126, 0.2);
}

.s3 .titicon::after {
    background: rgba(208, 178, 126, 0.2);
}

.title2 .titname::after {
    background: rgba(208, 178, 126, 0.2);
    opacity: 0;
}

.s3 .tittext h3 {
    background: url(/images/titname-sup2.png) no-repeat;
    background-position: right top;
    background-size: 0.74rem auto;
}

.s3 .tittext h3 span {
    color: #FFFFFF;
}

.s3 .tittext h3 i {
    background: #fff;
}

.s3 .tittext h3 b {
    color: #D0B27E;
}

.s3 .tittext p {
    color: rgba(255, 255, 255, 0.6);
}

.s3 .titmore {
    background: url(/images/tit-more-logo2.png) no-repeat;
    background-position: left 0.08rem;
    background-size: auto 0.7rem;
}

.s3 .titmore a {
    color: #D0B27E;
    background: url(/images/tit-more-bg3.png) no-repeat;
    background-position: right center;
    background-size: auto 0.2rem;
}

.s3 .titmore::before {
    background: rgba(208, 178, 126, 0.2);
}

.s3 .titmore::after {
    background: rgba(208, 178, 126, 0.2);
}

.s3 .titmore a::after {
    background: rgba(208, 178, 126, 0.2);
}



.s3-c {
    display: flex;
    margin-top: .4rem;
    align-items: center;
}

.s3-l {
    flex: 1;
    min-width: 0;
}

.s3-list li {
    margin-top: .3rem;
}

.s3-list li:nth-child(1) {
    margin-top: 0;
}

.s3-list li a {
    display: flex;
    align-items: center;
    background: url(/images/s3-border.png) no-repeat;
    background-size: 100% 100%;
    padding: .3rem .35rem;
    transition: all 0.5s;
}

.s3-list li a .date {
    text-align: right;
}

.s3-list li a .date b {
    display: block;
    font-family: Impact;
    font-size: 0.3rem;
    font-weight: normal;
    line-height: 0.3rem;
    text-transform: uppercase;
    color: #FFFFFF;
}

.s3-list li a .date span {
    display: block;
    font-family: Arial;
    font-size: 0.18rem;
    font-weight: normal;
    line-height: 0.24rem;
    text-align: right;
    color: rgba(255, 255, 255, 0.4);
    margin-top: .06rem;
}

.s3-list li a .info {
    padding-left: 5%;
    flex: 1;
    min-width: 0;
}

.s3-list li a .info h3 {
    font-size: 0.18rem;
    font-weight: normal;
    line-height: 0.3rem;
    color: #FFFFFF;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    max-height: .6rem;
}

.s3-list li a:hover {
    background: url(/images/s3-border2.png) no-repeat;
    background-size: 100% 100%;
}

.s3-m {
    width: 34.6%;
    margin: 0 .5rem;
}

.s3-r {
    flex: 1;
    min-width: 0;
}

.s3-m {
    position: relative;
}

.s3-mbj {
    border-radius: 50%;
    transition: all 0.5s;
}

.s3-mbj img {
    display: block;
    width: 100%;
    animation: _ani1 30s infinite linear;
}

.s3-m:hover .s3-mbj {}

.s3-c:hover .s3-m .pics {
    box-shadow: 0 0 .6rem rgba(216, 165, 105, .8);
}

.s3-m .pics {
    position: absolute;
    left: .5rem;
    right: 0.5rem;
    bottom: 0.5rem;
    top: 0.5rem;
    border-radius: 50%;
    border: .1rem solid #D8A569;
    overflow: hidden;
    transition: all 0.5s;
}

.s3-m .pics .pic {
    padding-top: 100%;
}

.s3-m .pics .pic img {
    object-fit: cover;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.s3-mdot {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.s3-mdot>div {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 0.34rem;
    height: 0.34rem;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s;
}

.s3-mdot>div.on {
    opacity: 1;
}

.s3-mdot>div:nth-child(1) {
    left: .55rem;
    transform: translateX(-50%) translateY(-50%);
}

.s3-mdot>div:nth-child(2) {
    right: .55rem;
    transform: translateX(50%) translateY(-50%);
}

.s3-mdot>div span {
    width: 0.12rem;
    height: 0.12rem;
    background: #FFFFFF;
    border-radius: 50%;
}

.s3-mdot>div::before {
    content: '';
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(255, 255, 255, .7);
    z-index: 2;
    -webkit-animation: scaleTwo 1.8s infinite;
    animation: scaleTwo 1.8s infinite;
    display: block;
    opacity: .9;
}

@-webkit-keyframes scaleTwo {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: .9
    }

    100% {
        -webkit-transform: scale(1.6);
        transform: scale(1.6);
        opacity: 0
    }
}

@keyframes scaleTwo {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: .9
    }

    100% {
        -webkit-transform: scale(1.6);
        transform: scale(1.6);
        opacity: 0
    }
}

.s3-line {
    position: absolute;
    left: .55rem;
    right: .55rem;
    top: .55rem;
    bottom: .55rem;
}

.s3-line>div {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.s3-line>div>div {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 0;
}

.s3-line>div>div.on {
    width: 1.1rem;
}

.s3-lline>div {
    right: 100%;
    width: 1.05rem;
    transition: all 0.8s;
}

.s3-lline>div:nth-child(1) {
    background: url(/images/s3-line1.png) no-repeat;
    background-position: right .45rem;
    background-size: 1.08rem;
}

.s3-lline>div:nth-child(2) {
    background: url(/images/s3-line2.png) no-repeat;
    background-position: right center;
    background-size: 1.07rem;
}

.s3-lline>div:nth-child(3) {
    background: url(/images/s3-line3.png) no-repeat;
    background-position: right 85%;
    background-size: 1.08rem;
}




.s3-rline>div {
    left: 100%;
    width: 1.05rem;
    transition: all 0.5s;
}

.s3-rline>div:nth-child(1) {
    background: url(/images/s3-line4.png) no-repeat;
    background-position: left .45rem;
    background-size: 1.08rem;
}

.s3-rline>div:nth-child(2) {
    background: url(/images/s3-line5.png) no-repeat;
    background-position: left center;
    background-size: 1.07rem;
}

.s3-rline>div:nth-child(3) {
    background: url(/images/s3-line6.png) no-repeat;
    background-position: left 85%;
    background-size: 1.08rem;
}


.bigbck {
    background: url(/images/bigbg.jpg) no-repeat;
    background-position: center top;
    background-size: cover;
    position: relative;
    padding-bottom: 1rem;
    overflow: hidden;
}

.bigbck::before {
    content: "";
    position: absolute;
    width: 25%;
    left: 0;
    height: 0.6rem;
    background: #B92626;
    top: 0;
    transition: width 3s, left 3s, clip-path 4s;
    transform: translateY(-50%);
    clip-path: polygon(0% 0%, 100% 30%, 100% 70%, 0% 100%, 0% 100%);
}

.bigbck::after {
    content: "";
    position: absolute;
    right: 0;
    width: 25%;
    height: 0.6rem;
    background: #D0B27E;
    transform: translateY(-50%);
    transition: width 3s, clip-path 4s;
    top: 0;
    clip-path: polygon(0% 30%, 100% 0%, 100% 100%, 0% 70%, 0% 100%);
}

.bigbck.on::before {
    width: 30%;
    clip-path: polygon(0% 30%, 100% 0%, 100% 100%, 0% 70%, 0% 100%);
}

.bigbck.on::after {
    width: 20%;
    clip-path: polygon(0% 0%, 100% 30%, 100% 70%, 0% 100%, 0% 100%);
}

.s4.on::before {
    width: 30%;
    left: 30%;
    clip-path: polygon(0% 0%, 100% 30%, 100% 70%, 0% 100%, 0% 100%);
}

.s4.on::after {
    width: 20%;
    right: 20%;
    clip-path: polygon(0% 30%, 100% 0%, 100% 100%, 0% 70%, 0% 100%);
}

.s4::before {
    content: "";
    position: absolute;
    width: 25%;
    left: 25%;
    height: 0.6rem;
    background: #EDA755;
    top: 0;
    transition: width 3s, left 3s, clip-path 4s;
    transform: translateY(-50%);
    clip-path: polygon(0% 30%, 100% 0%, 100% 100%, 0% 70%, 0% 100%);
}

.s4::after {
    content: "";
    position: absolute;
    right: 25%;
    width: 25%;
    height: 0.6rem;
    background: #637D98;
    top: 0;
    transition: width 3s, right 3s, clip-path 4s;
    transform: translateY(-50%);
    clip-path: polygon(0% 0%, 100% 30%, 100% 70%, 0% 100%, 0% 100%);
}

.s4 {
    padding: 1.6rem 0 1rem 0;
    /* overflow: hidden; */
    position: relative;
}



/* .s4::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    padding-top: 3%;
    background: url(/images/s4-tbj.png) no-repeat;
    background-position: center top;
    background-size: 100% 100%;
    transition: all 2s;
}
.s4::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    padding-top: 3%;
    background: url(/images/s4-tbj2.png) no-repeat;
    background-position: center top;
    background-size: 100% 100%;
    transform: translateY(-50%);
    transition: all 2s;
}
.s4.on::before{
    transform: translateY(-50%);
}
.s4.on::after{
    transform: translateY(0);
} */
.s4-hd {
    position: absolute;
    right: 0;
    top: .28rem;
    padding-right: 11%;
    z-index: 9;
}

.s4-hd ul {
    display: flex;
    align-items: center;
    background: url(/images/bigbg.jpg) no-repeat;
    background-position: left top;
    background-size: cover;
    padding: 0 .15rem;
}

.s4-hd ul li {
    position: relative;
    margin: 0 .15rem;
}

.s4-hd ul li a {
    background: url(/images/s4-hd-bj.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    font-size: 0.18rem;
    font-weight: normal;
    line-height: 0.5rem;
    text-align: center;
    color: #9F1818;
    display: block;
    min-width: 1.47rem;
    padding: 0 .1rem;
    position: relative;
    z-index: 9;
}

.s4-hd ul li.on a {
    background: url(/images/s4-hd-bj2.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    color: #fff;
    font-weight: 600;
}

.s4-hd ul li.on::before {
    content: "";
    position: absolute;
    left: -.06rem;
    right: -0.06rem;
    top: -.05rem;
    bottom: -.05rem;
    background: url(/images/s4-hd-bj3.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
}

.s4-hd ul li:hover a {
    background: url(/images/s4-hd-bj2.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    color: #fff;
    font-weight: 600;
}


.s4 .titmore a {
    display: block;
}

.s4 .titmore a.hide {
    display: none;
}

.s4-c {
    margin-top: .7rem;
}

.s4-c {
    position: relative;
    overflow: hidden;
}

.s4-list {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    opacity: 0;
    z-index: 8;
    transform: translateY(100%);
    transition: all 0.8s;
}

.s4-list.on {
    position: relative;
    z-index: 9;
    opacity: 1;
    transform: translateY(0);
}

.s4-list ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5.04rem;

}

.s4-list ul li {
    width: 20.8%;
    overflow: hidden;
    transition: all .5s;
}

.s4-list ul li a {
    display: block;
    position: relative;
    padding-top: 70%;
    transition: all .5s;
}

.s4-list ul li a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70%;
    transition: all .5s;
    background: #9F1818;
    z-index: 1;
    height: 0;
}

.s4-list ul li a .pics {
    position: absolute;
    right: 0;
    top: 0;
    right: 0;
    z-index: 3;
    width: 100%;
    transition: all .5s;
    max-width: 4.88rem;
}

.s4-list ul li a .pics .pic {
    padding-top: 70%;
}

.s4-list ul li a .info {
    transition: all .5s;
    padding-top: .25rem;
    position: relative;
    z-index: 2;
    max-width: 2.6rem;
}

.s4-list ul li a .info h3 {
    font-size: 0.18rem;
    font-weight: normal;
    line-height: 0.28rem;
    color: #333333;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    height: 0.84rem;
    transition: all .5s;
}

.s4-list ul li a .info p {
    font-size: 0.15rem;
    font-weight: normal;
    line-height: 0.26rem;
    color: rgba(255, 255, 255, 0.8);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: .52rem;
    height: 0;
    transition: all .5s;
}

.s4-list ul li a .info div {
    display: flex;
    justify-content: space-between;
    background: url(/images/s1-rmore.png) no-repeat;
    background-position: right center;
    background-size: 0.55rem;
    margin-top: 0.2rem;
    margin-top: 0;
    transition: all .5s;
    position: relative;
}

.s4-list ul li a .info div::before {
    content: "";
    position: absolute;
}

.s4-list ul li a .info div span {
    display: block;
    font-size: 0.16rem;
    font-weight: normal;
    line-height: 0.28rem;
    color: #9F1818;
    padding-left: .3rem;
    background: url(/images/icon-eye-r.png) no-repeat;
    background-position: left center;
    background-size: .21rem;
}



.s4-list.ijsfc ul li{
    width:14.8%;
}
.s4-list.ijsfc ul li a .pics .pic{
    padding-top:115%;
}


.s5 {
    padding-bottom: 1.5rem;
    position: relative;
}

.s5-c {
    margin-top: .5rem;
}

.s5-t {
    border-left: 0.06rem solid #9F1818;
    padding-left: .25rem;
}

.s5-t h3 {
    font-size: 0.22rem;
    font-weight: bold;
    line-height: 0.5rem;
    letter-spacing: 0em;
    color: #5D3C22;
}

.s5-t div {
    margin-top: .1rem;
}

.s5-t div p {
    font-size: 0.15rem;
    font-weight: normal;
    line-height: 0.28rem;
    color: #836D5B;
}

.s5-b {
    position: relative;
}

.s5-bbox {
    max-width: 1920px;
    margin: 0 auto;
}

.s5-b ul::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    height: 100%;
    width: 19.2rem;
    height: 5.98rem;
    background: url(/images/bg_river.png) no-repeat;
    background-position: center center;
    background-size: 100%;
    z-index: 1;
}

.s5-b ul {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: visible;
    padding-top: .9rem;
    /* max-width: 1500px; */
    margin: 0 auto;
    /* IE */
    -ms-overflow-style: none;
    /* 火狐 */
    scrollbar-width: none;
    padding-left: 11%;
    padding-right: 11%;
}

.s5-b ul::-webkit-scrollbar {
    display: none;
}

.s5-b ul li {
    position: relative;
    height: 5.98rem;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 9;
}

.s5-b ul li a {
    display: flex;
    align-items: center;
    position: relative;
}

/* .s5-b ul li a:hover .pics{
    width: 1.56rem;
    height: 1.56rem;
} */
.s5-b ul li a:hover .pics .pic {
    transform: scale(1.3);
}

.s5-b ul li a:hover .pics::before {
    background: url(/images/s5-item-bj2.png) no-repeat;
    background-position: center center;
    background-size: 100%;
    left: -.3rem;
    right: -.3rem;
    top: -0.3rem;
    bottom: -0.3rem;
}

.s5-b ul li a:hover .info {
    padding-left: .25rem;
}

.s5-b ul li a .pics {
    width: 1.1rem;
    padding: .05rem;
    position: relative;
}

.s5-b ul li a .pics::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: url(/images/s5-item-bj1.png) no-repeat;
    background-position: center center;
    background-size: 100%;
    z-index: 9;
    transition: all 0.5s;
}

.s5-b ul li a .pics .pic {
    padding-top: 100%;
    border-radius: 50%;
    overflow: hidden;
    z-index: 1;
    transition: all 0.5s;
}

.s5-b ul li a .info {
    padding-left: .15rem;
    width: 1.75rem;
    transition: all 0.5s;
}

.s5-b ul li a .info h3 {
    display: flex;
    align-items: flex-end;
    color: #9F1818;
}

.s5-b ul li a .info h3 b {
    font-family: Impact;
    font-weight: 400;
    font-size: 0.36rem;
    line-height: 40px;
}

.s5-b ul li a .info h3 span {
    font-size: 0.18rem;
    display: block;
    line-height: .3rem;
    font-weight: normal;
}

.s5-b ul li a .info p {
    font-size: 0.16rem;
    font-weight: normal;
    line-height: 0.28rem;
    color: #333333;
    margin-top: .05rem;
}

.s5-b ul li a::before {
    content: "";
    position: absolute;
    width: 0.12rem;
    height: 0.12rem;
    background: #9F1818;
    border-radius: 50%;
}

.s5-b ul li a::after {
    content: "";
    position: absolute;
    width: 0.54rem;
    height: 0.54rem;
    background: rgba(159, 24, 24, 0.15);
    border-radius: 50%;
    opacity: 0;
    -webkit-animation: scaleTwo3 1.8s infinite;
    animation: scaleTwo3 1.8s infinite;
}

@-webkit-keyframes scaleTwo2 {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) scale(1);
        transform: translateX(-50%) translateY(-50%) scale(1);
        opacity: 0
    }

    35% {
        -webkit-transform: translateX(-50%) translateY(-50%) scale(1);
        transform: translateX(-50%) translateY(-50%) scale(1);
        opacity: .9
    }

    100% {
        -webkit-transform: translateX(-50%) translateY(-50%) scale(1.6);
        transform: translateX(-50%) translateY(-50%) scale(1.6);
        opacity: 0
    }
}

@keyframes scaleTwo2 {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) scale(1);
        transform: translateX(-50%) translateY(-50%) scale(1);
        opacity: 0
    }

    35% {
        -webkit-transform: translateX(-50%) translateY(-50%) scale(1);
        transform: translateX(-50%) translateY(-50%) scale(1);
        opacity: .9
    }

    100% {
        -webkit-transform: translateX(-50%) translateY(-50%) scale(1.6);
        transform: translateX(-50%) translateY(-50%) scale(1.6);
        opacity: 0
    }
}

@-webkit-keyframes scaleTwo3 {
    0% {
        -webkit-transform: translateX(-50%) translateY(50%) scale(1);
        transform: translateX(-50%) translateY(50%) scale(1);
        opacity: .9
    }

    100% {
        -webkit-transform: translateX(-50%) translateY(50%) scale(1.6);
        transform: translateX(-50%) translateY(50%) scale(1.6);
        opacity: 0
    }
}

@keyframes scaleTwo3 {
    0% {
        -webkit-transform: translateX(-50%) translateY(50%) scale(1);
        transform: translateX(-50%) translateY(50%) scale(1);
        opacity: .9
    }

    100% {
        -webkit-transform: translateX(-50%) translateY(50%) scale(1.6);
        transform: translateX(-50%) translateY(50%) scale(1.6);
        opacity: 0
    }
}

.s5-b ul li a .pics::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 1.4rem;
    background: #9F1818;
    left: .55rem;
}


.s5-b ul li:nth-child(1) {
    padding-top: 1.2rem;
}

.s5-b ul li:nth-child(1) a {
    padding-bottom: 1.35rem;
    margin-top: -2.4rem;
}

.s5-b ul li:nth-child(1) a::before {
    left: .55rem;
    transform: translateX(-50%) translateY(50%);
    bottom: 0;
}

.s5-b ul li:nth-child(1) a::after {
    left: .55rem;
    transform: translateX(-50%) translateY(50%);
    bottom: 0;
}

.s5-b ul li:nth-child(1) a .pics::after {
    height: 1.4rem;
    top: 100%;
    margin-top: -.1rem;
}



.s5-b ul li:nth-child(2) {
    display: flex;
    align-items: flex-end;
}

.s5-b ul li:nth-child(2) a {
    padding-top: 1.4rem;
    transform: translateY(-1.05rem);
}

.s5-b ul li:nth-child(2) a::before {
    left: .55rem;
    transform: translateX(-50%) translateY(-50%);
    top: 0;
}

.s5-b ul li:nth-child(2) a::after {
    left: .55rem;
    transform: translateX(-50%) translateY(-50%);
    top: 0;
    -webkit-animation: scaleTwo2 1.8s infinite;
    animation: scaleTwo2 1.8s infinite;
}

.s5-b ul li:nth-child(2) a .pics::after {
    height: 1.4rem;
    bottom: 100%;
    margin-top: -.1rem;
}



.s5-b ul li:nth-child(3) {
    padding-top: .75rem;
}

.s5-b ul li:nth-child(3) a {
    padding-bottom: 1.35rem;
    margin-top: -2.4rem;
}

.s5-b ul li:nth-child(3) a::before {
    left: .55rem;
    transform: translateX(-50%) translateY(50%);
    bottom: 0;
}

.s5-b ul li:nth-child(2n) a::after {
    animation-delay: -.3s;
}

.s5-b ul li:nth-child(3) a::after {
    left: .55rem;
    transform: translateX(-50%) translateY(50%);
    bottom: 0;
}

.s5-b ul li:nth-child(3) a .pics::after {
    height: 1.4rem;
    top: 100%;
    margin-top: -.1rem;
}


.s5-b ul li:nth-child(4) {
    padding-top: 0rem;
}

.s5-b ul li:nth-child(4) a {
    padding-bottom: 1.35rem;
    transform: translateY(-2.2rem);
}

.s5-b ul li:nth-child(4) a::before {
    left: .55rem;
    transform: translateX(-50%) translateY(50%);
    bottom: 0;
}

.s5-b ul li:nth-child(4) a::after {
    left: .55rem;
    transform: translateX(-50%) translateY(50%);
    bottom: 0;
}

.s5-b ul li:nth-child(4) a .pics::after {
    height: 1.4rem;
    top: 100%;
    margin-top: -.1rem;
}


.s5-b ul li:nth-child(5) {}

.s5-b ul li:nth-child(5) a {
    padding-top: 1.4rem;
    transform: translateY(-.9rem);
}

.s5-b ul li:nth-child(5) a::before {
    left: .55rem;
    transform: translateX(-50%) translateY(-50%);
    top: 0;
}

.s5-b ul li:nth-child(5) a::after {
    left: .55rem;
    transform: translateX(-50%) translateY(-50%);
    top: 0;
    -webkit-animation: scaleTwo2 1.8s infinite;
    animation: scaleTwo2 1.8s infinite;
}

.s5-b ul li:nth-child(5) a .pics::after {
    height: 1.4rem;
    bottom: 100%;
    margin-top: -.1rem;
}

.s5-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 7.2rem;
    max-width: 85%;
    margin: auto;
    z-index: 9;
}

.s5-content>div {
    background: url(/images/s5-content-bj.png) no-repeat;
    background-size: 100% 100%;
    padding: .4rem;
    display: flex;
    position: absolute;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.5s;
    z-index: -1;
}

.s5-content>div.on {
    position: relative;
    transform: translateY(0);
    opacity: 1;
    z-index: 1;
}

.colse-s5-cont {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-.05rem);
    width: 0.35rem;
    height: 0.35rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #9F1818;
    border-radius: 50%;
    cursor: pointer;
}

.colse-s5-cont::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: #9F1818;
    border-radius: 50%;
}

.colse-s5-cont:hover::before {
    animation: scaleTwo 1.8s infinite;
}

.colse-s5-cont span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 2px;
    height: 0.2rem;
    background: #fff;
}

.colse-s5-cont span:nth-child(1) {
    transform: translateX(-50%) translateY(-50%) rotateZ(40deg);
}

.colse-s5-cont span:nth-child(2) {
    transform: translateX(-50%) translateY(-50%) rotateZ(-40deg);
}

.s5-content>div .pics {
    width: 2.7rem;
}

.s5-content>div .pics .pic {
    padding-top: 73%;
}

.s5-content>div .info {
    flex: 1;
    min-width: 0;
}

.s5-content>div .info h3 {
    font-size: 2zx;
    color: #D0B27E;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-left: .5rem;
    position: relative;
}

.s5-content>div .info h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 1px;
    width: 0.32rem;
    background: #D0B27E;
}

.s5-content>div .info h3::after {
    content: "";
    position: absolute;
    left: 0.32rem;
    top: 50%;
    transform: translateY(-50%);
    height: .2rem;
    width: 1px;
    background: #D0B27E;
}

.s5-content>div .info p {
    font-size: 0.15rem;
    font-weight: normal;
    line-height: 0.28rem;
    letter-spacing: 0em;
    color: #FFFFFF;
    /*   display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden; */
    max-height: 1.14rem;
    overflow-y: auto;
    padding-left: .35rem;
    margin-top: .35rem;
}


.s5-svg {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.s5-svg1 {
    position: absolute;
    left: 0;
    bottom: 1.5rem;
}

.s5-svg1 svg {
    width: 2.23rem;
}

.s5-svg2 {
    position: absolute;
    left: 20%;
    bottom: 0;
}

.s5-svg2 svg {
    width: 2.65rem;
}

.s5-svg3 {
    position: absolute;
    right: 20%;
    bottom: .5rem;
}

.s5-svg3 svg {
    width: 7.08rem;
}

.s5-svg svg {
    stroke-dasharray: 1000;
    stroke-dashoffset: 0;
    transition: .5s;
}

.s5-svg svg * {
    stroke: rgba(167, 132, 98, 0.4);
}

/* .s5-svg div.on svg {
    animation: dash 10s ease;
} */


.s5-svg.showdiv svg {
    animation: dash 10s ease;
}

@keyframes dash {
    from {
        stroke-dashoffset: 1000;
    }

    to {
        stroke-dashoffset: 0;
    }
}

.s6 {
    padding-top: 3.3rem;
    position: relative;
    margin-top: -3.3rem;
    padding-bottom: 3rem;
    overflow: hidden;
}

.s6::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: url(/images/media_bg.png) no-repeat;
    background-position: center bottom;
    background-size: cover;
    z-index: 2;
}

.s6::before {
    content: "";
    position: absolute;
    left: 0;
    width: 7680px;
    bottom: 0;
    top: 0;
    background: url(/images/mountain.png) repeat-x;
    background-position: left top;
    animation: ani_shan 100s infinite linear;
    z-index: 1;
}

.s6 .w15 {
    position: relative;
    z-index: 3;
}

@keyframes ani_shan {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.s6-c {
    margin-top: .6rem;
}

.s6-c ul {
    margin: 0 -.25rem;
    padding: 0 .5rem;
}

.s6-c ul li a {
    display: block;
    margin: 0 .25rem;
}

.s6-c ul li a .pic {
    padding-top: 156%;
}

.s6-c ul li a .pic::after {
    content: "";
    position: absolute;
    left: .1rem;
    right: .1rem;
    top: .1rem;
    bottom: .1rem;
    background: url(/images/s6-border.jpg) no-repeat;
    background-size: 100% 100%;
}

.s6-c ul li:nth-child(2n) {
    margin-top: .4rem;
}

.s6-c .slick-prev, .s6-c .slick-next {
    width: 0.2rem;
    height: 0.3rem;
    position: absolute;
}

.s6-c .slick-prev {
    background: url(/images/prev-r.png) no-repeat;
    background-position: center center;
    background-size: .2rem;
}

.s6-c .slick-next {
    background: url(/images/next-r.png) no-repeat;
    background-position: center center;
    background-size: .2rem;
}




@media screen and (max-width: 1024px) {}

@media screen and (min-width: 1025px) {

    .s2-rc ul li:hover {
        background: url(/images/s-ritem-bj.jpg) no-repeat;
        background-position: center center;
        background-size: cover;
    }

    .s2-rc ul li:hover a {
        background: url(/images/s2-rborder.png) no-repeat;
        background-position: center center;
        background-size: 100% 100%;
    }

    .s2-rc ul li:hover a .date img {
        display: block;
    }

    .s2-rc ul li:hover a .date img:nth-child(1) {
        display: none;
    }

    .s2-rc ul li:hover a .date span {
        color: #D0B27E;
        background: url(/images/icon-date-y.png) no-repeat;
        background-position: left center;
        background-size: 0.2rem auto;
    }

    .s2-rc ul li:hover a h3 {
        color: #fff;
    }

    .s2-rc ul li:hover a .itemore {
        background: url(/images/rmore-y.png) no-repeat;
        background-position: right center;
        background-size: .55rem;
    }

    .s2-rc ul li:hover a .itemore b {
        color: #D0B27E;
        background: url(/images/icon-eye-y.png) no-repeat;
        background-position: left center;
        background-size: 0.21rem;
    }

    .s4-list ul li.on {
        width: 51%;
    }

    .s4-list ul li.on a {
        padding-top: 0;
    }

    .s4-list ul li.on a::before {
        height: 100%;
    }

    .s4-list ul li.on a .pics {
        left: auto;
        right: 0;
        top: auto;
        width: 43.8%;
        top: 50%;
        transform: translateY(-50%);
    }

    .s4-list ul li.on a .info {
        width: 36%;
        padding: .9rem 5% .7rem 5%;
    }

    .s4-list ul li.on a .info h3 {
        color: #fff;
        font-weight: 600;
        font-size: 0.22rem;
        font-weight: bold;
        line-height: 0.32rem;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 4;
        overflow: hidden;
        height: 1.28rem;
    }

    .s4-list ul li.on a .info p {
        height: 0.52rem;
        margin-top: .16rem;
    }

    .s4-list ul li.on a .info div {
        margin-top: .9rem;
        padding-top: .3rem;
        background: none;
    }

    .s4-list ul li.on a .info div::before {
        left: -1rem;
        right: -1rem;
        height: 1px;
        top: 0;
        background: rgba(255, 255, 255, 0.1);
    }

    .s4-list ul li.on a .info div span {
        color: #D0B27E;
        background: url(/images/icon-eye-y.png) no-repeat;
        background-position: left center;
        background-size: 0.21rem;
    }
}

@media screen and (max-width: 1480px) {
    .s2-l .title {
        padding-right: 5%;
    }

    .s4-hd {
        padding-right: 7%;
    }
}

@media screen and (max-width: 1200px) {
    #downPage {
        width: 0.6rem;
        height: 0.6rem;
        margin: 0 .3rem;
    }

    #downPage img {
        height: .2rem;
    }

    .banner-btm {
        bottom: 0.1rem;
    }

    .banner .slick-slide a::after {
        content: none;
    }

    html,
    body,
    .banner,
    .banner .slick,
    .banner .slick div,
    .banner .slick-slide a,
    .banner .slick-slide a img {
        height: auto !important;
    }

    .index {
        position: static;
        padding-top: 0;
    }

    .s4 .titname {
        /* position: static; */
    }

    .s4-hd {
        padding-right: 0;
        top: 100%;
        margin-top: .2rem;
    }

    .s4-hd ul {
        justify-content: space-between;
    }

}

@media screen and (max-width: 1024px) {
    .s1-c {
        display: block;
        padding-left: 0;
    }

    .s1-l {
        width: auto;
        margin-right: 0;
    }

    .s1-r {
        margin-top: .3rem;
    }

    .tittext h3 {
        font-size: .28rem;
    }

    .titicon {
        margin-right: .15rem;
    }

    .s1-rb ul li a {
        padding: .35rem .2rem;
    }


    .s1-l ul li a .info h3 {
        font-size: .18rem;
    }

    .s1-l .slick-dots li {
        margin: 0 .15rem 0 0;
    }

    .s2-c {
        display: block;
    }

    .s2-l {
        display: block;
        width: auto;
    }

    .s2-l .title {
        padding-right: 0;
        flex-direction: row;
    }

    .s2-l .titname {
        flex: 1;
        min-width: 0;
        display: flex;
        align-items: flex-end;
        position: relative;
        height: 0.9rem;
    }

    .s2-l .tittext {
        display: block;
        margin-top: 0;
    }

    .s2-l .tittext div {
        writing-mode: inherit;
        writing-mode: inherit;
    }

    .s2-l .tittext h3 {
        display: flex;
        align-items: center;
        font-family: "sysong";
        background: url(/images/titname-sup.png) no-repeat;
        background-position: right top;
        background-size: 0.74rem auto;
        padding-bottom: 0;
        margin-left: 0;
        padding-right: .9rem;
    }

    .s2-l .tittext h3 i {
        margin: 0 0.1rem;
    }

    .s2-l .tittext p {
        writing-mode: inherit;
        writing-mode: inherit;
        margin-top: 0.2rem;
    }

    .s2-l .titmore {
        writing-mode: inherit;
        writing-mode: inherit;
        background: url(/images/tit-more-logo.png) no-repeat;
        background-position: left 0.08rem;
        background-size: auto 0.7rem;
        padding-top: 0.15rem;
        padding-left: 0.27rem;
        position: relative;
        width: auto;

    }

    .s2-l .titmore a {
        line-height: 0.75rem;
        color: #9F1818;
        padding-right: 0.2rem;
        background: url(/images/tit-more-bg.png) no-repeat;
        background-position: right center;
        background-size: auto 0.2rem;
        padding-bottom: 0;
    }

    .s2-l .titmore::before {
        position: absolute;
        left: -0.23rem;
        top: 0.53rem;
        width: 1px;
        background: rgba(159, 24, 24, 0.08);
        height: 0.21rem;
        transform: translateY(-50%);
    }

    .s2-l .titmore::after {
        position: absolute;
        right: -0.15rem;
        top: 0.53rem;
        width: 1px;
        background: rgba(159, 24, 24, 0.08);
        height: 0.21rem;
        transform: translateY(-50%);
    }

    .s2-r {
        width: auto;
        margin-top: .5rem;
    }

    .s2-rc {
        margin-left: 0;
    }

    .s2-rc ul li a {
        padding: .2rem .15rem;
    }

    .s2-arrow ol li img {
        height: 0.5rem;
    }

    .s3-list li a {
        padding: .2rem .2rem;
    }

    .s3-list li a .date b {
        font-size: .22rem;

    }

    .s3-m {
        width: 30%;
        margin: 0 .25rem;
    }

    .s4 .titname {
        position: static;
    }

    .s4 .title {
        position: relative;
    }

    .s4-hd {
        width: 100%;
    }

    .s4-hd ul {
        padding: 0;
        justify-content: center;
    }

    .s4-hd ul li {}

    .s4-hd ul li a {
        min-width: 1rem;
        line-height: .36rem;
    }

    .s4-list ul li {
        width: 32%;
    }
    .s4-list.ijsfc ul li{
        width:23%;
    }

    .s6-c ul {
        margin: 0;
        padding: 0 .3rem;
    }

    .s6-c ul li a {
        margin: 0 .1rem;
    }



    .s1, .s2, .s3 {
        padding-top: .5rem;
        padding-bottom: .5rem;
    }

    .s1-c, .s2-rc, .s5-c {
        margin-top: .35rem;
    }

    .s1-l .slick-dots {
        margin-top: .2rem;
    }

    .s2-l ul {
        padding-top: .35rem;
    }

    .s2::before {
        width: 3rem;
        height: 3rem;
    }

    .s4 {
        padding-top: 1rem;
        padding-bottom: .5rem;
    }
}

@media screen and (max-width: 768px) {
   .s2-arrow ol {
       padding-right: 30px;
    }

    .s1-rt a {
        display: block;
        padding: .3rem .2rem;
    }

    .s1-rt a .pics {
        width: auto;
        padding-left: 0;
        margin-top: .2rem;
        margin-left: 0;
    }

    .s1-rinfo span {
        margin-top: .2rem;
    }

    .s1-rb {
        margin-top: 0;
    }

    .s1-rb ul {
        display: block;
    }

    .s1-rb ul li {
        width: auto;
        margin-top: .2rem;
    }

    .titicon img {
        width: 0.5rem;
    }

    .titname::before, .titmore::before {
        content: none;
    }

    .titname::after {
        content: none;
    }

    .tittext p, .s2-l .tittext p {
        line-height: .22rem;
        margin-top: 0.1rem;
    }

    .titicon {
        margin-top: 0;
    }

    .titname, .s2-l .titname {
        align-items: center;
    }

    .titmore a, .s2-l .titmore a {
        font-size: .18rem;
    }

    .titmore, .s2-l .titmore, .s3 .titmore {
        background-size: auto .5rem;
        padding-left: .15rem;
    }

    .tittext h3, .s2-l .tittext h3, .s3 .tittext h3 {
        padding-right: .6rem;
        background-size: .5rem auto;
        background-position: right center;
    }

    .title2 .titname {
        justify-content: flex-start;
    }

    .s3-c {
        display: block;
    }

    .s3-m {
        width: 90%;
        max-width: 3rem;
        margin: .2rem auto;
    }

    .s4-list ul {
        display: block;
        height: auto;
    }

    .s4-list ul li ,.s4-list.ijsfc ul li{
        width: auto;
        margin-top: .15rem;
    }

    .s4-list ul li a {
        padding-top: 0;
        display: flex;
        align-items: center;
    }

    .s4-list ul li a .pics {
        position: static;
        width: 1.8rem;
        margin-right: .15rem;
    }

    .s4-list ul li a .info {
        flex: 1;
        min-width: 0;
        padding-top: 0;
        max-width: none;
    }

    .s4-list ul li a .info div {
        margin-top: .1rem;
    }

    .s5-content>div {
        padding: .35rem .25rem;
        display: block;
    }

    .s5-content>div .pics {
        margin: 0 auto;
    }

    .s5-content>div .info h3 {
        text-align: center;
        padding-left: 0;
        margin-top: .1rem;
    }

    .s5-content>div .info h3::before {
        content: none;
    }

    .s5-content>div .info h3::after {
        content: none;
    }

    .s5-content>div .info p {
        padding-left: 0;
    }

    .s6 {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .s6-c {
        margin-top: .35rem;
    }

}

@media screen and (max-width: 480px) {}


/* 右侧悬浮框 */
.fixed-r {
    position: fixed;
    right: .46rem;
    top: 50%;
    transform: translateX(2rem) translateY(-50%);
    background: url(/images/fixed-bj.png) no-repeat;
    background-position: center bottom;
    background-size: cover;
    width: 1rem;
    padding-bottom: .15rem;
    transition: all 0.5s;
    z-index: 999;
    margin-top: .5rem;
}
.fixed-r.show{
    transform: translateX(0) translateY(-50%);
}

.fixed-logo a {
    display: block;
    margin-top: -.5rem;
}

.fixed-logo a img {
    display: block;
    width: 100%;
}

.fixed-r ul {
    padding: 0 .15rem;
}

.fixed-r ul li a {
    display: block;
    padding: 0.2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.fixed-r ul li:nth-child(1) a {
    border: none;
}

.fixed-r ul li a .icon {
    height: .26rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fixed-r ul li a .icon img {
    max-height: 100%;
}

.fixed-r ul li a p {
    text-align: center;
    font-size: 0.16rem;
    font-weight: normal;
    line-height: 0.28rem;
    text-align: center;
    color: #FFFFFF;
    margin-top: .08rem;
}

.gotop {
    margin: 0 .15rem;
    margin-top: .1rem;
    cursor: pointer;
}

.gotop img {
    display: block;
    width: 100%;
}

@media screen and (max-width: 1024px) {
    .fixed-r {
        display: none;
    }
}