@font-face {
    font-family: "ll";
    src: local("Microsoft YaHei UI"), local("Arial") format('truetype'), local("sans-serif");
    font-weight: lighter;
    font-style: normal;
}

@font-face {
    font-family: "rr";
    src: local("Microsoft YaHei UI"), local("Arial") format('truetype'), local("sans-serif");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "bb";
    src: local("Microsoft YaHei UI"), local("Arial") format('truetype'), local("sans-serif");
    font-weight: bolder;
    font-style: normal;
}

@font-face {
    font-family: "romm";
    src: url("/font/Roboto-Medium.ttf") format("opentype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "robb";
    src: url("/font/Roboto-Bold.ttf") format("opentype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "roll";
    src: url("/font/Roboto-Light.ttf") format("opentype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "rorr";
    src: url("/font/Roboto-Regular.ttf") format("opentype");
    font-weight: normal;
    font-style: normal;
}

/* @font-face {
    font-family: "symm";
    src: url("/font/SourceHanSerifCN-Medium.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "sybb";
    src: url("/font/SourceHanSerifCN-Heavy.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "syll";
    src: url("/font/SourceHanSerifCN-Light.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
} */

@font-face {
    font-family: "syrr";
    src: url("/font/SourceHanSerifCN-Regular.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
}

:root {
    --themeColor: #186EB8;
    --imgScale: scale(1.05);
    /* 头部高度 */
    --head: 1.06rem;
    /* 手机头部高度 */
    --mhead: 0.9rem;
    /* logo宽度 */
    --hlogow: 4.23rem;
    /* logo高度 */
    --hlogoh: .48rem;
    /* 手机logo宽度 */
    --mhlogow: 4.4rem;
    /* 手机logo高度 */
    --mhlogoh: .5rem;
}

strong {
    font-weight: 700;
}

html {
    /* scroll-padding-top: var(--head); */
    scroll-padding-top: 0;
}

.pwidth {
    width: 16rem;
    margin: 0 auto;
}

.ppad {
    padding-top: 1.1rem;
    padding-bottom: 1.08rem;
}

.df {
    display: flex;
}

.dfsb {
    display: flex;
    justify-content: space-between;
}

.dfc {
    display: flex;
    justify-content: center;
}

.dfcm {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dfcm2 {
    display: flex;
    align-items: center;
}

.dfcol {
    display: flex;
    flex-direction: column;
}

.dfcolc {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mc {
    display: block;
    margin: 0 auto;
}

.imgbox100 {
    overflow: hidden;
}

.imgbox100 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
}

.li:hover .imgbox100 img {
    transform: var(--imgScale);
}

.imgbox100:hover img {
    transform: var(--imgScale);
}

.li:hover .bs {
    color: var(--themeColor) !important;
}

.bs:hover {
    color: var(--themeColor) !important;
}

[backImg] {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.box100 {
    width: 100%;
    height: 100%;
}

sup {
    font-size: 0.8em;
    vertical-align: super;
}

.qy-more {
    width: 1.72rem;
    height: .52rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: .5rem;
    box-shadow: 0px 0px 7.8px 6px #005EAD0D;

    font-family: ll;
    font-size: .18rem;
    font-weight: 400;
    line-height: .2387rem;
    text-align: left;
    color: #666666;

    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.qy-more::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--themeColor);
    top: 0;
    left: 0;
    transform: translateX(-104%);
    transition: transform .3s ease-in-out;
}

.qy-more span {
    position: relative;
    z-index: 2;
}

.qy-more:hover {
    color: #fff;
}

.qy-more:hover span {
    color: #fff;
}

.qy-more:hover::before {
    transform: translateX(0);
}

#header11,
#header11 .headtab {
    height: var(--head);
}

#header11 .headtab>li a {
    line-height: var(--head);
}

#header11 .logo {
    width: var(--hlogow);
    height: var(--hlogoh);
}

.tabs-box {
    top: var(--head);
}

#header11 {
    overflow: visible;
    transition: all .3s ease-in-out;
}

/* 手机版放大图片 */
#fullscreen {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    overflow-x: scroll;
}

#fullscreen img {
    max-width: none;
    max-height: none;
    object-fit: fill;
    width: auto;
    height: 50vh;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
}

.mmclose {
    width: 0.72rem;
    height: 0.72rem;
    background-image: url(/images/mclose.png);
    background-repeat: no-repeat;
    background-size: 0.72rem 0.72rem;
    position: fixed;
    top: 16%;
    left: 50%;
    transform: translateX(-50%);
}

/* 
    <script>
        var wind = $(window).width()
        $(document).ready(function () {
            if (wind <= 750) {
                $('.fdimg').click(function () {
                    $('#fullscreen').show();
                    $('#fullscreen-image').attr('src', $(this).attr('src'));
                });

                $('#fullscreen').click(function () {
                    $(this).hide();
                });
            }
        });
    </script>

*/
.sp-title {
    font-family: rr;
    font-size: .48rem;
    font-weight: 500;
    line-height: .6365rem;
    text-align: center;
    color: #000000;
    margin-bottom: .28rem;
}



.screens {
    width: 100vw;
    height: 100vh;
}

.swiper-pagination-zp {
    position: fixed;
    right: .23rem !important;
    top: 50%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.swiper-pagination-zp .swiper-pagination-bullet {
    opacity: 1;
    border-radius: 0;
    width: .2rem;
    height: .2rem;
    background-color: transparent;
    background-repeat: no-repeat;
    background-image: url(/images/mr.png);
    background-size: .1rem .1rem;
    background-position: center;
    /* background-color: #fff; */
    margin: .1rem 0 !important;
}

.swiper-pagination-zp .swiper-pagination-bullet-active,
.swiper-pagination-zp .swiper-pagination-bullet:hover {
    width: .2rem;
    height: .2rem;
    background-color: transparent;
    background-image: url(/images/zpactive.png);
    background-size: cover;
}

.footslide {
    height: fit-content !important;
    margin-top: -1px;
}

.banner .swiper-button-prev,
.banner .swiper-button-next {
    background: none !important;
    border: none;
}

.banner .swiper-button-prev img,
.banner .swiper-button-next img {
    width: .13rem;
}

.banner .swiper-button-prev:hover img,
.banner .swiper-button-next:hover img {
    filter: invert(50%) sepia(94%) saturate(3277%) hue-rotate(155deg) brightness(96%) contrast(103%);
}

.swiper-pagination-c {
    position: absolute;
    bottom: 37px !important;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.swiper-pagination-c .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    opacity: 0.5;
    background-color: #fff;
    margin: 0 14px !important;
}

.swiper-pagination-c .swiper-pagination-bullet-active {
    width: 10px;
    height: 10px;
    opacity: 1;
}

.swiper-pagination-c .swiper-pagination-bullet:hover {
    opacity: 1;
}

/* <div class="sbox"  mid="<%=strmid %>" strid="<%=strid %>" showType="<%=strdatatype%>"> */

.sbox .banner .item .newtit {
    color: #FFF;
    font-family: rr;
    font-size: .7rem;
    font-weight: 500;
    line-height: .8204rem;
}

.sbox .banner .item .newdesc {
    color: rgba(255, 255, 255, 0.7);
    font-family: ll;
    font-size: .38rem;
    font-weight: 300;
    line-height: .4454rem;
    text-align: left;
    margin-top: .22rem;
}

.sbox .banner video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}

.footItem {
    height: fit-content !important;
}


/**
TODO 鼠标移入的弹出框(二维码等)
鼠标移入的弹出框(二维码等)

<!-- 向上展开 -->
<div class="qrgroup box100">
    <div class="imgbox trigger-btn">
        <img src="/images/ffxico3.png" alt="">
    </div>

    <div class="qrcode-popup">
        <div class="qrcode-img">
            <img src="/App/images/85702506241131451713.png" alt="">
        </div>
    </div>
</div>

<!-- 向下展开 -->
<div class="qrgroup box100">
    <div class="imgbox trigger-btn">
        <img src="/images/edashare1.png" alt="">
    </div>

    <div class="qrcode-popup qrcode-popup2">
        <!-- 自定义内容 -->
            
    </div>
</div>


**/

.qrcode-popup {
    position: absolute;
    bottom: calc(100% + .15rem);
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: .08rem;
    border-radius: .08rem;
    box-shadow: 0 .04rem .12rem rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 2;
}

.qrcode-popup::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: .08rem;
    border-style: solid;
    border-color: white transparent transparent transparent;
}

.qrgroup:hover .qrcode-popup {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-0.1rem);
}

.qrgroup {
    position: relative;
    cursor: pointer;
}

.qrcode-img {
    width: 1.2rem;
    height: 1.2rem;
    display: block;
}

.qrcode-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: none !important;
}

.qrcode-popup2 {
    position: absolute;
    bottom: auto;
    top: calc(100% + .3rem);
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: .08rem;
    border-radius: .08rem;
    box-shadow: 0 -0.02rem .12rem rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 2;
}

.qrcode-popup2::after {
    content: '';
    position: absolute;
    top: auto;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: .08rem;
    border-style: solid;
    border-color: transparent transparent white transparent;
}

/* 鼠标移入的弹出框end */


/* 底部 */

.sufoot {
    padding-top: .54rem;
    background-color: #F9F9F9;
}

.suflogo {
    display: block;
    width: 1.77rem;
    height: .48rem;
    margin-bottom: .31rem;
}

.suflogo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.suflx {
    display: flex;
    align-items: center;
    margin-bottom: .23rem;
}

.suflx .imgbox {
    width: .32rem;
    height: .32rem;
    margin-right: .1rem;
}

.suflx .imgbox img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.suflx .txtbox {
    font-family: rr;
    font-weight: 400;
    font-size: .24rem;
    line-height: 100%;
    color: #000000;
}

.sufgp {
    display: flex;
}

.sufgp span {
    display: block;
    font-family: ll;
    font-weight: 350;
    font-size: .16rem;
    color: #666666;
    margin-right: .3rem;
}

.sufwx .imgbox {
    width: 1.4rem;
    height: 1.4rem;
    background-color: #fff;
}

.sufwx .imgbox img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sufwx .txtbox {
    font-family: rr;
    font-weight: 400;
    font-size: .16rem;
    line-height: 100%;
    color: #666666;
    text-align: center;
    margin-top: .13rem;
}


.sufoot .rig {
    display: flex;
}

.sufnav {
    margin-right: 2.07rem;
}

.sufnav .ul {
    display: flex;
}

.sufnav .ul .li {
    font-family: rr;
    font-weight: 400;
    font-size: .2rem;
    color: #333333;
    /* margin-left: 1.49rem; */
    width: 2.4rem;
    margin-bottom: .24rem;
}

.sufnav .ul .li:hover {
    color: var(--themeColor);
}

.sufnav .ul .li span {
    display: inline-block;
    width: fit-content;
}

.xiah {
    position: relative;
}

.xiah::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--themeColor);
    bottom: 0;
    left: 0;
    transition: all 0.3s ease;
}

.xiah:hover::after {
    width: 100%;
}

.titxiah {
    background-image: linear-gradient(to right, var(--themeColor), var(--themeColor));
    background-repeat: no-repeat;
    background-size: 0 2px;
    background-position: 0 100%;
    -webkit-transition: all .4s linear;
    transition: all .4s linear;
    display: inline;
}

.titxiah:hover {
    background-size: 100% 2px;
}

.ul .li:hover .titxiah {
    background-size: 100% 2px;
}

.swiper-slide:hover .titxiah {
    background-size: 100% 2px;
}

.sufoot .part2 {
    border-top: 1px solid #E6E6E6;
    border-bottom: 1px solid #E6E6E6;
    margin-top: .78rem;
    padding: .25rem 0;
    display: none;
}


.yqlinks {
    position: relative;
    width: 120px;
    margin: 0 auto;
}

.yqlinks {
    width: fit-content;
}

/* 触发区域样式 */
.mlink {
    width: 2.88rem;
    height: .42rem;
    border: 1px solid #E4E4E4;
    border-radius: 4px;
    cursor: pointer;
    padding: 0 .15rem;
    display: flex;
    align-content: center;
    position: relative;
}

.mlink::after {
    width: .12rem;
    height: .06rem;
    background-image: url(/images/mlkdown.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    content: '';
    position: absolute;
    right: .23rem;
    top: 50%;
    transform: translateY(-50%);
}

.mlink.active::after {
    transform: translateY(-50%) rotate(180deg);
}

.mlink a {
    line-height: .42rem;
    font-family: ll;
    font-weight: 300;
    font-size: .16rem;
    color: #666666;
}



.linktc {
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 4px 4px 0 0;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
}

/* 弹窗展开状态 */
.linktc.active {
    max-height: 10000000px;
    opacity: 1;
    margin-bottom: 5px;
}

/* 弹窗内链接样式 */
.linktc a {
    display: block;
    color: #333;
    padding: 12px 16px;
    transition: background-color 0.2s;

    font-family: ll;
    font-weight: 300;
    font-size: .16rem;
    color: #666666;
}

.linktc a:hover {
    background-color: #f5f7fa;
}

/* 指示箭头 */
.linktc::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px 6px 0;
    border-style: solid;
    border-color: #fff transparent transparent;
    display: none;
}

.linktc.active::after {
    display: block;
}

.sufoot .part2 #bdshare {
    display: flex;
    flex-direction: row;
    margin-top: 0;
}

.sufoot .part2 #bdshare .tnr a {
    margin-bottom: 0;
    margin-right: .18rem;
    margin-right: 0;
    margin-left: .18rem;
    background-color: #C4C4C4;
    /* border-radius: 2px; */
    border-radius: 50%;
    background-size: .2rem .2rem;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}

.sufoot .part2 #bdshare .tnr a:hover {
    background-color: var(--themeColor);
}

.sufoot .part2 #bdshare .tnr1 a {
    background-image: url(/images/tnr1.png);
}

.sufoot .part2 #bdshare .tnr2 a {
    background-image: url(/images/tnr2.png);
}

.sufoot .part2 #bdshare .tnr3 a {
    background-image: url(/images/tnr3.png);
    margin-right: 0;
}

.sufoot .part2 #bdshare .tnr01 a {
    background-image: url(/images/tnr01.png);
}

.sufoot .part2 #bdshare .tnr02 a {
    background-image: url(/images/tnr02.png);
}

.sufoot .part3 {
    padding: .17rem 0 .22rem;
    border-top: 1px solid #E6E6E6;
    margin-top: .41rem;
}

.sufoot .part3 a,
.sufoot .part3 span {
    font-family: ll;
    font-weight: 300;
    font-size: .14rem;
    color: #666666;
    display: inline-block;
}


.sufoot .part3 .lef a,
.sufoot .part3 .lef span {
    margin-right: 0.6em;
    white-space: nowrap;
}

.totop {
    margin-left: .15rem;
    cursor: pointer;
    display: flex !important;
    align-items: center;
}

.totop::after {
    content: '';
    display: block;
    width: .08rem;
    height: .08rem;
    border-top: 1px solid #919191;
    border-right: 1px solid #919191;
    transform: rotate(-45deg);
    margin-left: .12rem;
    margin-top: 0.06rem;
}

.totop:hover::after {
    border-color: var(--themeColor);
}

/* 底部end */

/* 首页 */

.idx_tit {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: .43rem;
}

.ncg {
    display: flex;
}

.ncg .ncg_li {
    font-family: rr;
    font-weight: 400;
    font-size: .16rem;
    color: #333333;
    position: relative;
    cursor: pointer;
    margin-left: .61rem;
}

.ncg .ncg_li:hover,
.ncg .ncg_li.active {
    color: var(--themeColor);
}

.ncg .ncg_li:hover::before,
.ncg .ncg_li.active::before {
    content: '';
    position: absolute;
    width: .22rem;
    height: 2px;
    background-color: var(--themeColor);
    left: -0.38rem;
    top: 50%;
    transform: translateY(-50%);
}

.idx_tit .ti {
    font-family: rr;
    font-weight: 500;
    font-size: .54rem;
    line-height: .62rem;
    color: #333333;
}

.idx_list .swiper-slide {
    width: 5.34rem;
    height: 5.86rem;
    border: 1px solid #D9E0E9;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.idx_list .swiper-slide .imgbox100 {
    width: 100%;
    height: 3.32rem;
}

.idx_list .swiper-slide .txtbox {
    padding: .52rem .5rem 0;
}

.idx_list .swiper-slide .txtbox .h3 {
    font-family: rr;
    font-weight: 400;
    font-size: .24rem;
    line-height: .36rem;
    color: #000000;

    background-image: linear-gradient(to right, var(--themeColor), var(--themeColor));
    background-repeat: no-repeat;
    background-size: 0 2px;
    background-position: 0 100%;
    -webkit-transition: all .4s linear;
    transition: all .4s linear;
    display: inline;
}

.idx_list .swiper-slide .txtbox .h3:hover {
    color: var(--themeColor);
    background-size: 100% 2px;
}

.news_date {
    display: flex;
    align-items: flex-end;
    margin-bottom: .5rem;
}

.news_date .h1 {
    font-family: rr;
    font-weight: 400;
    font-size: .28rem;
    color: var(--themeColor);
    line-height: 1;
    position: relative;
}

.news_date .h1::after {
    content: '';
    position: absolute;
    bottom: -0.24rem;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #D2D2D2;
}

.news_date .h2 {
    font-family: rr;
    font-weight: 400;
    font-size: .2rem;
    color: #333333;
    line-height: 1;
    margin-left: .19rem;
}

.newtol {
    width: 100%;
    height: .2rem;
    position: relative;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
}

.newtol .i {
    width: .12rem;
    height: .12rem;
    border-top: 1px solid #919191;
    border-right: 1px solid #919191;
    transform: rotate(45deg);
    position: absolute;

}

.newtol .swiper-button-prev .i {
    transform: rotate(-135deg);
}

.newtol {
    margin-top: .6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-scrollbar-new {
    width: 14.8rem;
    height: 2px;
    background-color: #EBECEC;
}

.swiper-scrollbar-new .swiper-scrollbar-drag {
    background-color: var(--themeColor);
}


.btn_icon_sty {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1.8rem;
    height: .7rem;
    border-radius: .4rem;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    padding-right: .12rem;
}

.btn_icon_sty span {
    color: #fff;
    font-size: .16rem;
    line-height: 1;
    text-transform: capitalize;
    position: relative;
    z-index: 3;
    transition: color 0.5s cubic-bezier(0.25, 0.74, 0.22, 0.99);
    width: calc(100% - .56rem);
    text-align: center;
    padding-left: .1em;
}

.btn_icon_sty div {
    width: .56rem;
    height: .56rem;
    z-index: 2;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn_icon_sty div::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #fff;
    border-radius: .4rem;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: transform 0.3s cubic-bezier(0.25, 0.74, 0.22, 0.99) 0.5s, width 0.5s cubic-bezier(0.25, 0.74, 0.22, 0.99) 0s;
}

.btn_icon_sty div i {
    width: .28rem;
    height: .1rem;
    background-image: url(/images/styarrow.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.btn_icon_sty {
    background: linear-gradient(90deg, var(--themeColor) 0%, rgba(91, 163, 79, 0.08) 100%);
}

.btn_icon_sty:hover span {
    color: var(--themeColor);
}

.btn_icon_sty:hover div::before {
    transform: scale(1.45);
    width: 1300%;
    transition: transform 0.3s cubic-bezier(0.25, 0.74, 0.22, 0.99), width 0.5s cubic-bezier(0.25, 0.74, 0.22, 0.99) 0.3s;
}

.index_banner {
    width: 100%;
    height: 100vh;
}

.index_banner .swiper {
    width: 100%;
    height: 100%;
}

.bannerctn {
    display: block;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    border-radius: 40px;
    overflow: hidden;
    position: absolute;
    -webkit-transition: all 1.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 1.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    z-index: 110;
}

.active .bannerctn {
    -webkit-transform: scale(1);
    transform: scale(1);
    border-radius: 0;
    -webkit-transition: all 1.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 1.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s;
}

.bannerctn .imgbox {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
}

.bannerctn .imgbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bannerctn .imgbox video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bannerctn .txtbox {
    width: 83.333%;
    max-width: 2000px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, 0);
    z-index: 5;
    color: #bc4646;
}

.bannerctn .txtbox .h1 {
    font-family: rorr;
    font-weight: 500;
    font-size: .58rem;
    color: #fff;
}

.bannerctn .txtbox .h2 {
    font-family: rorr;
    font-weight: 400;
    font-size: .38rem;
    color: #fff;
    margin-top: .22rem;
}

.bannerctn .txtbox .btn_icon_sty {
    margin-top: .8rem;
}

.bannerswp .swiper-pagination {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    height: 100%;
    width: 40px;
    left: auto;
    right: 8.28125%;
    top: 0;
    bottom: auto;
}

.bannerswp .swiper-pagination div {
    width: 40px;
    height: 40px;
    margin: 0.2rem 0 !important;
    position: relative;
    background-color: transparent;
    opacity: 1;
    flex-shrink: 0;
}

.bannerswp .swiper-pagination div::before {
    content: '';
    display: block;
    width: 36px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 100%;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.25, 0.74, 0.22, 0.99) 0s;

    box-sizing: content-box;
}

.bannerswp .swiper-pagination div::after {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -3px;
    margin-left: -3px;
    transition: background-color 0.5s cubic-bezier(0.25, 0.74, 0.22, 0.99) 0s;
}

.bannerswp .swiper-pagination div svg {
    display: block;
    width: 100%;
}

.bannerswp .swiper-pagination div svg circle {
    stroke: white;
    stroke-width: 2px;
    fill: transparent;
    r: 48;
    cx: 51;
    cy: 51;
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
}

.bannerswp .swiper-pagination div.swiper-pagination-bullet-active::before {
    opacity: 1;
}

.bannerswp .swiper-pagination div.swiper-pagination-bullet-active::after {
    background-color: white;
}

.bannerswp .swiper-pagination div.swiper-pagination-bullet-active svg circle {
    transition: stroke-dashoffset ease 7s;
    stroke-dashoffset: 0;
}

.bannerswp .swiper-pagination div:hover::before {
    opacity: 1;
}

.bannerswp .swiper-pagination div:hover::after {
    background-color: white;
}


.bannerswp .banner_hint {
    bottom: 9.6%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 5;
    position: absolute;
    transition: all 1.2s cubic-bezier(0.25, 0.74, 0.22, 0.99) 0.7s;

    width: 83.333%;
    max-width: 2000px;
}

.bannerswp .banner_hint.off {
    opacity: 0;
}

.bannerswp .banner_hint .pages {
    width: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: .18rem;
    line-height: 1;
    color: white;
}

.bannerswp .banner_hint .pages span:first-child {
    margin-right: .4em;
}

.bannerswp .banner_hint .pages span:last-child {
    margin-left: .4em;
}

.bannerswp .banner_hint>span {
    width: calc(100% - 1.86rem);
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}

.b_hint {
    width: 1.86rem;
    display: flex;
    align-items: center;
    font-size: .16rem;
    line-height: 1;
    color: #fff;
}

.b_hint>div {
    width: 18px;
    margin-right: .27rem;
    height: 25px;
    border-radius: .2rem;
    border: 2px solid #fff;
    position: relative;
}

.b_hint>div span {
    left: 6px;
    position: absolute;
    top: 5px;
    width: 2px;
    height: 5px;
    background-color: #fff;
    border-radius: 1px;
    animation: upDown 1s ease-out infinite;
}

@keyframes upDown {
    to {
        transform: translate3d(0, 100%, 0);
    }
}

@keyframes jump {
    0% {
        transform: translateY(4px);
    }

    100% {
        transform: translateY(-4px);
    }
}

@keyframes jump2 {
    0% {
        transform: translateY(1px);
    }

    100% {
        transform: translateY(-3px);
    }
}

.index_about {
    padding-top: 13.1vh;
}

.index_about .h1 {
    font-family: rr;
    font-weight: 600;
    font-size: .58rem;
    color: #333333;
    margin-right: 3.09rem;
    flex-shrink: 0;
}

.index_about .rig {
    flex: 1;
}

.index_about .p {
    font-family: rr;
    font-weight: 400;
    font-size: .18rem;
    line-height: .38rem;
    color: #333333;
}

.idxmore {
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.index_about .idxmore {
    margin: .32rem 0 .35rem;
}

.idxmore span {
    font-family: rr;
    font-weight: 400;
    font-size: 0.18rem;
    color: var(--themeColor);
    transition: transform 0.3s ease;
}

.idxmore .icon {
    width: 0.24rem;
    height: 0.06rem;
    overflow: hidden;
    font-size: 0;
    margin-left: 0.15rem;
    transition: transform 0.3s ease;
}

.idxmore .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.idxmore:hover .icon {
    transform: translateX(0.08rem);
}

.abcot {
    display: flex;
    justify-content: space-between;
}

.abcot .counters {
    font-family: rr;
    font-weight: 600;
    font-size: .48rem;
    line-height: .38rem;
    color: var(--themeColor);
}

.abcot .counters span {
    font-size: .18rem;
    font-weight: 500;
    display: inline-block;
    /* margin-left: -0.05rem; */
}

.abcot .h2 {
    font-family: rr;
    font-weight: 400;
    font-size: .18rem;
    line-height: 100%;
    letter-spacing: 0%;
    color: #333333;
    margin-top: .18rem;
}

.ywnav .ul {
    display: flex;
    justify-content: space-between;
}

.ywnav .ul .li {
    display: flex;
    align-items: center;
    position: relative;
    margin-left: .68rem;
}

.ywnav .ul .li::after {
    content: '';
    display: block;
    width: 1px;
    height: 24px;
    background-color: #E6E6E6;
    position: absolute;
    right: -1.1rem;
    display: none;
}

.ywnav .ul .li:last-of-type::after {
    display: none;
}

.ywnav .ul .li .imgbox {
    width: .32rem;
    height: .32rem;
    margin-right: .1rem;
    overflow: hidden;
}

.ywnav .ul .li .imgbox img {
    width: 100%;
    height: 100%;
}

.ywnav .ul .li .txtbox {
    font-family: rr;
    font-weight: 400;
    font-size: .18rem;
    line-height: 100%;
    color: #70757C;
    /* width: 2em;
    white-space: nowrap; */
}

.ywnav .ul .li:hover .txtbox,
.ywnav .ul .li.active .txtbox {
    color: var(--themeColor);
}

.ywnav .ul .li:hover .imgbox img,
.ywnav .ul .li.active .imgbox img {
    transform: translateY(-100%);
    filter: drop-shadow(0 0.32rem var(--themeColor));
}


.ywsw {
    margin-top: .61rem;
    width: calc(100vw - (100vw - 16rem) / 2);
}

.ywsw .swiper-slide {
    /* padding-bottom: .93rem;
    border-bottom: 1px solid #D0D0D0; */
    position: relative;
    display: block;
    width: 2.94rem;
    margin-right: .32rem;
}

.ywsw .swiper-slide:after {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background-color: var(--themeColor);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all 0.3s ease;
}

.ywsw .swiper-slide:hover:after {
    width: 100%;
}

.ywsw .swiper-slide {
    display: none;
}

.ywsw .swiper-slide:nth-of-type(-n+5) {
    display: block;
}

.ywsw .swiper-slide:hover .txtbox {
    color: var(--themeColor);
}

.newfz .imgbox {
    overflow: hidden;
}

.ywsw .swiper-slide:hover .newfz .imgbox img {
    transform: translateY(-100%);
    filter: drop-shadow(0 0.24rem var(--themeColor));
}

.ywsw .imgbox100 {
    width: 100%;
    height: 4.41rem;
}


.swiper-pagination-b {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: .42rem;
}

.swiper-pagination-b .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    opacity: 1;
    background-color: #D9D9D9;
    margin: 0 .1rem !important;
}

.swiper-pagination-b .swiper-pagination-bullet-active,
.swiper-pagination-b .swiper-pagination-bullet:hover {
    background-color: var(--themeColor);
}

.index_yw {
    position: relative;
}

.index_yw::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    background-image: url(/images/ywbg1.png);
    width: 13.64rem;
    height: 2.5rem;
    background-size: cover;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 1;
}

.index_yw::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    background-image: url(/images/ywbg2.png);
    width: 13.29rem;
    height: 3.47rem;
    background-size: cover;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 1;
}

.index_yw .pwidth {
    position: relative;
    z-index: 2;
}

/* 首页end */

/* 业务领域 */

.ywnnva {
    box-shadow: 0px 3px 4px 0px #0000000D;

}

.ywnnva .ul {
    display: flex;
    height: 1.8rem;
}

.ywnnva .ul .li {
    width: 2.67rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.ywnnva .ul .li.active,
.ywnnva .ul .li:hover {
    background-color: var(--themeColor);
}

.ywnnva .ul .li.active .txtbox,
.ywnnva .ul .li:hover .txtbox {
    color: #FFFFFF;
}

.ywnnva .ul .li.active .imgbox img,
.ywnnva .ul .li:hover .imgbox img {
    transform: translateY(-100%);
    filter: drop-shadow(0 0.42rem #FFFFFF);
}

.ywnnva .ul .li .imgbox {
    width: 0.42rem;
    height: 0.42rem;
    margin-bottom: .15rem;
    overflow: hidden;
}

.ywnnva .ul .li .imgbox img {
    width: 100%;
    height: 100%;
}

.ywnnva .ul .li .txtbox {
    font-family: rr;
    font-weight: 400;
    font-size: .2rem;
    text-align: center;
    color: #5A5D61;
}

.ywnnva {
    height: .9rem;
    display: flex;
    align-items: center;
}

.ywnnva>div {
    height: 100%;
}

.ywnnva .ol {
    display: flex;
    height: 100%;
}

.ywnnva .ol .li {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    height: 100%;
    border-bottom: 1px solid transparent;
}

.ywnnva .ol .li .imgbox {
    width: .28rem;
    height: .28rem;
    margin-right: .12rem;
    overflow: hidden;
}

.ywnnva .ol .li .imgbox img {
    width: 100%;
    height: 100%;
}

.pwidth img {
    margin: 0;
}

.ywnnva .ol .li .txtbox {
    font-family: rr;
    font-weight: 400;
    font-size: .18rem;
    color: #5A5D61;
}

.ywnnva .ol .li.active,
.ywnnva .ol .li:hover {
    border-bottom: 1px solid var(--themeColor);
}

.ywnnva .ol .li.active .txtbox,
.ywnnva .ol .li:hover .txtbox {
    color: var(--themeColor);
}

.ywnnva .ol .li.active .imgbox img,
.ywnnva .ol .li:hover .imgbox img {
    transform: translateY(-100%);
    filter: drop-shadow(0 0.28rem var(--themeColor));
}


.ywlists {
    padding: .69rem 0 1rem;
}

.ywlists .ul .li {
    display: flex;
    justify-content: space-between;
    padding: .63rem .63rem .67rem .66rem;
    box-shadow: 0px 0px 20px 2px #0000000D;
    margin-bottom: .54rem;
}

.ywlists .ul .li:last-of-type {
    margin-bottom: 0;
}

.ywlists .ul .li .imgbox100 {
    width: 6.2rem;
    height: 3.8rem;
}

.ywlists .ul .li .txtbox {
    width: 7.94rem;
}

.ywlists .ul .li .txtbox .imgbox {
    width: 0.42rem;
    height: 0.42rem;
    margin-bottom: .25rem;
    display: none;
}

.ywlists .ul .li .txtbox .imgbox img {
    width: 100%;
    height: 100%;
}

.ywlists .ul .li .txtbox .h1 {
    font-family: rr;
    font-weight: 600;
    font-size: .32rem;
    color: #27221C;
    padding-bottom: .19rem;
    border-bottom: 1px solid #D6D6D6;
    position: relative;
}

.ywlists .ul .li .txtbox .h1::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 1.78rem;
    height: 3px;
    background-color: var(--themeColor);
}

.ywlists .ul .li .txtbox .h2 {
    font-family: rr;
    font-weight: 400;
    font-size: .18rem;
    line-height: .38rem;
    color: #5A5D61;
    margin-top: .27rem;
    margin-bottom: .35rem;
}

.ywlists .ul .li .txtbox .h2:hover {
    color: var(--themeColor);
}

.ywlists .ul .li:nth-of-type(2n) {
    flex-direction: row-reverse;
}

.ywcat {
    display: flex;
    justify-content: space-between;
}

.ywcat .item {
    display: flex;
}

.dingding {
    display: flex;
    align-items: center;
}

.dingding .ibox {
    width: .2rem;
    height: .2rem;
    margin-right: .12rem;
}

.dingding .ibox img {
    width: 100%;
    height: 100%;
}

.dingding .tbox {
    font-family: rr;
    font-weight: 400;
    font-size: .18rem;
    line-height: .38rem;
    color: #5A5D61;
}

.ywlists .ul .li.clist .txtbox .h2 {
    color: #5A5D61 !important;
    margin-bottom: .15rem;
}

.ywlists .ul .li .txtbox .h2 {
    color: #5A5D61 !important;
    margin-bottom: .15rem;
}

.ywlists .ul .li .txtbox .h2 .ywcat {
    margin: .15rem 0;
}

#banner {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

#banner .imgbox {
    width: 100%;
    height: 100%;
}

#banner .imgbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#banner .imgbox video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#banner .txtbox {
    position: absolute;
    left: 152px;
    bottom: 75px;
}

#banner .txtbox .h11 {
    font-family: rr;
    font-weight: 400;
    font-style: Normal;
    font-size: 48px;
    line-height: 100%;
    letter-spacing: 10%;
    color: #fff;
}

#banner .txtbox .h22 {
    font-family: Outfit;
    font-weight: 700;
    font-style: Bold;
    font-size: 120px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #fff;
    margin-top: 9px;
}

.ciis {
    position: absolute;
    right: 151px;
    bottom: 106px;
}

.ciis .qq1 {
    width: 1.18rem;
    height: 1.18rem;
    border-radius: 50%;
    border: 1px solid #D9D9D920;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ciis .qq2 {
    width: .84rem;
    height: .84rem;
    border-radius: 50%;
    border: 1px solid #D9D9D950;
    display: flex;
    align-items: center;
}

.ciis .qq3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}

.ciis .qq2 .img1 {
    width: .24rem;
    margin-bottom: .05rem;
    animation: jump 1s cubic-bezier(.56, .01, .46, 1) infinite alternate;
}

.ciis .qq2 .img2 {
    width: .06rem;
    animation: jump2 1s cubic-bezier(.56, .01, .46, 1) infinite alternate;
}

/* 业务领域end */

/* 关于 */
.abs1 {
    padding: 1.51rem 0 1.56rem;
}

.abs1 .abtit {
    margin-bottom: .24rem;
}

.abs1 .lef {
    flex-shrink: 0;
    margin-right: 1.47rem;
}

.abs1 .h1 {
    font-family: rr;
    font-weight: 700;
    font-style: Bold;
    font-size: .9rem;
    color: var(--themeColor);
}

.abs1 .h2 {
    font-family: rr;
    font-weight: 500;
    font-size: .48rem;
    color: #27221C;
    margin-bottom: .57rem;
}

.abs1 .h3 {
    font-family: ll;
    font-weight: 300;
    font-size: .18rem;
    line-height: .36rem;
    color: #333333;
}

.abs1 .h4 {
    font-family: rr;
    font-weight: 600;
    font-size: .48rem;
    line-height: 100%;
    color: var(--themeColor);
    margin-bottom: .12rem;
}

.abs1 .h3 {
    margin-bottom: .12rem;
}

.abs1 {
    padding: .7rem 0;
}


.abs3 {
    padding: 1.37rem 0 1.29rem;
    background-color: #F8FCFF;
}

.abs3 .lef {
    flex-shrink: 0;
    margin-right: 1.99rem;
}

.abs3 .h1 {
    font-family: rr;
    font-weight: 500;
    font-size: .48rem;
    line-height: .8rem;
    color: #27221C;
}

.abs3 .p {
    font-family: ll;
    font-weight: 300;
    font-size: .18rem;
    line-height: .38rem;
    color: #333333;
    margin-bottom: .2rem;
}

.counterbox {
    display: flex;
    justify-content: space-between;
}

.counterbox .counters {
    font-family: rr;
    font-weight: 600;
    font-size: .48rem;
    line-height: .38rem;
    color: var(--themeColor);
    line-height: 1;
}

.counterbox .counters span {
    font-family: rr;
    font-weight: 500;
    font-size: .24rem;
    line-height: .38rem;
    line-height: 1;

}

.counterbox .countertxt {
    font-family: rr;
    font-weight: 400;
    font-size: .18rem;
    color: #333333;
    margin-top: .18rem;
}

.counterbox {
    margin-bottom: .29rem;
}

.abs5 {
    padding: 0.7rem 0 0.8rem;
}

.abtit {
    font-family: rr;
    font-weight: 500;
    font-size: .42rem;
    text-align: center;
    margin-bottom: .42rem;
    color: #27221C;
    color: var(--themeColor);
}

.abs5 img,
.abs4 img,
.abs2 img {
    width: 100%;
    height: auto;
}

.abs2imglist {
    display: flex;
    flex-wrap: wrap;
}

.abs2imglist img {
    width: 20%;
    height: 5.72rem;
    object-fit: cover;
}


/* 关于end */

/* 头部 */
#header11 .headtab {
    justify-content: center;
}

#header11 .headtab>li>a {
    font-size: .22rem;
    font-weight: 500;
    color: #2A2A2A;
}

#header11.head .headtab>li>a {
    color: #fff;
}

#header11 .headtab>li.current>a,
#header11 .headtab>li:hover>a {
    color: var(--themeColor) !important;
}

#header11 .headtab>li {
    margin-right: .72rem;
}

#header11 .headtab>li:last-of-type {
    margin-right: 0;
}

#header11 .sccw,
#header11 .gzherm1,
#header11 .yuyanqiehuan1,
#header11 .ldlg {
    display: none;
}

#header11 .langtab {
    width: .54rem;
    /* height: .48rem; */
    height: .32rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #2A2A2A;
    border-radius: .5rem;
    transition: background-color .3s;
    /* display: none; */
    margin-left: 0.3rem;
}



#header11 .langtab:hover {
    background-color: var(--themeColor) !important;
    border-color: var(--themeColor) !important;
}

#header11 .langtab span {
    color: #2A2A2A;
    font-family: rr;
    font-weight: 400;
    font-size: .18rem;
}

#header11.head .langtab {
    border-color: #fff;
}

#header11.head .langtab span {
    color: #fff;
}

#header11 .langtab:hover span {
    color: #FFFFFF;
}

/* 头部end */



/* 联系 */
.lianxi .baseTitle2 {
    display: none;
}

.liuyan7 {
    display: none;
}

.lianxi22 {
    padding-bottom: 1rem;
}

.suhaomap {
    width: 16rem;
    margin: 0 auto;
}

.suhaomap img {
    width: 100%;
    height: auto;
    margin: 0;
}

/* 联系end */


/* 内页banner */
.msban {
    width: 100%;
    height: 4.58rem;
}

#ContentPlaceHolder1_pnl_banner {
    width: 100%;
    height: 100%;
}

.msban .isdisimg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.msban .ttxxtt {
    top: 47%;
    left: 1.59rem;
}

.msban .ttxxtt .text2 {
    font-family: rr;
    font-weight: 500;
    font-size: .42rem;
    margin-bottom: 0;
}

.msban .ttxxtt .text22 {
    font-family: ll;
    font-weight: 200;
    font-size: .32rem;
    display: none;
}

.shinav,
.tiaodong {
    display: none !important;
}

/* 内页banner end */

/* 产品列表 */

.plst {
    padding: .9rem 0 1rem;
}

.plst .abtit {
    margin-bottom: .52rem;
}

.shplist {
    display: flex;
    flex-wrap: wrap;
}

.shplist .layout {
    width: 3.7rem;
    height: 5.55rem;
    /* background-color: #ccc; */
    margin-right: calc((100% - 3.7rem * 4) / 3) !important;
    margin-bottom: .5rem;
}

.shplist .layout:nth-of-type(4n) {
    margin-right: 0 !important;
}

.shplist a {
    display: block;
    width: 100%;
    height: 100%;
}

.shplist a .text {
    display: none;
}

.shplist a .img {
    width: 100%;
    height: 100%;
}

.shplist a .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.plistnav {
    display: flex;
    justify-content: center;
    height: 1rem;
    border-top: 1px solid;
    border-bottom: 1px solid;
    border-image: linear-gradient(90deg, rgba(233, 233, 233, 0.12) 0%, rgba(233, 233, 233, 0.4) 13.67%, #E9E9E9 50.2%, rgba(233, 233, 233, 0.4) 88.22%, rgba(233, 233, 233, 0) 100.4%) 1;
}



.plistnav .li {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.58rem;
}

.plistnav .li .imgbox {
    width: .32rem;
    height: .32rem;
    overflow: hidden;
    margin-right: .16rem;
}

.plistnav .li .imgbox img {
    width: 100%;
    height: 100%;
}

.plistnav .li .txtbox {
    font-family: rr;
    font-weight: 400;
    font-size: .22rem;
    color: #70757C;
}

.plistnav .li:hover .txtbox,
.plistnav .li.current .txtbox {
    color: var(--themeColor);
}

.plistnav .li:hover .imgbox img,
.plistnav .li.current .imgbox img {
    transform: translateY(-100%);
    filter: drop-shadow(0 .32rem var(--themeColor));
}

.plistnav2 {
    display: flex;
    justify-content: center;
    margin-top: .35rem;
}

.plistnav2 .li {
    font-family: rr;
    font-weight: 400;
    font-size: .18rem;
    color: #70757C;
    display: block;
    margin: 0 .27rem;
}

.plistnav2 .li:hover,
.plistnav2 .li.current {
    color: var(--themeColor);
}

/* 产品列表end */

/* 服装业务 */

.fzwylists {
    padding: .85rem 0 .24rem;
}

.fztxt {
    font-family: rr;
    font-weight: 500;
    font-size: .48rem;
    text-align: center;
    color: #27221C;
    margin-bottom: .46rem;
}

.fzimgs {
    display: flex;
    flex-wrap: wrap;
}

.fzimgs img {
    margin: 0;
    width: 33.333333%;
    height: 3.26rem;
    object-fit: cover;
}

.fzwylists .ul .li {
    padding: .52rem 0 .6rem;
    border-bottom: 1px solid #ECECEC;
}

.fzwylists .ul .li .h1 {
    font-family: rr;
    font-weight: 600;
    font-size: .32rem;
    color: #27221C;
    margin-bottom: .15rem;
}

.fzwylists .ul .li .p,
.fzwyppp {
    font-family: rr;
    font-weight: 400;
    font-size: .18rem;
    line-height: .38rem;
    color: #5A5D61;
}

.fzwylists .ul .li .ywcat {
    margin-top: .28rem;
}

.fzwylists .ul .li .ywcat .item {
    display: flex;
}

.fzwylists .ul .li .ywcat .item .dingding {
    margin-right: .3rem;
}

.fzwylists>.pwidth>.item {
    margin-bottom: .93rem;
}

.fzwylists>.pwidth>.item:last-of-type .ul .li:last-of-type {
    border: none;
}

.fzwylists>.pwidth>.item:last-of-type {
    margin-bottom: 0;
}

.fzimg22 {
    display: flex;
    justify-content: space-between;
}

.fzimg22 .imgbox {
    width: 2.94rem;
    height: 4.41rem;
    margin-bottom: .28rem;
}

.fzimg22 .imgbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fzimg22 .txtbox {
    font-family: rr;
    font-weight: 400;
    font-size: .18rem;
    line-height: 100%;
    text-align: center;
    color: #5A5D61;
}

.fzimg22 .li {
    display: block;
}

.fzwyppp {
    margin-bottom: .58rem;
}




/* 服装业务end */

/* 分页 */
.fy-con a.pre {
    width: .44rem;
    height: .44rem;
    border-radius: 50%;
    background-color: #C9C9C9 !important;
    position: relative;
}

.fy-con a.pre:hover {
    background-color: var(--themeColor) !important;
}

.fy a,
.fy .cpb {
    width: .44rem;
    height: .44rem;
    background-color: transparent !important;
    color: #333333;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fy .cpb,
.fy a:hover {
    color: var(--themeColor);
    text-decoration: underline;
    font-size: .18rem;
}

.fy-con a.pre:first-of-type::after {
    content: '';
    display: block;
    width: .1rem;
    height: .1rem;
    border: 2px solid #fff;
    border-width: 2px;
    border-color: #fff;
    border-top: 0;
    border-right: 0;
    position: absolute;
    top: 50%;
    left: 54%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.fy-con a.pre:last-of-type::after {
    content: '';
    display: block;
    width: .1rem;
    height: .1rem;
    border: 2px solid #fff;
    border-width: 2px;
    border-color: #fff;
    border-top: 0;
    border-right: 0;
    position: absolute;
    top: 50%;
    left: 46%;
    transform: translate(-50%, -50%) rotate(-135deg);
}

/* 分页 end */

/* 详情页 */
.detailcen>h3 {
    text-align: center;
    margin-top: .31rem;
    font-family: ll;
    font-size: .42rem;
    font-weight: 700;
    line-height: .64rem;
    color: #333333;
}

.detaill {
    display: none;
}

.detailr {
    padding: 0;
}

.detailr p {
    text-indent: 0;
}

.newshare {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.newshare>a {
    width: .3rem;
    height: .3rem;
    /* background-color: #bfa; */
    margin: 0 .21rem;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}


.newshare::before,
.newshare::after {
    content: '';
    width: 4rem;
    height: .01rem;
    background-color: #D9D9D9;
}

.newshare .nsh1 {
    background-image: url(/images/newshare1.png);
}

.newshare .nsh2 {
    background-image: url(/images/newshare2.png);
}

.newshare .nsh3 {
    background-image: url(/images/newshare3.png);
}

.newshare .nsh4 {
    background-image: url(/images/newshare4.png);
}

.newshare .nsh5 {
    background-image: url(/images/newshare5.png);
}

.newshare .nsh1:hover {
    background-image: url(/images/newshare11.png);
}

.newshare .nsh2:hover {
    background-image: url(/images/newshare21.png);
}

.newshare .nsh3:hover {
    background-image: url(/images/newshare31.png);
}

.newshare .nsh4:hover {
    background-image: url(/images/newshare41.png);
}

.newshare .nsh5:hover {
    background-image: url(/images/newshare51.png);
}

.dands .date {
    font-family: ll;
    font-size: .16rem;
    font-weight: 300;
    line-height: .1875rem;
    text-align: center;
    color: #70757C;
    margin: .44rem 0 .26rem;
}

.detail {
    padding-top: .58rem;
}

.detailrbom {
    display: none;
}

.newshare1 {
    margin-top: .58rem;
}

.relanews .h1 {
    font-family: rr;
    font-weight: 400;
    font-size: .36rem;
    line-height: 1;
    text-align: center;
    color: #373737;
    margin-bottom: .5rem;
}

.relanews {
    background-color: #F7F7F7;
}

.detailrbom {
    border: none;
    padding-top: 0;
    margin-top: .48rem;
}

.ckrs {
    justify-content: space-between;
    flex-direction: row;
    width: 1.72rem;
    padding-bottom: 0;
}

.ckrs .In,
.ckrs .FaceBook,
.ckrs .twitter {
    margin-bottom: 0;
}

.newshare::before,
.newshare::after {
    width: 4.5rem;

}

.ckrs .In,
.ckrs .FaceBook,
.ckrs .twitter {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FFFFFF;
    margin: 0;
    width: .25rem;
    height: .25rem;
    background-size: .25rem .25rem;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 0;
}

.ckrs .In {
    background-image: url(/images/in1.png);
}

.ckrs .In:hover {
    background-image: url(/images/in2.png);
}

.ckrs .FaceBook {
    background-image: url(/images/fb1.png);
}

.ckrs .FaceBook:hover {
    background-image: url(/images/fb2.png);
}

.ckrs .twitter {
    background-image: url(/images/tw1.png);
}

.ckrs .twitter:hover {
    background-image: url(/images/tw2.png);
}

.detailrbom .fanhui {
    border-radius: 0;
}

.detailrbom .fanhui {
    width: .48rem;
    height: .48rem;
    overflow: hidden;
    top: 0;
    border: none;
}

.detailrbom .fanhui span {
    display: block;
    width: 100%;
    height: 100%;
    background-image: url(/images/xqfanhui.png);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.detailrbom .fanhui:hover span {
    transform: translateY(-100%);
    filter: drop-shadow(0 .48rem var(--themeColor));
}

/* 详情页end */



/* 下拉 */
#header11::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    top: 0;
    backdrop-filter: blur(16px);
    background-color: #fff;
    transition: height 0.5s cubic-bezier(0.25, 0.74, 0.22, 0.99) 0s;
    height: 0;

}

#header11>* {
    position: relative;
    z-index: 1;
}

#header11[slide="1"]:hover::before {
    height: 3rem;
}

.tabs-box {
    padding: 0;
    background-color: transparent;
    border: none;
    padding-top: .34rem;
}

.tabs-box .timgs {
    display: none;
}

.tabs-box ul {
    padding: 0;
    border: none;
    display: block;
}

#header11 .headtab>li {
    position: relative;
}

.tabs-box ul {
    width: 100%;
}

.tabs-box ul li {
    width: 100%;
    height: auto;
    line-height: 1;
    margin-bottom: .24rem;
}

#header11 .headtab>li ul li a {
    line-height: 1;
}

#header11 .sccw {
    display: block;
    margin-right: 0;
}

#header11 .sccw img {
    width: .3rem;
    height: .3rem;
}

.newfz {
    display: flex;
    justify-content: center;
    margin-bottom: .25rem;
}

.newfz .imgbox {
    width: .24rem;
    height: .24rem;
    margin-right: .11rem;
}

.newfz .txtbox {
    font-family: rr;
    font-weight: 400;
    font-size: .18rem;
    color: #70757C;
}

/* 下拉end */



.fzbanner {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.fzbanner .bannerbg {
    width: 100%;
    height: 100%;
    position: relative;
}

.fzbanner .bannerbg img,
.fzbanner .bannerbg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.fzbanner .bannerbg video {
    z-index: 2;
    filter: brightness(0.7);
}

.fzbanner .bannertxt {
    position: absolute;
    top: 34.8%;
    left: 50%;
    transform: translate(-50%, 0);
    color: #fff;
    text-align: center;
    z-index: 3;
}


.fzbanner .bannertxt .h1 {
    font-family: rr;
    font-weight: 500;
    font-size: .48rem;
    margin-bottom: .27rem;
}

.fzbanner .bannertxt .h2 {
    font-family: rr;
    font-weight: 400;
    font-size: .24rem;
    line-height: 2;
    white-space: nowrap;
}

.bannernav {
    position: absolute;
    bottom: .4rem;
    width: 100%;
    z-index: 5;
}

.bannernav .ul {
    display: flex;
}

.bannernav .ul .li {
    width: 50%;
    margin-right: .44rem;
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: .36rem;
}

.bannernav .ul .li:last-of-type {
    margin-right: 0;
}

.bannernav .ul .li .imgbox {
    width: 0.28rem;
    height: 0.28rem;
    margin-right: .1rem;
    overflow: hidden;
}

.bannernav .ul .li .imgbox img {
    width: 100%;
    height: 100%;
}

.bannernav .ul .li .txtbox {
    font-family: rr;
    font-weight: 400;
    font-size: .22rem;
    color: #FFFFFF;
}

.bannernav .ul .li:hover .txtbox,
.bannernav .ul .li.active .txtbox {
    color: var(--themeColor);
}

.bannernav .ul .li:hover .imgbox img,
.bannernav .ul .li.active .imgbox img {
    transform: translateY(-100%);
    filter: drop-shadow(0 0.28rem var(--themeColor));
}

.bannernav .ul .li:hover,
.bannernav .ul .li.active {
    border-color: var(--themeColor);
}

.fzs2 {
    padding: .82rem 0 1.18rem;
}

.fzs2 .ul {
    display: flex;
}

.fzs2 .ul .li {
    display: block;
    position: relative;
    width: 2.94rem;
    height: 3.9rem;
    margin-right: .32rem;
}

.fzs2 .ul .li:last-of-type {
    margin-right: 0;
}

.fzs2 .ul .li .fzlb {
    width: calc(100% - .14rem);
    height: calc(100% - .14rem);
    border: .01rem solid rgba(255, 255, 255, 0.3);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.fzs2 .ul .li .fzlb .imgbox {
    width: .72rem;
    height: .72rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: .19rem;
}

.fzs2 .ul .li:hover .fzlb {
    border-color: transparent;
}


.fzs2 .ul .li .fzlb .imgbox img {
    width: .32rem;
    height: .32rem;
}

.fzs2 .ul .li .fzlb .txtbox {
    font-family: ll;
    font-weight: 300;
    font-size: 18px;
    color: #FFFFFF;
}

/* .fzs2 .ul .li::after {
        content: '';
        position: absolute;
        z-index: 2;
        background-color: rgba(0, 0, 0, 0.54);
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        transition: all 0.3s;
    }

    .fzs2 .ul .li:hover::after {
        height: 0;
    } */
.fzs2 .ul .li {
    position: relative;
    overflow: hidden;
}

.fzs2 .ul .li::after {
    content: '';
    position: absolute;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.54);
    width: 150%;
    height: 150%;
    top: -25%;
    left: -25%;
    transform: rotate(15deg) translateX(0);
    transition: all 0.6s ease-in-out;
}

.fzs2 .ul .li:hover::after {
    transform: rotate(15deg) translateX(100%);
    opacity: 0;
}

.fztit {
    font-family: rr;
    font-weight: 500;
    font-size: .48rem;
    text-align: center;
    margin-bottom: .35rem;
    color: #27221C;
}


.fzs3 {
    width: 100%;
    height: 8.68rem;
    position: relative;
}

.fzs3 .fzs3list {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.fzs3 .fzs3list .item {
    width: 100%;
    height: 100%;
    padding-bottom: 2.77rem;
}

.fzs3 .fzs3list .item .pwidth {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.fzs3 .fztit {
    position: absolute;
    top: .9rem;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 100;
    font-family: rr;
    font-weight: 500;
    font-size: .48rem;
    color: #fff;
}

.fzs3 .fzs3list .item .imgbox {
    width: .72rem;
    height: .72rem;
    margin-bottom: .26rem;
}

.fzs3 .fzs3list .item .imgbox img {
    width: 100%;
    height: 100%;
}

.fzs3 .fzs3list .item .h1 {
    font-family: rr;
    font-weight: 500;
    font-size: .24rem;
    color: #fff;
    margin-bottom: .2rem;
}

.fzs3 .fzs3list .item .p {
    font-family: rr;
    font-weight: 400;
    font-size: .18rem;
    line-height: .38rem;
    color: #fff;
    width: 7.28rem;
}

.fzs3cat {
    margin-top: .22rem;
}

.fzs3cat .fzs3catitem {
    display: flex;
    align-items: center;
}

.fzs3cat .fzs3catitem .imgbox2 {
    width: .2rem;
    height: .2rem;
    margin-right: .23rem;
}

.fzs3cat .fzs3catitem .imgbox2 img {
    width: 100%;
    height: 100%;
}

.fzs3cat .fzs3catitem .txtbox2 {
    font-family: rr;
    font-weight: 400;
    font-size: .18rem;
    line-height: .38rem;
    color: #fff;
}

.fzs3nav {
    position: absolute;
    z-index: 10;
    left: 0;
    bottom: 0.46rem;
    width: 100%;
}

.fzs3nav .ul {
    display: flex;
    justify-content: space-between;
}

.fzs3nav .ul .li {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fzs3nav .ul .li .imgbox {
    width: 0.77rem;
    height: .77rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: .35rem;
    position: relative;
}

.fzs3nav .ul .li .imgbox::after {
    content: '';
    position: absolute;
    width: 3.75rem;
    height: 1px;
    left: .77rem;
    top: .38rem;
    background-color: rgba(255, 255, 255, 0.4);
}

.fzs3nav .ul .li:first-of-type .imgbox::before {
    content: '';
    position: absolute;
    width: 3.75rem;
    height: 1px;
    right: .77rem;
    top: .38rem;
    background-color: rgba(255, 255, 255, 0.4);
}

.fzs3nav .ul .li .imgbox img {
    width: 0.36rem;
    height: 0.36rem;
}

.fzs3nav .ul .li .txtbox {
    font-family: rr;
    font-weight: 400;
    font-size: .2rem;
    color: #fff;
}

.fzs3nav .ul .li.active .imgbox,
.fzs3nav .ul .li:hover .imgbox {
    border-color: var(--themeColor);
    background-color: var(--themeColor);
}

.fzs3list {
    position: relative;
    overflow: hidden;
}

.fzs3list .item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);

    opacity: 0;
    transform: scale(1.05);
    filter: blur(8px);
    -webkit-filter: blur(8px);
    transition: filter 0.3s ease-out, opacity 0.4s ease-out, transform 0.4s ease-out;
    pointer-events: none;
    z-index: 1;
}

.fzs3list .item.active {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
    -webkit-filter: blur(0);
    pointer-events: auto;
    z-index: 10;
}

.fzs3nav .li {
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.fzs3nav .li:hover:not(.active) {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.fzs4 {
    padding: .85rem 0 1rem;
}

.gyllistbox {
    background-color: #fff;
    padding: .62rem .5rem .47rem;
}

.fzs4 .gyllist .item .imgbox {
    width: .72rem;
    height: .72rem;
    margin-bottom: .26rem;
}

.fzs4 .gyllist .item .imgbox img {
    width: 100%;
    height: 100%;
}

.fzs4 .gyllist .item .h1 {
    font-family: rr;
    font-weight: 500;
    font-size: .24rem;
    color: #27221C;
    margin-bottom: .2rem;
}

.fzs4 .gyllist .item .p {
    font-family: rr;
    font-weight: 400;
    font-size: .18rem;
    line-height: .38rem;
    color: #5A5D61;
    width: 7.28rem;
}

.fzs4 .fzs3cat .fzs3catitem .txtbox2 {
    color: #5A5D61;
}

.fzs4 .gyllist .item {
    display: flex;
    justify-content: space-between;
}

.fzs4 .gyllist .item .rig .imgbox {
    width: 6.95rem;
    height: 4.32rem;
    overflow: hidden;
    border-top-left-radius: 2rem;
    border-bottom-right-radius: 2rem;
}

.fzs4 .gyllist .item .rig .imgbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gylnav .ul {
    display: flex;
    justify-content: space-between;
    padding-top: .41rem;
    border-top: 1px solid #E0E0E0;
    margin-top: .5rem;
}

.gylnav .ul .li {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.gylnav .ul .li .imgbox {
    width: .28rem;
    height: .28rem;
    margin-right: .1rem;
    overflow: hidden;
}

.gylnav .ul .li .imgbox img {
    width: 100%;
    height: 100%;
}

.gylnav .ul .li .txtbox {
    font-family: rr;
    font-weight: 400;
    font-size: .2rem;
    line-height: 100%;
    color: #27221C;
}

.gylnav .ul .li:hover .imgbox img,
.gylnav .ul .li.active .imgbox img {
    transform: translateY(-100%);
    filter: drop-shadow(0 .28rem var(--themeColor));
}

.gylnav .ul .li:hover .txtbox,
.gylnav .ul .li.active .txtbox {
    color: var(--themeColor);
}


/* 新底部 */
.sufnav {
    margin-right: 0;
}

.sufnav .ul .li {
    width: auto;
    margin-right: .76rem;
    margin-bottom: .72rem;
    font-size: 0.22rem;
}

.sufoot .part3 {
    border-top: none;
    margin-top: .76rem;
}

.sufoot {
    background-color: transparent;
    background-image: url(/images/sufootbg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.sufll .ph1 {
    height: .67rem;

    font-family: rr;
    font-weight: 400;
    font-size: .22rem;
    color: #333333;

}

.phbx .phitm {
    display: flex;
    margin-bottom: .27rem;
}

.phbx .phitm .ibx {
    width: .24rem;
    height: .24rem;
    margin-right: .12rem;
}

.phbx .phitm .ibx img {
    width: 100%;
    height: 100%;
}

.phbx .phitm .tbx {
    font-family: ll;
    font-weight: 300;
    font-size: .18rem;
    color: #666666;
}

.sufwx {
    margin-top: 0.67rem;
    margin-left: .82rem;
}

.sufoot .rig {
    /**margin-top: .24rem;**/
}

.sufoot {
    padding-top: 0.7rem;
}


.lianxi22 .lxList .left .li:nth-of-type(-n+3) {
    padding-top: .54rem;
    position: relative;
}

.lianxi22 .lxList .left .li .contactfs {
    position: absolute;
    top: -0.05rem;
    left: .42rem;
    font-family: HarmonyOS Sans SC;
    font-weight: 400;
    font-size: .2rem;
    color: #333333;
}

.lianxi22 .lxList {
    padding: .6rem 0;
}

.lianxi22 .lxList .right {
    justify-content: flex-start;
    margin-top: 0.1rem;
}

.baseTitle {
    display: none;
}

.newabs1 {
    width: 100%;
    height: 100vh;
}

.newabs1 {
    padding-top: 1.96rem;

}

.newabs1 .h1 {
    font-family: "syrr";
    font-weight: 500;
    font-size: .42rem;
    color: #fff;
    margin-bottom: .29rem;
}

.newabs1 .p {
    font-family: rr;
    font-weight: 400;
    font-style: Normal;
    font-size: .19rem;
    line-height: .38rem;
    text-align: justify;
    width: 11.22rem;
    max-width: 100%;
    color: #fff;
    margin-bottom: .23rem;
}

.newabs2 {
    padding: 1.04rem 0 1.27rem;
    /* background: linear-gradient(103.8deg, #F7FAFF 44.63%, #D7E4F4 100%); */
}

.newabs2 .pwidth {
    position: relative;
}

.newabs2 img {
    margin: 0;
    width: 100%;
    height: auto;
}

.newabs2 .h1 {
    position: absolute;
    top: 0;
    left: 0;
    font-family: "syrr";
    font-weight: 500;
    font-size: .48rem;
    color: var(--themeColor);
}


.lianxi22 .lxList .left .lefitem {
    width: 50%;
    border-right: 1px solid #EAEAEA;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lianxi22 .lxList .left .lefitem .lefitemm {
    display: flex;
}

.lianxi22 .lxList .left .lefitem .lefitemm .iacttit {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 .4rem;
}

.lianxi22 .lxList .left .lefitem .imgbox {
    width: .56rem;
    height: .56rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #D9D9D9;
    border-radius: 50%;
    margin-bottom: .14rem;
}

.lianxi22 .lxList .left .lefitem .imgbox img {
    width: .28rem;
    height: .28rem;
}

.lianxi22 .lxList .left .lefitem .txtbox .hhh1 {
    font-family: rr;
    font-weight: 400;
    font-size: .18rem;
    color: #333333;
    margin-bottom: .13rem;
    text-align: center;
}

.lianxi22 .lxList .left .lefitem .txtbox a {
    font-family: ll;
    font-weight: 300;
    font-size: .18rem;
    color: #70757C;
}

.lianxi22 .lxList .left .lefitem .lefh1 {
    font-family: rr;
    font-weight: 400;
    font-size: .2rem;
    color: #333333;
    margin-bottom: .31rem;
}




@media screen and (min-width:751px) {
    .pcshow {
        display: block !important;
    }

    .mbshow {
        display: none !important;
    }

    .pcshowflex {
        display: flex !important;
    }

    .mbshowflex {
        display: none !important;
    }

    .lxList {
        width: 16rem;
    }

    .abscreen {
        width: 100%;
        height: 100vh;
    }
}

@media screen and (max-width:750px) {

    .pcshow {
        display: none !important;
    }

    .mbshow {
        display: block !important;
    }

    .pcshowflex {
        display: none !important;
    }

    .mbshowflex {
        display: flex !important;
    }

    html {
        scroll-padding-top: 0;
    }

    .pwidth {
        width: 6.6rem;
    }

    .sbox .mbanner .newtit {
        font-weight: 600;
        font-size: .64rem;
        line-height: .9rem;
        color: #fff;
    }

    .sbox .mbanner .newtitdesc {
        font-weight: 400;
        font-size: .48rem;
        line-height: .9rem;
        color: #fff;
        margin-top: 0;
        width: 6.5rem;
    }

    .mbanner .swiper-slide .item>div {
        top: 4.71rem;
    }

    .mheader .inputs {
        border: none;
        left: 2rem;
    }

    #mhead .skt,
    #mhead .skt img {
        width: var(--mhlogow);
        height: var(--mhlogoh);
    }

    #mhead {
        height: var(--mhead);
    }

    .droplist {
        top: var(--mhead) !important;
    }

    .mbanner {
        width: 100vw;
        height: 100vh;
        position: relative;
    }

    .mbanner .mbs {
        width: 100%;
        height: 100%;
    }

    .mbanner .swiper-slide .item>div {
        top: auto;
        bottom: 0;
        left: 0;
    }

    .mbanner .swiper-button-next,
    .mbanner .swiper-button-prev {
        display: none;
    }


    .index_banner {
        display: none;
    }

    .index_about>.df {
        display: block;
    }

    .index_about {
        padding: 1.1rem 0 4.56rem;
    }

    .index_about .h1 {
        margin-right: 0;
        margin-bottom: .25rem;
    }

    .index_about .p {
        font-size: .24rem;
        line-height: 2;
    }

    .idxmore span {
        font-size: .24rem;
    }

    .idxmore .icon {
        width: .28rem;
        height: 0.08rem;
    }

    .abcot {
        flex-wrap: wrap;
    }

    .abcot .item {
        width: 50%;
        margin-bottom: .5rem;
    }

    .abcot .counters span {
        font-size: .24rem;
        margin-left: 0;
    }

    .abcot .h2 {
        font-size: .24rem;
        margin-top: .1rem;
    }

    .ywnav .ul .li {
        margin: 0;
        flex-direction: column;
        width: 50%;

    }

    .ywnav .ul .li .imgbox {
        width: .42rem;
        height: .42rem;
        margin-right: 0;
        margin-bottom: .19rem;
    }

    .ywnav .ul .li:hover .imgbox img,
    .ywnav .ul .li.active .imgbox img {
        transform: translateY(-100%);
        filter: drop-shadow(0 0.42rem var(--themeColor));
    }

    .ywnav .ul .li .txtbox {
        font-size: .22rem;
    }

    .ywsw {
        width: 6.6rem;
    }

    /* .yws .swiper-wrapper {
        flex-wrap: wrap;
        justify-content: space-between;
    } */

    .ywsw .swiper-slide {
        width: 3.13rem;
        margin-right: 0;
        margin-bottom: .36rem;
    }

    .ywsw .imgbox100 {
        height: 4.69rem;
    }

    .ywsw .swiper-slide:nth-of-type(5) {
        display: none;
    }

    .swiper-scrollbar-new {
        width: 6rem;
    }

    .swiper-button-next,
    .swiper-button-prev {
        position: absolute;
        bottom: auto !important;
    }

    .idx_list .swiper-slide {
        height: 6.59rem;
    }

    .idx_list .swiper-slide .imgbox100 {
        height: 3.7rem;
    }

    .idx_list .swiper-slide .txtbox {
        padding: .68rem .5rem 0;
    }

    .news_date .h1 {
        font-size: .32rem;
    }

    .news_date .h2 {
        font-size: .24rem;
    }

    .idx_list .swiper-slide .txtbox .h3 {
        font-size: .28rem;
        line-height: .48rem;
    }

    .idx_list .swiper-button-prev {
        left: 0;
    }

    .idx_list .swiper-button-next {
        right: 0;
    }

    .sufnav {
        margin-right: 0;
    }

    .sufnav .ul .li {
        margin-left: .3rem;
    }

    .sufoot .part3 .dfsb {
        display: block;
    }

    .sufoot .part3 .lef a:last-of-type {
        /* display: none; */
    }

    .sufoot .part3 .lef {
        display: flex;
        justify-content: space-between;
    }

    .sufoot .part3 .rig {
        display: flex;
    }

    .sufoot .part3 .rig .totop {
        flex: 1;
        margin: 0;
        text-align: right;
        justify-content: flex-end;
    }

    .sufwx .txtbox {
        font-size: .2rem;
        margin-top: .12rem;
    }

    .suflx .imgbox {
        width: .36rem;
        height: .36rem;
    }

    .suflx .txtbox {
        font-size: .28rem;
    }

    .sufgp span {
        font-size: .22rem;
    }

    .sufoot .part2 .dfsb {
        align-items: center;
    }

    .mlink {
        border: none;
        display: flex;
        align-items: center;
    }

    .mlink a {
        font-size: .22rem;
    }

    .mlink::after {
        font-size: .22rem;
    }

    .mlink::after {
        position: static;
        display: block;
        margin-left: .13rem;
    }

    .sufoot .part3 a,
    .sufoot .part3 span {
        font-size: .2rem;
        line-height: 2;
    }

    .sufoot .part3 span span {
        display: none;
    }

    .abs1>.df {
        display: block;
    }

    .abs1 .lef {
        margin: 0;
        margin-bottom: .45rem;
    }

    .abs1 .h4 {
        font-size: .48rem;
        margin-bottom: .22rem;
    }

    .abs1 .h3 {
        font-size: .24rem;
        line-height: 2;
    }

    .abs1 {
        padding: .83rem 0 .53rem;
    }

    .abs5 {
        padding: 1.1rem 0 1rem;
    }

    .ywlists .ul .li {
        flex-direction: column !important;
        padding: .44rem .4rem .5rem;
    }

    .ywlists .ul .li .imgbox100 {
        width: 100%;
        height: 3.55rem;
        margin-bottom: .5rem;
    }

    .ywlists .ul .li .txtbox {
        width: 100%;
    }

    .ywlists .ul .li .txtbox .h2 {
        font-size: .24rem;
        line-height: 2;
    }

    .dingding .ibox {
        width: .32rem;
        height: .32rem;
        margin-right: .23rem;
    }

    .dingding .tbox {
        font-family: rr;
        font-weight: 400;
        font-size: .24rem;
        line-height: .56rem;
        color: #5A5D61;
    }

    .ywcat {
        display: block;
    }

    .ywnnva .ol .li {
        flex-direction: column;
        align-items: center;
    }

    .ywnnva .ol .li .imgbox {
        width: .32rem;
        height: .32rem;
        margin-bottom: .13rem;
        margin-right: 0;
    }

    .ywnnva {
        height: 1.28rem;
    }

    .ywnnva .ol .li.active .imgbox img,
    .ywnnva .ol .li:hover .imgbox img {
        transform: translateY(-100%);
        filter: drop-shadow(0 0.32rem var(--themeColor));
    }

    .ywnnva .ol .li .txtbox {
        font-size: .22rem;
    }

    .fzimgs img {
        height: 1.34rem;
    }

    .fzwylists .ul .li {
        padding: .42rem 0 50px;
    }

    .fzwylists .ul .li .p,
    .fzwyppp {
        font-size: .24rem;
        line-height: 2;
    }

    .fzwylists .ul .li .ywcat .item {
        display: block;
    }





    .fzimg22 {
        flex-wrap: wrap;
    }

    .fzimg22 .imgbox {
        width: 3.1rem;
        height: 4.65rem;
    }

    .fzimg22 .txtbox {
        font-size: .24rem;
    }

    .fzimg22 .li {
        margin-bottom: 0.4rem;
    }


    .plistnav .li {
        flex-direction: column;
        align-items: center;

    }

    .plistnav .li .imgbox {
        width: .42rem;
        height: .42rem;
    }

    .plistnav .li:hover .imgbox img,
    .plistnav .li.current .imgbox img {
        transform: translateY(-100%);
        filter: drop-shadow(0 .42rem var(--themeColor));
    }

    .plistnav {
        height: 1.58rem;
    }

    .shplist .layout {
        width: 3.13rem;
        height: 4.69rem;
        margin: 0 !important;
    }

    .shplist {
        justify-content: space-between;
    }

    .shplist a .img,
    .shplist a .img img {
        height: 100% !important;
    }

    .mnav1 {
        display: none !important;
    }

    .content2 {
        padding-left: .45rem;
        padding-right: .45rem;
    }

    .suhaomap {
        width: 6.6rem;
    }

    .lianxi22 .lxList .left {
        padding: 0 .4rem;
    }

    .lianxi22 .lxList .left .li {
        padding: 0;
        display: flex;
        align-items: center;
        height: 1rem;
        border-bottom: 1px solid #EAEAEA;
    }

    .lianxi22 .lxList .right {
        margin-top: 0;
        padding: .41rem 0 .62rem;
        border: none;
    }

    .lianxi22 .lxList .left .li {
        width: 100% !important;
    }

    .lianxi22 .lxList .left .li .lxtop {
        margin-bottom: 0;
        margin-right: .13rem;
    }

    .lianxi22 .lxList .right img {
        width: 1.6rem;
        height: 1.6rem;
    }

    [backimg="/images/indexaboutbg.jpg"] {
        background-image: url(/images/mbindexaboutbg.jpg) !important;
    }

    .index_yw {
        padding-bottom: 0;
    }

    .gja {
        /**display: none;**/
    }

    #mhead .langtab {
        width: .54rem;
        height: .42rem;
        display: flex;
        justify-content: center;
        align-items: center;
        border: 1px solid #808080;
        border-radius: .5rem;
        transition: background-color .3s;
        margin-right: .25rem;
    }

    #mhead .langtab span {
        font-size: .18rem;
        color: #808080;
    }

    #mhead.mheader1 .langtab {
        border-color: #ffffff50;
    }

    #mhead.mheader1 .langtab span {
        color: #ffffff50;
    }

    .msban,
    .msban img.isdisimg {
        /* height: 5.4rem; */
        height: 1.8rem;
    }

    .ywcat .item {
        line-height: 0;
        display: block;
    }

    .abs2imglist img {
        width: 33.333333%;
        height: 3.39rem;
    }

    .newabs1 {
        padding-top: .8rem;
    }

    .newabs1 .h1 {
        text-align: center;
        margin-bottom: .24rem;
        font-size: .48rem;
    }

    .newabs1 .p {
        font-size: .24rem;
        line-height: 2;
        margin-bottom: .18rem;
    }


    .newabs2 .h1 {
        position: static;
        font-size: .48rem;
        font-weight: 500;
        margin-bottom: .46rem;
        text-align: center;
    }

    .sufll {
        display: none;
    }

    .sufoot .part2 {
        display: block;
    }

    .sufoot .part2 .lef {
        display: none;
    }

    .sufoot .part1 .lef>.sufnav {
        display: none;
    }

    .sufnav .ul .li {
        margin: 0;
    }

    .sufnav .ul {
        justify-content: space-between;
        width: 6.6rem;
    }

    .sufwx,
    .sufoot .rig,
    .sufoot .part3 {
        margin: 0;
    }


    .abcot .item {
        width: auto;
    }

    .ywsw .swiper-slide {
        display: block !important;
        position: relative;
    }

    .newfz {
        flex-direction: column;
        align-items: center;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 10;
    }

    .newfz .imgbox {
        width: .72rem;
        height: .72rem;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 0.18rem;
        border: 1px solid #D9D9D930;
        border-radius: 50%;
    }

    .newfz .imgbox img {
        width: .32rem;
        height: .32rem;
        filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(179deg) brightness(113%) contrast(101%);
    }

    .newfz .txtbox {
        font-size: .24rem;
        color: #fff;
    }

    .yws .imgbox100 img {
        filter: brightness(0.9);
    }

    .ywsw .swiper-slide::before {
        content: '';
        width: calc(100% - .14rem);
        height: calc(100% - .14rem);
        border: .01rem solid rgba(255, 255, 255, 0.3);
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 3;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .ywsw .swiper-slide:hover .newfz .imgbox img {
        filter: drop-shadow(0 .32rem var(--themeColor));

    }

    .ywsw {
        margin-top: 0;
    }

    .index_yw .idxmore {
        margin-top: 0 !important;
    }

    .fzbanner .bannertxt .h2 {
        width: 6.6rem;
        white-space: normal;

    }

    .fzbanner .bannertxt .h2 br {
        display: none;
    }

    .fzbanner .bannertxt {
        top: 9%;
    }

    .fzs2 .ul .li {
        height: 4.17rem;
    }

    .fzs3 {
        height: 11.6rem;
    }

    .fzs3list .item {
        padding: 2.12rem .45rem 0.81rem;
    }

    .fzs3 .fzs3list .item .pwidth {
        justify-content: flex-start;
    }

    .fzs3 .fzs3list .item .imgbox {
        margin-bottom: .35rem;
    }

    .fzs3 .fzs3list .item .h1 {
        font-size: .32rem;
    }

    .fzs3 .fzs3list .item .p {
        width: 100%;
        font-size: .24rem;
        line-height: .42rem;
    }

    .fzs3cat {
        margin-top: 0.3rem;

    }

    .fzs3cat .fzs3catitem .imgbox2 {
        width: .32rem;
        height: .32rem;
        margin-right: .1rem;
    }

    .fzs3cat .fzs3catitem .txtbox2 {
        font-size: .24rem;
        line-height: .54rem;
    }

    .fzs3nav .ul {
        flex-wrap: wrap;
    }

    .fzs3nav .ul .li {
        width: fit-content;
        margin-top: .48rem;
    }

    .fzs3nav .ul .li:first-of-type .imgbox::before,
    .fzs3nav .ul .li .imgbox::after {
        display: none;
    }

    .fzs3nav .ul .li .imgbox {
        width: .86rem;
        height: .86rem;
        margin-bottom: .21rem;
    }

    .fzs3nav .ul .li .imgbox img {
        width: .42rem;
        height: .42rem;
    }

    .fzs3nav .ul .li .txtbox {
        font-size: .24rem;
    }

    .fzs3nav {
        bottom: .81rem;
    }

    .fzs4 .gyllist .item .lef .imgbox {
        display: none;
    }

    .fzs4 .gyllist .item .h1 {
        display: none;
    }

    .fzs4 .gyllist .item {
        display: block;
        padding-top: .22rem;
    }

    .fzs4 .gyllist .item .p {
        width: 100%;
        font-size: 0.24rem;
        line-height: 0.42rem;
        text-align: justify;
    }

    .fzs4 .gyllist .item .rig .imgbox {
        width: 100%;
        height: 3.6rem;
        border-top-left-radius: 1.5rem;
        border-bottom-right-radius: 1.5rem;
        margin: 0;
        margin-top: .28rem;
    }

    .gyllistbox {
        padding: .18rem .4rem 0;
    }

    .gylnav .ul .li {
        display: block;
        padding: .37rem 0;
        border-bottom: 1px solid #E0E0E0;
    }

    .gylnav .ul .li:last-of-type {
        border-bottom: none;
    }


    .gylnav .ul {
        display: block;
        padding: 0;
        margin: 0;
        border: none;
    }

    .fzs4 .gyllist .item .rig .imgbox img {
        transform: none;
        filter: none;
    }

    .gylnav .ul .li .imgbox {
        width: .56rem;
        height: .56rem;
        flex-shrink: 0;
    }

    .gylnav .ul .li:hover .imgbox img,
    .gylnav .ul .li.active .imgbox img {
        filter: drop-shadow(0 .56rem var(--themeColor));
    }

    .gylnav .ul .li .txtbox {
        font-size: .32rem;
    }

    .contactfs {
        display: none;
    }

    .lianxi22 .lxList .left .li:nth-of-type(-n+3) {
        padding-top: 0;
    }

    .lianxi22 .lxList {
        padding-top: 0;
    }

    .added-div {
        margin-top: .6rem;
        font-size: .28rem;
    }

    .dands .date {
        font-size: 0.24rem;
    }

    .detailrbom p a {
        flex: 0.9;
    }

    [data-sort="5"] {
        border: none !important;
    }

    [data-sort="6"] {
        display: none !important;
    }

    .newabs1 {
        background-image: url(/images/mbnewabs1.jpg) !important;
    }

    .lianxi22 .lxList .left .lefitem {
        width: 100%;
        border-right: none;
        padding: .5rem 0;
        border-bottom: 1px solid #EAEAEA;
    }

    .lianxi22 .lxList .left .lefitem .lefitemm {
        display: block;
    }

    .lianxi22 .lxList .left .lefitem .lefh1 {
        font-size: .28rem;
    }

    .lianxi22 .lxList .left .lefitem .lefitemm .iacttit:first-child {
        margin-bottom: .3rem;
    }

    .lianxi22 .lxList .left .lefitem .txtbox .hhh1 {
        font-size: .24rem;
    }

    .lianxi22 .lxList .left .lefitem .txtbox a {
        font-size: .22rem;
    }

    .lianxi22 .lxList .left .lefitem .imgbox {
        width: .8rem;
        height: .8rem;
    }

    .lianxi22 .lxList .left .lefitem .imgbox img {
        width: .36rem;
        height: .36rem;
    }
}