.sj {
    display: none;
}

.h_bg {
    background: rgb(239, 239, 239);
}

.index_banner {
    height: 100vh;
}

.index_banner .swiper-pagination {
    bottom: 15%;
    text-align: left;
    left: 8%;
}

.index_banner .swiper-pagination-bullet {
    width: 96px;
    height: 3px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 0px;
    opacity: 1;
    position: relative;
    margin-right: 8px;
}

.index_banner .swiper-pagination-bullet i {
    background: rgba(255, 255, 255, 1);
    height: 4px;
    width: 0px;
    position: absolute;
    top: -1px;
    z-index: 3;
    transition: 4s;
}

.index_banner .swiper-pagination-bullet-active i {
    width: 100%;
}

.header {
    background: #fff;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 8;
    width: 100%;
}

.header .pd_dx {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 0px 6.82vw 0px 3.54vw;
}

.header_l img {
    display: block;
}

.header_r {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header_rl_ul {
    display: flex;
    margin-right:1vw;
}

.header_rl_ul>li {
    width: 6.82vw;
    position:relative;
    text-align:center;
}

.header_rl_ul li>a {
    color: rgb(0, 0, 0);
}

.header_rl_ul li:last-child {
    margin-right: 0.127vw;
}

.zw_show {
    position: absolute;
    top:58px;
    left: 0px;
    background: #FFFFFF;
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

.zw_show:before {
    content: "";
    position: absolute;
    top: -6px;
    left: 50%;
    margin-left: -6px;
    width: 0;
    height: 0;
    box-shadow: 2px -2px 6px rgba(0, 0, 0, 0.05);
    border-top: 6px solid #FFFFFF;
    border-right: 6px solid #FFFFFF;
    border-bottom: 6px solid transparent;
    border-left: 6px solid transparent;
    transform: rotate(-45deg);
    mix-blend-mode: multiple;
}
.zw_show a {
    z-index: 1;
    position: relative;
    background: #FFFFFF;
    padding: 16px 20px;
    color: #666;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: inherit;
    font-size: 0.833vw;
    text-decoration: none;
    font-family: 'syht';
}
.zw_show a:hover{
    background:rgb(64, 175, 157);
    color:#fff;
}

.header_rl_ul li:hover .zw_show {
    opacity: 1;
    visibility: visible;
}

.header_rr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height:80px;
}

.header_rr_div {
    width: 2.5vw;
    height: 2.5vw;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(64, 175, 157);
    border-radius: 50%;
    margin-right: 0.88vw;
}

.header_rr .header_rr_div:nth-child(1) i {
    font-size: 1.1vw;
}

.header_rr .header_rr_div:nth-child(2) i {
    font-size: 1.3vw;
}

.header_rr .header_rr_div:nth-child(3) {
    margin-right: 0px;
}

.header_rr_div i {
    color: #fff;
    font-size: 1vw;
}

.header_rr_div input,.header_rr_div textarea {
    outline: none;
    border: none;
    background-color: transparent;
    box-sizing: border-box !important;
}


.hover-block {
    display: none;
    transition: none;
}

.header_rr_div .c {
    position: absolute;
    top: 100%;
    right: 0;
    width: 19rem;
    height: 3.5rem;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
}
.header_rr_div input{
    border-color: rgba(255, 255, 255, 0.1) !important;
}
.header_rr_div input[type="submit"] {
    cursor: pointer;
    color: #104854;
    margin-left: .5rem;
}
.header_rr_div .c p{
    width: 100%;
    text-align: center;
}


.banner{
    position: relative;height: 100vh;overflow: hidden;
}


.iproduct_img {
    width: 100%;
    position: relative;
}

.iproduct_img img {
    width: 100%;
    height: 40px;
    display: block;
}

.iproduct_img {
    position: relative;
    margin-top: -40px;
    z-index: 8;
}

.scroll {
    cursor: pointer;
    position: absolute;
    bottom: 3.6%;
    left: 50%;
    margin-left: -23px;
    width: 43px;
    height: 51px;
    background: url(../images/icon/icon_12.png) center no-repeat;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-timing-function: ease-out;
    -webkit-animation-timing-function: ease-out;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-name: scrolls;
    animation-name: scrolls;
    z-index: 8;
}

.scroll.scroll_fixed {
    display: none;
}

@-webkit-keyframes scrolls {
    from {
        bottom: 3.6%;
    }

    50% {
        bottom: calc(3.6% + 12px);
    }

    100% {
        bottom: 3.6%;
    }
}

@keyframes scrolls {
    from {
        bottom: 3.6%;
    }

    50% {
        bottom: calc(3.6% + 12px);
    }

    100% {
        bottom: 3.6%;
    }
}

.iproduct_zt {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.iproduct_ztr {
    width: 448px;
    font-size: 16px;
    line-height: 2;
    color: rgb(140, 140, 140);
    text-align: right;
    letter-spacing: 1px;
}

.ititle1 {
    font-size: 20px;
    line-height: 28px;
    height: 28px;
    color: rgb(204, 204, 204);
    padding-left: 28px;
    position: relative;
}

.ititle1::before {
    content: '';
    position: absolute;
    left: 0px;
    top: 3px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgb(248, 230, 122);
}

.ititle2 {
    font-size: 44px;
    line-height: 62px;
    color: rgb(30, 30, 30);
    margin-top: 11px;
}
.ititle_img img{
    display:block;
    margin-top:20px;
}
.iproduct {
    position: relative;
    background: #fff;
    z-index: 1;
    padding-bottom: 113px;
}

.iproduct_zta {
    margin-top: 66px;
}

.iproduct_list .swiper-slide {
    background: rgb(245, 245, 245);
}

.iproduct_list1 img {
    width: 100%;
}

.iproduct_list2 {
    padding: 50px 44px;
    text-align: center;
    position: relative;
}

.iproduct_list2::after {
    content: '';
    position: absolute;
    left: 10%;
    top: 0px;
    height: 1px;
    width: 80%;
    background: rgb(202, 202, 202);
}

.iproduct_list2a {
    font-size: 18px;
    line-height: 32px;
    color: rgb(0, 0, 0);
}

.iproduct_list2b {
    font-size: 14px;
    line-height: 25px;
    color: rgb(136, 136, 136);
    padding: 9px 0px 15px;
}

.zt_content_news_ulr3.iproduct_list2c {
    margin-top: 0px;
    justify-content: center;
}


.iabout {
    position: relative;
    height: 100vh;
}

.iabout::after {
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    width: 50%;
    height: 100%;
    background: rgb(64, 175, 157);
}

.iabout::before {
    content: '';
    position: absolute;
    right: 0px;
    top: 0px;
    width: 50%;
    height: 100%;
    background: url(../images/about_right.jpeg) center no-repeat;
    background-size: cover;
}

.iabout_zt {
    position: relative;
    z-index: 1;
}

.iabout_zta {
    padding-top: 120px;
}

.iabout_zta .ititle1,
.iabout_zta .ititle2 {
    color: #fff;
}

.iabout_zta1 {
    width: 505px;
    color: rgb(255, 255, 255);
    font-size: 16px;
    line-height: 2;
    margin-top:1.5625vw;
}

.iabout_zta2 {
    width: 220px;
    line-height: 60px;
    border: 1px solid #fff;
    border-radius: 30px;
    text-align: center;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-top: 86px;
    position:relative;
    overflow: hidden;
}
.iabout_zta2::after{
    content:'';
    position:absolute;
    left:0px;
    top:0px;
    width:0px;
    height:100%;
    background:rgb(248, 230, 122);
    transition: .5s;
    z-index: -1;
}
.iabout_zta2:hover::after{
    width:100%;
}

.iabout_zta2 img {
    position: relative;
    top: 2px;
}

.iabout_ztb {
    display: flex;
    margin-top: 150px;
}

.iabout_ztb li {
    width: 25%;
    height: 156px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.iabout_ztb li.iabout_ztba:nth-child(1){
    background:rgb(243, 243, 243);
}
.iabout_ztb li a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    flex-direction: column;
}

.iabout_ztb li.iabout_ztba a {
    color: rgb(64, 175, 157);
}

.iabout_ztb li.iabout_ztba {
    background: #fff;
}

.iabout_ztb li.iabout_ztbb {
    background: rgb(64, 175, 157);
}

.xlproduct_zt {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 106px 0px 85px;
}

.xlproduct_ztr .iabout_zta2 {
    margin-top: 0px;
    border: none;
    background: rgb(64, 175, 157);
    position:relative;
    overflow: hidden;
    transition: .5s;
}
.xlproduct_ztr .iabout_zta2:hover{
    background:rgb(248, 230, 122);
}

.xlproduct_ztr .iabout_zta2:hover::after{
    width:100%;
}
.xlproduct_list_zt {
    position: relative;
    overflow: hidden;
}

.xlproduct_list {
    margin-left: calc((100% - 1480px) / 2);
}

.xlproduct_list .swiper-slide {
    position: relative;
    width: 54.84375vw;
}

.xlproduct_list1 {
    width: 100%;
}

.xlproduct_list1 img {
    width: 100%;
    display: block;
}

.xlproduct_list2 {
    position: absolute;
    bottom: 57px;
    left: 71px;
    text-align: center;
}

.xlproduct_list2b {
    font-size: 26px;
    color: rgb(255, 255, 255);
}
.zt_content_product1 img{
    display:block;
    width:100%;
}

.inews {
    margin-top: 150px;
    padding-bottom: 130px;
}

.inews_ul {
    display: flex;
    justify-content: space-between;
}

.inews_ul li {
    width: calc((100% - 100px) / 3);
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 5.14px 13.36px 30.83px 0px rgba(0, 0, 0, 0.05);
}

.inews_ul1 img {
    width: 100%;
    display: block;
}
.inews_ul li:hover .inews_ul2{
    background:rgb(64, 175, 157);
}
.inews_ul li:hover .inews_ul2b,
.inews_ul li:hover .inews_ul2c{
    color:#fff;
}
.inews_ul li:hover .zt_content_news_ulr3.inews_ul2d{
    color:#fff;
}
.inews_ul li:hover .inews_ul2a{
    background:#fff;
    color:rgb(64, 175, 157);
}
.inews_ul2a {
    position: relative;
    top: -21px;
    width: 145px;
    line-height: 42px;
    background: rgb(64, 175, 157);
    color: #fff;
    text-align: center;
    font-size: 18px;
}

.inews_ul2 {
    background: #fff;
    padding: 0px 22px 22px 22px;
}

.inews_ul2b {
    font-size: 20px;
    height: 1.5;
    color: #000;
    margin: 30px 0px 17px;
}

.inews_ul2c {
    font-size: 14px;
    color: rgb(125, 125, 125);
    line-height: 1.5;
}

.zt_content_news_ulr3.inews_ul2d {
    margin-top: 20px;
}

.zt_content_title4 {
    text-align: center;
    color: rgb(74, 74, 74);
    line-height: 2;
    font-size: 16px;
    margin: 30px auto 80px;
    width: 800px;
}

.zt_content_zlgk {
    padding-bottom: 40px;
}

.zt_content_zlgk ul {
    display: flex;
    justify-content: space-between;
}

.zt_content_zlgk ul li {
    padding: 40px 35px 66px;
    width: calc((100% - 76px) / 3);
    text-align: center;
    color: #fff;
}

.zt_content_zlgk ul li:nth-child(3) {
    color: #000;
}

.zt_content_zlgk ul li:nth-child(1) {
    background: rgb(64, 175, 157);
}

.zt_content_zlgk ul li:nth-child(2) {
    background: rgb(232, 211, 88);
}

.zt_content_zlgk ul li:nth-child(3) {
    background: rgb(248, 248, 248);
}

.zt_content_zlgk1 {
    width: 101px;
    height: 101px;
    border-radius: 50%;
    background: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.zt_content_zlgk1 img {
    display: flex;
}

.zt_content_zlgk2 {
    margin: 60px 0px 20px;
    font-size: 24px;
    line-height: 1.4;
}

.zt_content_zlgk3 {
    font-size: 16px;
    line-height: 2;
}
.zt_content_kycx {
    display: flex
;
    margin-top: 96px;
    justify-content: space-between;
}
.zt_content_kycxa {
    display: flex;
    margin-top: 96px;
    justify-content: space-between;
    flex-direction: column;
}

.zt_content_kycx .zt_content_kycx1a{
        width:100%;
        display:flex;
        margin-bottom:40px;
        font-weight:500;
}
    .zt_content_kycx .zt_content_kycx1a:nth-child(2n) {
    display: flex
;
    flex-direction: row-reverse;
}
    .zt_content_kycx .zt_content_kycx1a img{
        display:block;
    }
    .kycxl,.kycxr{
        width:50%;
        margin:0px 1%;
    }
    .zt_content_kycx .zt_content_kycx1 {
    width: calc((100% - 52px) / 2);
    display: flex
;
    flex-direction: column;
}
.zt_content_kycx .zt_content_kycx1a {
    width: 100%;
    display: flex
;
    align-items: center;
    flex-direction: row;
}

.zt_content_kycx1a {
    font-weight: 700;
    color: rgb(64, 175, 157);
    font-size: 24px;
    line-height: 1.4;
}

.zt_content_kycx1b {
    margin: 15px 0px 33px;
    min-height: 110px;
    color: rgb(74, 74, 74);
    font-size: 16px;
    line-height: 2;
}

.zt_content_kycx1c img {
    width: 100%;
}

.zt_content_cgzst {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.zt_content_cgzstl {
    position: relative;
    font-size: 36px;
    line-height: 54px;
    font-weight: 700;
    color: #000;
}

.zt_content_cgzstl::after {
    content: '';
    position: absolute;
    left: 0px;
    bottom: -16px;
    height: 4px;
    width: 60%;
    background: rgb(64, 175, 157);
}

.zt_content_cgzstr {
    position: relative;
}



.zt_content_cgzstr_x {
    display: flex;
    width: 203px;
    height: 50px;
    color: #fff;
    background: rgb(64, 175, 157);
    justify-content: space-between;
    align-items: center;
    padding: 0px 15px;
}

.zt_content_cgzstr_x img {
    position: relative;
    top: 1px;
}

.zt_content_cgzstr_ul {
    position: absolute;
    left: 0px;
    top: 50px;
    width: 100%;
    display: none;
}

.zt_content_cgzstr_ul li {
    width: 100%;
    line-height: 40px;
    background: rgba(64, 175, 157, 0.8);
    text-align: center;
    padding:0px 5px;
}

.zt_content_cgzstr_ul li a {
    color: #fff;
    font-size: 14px;
}

.zt_content_cgzsta {
    margin-top: 60px;
}

.zt_content_cgzsta img {
    width: 100%;
}

.zt_content_yxfw {
    margin-top: 100px;
}

.zt_content_hzjm {
    text-align: center;
    padding: 50px 0px;
    border-bottom: 1px solid rgb(219, 219, 219);
}

.zt_content_hzjma {
    margin-top: 80px;
}

.zt_content_kycx1b {
    min-height: unset;
}

.zt_content_hzjmb_ul.qywh_ul li {
    position: relative;
    padding: 60px 30px 60px;
    height: auto;
}

.zt_content_hzjmb .zt_content_kycx1a {
    margin: 82px 0px 48px;
}

.zt_content_hzjmb_ul li:nth-child(1) .qywh_ul1 {
    background: rgba(64, 175, 157, 0.1);
}

.zt_content_hzjmb_ul li:nth-child(2) .qywh_ul1 {
    background: rgba(175, 120, 64, 0.1);
}

.zt_content_hzjmb_ul li:nth-child(3) .qywh_ul1 {
    background: rgba(175, 64, 66, 0.1);
}

.zt_content_hzjmb_ul li:nth-child(4) .qywh_ul1 {
    background: rgba(5, 34, 179, 0.1);
}

.zt_content_hzjmb_ul .qywh_ul1 {
    width: 60px;
    height: 60px;
    border-radius: 5px;
}

.zt_content_hzjmb_ul .qywh_ul2 {
    margin: 37px 0px 11px;
}

.content {
    margin-bottom: 84px;
}

.zt_content_jsfw {
    margin-top: 60px;
}

.zt_content_jsfw li {
    background: rgb(245, 245, 245);
    padding: 30px 44px;
    margin-bottom: 24px;
}

.zt_content_jsfw li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.zt_content_jsfwl1 {
    font-size: 20px;
    font-weight: 700;
    line-height: 2;
    color: rgb(0, 0, 0);
}

.zt_content_jsfwl2 {
    font-size: 14px;
    line-height: 25px;
    color: rgb(74, 74, 74);
}

.zt_content_news_ulr3.zt_content_jsfwl3 {
    margin-top: 6px;
}

.zt_content_jsfwr {
    text-align: right;
    width: 126px;
    margin-left: 123px;
}

.zt_content_jsfwr1 {
    font-size: 20px;
    line-height: 26px;
    color: rgb(148, 148, 148);
}

.zt_content_jsfwr2 {
    font-size: 38px;
    color: rgb(166, 166, 166);
    font-family: 'Bebas';
}

.zt_content_lxwm {
    display: flex;
    justify-content: space-between;
}

.zt_content_lxwml {
    display: flex
;
    width: 552px;
    background: rgb(64, 175, 157);
    align-items: center;
}

.zt_content_lxwml li {
    margin: 0px 16px;
    height: 135px;
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    align-items: center;
}

.zt_content_lxwml li:last-child {
    border-bottom: none;
}

.zt_content_lxwml1 {
    margin-right: 20px;
}

.zt_content_lxwml2a {
    font-size: 18px;
    color: rgb(255, 255, 255);
    line-height: 40px;
}

.zt_content_lxwml2b {
    font-size: 16px;
    line-height: 32px;
    color: rgb(255, 255, 255);
}

.zt_content_lxwmr {
    width: calc(100% - 552px - 30px);
    background: rgb(245, 245, 245);
    padding: 0px 62px;
}

.zt_content_lxwmr_ul li {
    margin-top: 30px;
}

.zt_content_lxwmr_ul li input {
    width: 100%;
    line-height: 66px;
    border: none;
    border-bottom: 1px solid rgb(195, 195, 195);
    background: None;
    font-size: 16px;
    color: rgb(154, 154, 154);
    font-family: '微软雅黑';
}
.zt_content_lxwmr_ul li:last-child {
        position:relative;
    }
.zt_content_lxwmr_ul li:last-child img {
    width: 107px;
    height: 36px;
    position: absolute;
    right: 15px;
    top: 15px;
}

.zt_content_lxwmr_btn {
    width: 100%;
    line-height: 60px;
    text-align: center;
    color: rgb(255, 255, 255);
    font-size: 16px;
    background: rgb(64, 175, 157);
    margin-top: 46px;
}

.lxwm .content {
    margin-top: 60px;
}

.ditu {
    margin-top: 63px;
    border: 2px solid #fff;
}

.footer {
    position: relative;
}

.footer_top {
    cursor: pointer;
    position: absolute;
    left: 50%;
    top: 10px;
    transform: translateX(-50%);
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-timing-function: ease-out;
    -webkit-animation-timing-function: ease-out;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-name: scrollsa;
    animation-name: scrollsa;
}

@-webkit-keyframes scrollsa {
    from {
        top: 3.6%;
    }

    50% {
        top: calc(3.6% + 12px);
    }

    100% {
        top: 3.6%;
    }
}

@keyframes scrollsa {
    from {
        top: 3.6%;
    }

    50% {
        top: calc(3.6% + 12px);
    }

    100% {
        top: 3.6%;
    }
}

.footer .footer_content {
    padding: 90px 0px 70px;
    background: rgb(64, 175, 157);
}

.footer_cl {
    width: 566px;
    padding-right: 74px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.footer_img img {
    width: 100%;
    display: block;
}

.footer_c {
    display: flex;
    justify-content: space-between;
}

.footer_cl2 {
    margin-top: 64px;
}

.footer_cl2 li {
    color: rgb(255, 255, 255);
    line-height: 36px;
    font-size: 16px;
}

.footer_cr {
    position: relative;
    width: calc(100% - 566px);
    padding-left: 52px;
}

.footer_cr ul {
    display: flex;
    justify-content: space-between;
}

.footer_cr1 a {
    font-size: 16px;
    color: rgb(255, 255, 255);
    line-height: 32px;
}

.footer_cr2 {
    margin-top: 10px;
}

.footer_cr2 a {
    font-size: 14px;
    color: #fff;
    line-height: 28px;
}

.footer_cra {
    display: flex;
    position: absolute;
    right: 0px;
    bottom: 0px;
}

.footer_cra1 {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
}

.footer_cra1 img {
    display: block;
}

.footer_cra .footer_cra1:last-child {
    margin-left: 20px;
}

.footer_b {
    line-height: 50px;
    border-top: 1px solid rgb(255, 255, 255);
    background: rgb(64, 175, 157);
}

.footer_b_zt {
    display: flex;
    font-size: 14px;
    color: #fff;
    justify-content: space-between;
}

.footer_b_zt a {
    font-size: 14px;
    color: #fff;
    display: inline-block;
}

.znav {
    margin: 58px 0px 33px;
}

.w1480 {
    width: 1480px;
    margin: 0 auto;
}


.znav_zt {
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.znav_ztl {
    display: flex;
}

.znav_ztl li {
    width: 10.625vw;
    border-right: 1px solid rgb(239, 239, 239);
    text-align: center;
    line-height: 80px;
    position: relative;
}

.znav_ztl li::after {
    content: '';
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: 0px;
    height: 100%;
    width: 0px;
    background: rgba(64, 175, 157, 0.4);
    transition: all 0.3s;
}

.znav_ztl li:hover::after,
.znav_ztl li.on::after {
    left: 0px;
    right: 0px;
    width: 100%;
    background: rgba(64, 175, 157, 1);
}

.znav_ztl li:hover a,
.znav_ztl li.on a {
    color: #fff;
}

.znav_ztl li a {
    color: #000000;
    position: relative;
    z-index: 1;
}

.znav_ztr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 35px;
}

.znav_ztr div {
    margin-right: 4px;
}

.znav_ztr a {
    color: rgba(172, 172, 172, 1);
    font-size: 14px;
}

.znav_ztr img {
    position: relative;
    top: 3px;
}

.zt_content {
    background: #fff;
    padding: 3vw 2vw;
}

.zt_content_title {
    text-align: center;
}

.zt_content_title1 {
    font-size: 42px;
    color: rgb(64, 175, 157);
    line-height: 54px;
}

.zt_content_title2 {
    font-size: 42px;
    color: rgb(0, 0, 0);
    line-height: 54px;
    position: relative;
    height: 70px;
    font-weight: bold;
}

.zt_content_title2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -0px;
    height: 4px;
    width: 66px;
    background: rgb(64, 175, 157);
    transform: translateX(-50%);
}

.zt_content_gsjj {
    margin-top: 40px;
}

.zt_content_gsjj1 {
    font-size: 16px;
    line-height: 2;
    color: rgb(74, 74, 74);
    text-align: justify;
}

.zt_content_gsjj2 {
    margin-top: 32px;
    display: flex;
    justify-content: space-between;
}

.zt_content_gsjj2 li {
    width: 49%;
    background: #acacac;
}

.zt_content_gsjj2 li img {
    display: block;
    width: 100%;
}

.qywh {
    margin-top: 100px;
}

.qywh_ul {
    margin-top: 64px;
    display: flex;
    justify-content: space-between;
}

.qywh_ul1 {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: rgba(64, 175, 157, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.qywh_ul2 {
    font-size: 20px;
    line-height: 54px;
    color: rgb(0, 0, 0);
    font-weight: 700;
    margin: 18px 0px 9px;
}

.qywh_ul3 {
    font-size: 16px;
    line-height: 26px;
    color: rgb(74, 74, 74);
}

.qywh_ul li {
    width: calc((100% - 99px) / 4);
    border: 1px solid rgb(236, 236, 236);
    border-top-left-radius: 50px;
    height: 395px;
    padding: 51px 37px;
}

.qywh_ul li:hover{
    background:rgb(64, 175, 157);
}
.qywh_ul li:hover .qywh_ul1{
    background:#fff;
}
.qywh_ul li:hover .qywh_ul2,
.qywh_ul li:hover .qywh_ul3{
    color:#fff;
}

.zzry_ul {
    display: flex;
    flex-wrap: wrap;
    margin-top: 60px;
}

.zzry_ul li {
    width: 32%;
    margin-right: 2%;
    margin-bottom: 26px;
    cursor: pointer;
}

.zzry_ul li:hover .zzry_ul1 img {
    transform: scale(1.04);
}

.zzry_ul li:nth-child(3n) {
    margin-right: 0px;
}

.zzry_ul1 {
    position: relative;
    overflow: hidden;
}

.zzry_ul1 img {
    display: block;
    width: 100%;
    transition: .5s;
}

.zzry_ul2 {
    border: 1px solid rgb(236, 236, 236);
    line-height: 60px;
    text-align: center;
    margin-top: 8px;
}
.zzry_ul li:hover .zzry_ul2{
    border:1px solid rgba(64, 175, 157, 1);
    color:rgba(64, 175, 157, 1);
}

.zt_content_news_ul li{
    margin-bottom:50px;
}

.lg-object.lg-image{
    max-height:600px !important;
}

.zt_content_news_ull {
    position: relative;
    overflow: hidden;
    width: 388px;
    height: 242px;
}

.zt_content_news_ull img {
    width: 100%;
    display: block;
}

.zt_content_news_ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.zt_content_news_ulr {
    margin-left: 60px;
    width: calc(100% - 60px - 388px);
    height: 242px;
    border-bottom: 1px solid rgb(230, 230, 230);
}

.zt_content_news_ulr1 {
    font-size: 20px;
    font-weight: 700;
    line-height: 54px;
    color: #000;
}

.zt_content_news_ulr2 {
    font-size: 14px;
    line-height: 25px;
    color: rgb(74, 74, 74);
}

.zt_content_news_ulr3 {
    font-size: 14px;
    line-height: 25px;
    color: rgb(64, 175, 157);
    display: flex;
    align-items: center;
    margin-top: 40px;
}

.zt_content_product_ul {
    display: flex;
    flex-wrap: wrap;
}

.zt_content_product_ul li {
    background: rgb(245, 245, 245);
    width: 32%;
    margin-right: 2%;
    margin-bottom: 30px;
    transition: .5s;
    position: relative;
}

/*line*/
.zt_content_product_ul li .sp {
    position: absolute;
    background: rgb(64, 175, 157);
    -webkit-transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -moz-transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -o-transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: all .7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.zt_content_product_ul li .line-1 {
    left: 0%;
    top: 0%;
    width: 0%;
    height: 2px;
}

.zt_content_product_ul li:hover .line-1,
.zt_content_product_ul li:hover .line-3 {
    width: 100%;
}

.zt_content_product_ul li:hover .line-2,
.zt_content_product_ul li:hover .line-4 {
    height: 100%;
}

.zt_content_product_ul li .line-2 {
    right: 0%;
    top: 0%;
    width: 2px;
    height: 0%;
}

.zt_content_product_ul li .line-3 {
    right: 0%;
    bottom: 0%;
    width: 0%;
    height: 2px;
}

.zt_content_product_ul li .line-4 {
    left: 0%;
    bottom: 0%;
    width: 2px;
    height: 0%;
}


/*line end*/

.zt_content_product_ul li:nth-child(3n) {
    margin-right: 0px;
}

.zt_content_product2 {
    line-height: 70px;
    font-size: 16px;
    text-align: center;
    height: 70px;
    color: rgb(43, 43, 43);
    position: relative;
}

.zt_content_product2::after {
    content: '';
    position: absolute;
    width: 80%;
    height: 1px;
    background: rgb(205, 205, 205);
    left: 50%;
    top: 0px;
    transform: translateX(-50%);
}

.zt_content_product_ul li:hover .zt_content_product2 {
    color: rgb(64, 175, 157);
}

.zt_content_product_ul li:hover .zt_content_product2::after {
    background: rgb(64, 175, 157);
}

.news .zt_content {
    padding: 78px 76px;
}

.pinfoa_b_zt {
    display: flex;
    justify-content: space-between;
}

.pinfoa_b_ztl {
    width: 610px;
}

.pinfoa_b_ztl img {
    width: 100%;
    display: block;
}

.pinfoa_b_ztr {
    border: 1px solid rgb(236, 236, 236);
    width: calc(100% - 610px);
    padding: 3% 50px 0px;
}

.pinfoa_b_ztr1 {
    font-size: 36px;
    line-height: 54px;
    font-weight: 700;
    color: #000;
    position: relative;
    padding-bottom: 20px;
}

.pinfoa_b_ztr1::after {
    content: '';
    position: absolute;
    left: 0px;
    bottom: 0px;
    height: 4px;
    width: 66px;
    background: rgb(64, 175, 157);
}

.pinfoa_b_ztr2 {
    margin-top: 38px;
    font-size: 14px;
    line-height: 32px;
}

.pinfob_b h4 {
    font-size: 20px;
    font-weight: 700;
    margin-left: -10px;
    margin-bottom: 10px;
    margin-top: 46px;
}

.pinfob_b p {
    line-height: 2;
    font-size: 16px;
    color: rgb(74, 74, 74);
}

.pinfob_b img {
    display: unset;
}

.pxgcp .zt_content_title {
    margin-top: 60px;
}

.pxgcp .zt_content_product {
    margin-top: 45px;
}

.ty_banner {
    height: 600px;
    padding-top: 80px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    background-color: rgb(217, 217, 217);
}

.about_banner {
    background: url(../images/about/about_banner.jpeg) no-repeat center;
    background-size: cover;
}

.news_banner {
    background: url(../images/news/news_banner.jpg) no-repeat center;
    background-size: cover;
}

.product_banner {
    background: url(../images/product/product_banner.jpg) no-repeat center;
    background-size: cover;
}

.cxyf_banner {
    background: url(../images/banner/cxyf_banner.jpg) no-repeat center;
    background-size: cover;
}

.yxfw_banner {
    background: url(../images/banner/yxfw_banner.jpg) no-repeat center;
    background-size: cover;
}

.lxwm_banner {
    background: url(../images/banner/lxwm_banner.jpg) no-repeat center;
    background-size: cover;
}

@media screen and (max-width: 1100px) {
    .pc {
        display: none;
    }

    .sj {
        display: block;
    }

    /*header*/
    .sjheaderd {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .sjheaderd_left {
        height: 50px;
        display: flex;
        align-items: center;
    }

    .sjheaderd_left img {
        height: 36px;
        display: block;
    }

    .sjheader {
        position: fixed !important;
        top: 0;
        left: 0;
        z-index: 111;
        inset-inline-end: 0;
        inset-inline-start: 0;
        width: 100%;
        -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
        animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
        background: #fff;
        border-top: 0;
        box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.1);
    }

    .sidebar__toggle {
        cursor: pointer;
    }

    .bar-icon {
        width: 26px;
        height: 18px;
        display: -ms-flexbox;
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        overflow: hidden;
        -webkit-transition: color 0.2s ease-out;
        transition: color 0.2s ease-out;
    }

    .bar-icon span {
        width: 100%;
        height: 2px;
        background: #000;
        display: inline-block;
        -webkit-transition: color 0.2s ease-out;
        transition: color 0.2s ease-out;
    }

    .bar-icon span:nth-child(2) {
        margin-left: 0px;
    }

    .offcanvas__overlay {
        position: fixed;
        height: 100%;
        width: 100%;
        background: var(--rs-common-black);
        z-index: 900;
        top: 0;
        opacity: 0;
        visibility: hidden;
        right: 0;
    }

    .sjposition {

        transition: all 0.7s;
        position: fixed;
        z-index: 999;
        width: 100%;
        background: #fafafa;
        top: 0px;
        left: 100%;
        height: 100vh;
    }

    .sjposition.cur {
        transition: all 0.7s;
        left: 0%;
    }

    .sjposition_a {
        display: flex;
        padding: 16px 0px;
        justify-content: space-between;
        align-items: center;
    }

    .sjposition_al {
        height: 40px;
    }

    .sjposition_al img {
        height: 100%;
    }

    .sjposition_ar i {
        font-size: 30px;
    }

    .sjposition_b>ul>li {
        border-bottom: #ccc 1px solid;
    }

    .sjposition_b li .sjposition_b1>a {
        line-height: 60px;
        display: block;
        color: #333;
    }

    .sjposition_b1 {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .sjposition_b1 .more {
        position: relative;
        transform: rotate(0deg);
        width: 60px;
        height: 60px;
        margin-right: 10px;
    }

    .sjposition_b1 .more::before {
        transition: all 0.5s;
        position: absolute;
        right: 0;
        top: 50%;
        margin-top: -7px;
        width: 22px;
        height: 14px;
        background: url(../images/icon/icon_93.png) center right no-repeat;
        background-size: 100% auto;
        content: " ";
    }

    .sjposition_b1 .more.cur::before {
        transition: all 0.5s;
        transform: rotate(90deg);
        width: 22px;
    }

    .sjposition_b2 {
        display: none;
    }

    .sjposition_b2 li:first-child {
        border-top: #ccc 1px solid;
    }

    .sjposition_b2 li a {
        padding: 0 15px 0 5px;
        line-height: 50px;
        font-size: 16px;
        color: #333;
        display: block;
    }

    /*header end*/

    .w1480 {
        width: 94%;
    }

    .ty_banner {
        height: 250px;
        padding-top: 0px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        font-size: 16px;
        font-weight: 600;
        color: #fff;
    }

    .zt_content_gsjj2 {
        margin-top: 20px;
        display: flex;
        justify-content: space-between;
        flex-direction: column;
    }

    .zt_content_gsjj2 li {
        width: 100%;
        background: #acacac;
        margin-bottom: 10px;
    }

    .qywh_ul li {
        width: 49%;
        border: 1px solid rgb(236, 236, 236);
        border-top-left-radius: 50px;
        height: auto;
        padding: 30px 16px;
        margin: 5px 0px;
    }

    .qywh_ul {
        margin-top: 20px;
        display: flex;
        justify-content: space-between;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .qywh {
        margin-top: 30px;
    }

    .qywh_ul2 {
        font-size: 20px;
        line-height: 1.5;
        color: rgb(0, 0, 0);
        font-weight: 700;
        margin: 18px 0px 9px;
    }

    .qywh_ul3 {
        font-size: 14px;
        line-height: 26px;
        color: rgb(74, 74, 74);
    }

    .qywh_ul1 {
        width: 55px;
        height: 55px;
        border-radius: 50%;
        background: rgba(64, 175, 157, 0.1);
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .qywh_ul1 img {
        width: 30px;
    }

    .zt_content {
        background: #fff;
        padding: 30px 2vw;
        margin: 30px 0px;
    }

    .zt_content_title2 {
        font-size: 22px;
        color: rgb(0, 0, 0);
        line-height: 2.5;
        position: relative;
        height: auto;
    }

    .zt_content_title1 {
        font-size: 22px;
        color: rgb(64, 175, 157);
        line-height: 2;
    }

    .zt_content_gsjj {
        margin-top: 20px;
    }

    .zzry_ul {
        display: flex;
        flex-wrap: wrap;
        margin-top: 20px;
        flex-direction: column;
    }

    .zzry_ul li {
        width: 100%;
        margin-right: 0%;
        margin-bottom: 15px;
        cursor: pointer;
    }

    .zt_content_title4 {
        text-align: center;
        color: rgb(74, 74, 74);
        line-height: 2;
        font-size: 14px;
        margin: 10px auto 20px;
        width: auto;
    }

    .zt_content_lxwm {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
    }

    .zt_content_lxwml {
        width: 100%;
        background: rgb(64, 175, 157);
    }

    .zt_content_lxwmr {
        width: 100%;
        background: rgb(245, 245, 245);
        padding: 0px 20px;
    }

    .zt_content_lxwmr_ul li {
        margin-top: 10px;
    }

    .zt_content_lxwmr_ul li input {
        width: 100%;
        line-height: 50px;
        border: none;
        border-bottom: 1px solid rgb(195, 195, 195);
        background: None;
        font-size: 14px;
        color: rgb(154, 154, 154);
        font-family: '微软雅黑';
    }

    .zt_content_lxwmr_btn {
        width: 100%;
        line-height: 50px;
        text-align: center;
        color: rgb(255, 255, 255);
        font-size: 14px;
        background: rgb(64, 175, 157);
        margin-top: 15px;
    }

    .footer_cr {
        display: none;
    }

    .footer_cl {
        width: 100%;
        padding-right: 0px;
        border-right: unset;
    }

    .lxwm .content {
        margin-top: 30px;
    }

    .content {
        margin-bottom: 30px;
    }

    .footer_b_zt {
        display: flex;
        font-size: 14px;
        color: #fff;
        justify-content: space-between;
        flex-direction: column;
        text-align: center;
    }

    .footer .footer_content {
        padding: 90px 0px 30px;
        background: rgb(64, 175, 157);
    }

    .footer_b {
        padding: 10px 0px;
        line-height: 2;
        border-top: 1px solid rgb(255, 255, 255);
        background: rgb(64, 175, 157);
    }

    .footer_cl2 {
        margin-top: 10px;
    }

    .footer_cl2 li {
        color: rgb(255, 255, 255);
        line-height: 2;
        font-size: 14px;
    }

    .footer_cl1 {
        text-align: center;
    }

    .ditu {
        margin-top: 0px;
        border: 2px solid #fff;
    }

    #allmap {
        height: 300px;
        width: 100%;
    }

    .zt_content_lxwml2a {
        font-size: 14px;
        color: rgb(255, 255, 255);
        line-height: 2;
    }

    .zt_content_lxwml2b {
        font-size: 12px;
        line-height: 2;
        color: rgb(255, 255, 255);
    }

    .zt_content_lxwml li {
        margin: 0px 8px;
        height: 90px;
        display: flex;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        align-items: center;
    }

    .iproduct_zt {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-direction: column;
    }

    .ititle1 {
        font-size: 18px;
        line-height: 28px;
        height: 28px;
        color: rgb(204, 204, 204);
        padding-left: 28px;
        position: relative;
    }

    .ititle2 {
        font-size: 26px;
        line-height: 1.7;
        color: rgb(30, 30, 30);
        margin: 5px 0;
    }

    .iproduct_ztr {
        width: 100%;
        font-size: 14px;
        line-height: 1.7;
        color: rgb(140, 140, 140);
        text-align: left;
        letter-spacing: 0px;
    }

    .iproduct_zta {
        margin-top: 20px;
    }

    .iproduct_list2 {
        padding: 20px 10px;
        text-align: center;
        position: relative;
    }

    .iproduct {
        padding-bottom: 30px;
    }

    .iabout {
        position: relative;
        height: auto;
    }

    .iabout::after {
        content: '';
        position: absolute;
        left: 0px;
        top: 0px;
        width: 100%;
        height: 50%;
        background: rgb(64, 175, 157);
    }

    .iabout::before {
        content: '';
        position: absolute;
        right: 0px;
        top: unset;

        bottom: 0px;
        width: 100%;
        height: 50%;
        background: url(../images/about_right.jpeg) center no-repeat;
        background-size: cover;
    }

    .iabout_zta {
        padding-top: 30px;
    }

    .iabout_zta1 {
        width: 100%;
        color: rgb(255, 255, 255);
        font-size: 14px;
        line-height: 1.7;
    }

    .iabout_zta2 {
        width: 160px;
        line-height: 40px;
        border: 1px solid #fff;
        border-radius: 20px;
        text-align: center;
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        margin-top: 20px;
    }

    .iabout_ztb {
        display: flex;
        margin: unset;
        padding: 30px 0px;
        flex-wrap: wrap;
        margin-top: 65px;
    }

    .iabout_ztb li {
        width: 50%;
        height: 156px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .xlproduct_zt {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin: 40px 0px 20px;
        flex-direction: column;
    }

    .xlproduct_list .swiper-slide {
        position: relative;
        width: 100%;
    }

    .xlproduct_list {
        padding-left: 0px;
    }

    .xlproduct_list2 {
        position: absolute;
        bottom: 10px;
        left: 30px;
        text-align: center;
    }

    .xlproduct_list2a img {
        width: 50px;
    }

    .xlproduct_list2b {
        font-size: 14px;
    }

    .inews {
        margin-top: 40px;
        padding-bottom: 30px;
    }

    .inews_ul {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
    }

    .inews_ul li {
        width: 100%;
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        padding-bottom: 22px;
        margin-bottom: 15px;
    }

    .zt_content_product1 img {
        width: 100%;
    }

    .zt_content_product_ul {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
    }

    .zt_content_product_ul li {
        background: rgb(245, 245, 245);
        width: 100%;
        margin-right: 0%;
        margin-bottom: 15px;
        transition: .5s;
        position: relative;
    }

    .pinfoa_b_zt {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
    }

    .pinfoa_b_ztl {
        width: 100%;
    }

    .pinfoa_b_ztr {
        border: 1px solid rgb(236, 236, 236);
        width: 100%;
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .pinfoa_b_ztr1 {
        font-size: 18px;
        line-height: 1.5;
        font-weight: 700;
        color: #000;
        position: relative;
        padding-bottom: 10px;
    }

    .pinfoa_b_ztr1::after {
        content: '';
        position: absolute;
        left: 0px;
        bottom: 0px;
        height: 1px;
        width: 33px;
        background: rgb(64, 175, 157);
    }

    .pinfoa_b_ztr2 {
        margin-top: 15px;
        font-size: 14px;
        line-height: 2;
    }

    .pxgcp .zt_content_title {
        margin-top: 0px;
    }

    .pxgcp .zt_content_product {
        margin-top: 20px;
    }

    .news .zt_content {
        padding: 20px 10px;
    }

    .zt_content_news_ul li a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: column;
    }

    .zt_content_news_ull {
        position: relative;
        overflow: hidden;
        width: 100%;
        height: auto;
    }

    .zt_content_news_ulr {
        margin-left: 0px;
        width: 100%;
        height: auto;
        border-bottom: 1px solid rgb(230, 230, 230);
    }

    .zt_content_news_ulr1 {
        font-size: 20px;
        font-weight: 700;
        line-height: 1.7;
        color: #000;
        margin: 15px 0px 5px;
    }

    .zt_content_news_ulr3 {
        font-size: 14px;
        line-height: 25px;
        color: rgb(64, 175, 157);
        display: flex;
        align-items: center;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .zt_content_news_ul li {
        margin-bottom: 15px;
    }

    .zt_content_zlgk ul {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
    }

    .zt_content_zlgk ul li {
        padding: 30px 10px;
        width: 100%;
        text-align: center;
        color: #fff;
    }

    .zt_content_zlgk2 {
        margin: 30px 0px 10px;
        font-size: 24px;
        line-height: 1.4;
    }

    .zt_content_zlgk1 {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: rgb(255, 255, 255);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
    }

    .zt_content_zlgk1 img {
        width: auto;
        max-height: 30px;
    }

    .zt_content_kycx {
        display: flex;
        margin-top: 30px;
        justify-content: space-between;
        flex-direction: column;
    }

    .zt_content_kycx .zt_content_kycx1 {
        width: 100%;
        margin-bottom: 20px;
    }

    .zt_content_kycx1b {
        margin: 5px 0px 15px;
        min-height: 110px;
        color: rgb(74, 74, 74);
        font-size: 14px;
        line-height: 1.7;
    }

    .zt_content_cgzstr_x {
        display: flex;
        width: 150px;
        height: 40px;
        color: #fff;
        background: rgb(64, 175, 157);
        justify-content: space-between;
        align-items: center;
        padding: 0px 15px;
    }

    .zt_content_cgzstr_ul {
        position: absolute;
        left: 0px;
        top: 40px;
        width: 100%;
        display: none;
    }

    .zt_content_cgzstl {
        position: relative;
        font-size: 24px;
        line-height: 1.7;
        font-weight: 700;
        color: #000;
    }

    .zt_content_cgzstl::after {
        content: '';
        position: absolute;
        left: 0px;
        bottom: -5px;
        height: 2px;
        width: 50%;
        background: rgb(64, 175, 157);
    }

    .zt_content_yxfw {
        margin-top: 30px;
    }

    .zt_content_kycx1a {
        font-weight: 700;
        color: rgb(64, 175, 157);
        font-size: 18px;
        line-height: 1.4;
    }

    .zt_content_hzjm .zt_content_kycx1b {
        min-height: unset;
    }

    .zt_content_hzjm {
        text-align: center;
        padding: 30px 0px;
        border-bottom: 1px solid rgb(219, 219, 219);
    }

    .zt_content_hzjmb .zt_content_kycx1a {
        margin: 10px 0px 20px;
    }

    .zt_content_hzjmb_ul {
        flex-wrap: wrap;
    }

    .zt_content_hzjmb_ul.qywh_ul li {
        width: 100%;
    }

    .zt_content_jsfw li {
        background: rgb(245, 245, 245);
        padding: 10px 15px;
        margin-bottom: 15px;
    }

    .zt_content_jsfw li a {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-direction: column-reverse;
    }

    .zt_content_jsfwr {
        text-align: left;
        width: 100%;
        margin-left: 0px;
    }
    .index_banner img{
        width:100%;
    }
    .index_banner{
        margin-top:50px;
    }
    .index_banner,.index_banner .swiper-slide{
        height:200px;
    }
    .iproduct_img{
        display:none;
    }
    .iproduct{
        margin-top:0px;
        padding-top:30px;
    }
    .index_banner .swiper-pagination-bullet {
    width: 20px;
    height: 3px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 0px;
    opacity: 1;
    position: relative;
    margin-right: 8px;
}
.sidebar__toggle i{
    font-size:32px;
    color:#000;
}
.zt_content_news_ul li{
    margin-bottom:15px;
}
.banner{
    height:auto;
}
.zt_content_kycx .zt_content_kycx1a {
        width: 100%;
        display: flex
;
        align-items: center;
        flex-direction: column-reverse;
        margin: 20px 0px 10px;
    }
.zt_content_kycx .zt_content_kycx1a:nth-child(2n) {
    display: flex
;
    flex-direction: column-reverse;
}
.kycxl, .kycxr {
    width: 100%
;
    margin: 0px 1%;
}
}