@charset "UTF-8";

/* head */
.head {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 9999;
    padding: .1rem .7rem;
    transition: all 0.5s;
}

.head.on {
    padding: .1rem .5rem;
}

.head::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0) 100%);
}

.h-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.logo a img {
    width: 5.4rem;
    display: block;
}

.h-lk {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}

.h-lk a {
    color: rgba(255, 255, 255, 0.7);
    font-size: .15rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.h-lk a img {
    width: .2rem;
    margin-right: .1rem;
}

.ser {
    width: 2rem;
    height: .34rem;
    border-radius: .02rem;
    box-sizing: border-box;
    border: .01rem solid rgba(255, 255, 255, 0.5);
    position: relative;
    margin-left: .3rem;
}

.ser input {
    width: 100%;
    height: 100%;
    display: block;
    background-color: transparent;
    padding-left: .15rem;
    color: #ffffff;
    font-size: .14rem;
    padding-top: .1rem;
}

.ser input::placeholder {
    color: #ffffff;
    font-size: .14rem;
    opacity: 0.6;
}

.ser button {
    width: .3rem;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background: url(../images/ico-ser.png) no-repeat center center;
    background-size: .12rem;
    cursor: pointer;
}

.ser button::after {
    content: '';
    height: .15rem;
    width: .01rem;
    background: #ffffff;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    opacity: 0.6;
}

a {
    display: block;
}

.banner {
    position: relative;
    overflow: hidden;
}

.banner video,
.banner img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: block;
}

.banner a {
    display: block;
    position: relative;
    padding-top: 40%;
    overflow: hidden;
}

.banner .slick {
    position: relative;
    z-index: 9;
}

.banner .slick-slide a {
    display: block;
    position: relative;
}

.banner .slick-dots {
    bottom: .4rem;
}

.banner .slick-dots li {
    text-align: center;
    width: .08rem;
    height: .08rem;
    border-radius: 50%;
    background: #ffffff;
    vertical-align: middle;
    margin: 0 .15rem;
}

.banner .slick-dots li.slick-active {
    width: .3rem;
    height: .3rem;
    border: .01rem dashed #fff;
    background-color: transparent;
    text-align: center;
}

.banner .slick-dots li.slick-active button {
    display: block;
}

.banner .slick-dots li.slick-active button::before {
    content: '0';
}

.banner .slick-dots li button {
    width: 100%;
    height: 100%;
    line-height: .3rem;
    font-size: .14rem;
    display: block;
    padding: 0;
    color: #fff;
    display: none;
}


.banner .slick-slide.slick-current a img {
    animation: img_scale 8s linear;
}

@keyframes img_scale {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}



/* s1 */
.tit h3 {
    color: #333333;
    font-size: .36rem;
    position: relative;
    z-index: 2;
    font-weight: normal;
    text-align: center;
}

.tit {
    margin-bottom: .5rem;
    position: relative;
}

.tit img {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    height: .69rem;
    z-index: 1;
}

.s1 {
    background: #F5F8FF;
    padding: 1rem 0;
}

.s1-t {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.s1-ban .pic {
    padding-top: 58.8%;
}

.s1-ban {
    width: 9.23rem;
    margin-right: .3rem;
    border-radius: .15rem;
    overflow: hidden;
}

.s1-ban a {
    position: relative;
}

.s1-ban a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: -moz-linear-gradient(top, transparent 80%, rgba(0, 0, 0, 0.8) 100%);
    background: -webkit-linear-gradient(top, transparent 80%, rgba(0, 0, 0, 0.8) 100%);
    background: -o-linear-gradient(top, transparent 80%, rgba(0, 0, 0, 0.8) 100%);
    background: -ms-linear-gradient(top, transparent 80%, rgba(0, 0, 0, 0.8) 100%);
    background: linear-gradient(to bottom, transparent 80%, rgba(0, 0, 0, 0.8) 100%);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 100%;
    z-index: 1;
}

.s1-ban a p {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: .3rem;
    font-size: .22rem;
    color: #ffffff;
    z-index: 2;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.s1-r {
    flex: 1;
    min-width: 0;
    background: #ffffff;
}

.s1-r ul li a h3 {
    color: #333333;
    font-size: .18rem;
    line-height: .28rem;
    height: .56rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.s1-r ul li a p {
    color: #909090;
    font-size: .14rem;
    margin: .1rem 0;
}

.s1-r ul li a span {
    color: #909090;
    font-size: .14rem;
}

.s1-r ul li a:hover h3 {
    color: #7e0014;
}

.s1-r ul li a {
    padding: .3rem .3rem;
    border-top: .01rem dashed #D8D8D8;
}

.s1-r ul li:first-child a {
    border-color: transparent;
}

.s1-b {
    margin-top: .3rem;
}

.s1-b ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.s1-b ul li {
    width: 32%;
}

.s1-b ul li a {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: .3rem .2rem;
    border-bottom: .03rem solid #7E0014;
    background: #ffffff;
    transition: all 0.5s;
}

.s1-b ul li a:hover {
    box-shadow: 0rem .08rem .32rem 0rem rgba(0, 0, 0, 0.16);
    border-color: #7e0014;
}

.s1-b ul li a .pic {
    width: 1.82rem;
    padding-top: 1.15rem;
    margin-right: .22rem;
}

.s1-tx {
    flex: 1;
    min-width: 0;
}

.s1-tx h3 {
    font-size: .16rem;
    line-height: .28rem;
    height: .52rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: #3D3D3D;
}

.s1-tx p {
    color: #909090;
    font-size: .14rem;
    margin-bottom: .1rem;
}

.s1-b ul li a:hover h3 {
    color: #7e0014;
    font-weight: 600;
}












/* more */
.more {
    margin-top: .45rem;
}

.more a {
    border-radius: 2.22rem;
    background: rgba(0, 0, 0, 0.02);
    box-sizing: border-box;
    border: .01rem solid rgba(0, 0, 0, 0.16);
    width: 1.4rem;
    line-height: .4rem;
    margin: 0 auto;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.more a img {
    width: .16rem;
    margin-right: .09rem;
}

.more a p {
    font-size: .14rem;
    color: #666666;
    transition: all 0.5s;
}

.more a:hover p {
    letter-spacing: .02rem;
    color: #7E0014;
}

/* more**end */

/* s2 */

.s2 {
    padding-top: .7rem;
    padding-bottom: .45rem;
    background: #F5F8FF;
}

.s2-lt a {
    position: relative;
    background: #ffffff;
    border-radius: .15rem;
    overflow: hidden;
}

.s2-lt .pic {
    padding-top: 64%;
    border-radius: .15rem;
}

.s2-lt a {
    margin: 0 .28rem;
}

.s2-lt a:hover h3 {
    color: #7E0014;
}

.s2-lt span {
    border-radius: 0rem 0rem .15rem 0rem;
    background: #7E0014;
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 0 .1rem;
    line-height: .38rem;
    color: #ffffff;
    font-size: 0.13rem;
}

.s2-tx h3 {
    color: #393939;
    font-size: .18rem;
    padding: .25rem 0;
    border-bottom: .01rem dashed rgba(14, 67, 150, 0.2);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
}

.s2-tx p {
    color: #9E9E9E;
    font-size: .14rem;
    background: url(../images/s2-jt.png) no-repeat right .2rem center;
    padding: .2rem .1rem;
}

/* s3 */

.s3 {
    display: none;
    padding-top: .88rem;
    padding-bottom: .5rem;
}


.s3-tit h3 {
    color: #333333;
    font-size: .32rem;
    margin-bottom: .4rem;
    line-height: .48rem;
    text-align: center;
}

.s3-tit p {
    color: #666666;
    font-size: .16rem;
    line-height: .3rem;
    text-align: center;
}

.s3-lt .ico::before {
    content: '';
    width: 110%;
    height: 110%;
    border: .01rem dashed #7E0014;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.s3-lt .ico {
    width: 1.34rem;
    height: 1.34rem;
    background: #EBF1FF;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 0.5s;
}

.s3-lt .ico img:last-child {
    display: none;
}

.s3-lt .ico img {
    max-width: 80%;
    min-width: 60%;
}

.s3-tx {
    margin-top: .25rem;
}

.s3-tx h3 {
    color: #333333;
    font-size: .18rem;
    text-align: center;
    margin-bottom: .05rem;
    line-height: 1;
}

.s3-tx h3 b {
    font-size: .5rem;
    font-weight: normal;
}

.s3-tx p {
    font-size: .16rem;
    color: #666666;
    text-align: center;
}

.s3-lt a {
    margin: .6rem 0;
}

.s3-lt a:hover .ico {
    background-color: #7e0014;
}

.s3-lt a:hover .ico img:last-child {
    display: block;
}

.s3-lt a:hover .ico img:first-child {
    display: none;
}

.s3-lt a:hover .ico::before {
    border-color: #7e0014;
}

.s3-lt .slick-dots li {
    width: .45rem;
    height: .03rem;
    background: rgba(0, 0, 0, 0.08);
}

.s3-lt .slick-dots li.slick-active {
    background: rgba(0, 0, 0, 0.16);
}

/* s4 */

.s4 {
    padding-top: 1rem;
    padding-bottom: .7rem;
    background: #F5F8FF;
}

.s4 .s2-lt .pic {
    border-radius: 0;
}

.s4 .s2-tx {
    padding: 0 .2rem;
}

/* s5 */

.s5 {
    padding-top: .7rem;
    padding-bottom: 1rem;
}

.s5-tx {
    padding: .24rem 0;
}

.s5-tx h3 {
    color: #393939;
    font-size: .22rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: .15rem;
}

.s5-tx p {
    font-size: .16rem;
    line-height: .26rem;
    height: .52rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: #909090;
}

.s5-lt a {
    margin: 0 .23rem;
    background: url(../images/s5-jt.png) no-repeat right bottom;
    background-size: .2rem;
}

.s5-lt a:hover {
    background: url(../images/s5-jth.png) no-repeat right bottom;
    background-size: .2rem;
}

.s5-lt .pic {
    border-radius: .15rem;
    padding-top: 64%;
}

.s5-lt a:hover h3 {
    color: #7e0014;
}

/* s6 */
.s6 {
    margin-top: 1rem;
    padding-bottom: .5rem;
}

.s6-c {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.s6-ban {
    width: 50%;
    margin-right: .4rem;
}
.s6-ban .pic {
    padding-top: 64%;
}
.s6-lt {
    flex: 1;
    min-width: 0;
}

.s6-ban {
    border-radius: .15rem;
    overflow: hidden;
}

.s6-ban a {
    position: relative;
}

.s6-ban a p {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 85%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #ffffff;
    font-size: .2rem;
    padding: .2rem .3rem;
}

.s6-ban .slick-dots {
    text-align: right;
    width: auto;
    right: .2rem;
    bottom: .25rem;
}

.s6-ban .slick-dots li {
    width: .09rem;
    height: .09rem;
    background: #ffffff;
    opacity: 0.7;
    margin: 0 .1rem;
    border-radius: 50%;
}

.s6-ban .slick-dots li.slick-active {
    opacity: 1;
}

.s6-date b {
    display: block;
    text-align: center;
}

.s6-lt ul li {
    margin-bottom: .21rem;
}

.s6-lt ul li:last-child {
    margin-bottom: 0;
}

.s6-lt ul li a {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border-bottom: .01rem solid #E0E3E8;
    padding: .2rem 0;
    position: relative;
}

.s6-lt ul li a::after {
    content: '';
    width: 0%;
    height: .02rem;
    background-color: #7E0014;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all 0.5s;
}

.s6-lt ul li a:hover h3 {
    color: #7E0014;
}

.s6-lt ul li a:hover:after {
    width: 100%;
}

.s6-date {
    margin-right: .3rem;
}

.s6-date b {
    display: block;
    color: #7E0014;
    font-size: .3rem;
    margin-bottom: .05rem;
    line-height: 1;
}

.s6-date span {
    color: rgba(126, 0, 20, 0.3);
    font-size: .16rem;
    display: block;
}

.s6-tx {
    flex: 1;
    min-width: 0;
}

.s6-tx h3 {
    color: #262626;
    font-size: .18rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: .1rem;
}

.s6-tx p {
    color: #999;
    font-size: .16rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


#newsLink {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 60px; 
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent); 
    z-index: 0; 
    pointer-events: none; 
}

.s6-ban a p {
    z-index: 2
}

.s6-ban .slick-dots {
    z-index: 3
}


/* s7 */
.s7 {
    padding-top: .9rem;
}

.s7-lt a {
    margin: 0 .16rem;
    padding: .35rem .2rem;
    text-align: center;
    border-radius: .15rem .15rem 0rem 0rem;
    background: #FFFFFF;
    border: .01rem solid #DAE1EB;
    box-shadow: 0rem .04rem .1rem 0rem rgba(0, 0, 0, 0.1);
    border-bottom: .05rem solid #7E0014;
}

.s7-lt a span {
    display: block;
    padding-top: .15rem;
    color: #999999;
    font-size: .16rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.s7-tx {
    padding: .5rem 0 .3rem 0;
    border-bottom: .01rem solid #B8C8DF;
    margin-bottom: .25rem;
}

.s7-tx h3 {
    color: #242424;
    font-size: .22rem;
    margin-bottom: .15rem;
}

.s7-tx p {
    color: #425987;
    font-size: .18rem;
}

.s7-p {
    border-radius: 50%;
    padding: .15rem;
    border: .01rem dashed rgba(11, 49, 143, 0.5);
    width: 2.34rem;
    height: 2.34rem;
    margin: 0 auto;
}

.s7-lt .scale {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.s7-lt .imged {
    padding-bottom: 2.04rem;
}

.s7-lt .slick-prev {
    height: .5rem;
    width: .5rem;
    background: url(../images/s7-l.png) no-repeat;
    background-size: 100% 100%;
    left: -0.7rem;
}

.s7-lt .slick-next {
    height: .5rem;
    width: .5rem;
    background: url(../images/s7-r.png) no-repeat;
    background-size: 100% 100%;
    right: -0.7rem;
}


/* s8 */
.s8 {
    padding: 1.2rem 0;
}

.s8-c {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.s8-c>div {
    width: 49%;
}

.s8-l ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.s8-l ul li:first-child {
    margin-bottom: .3rem;
}

.s8-l ul li {
    width: 100%;
}

.s8-l .pic {
    padding-top: 3.46rem;
}

.s8-c a {
    position: relative;
    border-radius: .15rem;
    overflow: hidden;
}

.s8-c a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: -moz-linear-gradient(top, transparent 80%, rgba(0, 0, 0, 0.8) 100%);
    background: -webkit-linear-gradient(top, transparent 80%, rgba(0, 0, 0, 0.8) 100%);
    background: -o-linear-gradient(top, transparent 80%, rgba(0, 0, 0, 0.8) 100%);
    background: -ms-linear-gradient(top, transparent 80%, rgba(0, 0, 0, 0.8) 100%);
    background: linear-gradient(to bottom, transparent 80%, rgba(0, 0, 0, 0.8) 100%);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 100%;
    z-index: 1;
}

.s8-c a p {
    color: #ffffff;
    font-size: .16rem;
    padding: .25rem;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.s8-r ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.s8-r .pic {
    padding-top: 3.46rem;
}

.s8-r ul li {
    width: 100%;
}

.s8-r ul li:nth-last-child(-n+2) {
    width: 47%;
    margin-top: .3rem;
}










@media screen and (max-width: 1024px) {
    .ban-lk {
        margin-top: 0;
        margin-bottom: .3rem;
        padding: .2rem;
    }

    .s1 {
        padding: .3rem 0;
    }

    .tit {
        margin-bottom: .3rem;
    }

    .tit img {
        height: .4rem;
    }

    .tit h3 {
        font-size: .26rem;
    }

    .s1-ban {
        width: 100%;
        margin: 0;
        margin-bottom: .3rem;
    }

    .s1-ban .pic {
        padding-top: 64%;
    }

    .s1-r {
        flex: auto;
        width: 100%;
    }


    .s1-b ul li {
        width: 100%;
        margin-bottom: .2rem;
    }

    .s2 {
        padding: .4rem 0;
    }

    .s2-lt a {
        margin: 0 .1rem;
    }

    .s3 {
        padding: .3rem 0;
    }

    .s4-lt ul li {
        width: 48%;
        margin-top: .2rem;
    }

    .s4-vr {
        margin-bottom: 0;
    }

    .s4 {
        padding: .3rem 0;
    }

    .s5 {
        padding: .3rem 0;
    }

    .s8-c>div {
        width: 100%;
    }

    .s8-l .pic {
        padding-top: 50%;
    }

    .s8-l {
        margin-bottom: .3rem;
    }

    .s8-r .pic {
        padding-top: 50%;
    }

    .s8-r ul li:nth-last-child(-n+2) .pic {
        padding-top: 64%;
    }

    .s8 {
        padding: .3rem 0;
    }

    .banner .slick-dots {
        bottom: .2rem;
    }

    .s6-ban {
        width: 100%;
        margin: 0;
        margin-bottom: .3rem;
    }

    .s6-lt {
        flex: auto;
        width: 100%;
    }

    .s6 {
        padding-bottom: .3rem;
    }
    .s3-tx h3 b {
        font-size: .3rem;
    }
    .s7 {
        padding: .3rem 0;
    }
}

@media screen and (max-width: 768px) {}

@media screen and (max-width: 480px) {}