@media screen and (min-width:960px) {
    html,body{
        min-width: 1200px;
        
    }
}
#mobileHeader{display: none;}
@media screen and (max-width:960px) {
    #mobileHeader {
        display: block;
        box-shadow: 0 0 20px rgba(0, 0, 0, .1);
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: #fff;
        z-index: 1000;
        height: 60px;
    }
    .app_logo {
        display: block;
        height: 50px;
        margin-top: 5px;
        margin-left: 8px;
    }
    .header-nav-box {position: relative;}
    .header-nav{display: none !important;}
     .menuBtn {
        width: 30px;
        cursor: pointer;
        position: absolute;
        right: 10px;
        top: 50%;
        z-index: 999;
        padding-top: 4px;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
        display: block;
    }

    .menuBtn b {
        display: block;
        height: 3px;
        background-color: #313131;
        margin-bottom: 5px;
        border-radius: 2px;
        transition: .3s;
        -ms-transition: .3s;
        -moz-transition: .3s;
        -webkit-transition: .3s;
        -o-transition: .3s
    }

    .menuBtn.open b {
        display: none;
        margin: 0;
        position: absolute;
        left: 0;
        top: 50%;
        width: 30px
    }

    .menuBtn.open b:first-child {
        display: block;
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        -ms-transform: rotate(45deg)
    }

    .menuBtn.open b:last-child {
        display: block;
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg)
    }

    .hd-r {
        /* display: none;      float: none;      position: fixed;      top: 70px;      left: 0;      right: 0;      bottom: 0;      background-color: rgba(0, 0, 0, .5);      padding: 10px 0;      overflow: hidden; */
    }

    #m_nav {
        z-index: 997;
        position: fixed;
        width: 13rem;
        height: 100vh;
        top: 0;
        display: none;
        padding: 50px 0;
        overflow: hidden;
        pointer-events: none;
        transition: all .5s .5s cubic-bezier(0.445, 0.145, 0.355, 1);
        display: block;
        overflow: auto;
        visibility: hidden;
        opacity: 0;
        transform-origin: left;
        left: auto;
        right: 0;
        pointer-events: none;
        transform: perspective(600px) rotateY(-90deg);
        transform-origin: right;
        transition: all .5s cubic-bezier(0.445, 0.145, 0.355, 1);
        -webkit-transition: all .5s cubic-bezier(0.445, 0.145, 0.355, 1);
        -moz-transition: all .5s cubic-bezier(0.445, 0.145, 0.355, 1);
        -o-transition: all .5s cubic-bezier(0.445, 0.145, 0.355, 1);
        -ms-transition: all .5s cubic-bezier(0.445, 0.145, 0.355, 1);
    }

    #m_nav.act {
        pointer-events: auto;
        top: 0;
        visibility: visible;
        opacity: 1;
        transition: all .5s cubic-bezier(0.445, 0.145, 0.355, 1);
        transform: perspective(600px) rotateY(0deg);
    }

    .nav_mask {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 996;
        background-color: rgb(20 27 62 / 45%);
        opacity: 0;
        visibility: hidden;
        -webkit-backdrop-filter: blur(2px);
        backdrop-filter: blur(2px);
        transition: .5s;
        pointer-events: none;
    }

    #m_nav.act+.nav_mask {
        opacity: 1;
        visibility: visible;
        pointer-events: inherit;
    }

    .hd-r .content {
        width: 100%;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        background-color: #fff;
        overflow: hidden;
        overflow-y: auto;
        padding-top: 50px;
    }


    .nav_m_box {
        float: left;
        margin-right: 22px
    }

    .nav_m_box li {
        float: left;
        position: relative;
        margin: 0 30px
    }

    .nav_m_box li .v1 {
        text-align: left;
        display: block;
        font-size: 16px;
        color: #313131;
        line-height: 92px;
        font-weight: 700;
        position: relative;
        overflow: hidden;
        -webkit-transition: .3s;
        -moz-transition: .3s;
        -ms-transition: .3s;
        -o-transition: .3s;
        transition: .3s
    }

    .nav_m_box li .v1:after {
        content: '';
        height: 2px;
        background-color: transparent;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 2;
        -webkit-transition: .3s;
        -moz-transition: .3s;
        -ms-transition: .3s;
        -o-transition: .3s;
        transition: .3s
    }

    .nav_m_box li.on .v1:after,
    .nav_m_box li:hover .v1:after {
        background: var(linear-gradient(135deg, #1069b2, #65b5da));
    }

    .nav_m_box li .v1 i {
        display: none;
    }

    .nav_m_box .dl1 {
        display: none;
        width: 260px;
        min-height: 375px;
        position: absolute;
        top: 92px;
        left: 0;
        background-color: #edeeef;
        padding: 39px 0 20px;
        z-index: 9999;
    }

    .nav_m_box .dl1 dd .v2 {
        display: block;
        text-align: left;
        font-size: 15px;
        color: #313131;
        line-height: 3.44em;
        position: relative;
        padding: 0 50px 0 30px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        -webkit-transition: .3s;
        -moz-transition: .3s;
        -ms-transition: .3s;
        -o-transition: .3s;
        transition: .3s
    }

    .nav_m_box .dl1 dd.ok .v2,
    .nav_m_box .dl1 dd:hover .v2 {
        color: #fff;
        background: var(--linear-gradient-g)
    }

    .nav_m_box .dl1 dd .v2 i {
        display: block;
        color: #8f9090;
        position: absolute;
        top: 50%;
        right: 33px;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
        -webkit-transition: .3s;
        -moz-transition: .3s;
        -ms-transition: .3s;
        -o-transition: .3s;
        transition: .3s
    }

    .nav_m_box .dl1 dd.ok .v2 i,
    .nav_m_box .dl1 dd:hover .v2 i {
        color: #fff
    }

    .nav_m_box .down {
        display: none;
        width: 860px;
        min-height: 375px;
        background-color: #fff;
        position: absolute;
        top: 0;
        left: 100%;
        padding: 38px 35px 20px 40px;
        overflow: hidden
    }

    .nav_m_box .down .tit {
        border-bottom: 1px solid #e5e8ec;
        padding-bottom: 21px;
        overflow: hidden
    }

    .nav_m_box .down .tit h3 {
        float: left;
        font-size: 16px;
        color: #313131;
        line-height: 1.33em;
        overflow: hidden
    }

    .nav_m_box .down .tit a {
        display: block;
        float: right;
        font-size: 14px;
        color: #7e7e7e;
        line-height: 1.71em;
        margin-left: 10px;
        overflow: hidden;
        -webkit-transition: .3s;
        -moz-transition: .3s;
        -ms-transition: .3s;
        -o-transition: .3s;
        transition: .3s
    }

    .nav_m_box .down .tit a:hover {
        color: var(--color)
    }

    .nav_m_box .down .box {
        margin: 25px -7px 0;
        overflow: hidden
    }

    .nav_m_box .down .box .item {
        float: left;
        width: 25%;
        padding: 0 7px;
        margin-bottom: 14px;
        overflow: hidden
    }

    .nav_m_box .down .box .item a {
        display: block;
        font-size: 15px;
        color: #4e4e4e;
        line-height: 3em;
        text-align: center;
        border: 1px solid #dcdcdf;
        border-radius: 3px;
        overflow: hidden;
        -webkit-transition: .3s;
        -moz-transition: .3s;
        -ms-transition: .3s;
        -o-transition: .3s;
        transition: .3s
    }

    .nav_m_box .down .box .item a:hover {
        color: #fff;
        background: var(--linear-gradient-g);
        border-color: transparent
    }

    .nav_m_box .down .box2 {
        margin: 20px 35px 20px 0
    }

    .nav_m_box .down .box2 .item {
        float: left;
        width: 20%;
        padding-right: 9px;
        margin-bottom: 9px;
        overflow: hidden
    }

    .nav_m_box .down .box2 .item a {
        display: block;
        background-color: #fff;
        position: relative;
        overflow: hidden
    }

    .nav_m_box .down .box2 .pic {
        height: 70px;
        border: 1px solid #e5e8ec;
        overflow: hidden
    }

    .nav_m_box .down .box2 .pic img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover
    }

    .nav_m_box .down .box2 h3 {
        font-size: 15px;
        color: #fff;
        line-height: 70px;
        text-align: center;
        font-weight: 400;
        background: var(--linear-gradient-g);
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        overflow: hidden;
        opacity: 0;
        filter: alpha(opacity=0);
        filter: alpha(Opacity=0);
        -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=0)';
        -webkit-transition: .3s;
        -moz-transition: .3s;
        -ms-transition: .3s;
        -o-transition: .3s;
        transition: .3s
    }

    .nav_m_box .down .box2 a:hover h3 {
        opacity: 1;
        filter: alpha(opacity=100);
        filter: alpha(Opacity=100);
        -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)'
    }

    .nav_m_box .dl2 {
        display: none;
        width: 154px;
        position: absolute;
        top: 92px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
        background-color: #fff;
        border-radius: 10px;
        padding: 10px 5px;
        -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .05);
        -moz-box-shadow: 0 0 10px rgba(0, 0, 0, .05);
        -ms-box-shadow: 0 0 10px rgba(0, 0, 0, .05);
        -o-box-shadow: 0 0 10px rgba(0, 0, 0, .05);
        box-shadow: 0 0 10px rgba(0, 0, 0, .05)
    }

    .nav_m_box .dl2 dd a {
        display: block;
        font-size: 15px;
        color: #666;
        line-height: 2.67em;
        text-align: center;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        -webkit-transition: .3s;
        -moz-transition: .3s;
        -ms-transition: .3s;
        -o-transition: .3s;
        transition: .3s
    }

    .nav_m_box .dl2 dd:hover a {
        color: var(--color)
    }

    .m_nav_list {
        display: none;
    }
     .m_nav_pclist {
        display: flex;
        justify-content: space-between;
    }

    .none {
        display: none;
    }

    .nav_m_box {
        float: none;
        margin-right: 0;
        margin-bottom: 10px
    }

    .nav_m_box li {
        float: none;
        margin: 0 20px;
    }

    .nav>ul>li+li {
        border-top: 1px solid rgb(90 90 90 / 10%);
    }

    .nav_m_box li .tit {
        position: relative;
        overflow: hidden;
    }

    .nav_m_box li .v1 {
        font-size: 1rem;
        line-height: 45px;
        padding: 0 10px;
        position: relative;
    }

    .nav_m_box li.on .v1,
    .nav_m_box li:hover .v1 {
        color: var(--color)
    }

    .nav_m_box li .v1:after {
        display: none
    }

    .nav_m_box li .tit i {
        display: block;
        width: 45px;
        height: 45px;
        background: url(../images/icon7.png) no-repeat center center;
        -webkit-background-size: 30px auto;
        -moz-background-size: 30px auto;
        -ms-background-size: 30px auto;
        -o-background-size: 30px auto;
        background-size: 30px auto;
        position: absolute;
        top: -5%;
        right: 0;
        /* -webkit-transform: translateY(-50%);      -ms-transform: translateY(-50%);      -o-transform: translateY(-50%);      transform: translateY(-50%); */
    }

    .nav_m_box .dl1,
    .nav_m_box .dl2 {
        width: auto;
        min-height: 0;
        background: 0 0;
        position: static;
        padding: 5px 0
    }

    .nav_m_box .dl1 dd .v2 {
        font-size: .875rem;
        line-height: 40px;
        padding: 0 10px
    }

    .nav_m_box .dl1 dd .v2 i {
        display: none
    }

    .nav_m_box .dl1 dd.ok .v2,
    .nav_m_box .dl1 dd:hover .v2 {
        color: var(--color);
        background: 0 0
    }

    .nav_m_box .down {
        display: none
    }

    .nav_m_box .dl2 {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
        border-radius: 0;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        -ms-box-shadow: none;
        -o-box-shadow: none;
        box-shadow: none
    }

    .nav_m_box .dl2 dd a {
        font-size: 13px;
        line-height: 40px
    }

    .lang_list img {
        display: block;
        width: 50px;
        margin-right: 8px;
    }

 .m_nav_list {
        display: block !important;
    }

    #m_nav {
        z-index: 997;
        position: fixed;
        width: 60%;
        height: 100vh;
        top: 0;
        display: none;
        padding: 50px 0;
        overflow: hidden;
        pointer-events: none;
        transition: all .5s .5s cubic-bezier(0.445, 0.145, 0.355, 1);
        display: block;
        overflow: auto;
        visibility: hidden;
        opacity: 0;
        transform-origin: left;
        left: auto;
        right: 0;
        pointer-events: none;
        transform: perspective(600px) rotateY(-90deg);
        transform-origin: right;
        transition: all .5s cubic-bezier(0.445, 0.145, 0.355, 1);
        -webkit-transition: all .5s cubic-bezier(0.445, 0.145, 0.355, 1);
        -moz-transition: all .5s cubic-bezier(0.445, 0.145, 0.355, 1);
        -o-transition: all .5s cubic-bezier(0.445, 0.145, 0.355, 1);
        -ms-transition: all .5s cubic-bezier(0.445, 0.145, 0.355, 1);
    }

    #m_nav.act {
        pointer-events: auto;
        top: 0;
        visibility: visible;
        opacity: 1;
        transition: all .5s cubic-bezier(0.445, 0.145, 0.355, 1);
        transform: perspective(600px) rotateY(0deg);
    }

    .nav_mask {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 996;
        background-color: rgb(20 27 62 / 45%);
        opacity: 0;
        visibility: hidden;
        -webkit-backdrop-filter: blur(2px);
        backdrop-filter: blur(2px);
        transition: .5s;
        pointer-events: none;
    }

    #m_nav.act+.nav_mask {
        opacity: 1;
        visibility: visible;
        pointer-events: inherit;
    }

    .hd-r .content {
        width: 100%;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        background-color: #fff;
        overflow: hidden;
        overflow-y: auto;
        padding-top: 50px;
    }

    .nav_m_box {
        float: none;
        margin-right: 0;
        margin-bottom: 10px
    }

    .nav_m_box li {
        float: none;
        margin: 0 20px;
        border-bottom: 1px solid #ccc;
    }

    .nav>ul>li+li {
        border-top: 1px solid rgb(90 90 90 / 10%);
    }

    .nav_m_box li .tit {
        position: relative;
        overflow: hidden;
    }

    .nav_m_box li .v1 {
        font-size: 16px;
        line-height: 45px;
        padding: 0 10px;
        position: relative;
    }

    .nav_m_box li.on .v1,
    .nav_m_box li:hover .v1 {
        color: var(--color)
    }

    .nav_m_box li .v1:after {
        display: none
    }

    .nav_m_box li .tit i {
        display: block;
        width: 45px;
        height: 45px;
        background: url(../images/icon7.png) no-repeat center center;
        -webkit-background-size: 30px auto;
        -moz-background-size: 30px auto;
        -ms-background-size: 30px auto;
        -o-background-size: 30px auto;
        background-size: 30px auto;
        position: absolute;
        top: -5%;
        right: 0;
        /* -webkit-transform: translateY(-50%);      -ms-transform: translateY(-50%);      -o-transform: translateY(-50%);      transform: translateY(-50%); */
    }

    #m_nav li.ons.title i {
        transform: rotate(90deg);
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
    }


    .nav_m_box .dl1,
    .nav_m_box .dl2 {
        width: auto;
        min-height: 0;
        background: 0 0;
        position: static;
        padding: 5px 0
    }

    .nav_m_box .dl1 dd .v2 {
        font-size: 15px;
        line-height: 35px;
        padding: 0 10px
    }

    .nav_m_box .dl1 dd .v2 i {
        display: none
    }

    .nav_m_box .dl1 dd.ok .v2,
    .nav_m_box .dl1 dd:hover .v2 {
        color: var(--color);
        background: 0 0
    }

    .nav_m_box .down {
        display: none
    }

    .nav_m_box .dl2 {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
        border-radius: 0;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        -ms-box-shadow: none;
        -o-box-shadow: none;
        box-shadow: none
    }

    .nav_m_box .dl2 dd a {
        font-size: 13px;
        line-height: 40px
    }

    .t-con{display: none !important;}
}
.app_block{display: none;}
@media screen and (max-width: 960px) {
    .ny-content{padding: 0;}
    .foot_nn{height: 56px;}
    .fixedBot{display: block;}
    .app_h{height: 60px;}
    .navToggle{float: right;margin-top: 6px;}
    .top,.t-con .r-tel{display: none;}
    
    .t-con{padding:10px;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        border-bottom: 1px solid #efefef;
        z-index: 1000;
    }
    .t-con .logo{height: 40px;}
    .t-con .logo .txt{margin-left: 10px;padding-left: 10px;}
    .t-con .logo h5{font-size: 16px;}
    .t-con .logo .txt p{font-size: 8.4px;}
    .w1200{width: 96%;}
	.top_closed{display: flex;justify-content: flex-end;padding-right: 20px;padding-top: 10px;}
    .pc_block{display: none !important;}
    .app_block{display: block !important;}
    .header-box{height: 53px !important;}
    .header{background-color: #fff !important;}
    .header-left{width: 90%;height: 60px;padding: 5px 0;}
    .header .logo{height: 100% !important;}
    .navToggle img{height: 24px;display: block;margin: auto;}
    .m_nav{
        position: fixed;
        top: 0px;
        box-shadow: 0 15px 27px 0 rgba(167,165,165,0.38);
        width: 100%;
        height: 100%;
        background: #fff;
        transition: all ease 0.5s;
        -webkit-transition: all ease 0.5s;
        opacity: 1;
        visibility: visible;
        margin-top: 0;
        overflow-y: auto;
        transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
        top:   0;
        right: -100%;
        /*transform: translateX(100%);
        */visibility: hidden;
        -moz-transition: all ease 0.5s;
        -ms-transition: all ease 0.5s;
        -o-transition: all ease 0.5s;
        z-index: 100000;
}
    .m_nav.open{
        transform: translateX(0);
        right: 0;
        z-index: 1000;
        visibility: visible;
        transition: all ease 0.5s;
    }
    .m_nav .top{
        height: 50px;
        padding: 10px;
        box-sizing: border-box; 
    }
    .m_nav .top .closed{
        width: 30px;
        height: 30px;
        vertical-align: middle;
        float:right;
        cursor: pointer;
    }
    .m_nav .m_logo{
        width: 100%;
        margin:0 auto;
    }
    .m_nav .m_logo img{
        
        display: block;
        height: 100px;
        margin:.2rem auto;
    }
    
    .m_nav .ul li{
        padding: 0 20px;
        border-bottom: 1px solid #f5f5f5;
        transform: translateY(0);
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
        -webkit-transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
        transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
        opacity: 0;
    }
    .m_nav.open .ul li{
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
        position: relative;
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
    }
    
    .m_nav .ul li:nth-child(1) {
        -webkit-transition: all .2s cubic-bezier(.77, 0, .175, 1) 0ms;
        transition: all .2s cubic-bezier(.77, 0, .175, 1) 0ms;
    }
    .m_nav .ul li:nth-child(2) {
        -webkit-transition: all .4s cubic-bezier(.77, 0, .175, 1) 0ms;
        transition: all .4s cubic-bezier(.77, 0, .175, 1) 0ms;
    }
    .m_nav .ul li:nth-child(3) {
        -webkit-transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
        transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
    }
    .m_nav .ul li:nth-child(4) {
        -webkit-transition: all .8s cubic-bezier(.77, 0, .175, 1) 0ms;
        transition: all .8s cubic-bezier(.77, 0, .175, 1) 0ms;
    }
    .m_nav .ul li:nth-child(5) {
        -webkit-transition: all 1.0s cubic-bezier(.77, 0, .175, 1) 0ms;
        transition: all 1.0s cubic-bezier(.77, 0, .175, 1) 0ms;
    }
    .m_nav .ul li:nth-child(6) {
        -webkit-transition: all 1.2s cubic-bezier(.77, 0, .175, 1) 0ms;
        transition: all 1.2s cubic-bezier(.77, 0, .175, 1) 0ms;
    }
    .m_nav .ul li a{
        display: block;
        text-decoration: none;
        color: #333 !important;
        font-size: 16px;
        line-height: 40px;
        width: 100%;
    }
    .m_nav .ul li span{
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        z-index: 1000;
        width: 50px;
        height: 40px;
        font-size: 20px;
        text-align: center;
        text-align: center;
        background: url(../images/icon_add.png) no-repeat center center;
        background-size: auto 20px;
    
    }
    .m_nav .ul li span.active{
        background: url(../images/icon_reduce.png) no-repeat center center;
        background-size: auto 20px;
    }
    .m_nav.open .ul .P_active{
        background-color: var(--main-color);
    }
    .m_nav.open .ul .P_active .p_a{
        color: #fff !important;
    }
    .m_nav.open .ul .P_active span{
        background: url(../images/icon_add_a.png) no-repeat center center;
        background-size: auto 20px;
    }
    .m_nav.open .ul .P_active span.active{
        background: url(../images/icon_reduce_a.png) no-repeat center center;
        background-size: auto 20px;
    }
    .m_nav .ul li .dropdown_menu{
        display: none;
    }
    .m_nav .ul li.dropdown.active .dropdown_menu{
        display: block;
    }
    .m_nav .ul li .dropdown_menu a{
        display: block;
        line-height: 40px;
        padding: 0 20px;
        box-sizing: border-box;
        border-bottom: 1px solid #f5f5f5;
        position: relative;
    }
    .m_nav .ul li .dropdown_menu a:last-child{
        border: none;
    }
    .m_nav .ul li .dropdown_menu a::after{
        content: '';
        width: 10px;
        height: 3px;
        background-color: var(--main);
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
    }
    .m_nav.open .ul .P_active .dropdown_menu a{
        color: #fff !important;
    }

    .c-1{
        padding: 30px 0;
    }
    .title {
        font-size: 22px;
        margin-bottom: 15px;
    }
    .title i {
        margin-top: 0px;
        margin-bottom: 0px;
    }
    .title p {
        width: 100%;
        font-size: 14px;
        color: #505050;
        font-weight: normal;
        line-height: 20px;
    }
  
    .c-1 .ipro-type dl{
        width: 48%;
        height: 200px;
        margin: 0 !important;
    }
    .c-1 .ipro-type dl:first-child{
        margin-right: 4% !important;
    }
    .c-1 .ipro-type dl dd {
        width: 100%;
        margin: 0;
        padding: 20px  10px;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
    }
    .c-1 .ipro-type dl dd h5 {
        font-size: 18px;
        color: #ffffff;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .c-1 .ipro-type dl dd p {
        font-size: 15px;
        line-height: 24px;
        opacity: .8;
        -webkit-line-clamp: 2;
        margin: 10px 0 10px ;
        width: 100%;
    }
    .c-1 .ipro-type dl dd a {
        width: 100px;
        height: 30px;
        font-size: 12px;
        line-height: 30px;
    }
    .c-1 ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-bottom: 20px;
        margin-top: 20px;
    }

  .c-1 ul .img {
    height: 125px;
    overflow: hidden;
}
.c-1 ul .txt {
    font-size: 16px;
    padding: 6px 15px;

}
.cont2-c-l-t .cc{display: none !important;}
    .cont3-wz ul li {
        float: left;
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
        background: url(../images/bro.png) no-repeat right center;
    }
    .cont3-wz ul{
        width: 100%;
        margin: 0;
    }
    .cont3-wz ul li:nth-child(2n){
        background: transparent;
    }
    .cont3-wz-box{
        position: static;
        background: var(--linear-gradient-g);
        padding: 15px 0;
    }
    .cont3-wz ul li span strong {
        font-size: 30px;
    }
    .cont3-wz ul li em {
        font-size: 16px;
    }
    .szgd img{display: none;}
    .p60{padding-top: 30px;}
    .cont2-c-l{display: flex;flex-wrap: wrap; flex-direction: column-reverse;}
    .cont2-c-l .cont2-c-l-m{width: 100%;float: none;}
    .cont2-c-l-t{
        padding-left: 0;
        width: 100%;float: none;
    }
    .cont2-c-l-t h4 {
        font-size: 22px;
        margin-top: 0px;
        margin-right: 6px;
    }
    .cont2-c-l-t em {
        display: block;
        font-size: 18px;
        color: #00a0e9;
        font-weight: 100;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .cont2-c-l-t .cc{padding-left: 60px; position: relative; display: flex;align-items: center;}
    .cont2-c-l-t p {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 10px;
        display: block;
    }
    .cont2-c-l-t i {
        display: block;
        width: 50px;
        height: 1px;
        background-color: #00a0e9;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    .cont2-c-l-t a {
        display: block;
        font-size: 14px;
        color: #fff;
        width: 135px;
        height: 30px;
        background: #3fb135;
        text-align: center;
        line-height: 30px;
        margin: 20px 0;
    }
    .c-3{
        padding: 30px 0;
        background-size: cover;
    }
    .c-3 .icase-list dl{
        width: 48%;
        margin-right: 4%;
    }
    .c-3 .icase-list dl:nth-child(2n){
        margin-right: 0;
    }
    .c-3 .icase-list dl dt {
        width: 100%;
        height: 120px;
    }
    .c-4 .inews-list .inew-0{
        width: 100%;
    }
    .c-4 .inews-list .inew-0 .bot-list dl dt{
        width: 20%;
        height: 60px;
    }
    .c-4 .inews-list .inew-0 .bot-list dl{
        padding: 10px 0;
    }
    .c-4 .inews-list .inew-0 .bot-list dl dd h6 {
        font-size: 16px;
        margin: 0;
    }
    .c-4 .inews-list .inew-0 .bot-list dl dd,
    .c-4 .inews-list .inew-0 .bot-list dl dt
    {
        float: none;
        display: block;
    }
    .c-4 .inews-list .inew-0 .bot-list dl a{
        display: flex;
        align-items: center;
        
    }
    .c-4 .inews-list .inew-0 .bot-list dl dd p{
        -webkit-line-clamp: 2;
    }
    .c-4 .inews-list .inew-0 .bot-list dl dd{
        width: 72%;
        padding-left: 3%;
    }
    .c-4 .inews-list .ii_n0 dl{display: block;}
    .c-4 .inews-list .top-title{display: none;}
    .footer{padding: 30px 10px;}
    .footer .f-ewm{display: none;}
    .footer .f-contact{width: 100%;}
    .footer .f-form{width: 100%;}
    .c-4 .inews-list .inew-1{display: none;}
    .footer .f-contact .c-icon h5{
        font-size: 14px;
        margin-top: 6px;
        padding-left: 35px;
        line-height: 25px;
        background-size: auto 25px !important;
    }
    .c-4 .inews-list  dl dd{
    width: calc(100% - 100px);
   
}
    .footer .f-contact .title p{
        font-size: 18px;
    }
    .footer .f-form h5{
        font-size: 18px;
        margin-top: 4px;
    }
    .footer .f-contact .title{margin-bottom: 0;}
    .margin-t-30{margin-top: 10px;}
    .footer .f-form .bot-form{
        margin-top: 15px;
    }
    .ny-content .type-r .content-title span,
    .p_class_menu
    {
        display: none;
    }
    .ny-content .w1200{
        flex-flow: column-reverse;
    }
    .ny-content .type-r{
        width: 100%;
    }
    .p_p_left .b_txt h2 {
        font-size: 18px;
    }
    .p_p_left .b_txt h2 {
        font-size: 18px;
    }
    .p_p_left .b_txt{
        padding: 8px 20px;
    }
    .p_p_left .b_txt p {
        font-size: 12px;
    }
    .introduce .intro-text em{
        width: auto !important;
        height: auto !important;
        padding-bottom: 0 !important;
    }
    .introduce .intro-text img{
        display: block;
        max-width: 100% !important;
        width: auto !important;
        /* height: auto !important; */
        /* position: static !important; */
    }
    .message .bb{
        width: 100%;
    }
    .message .bb input {
        width: 58%;
    }
    .message .bb .error-msg {
        right: 145px;
    }
    .introduce .intro-text p,
.introduce .intro-text span,
.introduce .intro-text a,
.introduce .intro-text h1,
.introduce .intro-text h2,
.introduce .intro-text h3,
.introduce .intro-text h4,
.introduce .intro-text h5,
.introduce .intro-text em,
.introduce .intro-text strong{
    font-size: 16px !important;
    font-family: '宋体' !important;
    line-height: 1.8 !important;
}
    .ny-content .type-r .pro-list {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 20px;
    }
    .ny-content .type-r .pro-list{

    }
    .introduce .intro-con h2 {
        font-size: 20px;
        margin-bottom: 4px;
    }
    .introduce .intro-con span {
        font-size: 14px;
    }
    .p_p_left{
        margin-right: 0;
    }
    .thumblist1 .item{
        border: 1px solid #efefef;
        background-color: #fff;
        padding: 15px !important;
        margin-bottom: 10px;
    }
    .introduce .intro-con {
        padding-bottom: 10px;
    }
    .thumblist1 .item {
        padding: 15px 0;
    }
    .thumblist1 .item .img{
        width: 100%;
        margin-bottom: 6px;
        margin-right: 0;
    }
    .thumblist1 .item .txt h3 {
        font-size: 17px;
        line-height: 25px;
    }
    .thumblist1 .item .txt .desc {
        padding-top: 4px;
        line-height: 20px;
        margin-bottom: 8px;
    }
    .thumblist1 {
        margin-bottom: 8px;
    }
    .about_new_list li .newTitle1, .ranking_new_list li .newTitle1{
        font-size: 16px;
    }
    .ranking_new_list li, .share_box li {
        padding: 10px 10px;
    }
    .ranking_new_list li span {
        display: block;
        width: 25px;
        height: 25px;
        line-height: 25px;
    }
    .ranking_new_list .newTitle1 {
        width: calc(100% - 40px);
        line-height: 30px !important;
    }
    .ty_more {
        margin-top: 20px;
        text-align: center;
    }    
    .c-6-1{margin-top: 30px;}
    .c-6-1 ul{margin-bottom: 30px;}
    .c-6 ul li{width: 49%;padding: 20px;margin-bottom: 8px !important;}
    .c-6 ul li img {
        height: 40px;
    }
    .c-6 ul li h2 {
        font-size: 16px;
        margin-top: 15px;
        margin-bottom: 6px;
    }
    .c-6 ul li  p{
        font-size: 14px;
    }
    .c-6 ul li h2::before {
        right: 0px;
    }
    .c-6 ul li h2::after {
        left: 0px;
    }
.SDTX_LIST{
    flex-wrap: wrap;
}
    .SDTX_LIST li{
    width: 100%;
    margin-bottom: 10px;
}
.SDTX_LIST .img{
    height: 160px;

}
.sdtx {
    padding: 30px 0;
}
.SDTX_LIST .txt h5{
    font-size: 17px;
    color: #333;
    line-height: 26px;
}
.SDTX_LIST i{
    height: 2px;
    margin: 6px 0;
}

.why .center{
    position: static;
    height: auto;
    width: 100%;
    border-radius: 2%;
    transform: unset;
    overflow: hidden;
    margin-bottom: 15px;
}
.c-1 ul .txt{
    background: none;
}
.why .dw_relative{
    height: auto;
}
.why .item{
    position: static;
    width: 100%;
}

.c-4 .inews-list  dl{
    width: calc(100% - 30px);
    padding:20px 0 15px 0;
    border-bottom: 1px solid #ebebeb;
    overflow: hidden;
}
.c-4 .inews-list  dl dt{
    width: 100px;
    height: 90px;
    overflow: hidden;
    margin-right: 10px;
    border-radius: 10px;
}
.c-4 .inews-list  dl dt img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: .4s;
}
.news_list a{
    width: 100%;
    border: 1px solid #f1f1f1;
    border-radius: 6px;
    box-shadow: 0 0 20px  rgba(0, 0, 0, .2);
    margin-bottom: 15px;
    overflow: hidden;
}
.news_list .img{
    height: 150px;
}
.message form {
    margin-top: 0px;
}
.introduce {
    background: #fff;
    margin: 15px 0 10px 0;
    padding: 10px;
}
}
