/*banner*/
.banner {
    position: relative;
    overflow: hidden;
    height: calc(100vh - 0.45rem);
}
.banner:after{
            display: none;
            z-index: 1;
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            right: 0;
            height: 0.8rem;
            background: linear-gradient(to top, rgb(0 0 0 / 60%), rgba(0, 0, 0, 0));
}

    .banner .swiper-container {
        width: 100%;
        height: 100%;
    }

    .banner .swiper-slide {
        background-size: cover;
        color: #fff;
        background-position: center center;
        height: 100%;
        background-repeat: no-repeat;
        position: relative;
        overflow: hidden;
        width: 100%;
    }

        .banner .swiper-slide p {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 0.8rem;
            padding-top: 0.3rem;
            background: rgba(0, 0, 0, 0.4);
            background: linear-gradient(to top, rgb(0 0 0 / 60%), rgba(0, 0, 0, 0));
            width: 100%;
            color: #fff;
            text-indent: 0.2rem;
            font-size: 0.26rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            text-shadow: rgb(0 0 0) 0px 0px 7px;
        }

.slide-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    color: #fff;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}


.banner .swiper-slide img {
    width: 100%;
    height:100%;
    object-fit:cover;
    transform:scale(1.3);
                transition: all ease 4s;
}
.banner .swiper-slide.swiper-slide-active img{
    transform:scale(1);
}

.banner .swiper-bottom {
    width: 2rem;
    bottom: 0.15rem;
    position: absolute;
    right: 2%;
    transform: translateX(-50%);
    height: 0.3rem;
    z-index: 5;
}

    .banner .swiper-bottom .swiper-pagination-progressbar {
        width: 100%;
        height: 2px;
        left: 0;
        top: 50%;
        margin-top: -1px;
        background: rgba(255, 255, 255, .25);
    }

.banner .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #fff;
}

.banner .swiper-button-prev,
.banner .swiper-button-next {
    width: unset;
    height: unset;
    background: unset !important;
    margin-top: unset;
    transform: translateY(-50%);
    color: #fff;
}

.banner .swiper-button-prev {
    left: -0.2rem;
}

.banner .swiper-button-next {
    right: -0.2rem;
}

    .banner .swiper-button-prev:after,
    .banner .swiper-button-next:after {
        font-family: "iconfont";
        font-size: 0.20rem;
        content: "\e72d";
    }

.banner .swiperNum {
    color: #fff;
    display: inline-block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -0.55rem;
    right: -0.55rem;
    text-align: right;
}

    .banner .swiperNum ul li {
        position: absolute;
        left: 0;
        width: 0.36rem;
        text-align: center;
    }

    .banner .swiperNum .total {
        width: 0.36rem;
        text-align: center;
        display: inline-block;
    }

.ui-loop {
    position: absolute;
    width: 0.32rem;
    height: 0.32rem;
    right: -0.9rem;
    cursor: pointer;
    top: 50%;
    margin-top: -0.16rem;
}

    .ui-loop .iconfont {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        color: #fff;
    }

    .ui-loop.pause .icon-pause:before {
        content: "\e72d";
    }

.path-loop {
    fill: none;
    stroke: #fff;
    stroke-miterlimit: 10;
    stroke-width: 0.02rem;
}

.path-loop-bg {
    fill: none;
    stroke: #fff;
    stroke-miterlimit: 10;
    stroke-width: 0.02rem;
    opacity: 0.1;
}

.banner .swiper-pagination-lock + .swiperNum + .ui-loop,
.banner .swiper-pagination-lock + .swiperNum {
    display: none;
}

.banner .swiper-button-next.swiper-button-disabled,
.banner .swiper-button-prev.swiper-button-disabled {
    color: #aaa;
}

/*banner END*/

/*swiper-button*/
.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: 50%;
    margin-top: -0.24rem;
    width: 0.4rem;
    height: 0.4rem;
    z-index: 998;
    background: none;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    background: var(--color-primary);
    border-radius: 50%;
    color: #fff;
}

    .swiper-button-next.swiper-button-disabled,
    .swiper-button-prev.swiper-button-disabled {
        background: #F4F4F4;
        color: var(--color-text-primary);
        opacity: 1;
    }

    .swiper-button-prev:hover,
    .swiper-button-next:hover {
        background: var(--color-primary);
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 0.18rem;
        font-weight: lighter;
        -webkit-transition: all .5s;
        -o-transition: all .5s;
        transition: all .5s;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        content: "\e60e";
        font-family: "iconfont";
    }

    .swiper-button-prev:after {
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg);
    }

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    left: -0.2rem;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    right: -0.2rem;
}

    .swiper-button-next:after,
    .swiper-button-prev:after {
        position: relative;
        right: 0;
        -webkit-transition: all .5s;
        -o-transition: all .5s;
        transition: all .5s;
    }

/* NEW */
.news {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
}

    .news .cname {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        height: 0.51rem;
        overflow: hidden;
        border-bottom: 2px solid rgb(147,7,0);
        background: #fff;
    }

        .news .cname h1 {
            background: linear-gradient(to top, rgb(219,6,15), rgb(142,0,0));
            color: #fff;
            width: 1.9rem;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 0.26rem;
            letter-spacing: 0.02rem;
        }

        .news .cname a {
            position: relative;
            padding-right: 0.4rem;
            margin-right: 0.1rem;
            line-height: 0.35rem;
            height: 0.35rem;
            font-size: 0.18rem;
            color: #666;
        }

            .news .cname a:after {
                content: "";
                position: absolute;
                right: 0;
                background: url(../imgs/more.png) no-repeat;
                height: 0.3rem;
                width: 0.3rem;
                transition: all ease 0.4s;
                background-size: 100%;
            }

            .news .cname a:hover {
                color: var(--zhu-color);
            }

                .news .cname a:hover:after {
                    transform: rotate(45deg)
                }

    .news .baod {
        width: 58%;
        border-radius: 6px;0CONTAIN
        -INTRINSIC-BLOCK-SIZE: AUTO 100PX;10px 10px 0
        CONTAIN-INTRINSIC-BLOCK-SIZE: AUTO 100PX;
        overflow: hidden;
    }

        .news .baod .content {
            background: #fff;
            padding: 0.2rem;
        }

        .news .baod ul {
        }

            .news .baod ul li {
                line-height: 0.64rem;
                height: 0.64rem;
                border-bottom: 1px dashed #ccc;
                position: relative;
            }

                .news .baod ul li:last-child {
                    border: 0;
                }

                .news .baod ul li a {
                    white-space: nowrap;
                    overflow: hidden;
                    text-overflow: ellipsis;
                    width: 100%;
                    font-size: 0.2rem;
                    padding: 0 0.1rem;
                    padding-right: 1.5rem;
                    transition: all ease 0.4s;
                    display: block;
                    border-radius: 5px;
                }

                    .news .baod ul li a:before {
                        content: "";
                        display: inline-block;
                        width: 0.07rem;
                        height: 0.07rem;
                        background: #A90C08;
                        margin-right: 0.1rem;
                        vertical-align: middle;
                        border-radius: 50%;
                        transition: all ease 0.4s;
                    }

                .news .baod ul li span {
                    position: absolute;
                    right: 0.1rem;
                    top: 0;
                    font-size: 0.16rem;
                    color: var(--zhu-color);
                    transition: all ease 0.4s;
                }

                .news .baod ul li a:hover {
                    background: var(--zhu-color);
                    color: #fff;
                }

                    .news .baod ul li a:hover:before {
                        background: #fff;
                    }

                    .news .baod ul li a:hover span {
                        color: #fff;
                    }

    .news .tongz {
        width: 40%;
        border-radius: 6px;
        overflow: hidden;
    }

        .news .tongz .list {
            background: #fff;
            overflow: hidden;
        }

            .news .tongz .list a {
                display: flex;
                padding: 0.16rem 0.15rem;
                /* margin-bottom: 0.1rem; */
                transition: all ease 0.4s;
                align-items: center;
                font-size: 0.2rem;
                border-bottom: 1px dashed #ccc;
            }
 .news .tongz .list a:last-child{
     border:0;
 }

                .news .tongz .list a .date {
                    width: 0.66rem;
                    height: 0.66rem;
                    font-size: 0.16rem;
                    text-align: center;
                    border: 1px solid #bd1919;
                    border-radius: 0.05rem;
                    line-height: 0.32rem;
                    overflow: hidden;
                }

                    .news .tongz .list a .date span:first-child {
                        background: #bd1919;
                        color: #fff;
                        display: block;
                    }

                    .news .tongz .list a .date span:last-child {
                        display: block;
                        color: #bd1919;
                    }

                .news .tongz .list a p {
                    flex: 1;
                    margin-left: 0.2rem;
                    line-height: 0.25rem;
                    text-overflow: ellipsis;
                    overflow: hidden;
                    -webkit-line-clamp: 2;
                    -webkit-box-orient: vertical;
                    display: -webkit-box;
                    height: 0.5rem;
                }
.hengtu{
    margin-top:0.5rem;
    font-size: 0;
}
.hengtu img{
    width:100%;
}


.title {
    background: url(../imgs/bg-title.png) no-repeat center;
    background-size: 2.2rem 100%;
    line-height: 0.6rem;
    color: #fff;
    text-align: center;
    position: relative;
}

    .title:after,
    .title:before {
        content: '';
        position: absolute;
        right: 0;
        width: 38%;
        height: 2px;
        background: #94070a;
        top: 50%;
        transform: translateY(-50%)
    }

    .title:before {
        left: 0;
        right: auto;
    }

    .title h1 {
        font-size: 0.26rem;
        letter-spacing: 0.02rem;
        display: inline;
    }

.fwdt {
    margin-top: 0.6rem;
}

    .fwdt .content {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-end;
        margin-top: 0.4rem;
    }

        .fwdt .content a {
            width: 3.22rem;
            height:0.9rem;
            border-radius: 6px;
            overflow: hidden;
            font-size: 0;
            position: relative;
            transition: all cubic-bezier(0.6, -0.28, 0.74, 0.05) 0.3s;
            z-index: 1;
            margin-bottom: 0.3rem;
            color: #fff;
            font-weight: 600;
        }
 .fwdt .content a.qian{
            width: 4.4rem;
 }

            .fwdt .content a img {
                width: 100%;
                height:100%;
                object-fit: cover;
            }

            .fwdt .content a span {
                position: absolute;
                left: 0;
                top: 0;
                width: 100%;
                height: 100%;
                display: flex;
                align-items: center;
                justify-content: center;
                text-shadow: 0px 0px 0.06rem #0000008c;
                font-size: 0.24rem;
                line-height: 1;
                letter-spacing: 0.03rem;
            }

            .fwdt .content a:hover {
                transform: scale(1.1);
                z-index: 9;
            }

.zhin {
    margin-top: 0.6rem;
}

    .zhin .content {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-top: 0.6rem;
        flex-wrap: wrap;
    }

        .zhin .content a {
            flex: 0 0 calc(16.66% - 0.2rem);
            margin-bottom: 0.3rem;
            padding: 0.2rem;
            background: #fff;
            border-radius: 8px 8px 0 0;
            border: 1px solid var(--zhu-color);
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            transition: all cubic-bezier(0.6, -0.28, 0.74, 0.05) 0.6s;
            z-index: 1;
            position: relative;
            box-shadow: 0px 0px 0px #999;
        }

        .zhin .content p {
            font-size: 0.24rem;
            font-weight: 600;
            text-align: center;
            display: flex;
            align-items: flex-end;
            line-height: 1;
            margin-top: 0.1rem;
        }

        .zhin .content img {
            height: 1rem;
            transition: all ease 0.6s;
        }

        .zhin .content a:hover {
            background: var(--zhu-color);
            color: #fff;
            transform: scale(1.2);
            transform-origin: bottom;
            z-index: 9;
            box-shadow: 0px 0px 0.05rem #999;
        }



@media screen and (max-width:1200px) {
    .banner {
        height: 6rem;
    }

        .banner .swiper-slide p {
            line-height: 0.8rem;
            font-size: 0.18rem;
            text-indent: 0.1rem;
        }

        .banner .swiper-bottom {
            bottom: 0.25rem;
            right: 2rem;
        }

    .news .cname {
        height: 0.7rem;
    }

        .news .cname h1 {
            width: 2.6rem;
            font-size: 0.34rem;
            letter-spacing: 2px;
            /* border-radius: 5px; */
        }

        .news .cname a {
            padding-right: 0.4rem;
            margin-right: 0.1rem;
            line-height: 0.3rem;
            height: 0.3rem;
            font-size: 0.26rem;
        }

            .news .cname a:after {
                height: 0.3rem;
                width: 0.3rem;
            }

    .news {
        margin-top: 30px;
    }

        .news .baod,
        .news .tongz {
            /* width: auto; */
            /* margin: 0 15px; */
            /* margin-top: 30px; */
        }

            .news .baod .content {
                padding: 0.2rem;
                /* margin-top: 0.2rem; */
            }

            .news .baod ul li {
                line-height: 0.8rem;
                height: 0.8rem;
            }

                .news .baod ul li a {
                    font-size: 0.26rem;
                    padding-left: 0.1rem;
                }

                .news .baod ul li span {
                    font-size: 0.22rem;
                    right: 0.1rem;
                }

            .news .tongz .list a {
                font-size: 0.26rem;
                /* padding: 0.13rem 0.15rem; */
            }

                .news .tongz .list a .date {
                    font-size: 0.2rem;
                    height: 0.875rem;
                    width: 0.875rem;
                    line-height: 0.44rem;
                }

                    .news .tongz .list a .date span:last-child {
                        font-size: 14px;
                    }

                .news .tongz .list a p {
                    margin-left: 0.2rem;
                    height: 0.8rem;
                    line-height: 0.4rem;
                }

    .title {
        height: 0.7rem;
        background-size: 2.6rem;
        line-height: 0.7rem;
    }

        .title h1 {
            font-size: 20px;
        }

        .title:after,
        .title:before {
            width: 35%;
        }

    .fwdt,
    .zhin {
        margin-top: 0.8rem;
        /* overflow: hidden; */
    }

        .fwdt .content {
            margin-top: 0.4rem;
        }

            .fwdt .content a {
                width: 3.8rem;
                margin-bottom: 0.3rem;
                height: 1.1rem;
            }
    .fwdt .content a.qian{
        width: 5.16rem;
    }

                .fwdt .content a span {
                    font-size: 0.3rem;
                    letter-spacing: 1px;
                }

        .zhin .content {
            margin-top: 25px;
        }

            .zhin .content a {
            }

            .zhin .content img {
            }

            .zhin .content p {
                font-size: 0.26rem;
            }
}


@media screen and (max-width: 767px) {
    .banner {
        height: 11rem;
    }

        .banner .swiper-bottom {
            width: 4rem;
            margin-right: -2rem;
            bottom: 3rem;
            right: 50%;
            font-size: 0.6rem;
        }

        .banner .swiper-slide p {
            line-height: 45px;
            font-size: 18px;
            text-indent: 10px;
        }

        .banner .swiperNum {
            left: -1.4rem;
            right: -1.4rem;
            font-size: 0.6rem;
        }

            .banner .swiperNum .total {
                width: 0.7rem;
            }

        .banner .swiper-button-prev {
            left: -0.7rem;
        }

        .banner .swiper-button-next {
            right: -0.7rem;
        }
    .banner .swiper-button-prev:after,
    .banner .swiper-button-next:after {
            font-size: 0.6rem;
    }

    .ui-loop {
        right: -2.1rem;
        font-size: 0.6rem;
    }

    .news .cname {
        height: 1.78rem;
    }

        .news .cname h1 {
            width: 6.5rem;
            font-size: 0.9rem;
            letter-spacing: 2px;
            /* border-radius: 5px; */
        }

        .news .cname a {
            padding-right: 1.6rem;
            margin-right: 0.2rem;
            line-height: 1.1rem;
            height: 1.1rem;
            font-size: 0.7rem;
        }

            .news .cname a:after {
                height: 1.1rem;
                width: 1.1rem;
            }

    .news {
        flex-direction: column;
        margin-top: 0;
    }

        .news .baod,
        .news .tongz {
            width: auto;
            /* margin: 0 0.5rem; */
            margin-top: 1.2rem;
        }

            .news .baod .content {
                padding: 10px;
                /* margin-top: 10px; */
            }

            .news .baod ul li {
                line-height: 2rem;
                height: 2rem;
            }

                .news .baod ul li a {
                    padding-right: 5rem;
                    font-size: 0.8rem;
                    padding-left: 0.2rem;
                }

                    .news .baod ul li a:before {
                        width: 0.4rem;
                        height: 0.4rem;
                        margin-right: 0.2rem;
                    }

                .news .baod ul li span {
                    font-size: 0.65rem;
                    right: 0.2rem;
                }

            .news .tongz .list a {
                font-size: 16px;
                padding: 10px;
                /* margin-top: 10px; */
            }

                .news .tongz .list a .date {
                    height: 2.6rem;
                    width: 2.6rem;
                    line-height: 1.3rem;
                    font-size: 0.65rem;
                }

                    .news .tongz .list a .date span {
                        font-size: 0.7rem;
                    }

                .news .tongz .list a p {
                    font-size: 0.8rem;
                    margin-left: 0.4rem;
                    height: 1.9rem;
                    line-height: 1.2;
                }
.hengtu{
    margin-top: 1.2rem;
}
    .title {
        background-size: 6.5rem;
        height: 1.78rem;
        line-height: 1.78rem;
    }

        .title h1 {
            font-size: 0.9rem;
        }

        .title:after,
        .title:before {
            width: 24%;
        }

    .fwdt,
    .zhin {
        width: auto;
        margin: 0 0.5rem;
        margin-top: 1.2rem;
    }

        .fwdt .content {
            margin-top: 1rem;
            margin-bottom: -0.5rem;
        }

            .fwdt .content a {
                width: 8.8rem;
                height: 2.5rem;
                margin-bottom: 0.5rem;
            }
    .fwdt .content a.qian{
        width: 5.7rem;
    }

                .fwdt .content a span {
                    font-size: 0.75rem;
                    letter-spacing: 1px;
                }

        .zhin .content {
            margin-top: 1rem;
        }

            .zhin .content a {
                flex: 0 0 calc(33.33% - 0.5rem);
                margin-bottom: 0.5rem;
                padding: 0.5rem;
            }

            .zhin .content img {
                height: 2.3rem;
            }

            .zhin .content p {
                font-size: 0.7rem;
                margin-top: 0.5rem;
            }
}