@-webkit-keyframes test {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0)
    }

    50% {
        -webkit-transform: translate(0, 5px);
        transform: translate(0, 5px)
    }

    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0)
    }
}

@keyframes mymove {
    0% {
        top: 0px;
    }

    50% {
        top: 30px;
    }

    100% {
        top: 0px;
    }
}

@-webkit-keyframes mymove

/* Safari and Chrome */
    {
    0% {
        top: 0px;
    }

    50% {
        top: 30px;
    }

    100% {
        top: 0px;
    }
}



@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes warn {
    0% {
        transform: scale(0.3);
        -webkit-transform: scale(0.3);
        opacity: 0.0;
    }

    25% {
        transform: scale(0.3);
        -webkit-transform: scale(0.3);
        opacity: 0.1;
    }

    50% {
        transform: scale(0.5);
        -webkit-transform: scale(0.5);
        opacity: 0.3;
    }

    75% {
        transform: scale(0.8);
        -webkit-transform: scale(0.8);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        -webkit-transform: scale(1);
        opacity: 0.0;
    }
}

@keyframes warn {
    0% {
        transform: scale(0.3);
        -webkit-transform: scale(0.3);
        opacity: 0.0;
    }

    25% {
        transform: scale(0.3);
        -webkit-transform: scale(0.3);
        opacity: 0.1;
    }

    50% {
        transform: scale(0.5);
        -webkit-transform: scale(0.5);
        opacity: 0.3;
    }

    75% {
        transform: scale(0.8);
        -webkit-transform: scale(0.8);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        -webkit-transform: scale(1);
        opacity: 0.0;
    }
}

@-webkit-keyframes warn1 {
    0% {
        transform: scale(0.3);
        -webkit-transform: scale(0.3);
        opacity: 0.0;
    }

    25% {
        transform: scale(0.3);
        -webkit-transform: scale(0.3);
        opacity: 0.1;
    }

    50% {
        transform: scale(0.3);
        -webkit-transform: scale(0.3);
        opacity: 0.3;
    }

    75% {
        transform: scale(0.5);
        -webkit-transform: scale(0.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(0.8);
        -webkit-transform: scale(0.8);
        opacity: 0.0;
    }
}

@keyframes warn1 {
    0% {
        transform: scale(0.3);
        -webkit-transform: scale(0.3);
        opacity: 0.0;
    }

    25% {
        transform: scale(0.3);
        -webkit-transform: scale(0.3);
        opacity: 0.1;
    }

    50% {
        transform: scale(0.3);
        -webkit-transform: scale(0.3);
        opacity: 0.3;
    }

    75% {
        transform: scale(0.5);
        -webkit-transform: scale(0.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(0.8);
        -webkit-transform: scale(0.8);
        opacity: 0.0;
    }
}

@-webkit-keyframes warn {
    0% {
        transform: scale(0);
        -webkit-transform: scale(0);
        opacity: 0.0;
    }

    25% {
        transform: scale(0);
        -webkit-transform: scale(0);
        opacity: 0.1;
    }

    50% {
        transform: scale(0.1);
        -webkit-transform: scale(0.1);
        opacity: 0.3;
    }

    75% {
        transform: scale(0.5);
        -webkit-transform: scale(0.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        -webkit-transform: scale(1);
        opacity: 0.0;
    }
}


/*英文样式*/
.font_en {
    font-family: Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    font-weight: normal;
}



/*公共标题样式*/
.g-titb1 {
    text-align: center;
}

.g-titb1 p {
    font-size: 40px;
    color: #222;
    margin-bottom: 4px;
}

.g-titb1 p b {
    color: #064893;
}

.g-titb1 span {
    font-size: 18px;
}









/*幻灯片*/
.banner {
    max-height:958px;
    overflow: hidden;
    position: relative;
    margin-top: -100px;
}

.banner .item img {
    display: block;
    width: 100%;
}

.banner .slick-arrow {
    font-size: 0;
    text-indent: 9999px;
    z-index: 5;
    cursor: pointer;
    outline: 0;
    top: 50%;
    border: none;
    margin-top: -52px;
    background-position: 0 0;
    background-color: transparent;
    background-repeat: no-repeat;
    background-image: url(../images/20201126100325_1671150766.png);
    width: 49px;
    height: 104px;
    position: absolute;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.banner .slick-prev {
    left: -54px;
}

.banner .slick-next {
    right: -54px;
    background-position: -49px 0;
}

.banner:hover .slick-prev {
    left: 54px;
    filter: alpha(opacity=40);
    -moz-opacity: .4;
    -khtml-opacity: .4;
    opacity: .4;
}

.banner:hover .slick-next {
    right: 54px;
    filter: alpha(opacity=40);
    -moz-opacity: .4;
    -khtml-opacity: .4;
    opacity: .4;
}

.banner .slick-arrow:hover {
    opacity: .8;
}

.banner .slick-dots {
    position: absolute;
    left: 0;
    bottom: 5%;
    width: 100%;
    text-align: center;
    font-size: 0;
    z-index: 1;
}

.banner .slick-dots li {
    display: inline-block;
    width: 20px;
    height: 10px;
    background-color: #ccc;
    cursor: pointer;
    margin: 0 5px;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.banner .slick-dots button {
    display: none;
}

.banner .slick-dots li.slick-active {
    width: 32px;
    background-color: #006fb4;
}





/*搜索*/
.m-sobox {
    position: relative;
    width: 100%;
    height: 76px;
    overflow: hidden;
    background: #064893;
}

.sear_nbox {
    position: absolute;
    width: 100%;
    height: 76px;
    overflow: hidden;
    background: #064893;
    top: 450px;
}

.sear_nbox::after {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    width: 43%;
    background: #fff;
    height: 74px;
}

.m-sobox::after {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    width: 43%;
    background: #fff;
    height: 74px;
}

.m-sobox .text {
    font-size: 15px;
    height: 76px;
    line-height: 76px;
    margin-left: 11px;
}

.m-sobox .text span {
    color: #fff;
    display: inline-block;
    vertical-align: middle;
}

.m-sobox .text a {
    color: #b1d2f8;
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
    font-size: 15px;
}

.m-sobox .btn {
    height: 72px;
    position: relative;
    z-index: 2;
    width: 36.2%;
    margin-right: 29px;
}

#search_bg {
    width: 100%;
    line-height: 41px;
}

#infoname {
    width: 83%;
    text-indent: 12px;
    line-height: 72px;
    border: none;
}

#so {
    float: right;
    padding: 27px 15px;
}


/*产品*/
.ul-types_a {
    width: 784px;
    margin: 0 auto;
}

.ul-types_a a {
    display: block;
    float: left;
    width: 154px;
    height: 63px;
    background-image: url(../images/20200623135344_71982488.png);
    background-position: center left;
    background-repeat: no-repeat;
    background-color: #f5f5f5;
    background-size: 100%;
    padding-left: 94px;
    padding-top: 27px;
}

.ul-types_a a>p {
    font-size: 18px;
    color: #333;
}

.ul-types_a a>span {
    display: block;
    color: #999;
    font-size: 14px;
}

.ul-types_a a+a {
    margin-left: 20px;
}

.ul-types_a a:hover {
    background-color: #064893;
    background-image: url(../images/20200623140056_1437280531.png);
}

.ul-types_a a:hover>p {
    color: #fff;
}

.ul-types_a a:hover>span {
    color: #5e93cf;
}

.m-prod_d table tr td {
    display: block;
    float: left;
    padding: 0px !important;
    width: 416px;
    position: relative;
    overflow: hidden;
    border: 1px #eee solid;
}

.m-prod_d table tr td+td {
    margin-left: 23px;
}

.m-prod_d table tr+tr {
    margin-top: 23px;
    display: block;
}

.m-prod_d table tr td img {
    display: block;
    width: 416px;
    height: 312px;
    transition: all linear 0.5s;
    -moz-transition: all linear 0.5s;
    -ms-transition: all linear 0.5s;
    -webkit-transition: all linear 0.5s;
}

.m-prod_d table tr td:hover img {
    -webkit-transform: scale(1.12, 1.12);
    transform: scale(1.12, 1.12);
}

.m-prod_d table tr td span {
    display: block;
    line-height: 90px;
    height: 90px;
    background: #f5f5f5;
    position: relative;
    z-index: 2;
}

.m-prod_d table tr td span a {
    display: block;
    line-height: 90px;
    font-size: 18px;
}

.m-prod_d table tr td:hover span {
    background: #064893;
}

.m-prod_d table tr td:hover span a {
    color: #fff;
}

.m-prod_d table tr td br {
    display: none;
}


/*问题*/
.row-a2 {
    background: url(../images/20200623141928_648876576.jpg)no-repeat center;
    height: 250px;
}

.m-bgb1 {
    display: none;
    width: 100%;
}

.m-problem .txt p {
    color: #fff;
    font-size: 36px;
    font-weight: lighter;
    line-height: 42px;
    margin-bottom: 20px;
    margin-top: 64px;
}

.m-problem .info {
    position: relative;
    width: 760px;
    margin-top: 56px;
    margin-right: 20px;
}

.m-problem .info p {
    padding-left: 15px;
    position: absolute;
    line-height: 28px;
    font-size: 18px;
    color: #fff;
}

.m-problem .info p:after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    position: absolute;
    top: 12px;
    left: -6px;
    background: #fff;
    border-radius: 50%;
}

.m-problem .info p:nth-child(1) {
    left: 50px;
    top: 40px;
}

.m-problem .info p:nth-child(2) {
    left: -30px;
    top: 100px;
}

.m-problem .info p:nth-child(3) {
    left: 460px;
    top: 15px;
}

.m-problem .info p:nth-child(4) {
    left: 540px;
    top: 55px;
}

.m-problem .info p:nth-child(5) {
    left: 490px;
    top: 100px;
}

/*对比*/
.row-a3 {
    background: url(../images/20200623144115_672779511.jpg)no-repeat center;
    height: 735px;
}

.ul-compared {
    position: relative;
}

.ul-compared li {
    float: left;
    width: 643px;
    height: 514px;
    background: #fff;
}

.ul-compared li:nth-child(2) {
    float: right;
}

.ul-compared:before {
    content: "";
    position: absolute;
    top: 142px;
    left: 570px;
    background: url(../images/20200623145848_2100617593.png);
    width: 161px;
    height: 184px;
    z-index: 2;
}

.ul-compared .h3 {
    background: url(../images/20200623150434_2121374106.jpg)no-repeat center;
    width: 206px;
    height: 67px;
    line-height: 67px;
    color: #333;
    text-align: center;
    font-weight: bold;
    font-size: 26px;
    margin: 0 auto;
}

.ul-compared li:nth-child(1) .ul-compared .h3 {
    color: #064893;
}

.ul-compared .img {
    width: 550px;
    height: 258px;
    overflow: hidden;
    margin: 0 auto;
}

.ul-compared .img img {
    display: block;
    width: 100%;
    margin: 0 auto;
    margin-top: 30px;
}

.ul-compared .desc {
    width: 550px;
    margin: 0 auto;
}

.ul-compared .desc p {
    font-size: 22px;
    font-weight: bold;
    color: #333;
}

.ul-compared .desc span {
    display: block;
    font-size: 16px;
    line-height: 28px;
}

/*产品优势*/
.row-a4 {
    background: url(../images/20200623153647_659666929.jpg)no-repeat center;
}

.ul-prodadv {
    height: 286px;
}

.ul-prodadv li {
    float: left;
    text-align: center;
}

.ul-prodadv li i {
    background-color: #fff;
    border-radius: 50%;
    display: block;
    width: 110px;
    height: 110px;
    line-height: 110px;
    -webkit-transform: rotate(360deg);
    animation: rotation 2s linear infinite;
    -moz-animation: rotation 2s linear infinite;
    -webkit-animation: rotation 2s linear infinite;
    -o-animation: rotation 2s linear infinite;
    margin: 0 auto;
}

.ul-prodadv li p {
    font-size: 26px;
    color: #333;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 2px;
}

.ul-prodadv li span {
    display: block;
    font-size: 16px;
}

.ul-prodadv li .d {
    color: #064893;
    display: inline;
}

.ul-prodadv li:nth-child(1) {
    margin-top: 25px;
}

.ul-prodadv li:nth-child(2) {
    margin-top: 69px;
    margin-left: 122px;
}

.ul-prodadv li:nth-child(3) {
    margin-top: 16px;
    margin-left: 122px;
}

.ul-prodadv li:nth-child(4) {
    margin-top: 54px;
    margin-left: 122px;
}

.ul-prodadv li:nth-child(5) {
    margin-top: 75px;
    margin-left: 122px;
}

/*旋转*/
@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

.ul-prodadv li i {
    -webkit-transform: rotate(360deg);
    animation: rotation 2s linear infinite;
    -moz-animation: rotation 2s linear infinite;
    -webkit-animation: rotation 2s linear infinite;
    -o-animation: rotation 2s linear infinite;
}


.ul-prodadv_b1 li {
    float: left;
    background:#0959b3;
    border-radius: 10px;
    width: 304px;
    height: 194px;
    text-align: center;
    position: relative;
    padding: 35px 22px 0px 22px;
    -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
    cursor: pointer;
    margin-right: 20px;
}

.ul-prodadv_b1 li:before {
    position: absolute;
    content: '';
    display: block;
    width: 26px;
    height: 12px;
    
    bottom: -12px;
    left: 102px;
}


.ul-prodadv_b1 li p:nth-child(1) {
    font-size: 26px;
    color: #fff;
}

.ul-prodadv_b1 li p:nth-child(2) {
    width: 26px;
    height: 1px;
    background: #1059ad;
    margin: 15px auto;
    -webkit-transition: all 0.5s linear;
    transition: all 0.5s linear;
}

.ul-prodadv_b1 li p:nth-child(3) {
    font-size: 16px;
    color: #fff;

    line-height: 28px;
}

.ul-prodadv_b1 li p:nth-child(4) {
    position: absolute;
    width: 28px;
    height: 28px;
    border: 7px solid #acacae;
    background: #000;
    left: 102px;
    bottom: -82px;
    border-radius: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
}


/*应用案例*/
.m-case {
    width: 100%;
    margin-top: 30px;

}

.m-case table {
    display: block;
    text-align: center;
}

.m-case>table>tbody {
    width: 90%;
    display: inline-block;
}

.m-case>table>tbody>tr {
    display: block;
    font-size: 0;
}

.m-case>table>tbody>tr+tr {
    margin-top: 26px;
    text-align: center;
}

.m-case>table>tbody>tr>td {
    width: 29.7%;
    display: inline-block;
    overflow: hidden;
    padding: 0px !important;
}

.m-case>table>tbody>tr>td>br {
    display: none;
}

.m-case>table>tbody>tr>td+td {
    margin-left: 5.2%;
}

.m-case>table>tbody>tr>td>a {
    overflow: hidden;
    display: block;
}

.m-case>table>tbody>tr>td>a>img {
    overflow: hidden;
    width: 100%;
    height: auto;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    box-sizing: border-box;
}

.m-case>table>tbody>tr>td:hover a>img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.m-case>table>tbody>tr>td>div {
    margin: 0px !important;
    padding: 0px !important;
    position: relative;
    width: 100%;
    display: block;
    height: 62px;
    -webkit-transition: 500ms ease-out;
    transition: 500ms ease-out;
    background: #0b519f;
}

.m-case>table>tbody>tr>td>div::after {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 0;
    height: 100%;
    background: #0555b0;
    content: '';
    z-index: 1;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.m-case>table>tbody>tr>td:hover div::after {
    width: 100%;
}

.m-case>table>tbody>tr>td:hover div>a {
    color: #fff;
}


.m-case>table>tbody>tr>td>div>a {
    float: left;
    position: relative;
    width: 100%;
    text-align: left;
    padding: 24px 0px;
    z-index: 2;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    font-size: 18px;
}

.m-case>table>tbody>tr>td>div>a::after {
    position: absolute;
    top: 24px;
    right: 0px;
    font-size: 15px;
    -webkit-transition: 500ms;
    transition: 500ms;
    color: #1a1a1a;
}

.g-more>a {
    text-align: center;
    display: block;
    margin: 0 auto;
    width: 26px;
    height: 4px;
    margin-top: 26px;
    background: #064893;
    border-radius: 60px;
    padding: 22px 11px;
    position: relative;
    overflow: hidden;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
}

.g-more>a>i {
    width: 4px;
    height: 4px;
    border-radius: 60px;
    background: #fff;
    float: left;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
}

.g-more>a>i+i {
    margin-left: 7px;
}

.g-more>a:hover i {
    -webkit-animation: mymore 0.5s linear;
    animation: mymore 0.5s linear;
}

.g-more>a:hover>i:nth-child(2) {
    -webkit-animation-delay: -0.2s linear;
    animation-delay: -0.2s linear;
}

.g-more>a:hover>i:nth-child(3) {
    -webkit-animation-delay: -0.4s linear;
    animation-delay: -0.4s linear;
}

@-webkit-keyframes mymore {
    0% {
        -webkit-transform: translate(-40px);
        transform: translate(-40px)
    }

    100% {
        -webkit-transform: translate(0);
        transform: translate(0)
    }
}

@keyframes mymore {
    0% {
        -webkit-transform: translate(-40px);
        transform: translate(-40px)
    }

    100% {
        -webkit-transform: translate(0);
        transform: translate(0)
    }
}


/*优势*/
em {
    font-style: normal;
}

.row-a6 {
    overflow: hidden;
    margin: 70px auto 0;
}

.row-a7 {
    overflow: hidden;
}

.adv {
    position: relative;
    overflow: hidden;
    margin-top: 30px;
}

.ul-advs {
    margin: auto;
    height: 94px;
    margin-bottom: 30px;
    overflow: hidden;
}

.m-tit1 {
    text-align: center;
}

.m-tit1 p {
    font-size: 40px;
    font-weight: bold;
    color: #333;
}

.m-tit1 b {
    font-size: 18px;
    color: #666;
    display: block;
    font-weight: normal;
}

.m-tit1 strong {
    font-size: 52px;
    color: #064893;
}

.ul-advs li {
    float: left;
    width: 319px;
    height: 94px;
    border-left: 1px solid #eaeaea;
}

.ul-advs li img {
    float: left;
    margin-top: 27px;
    margin-left: 30px;
}

.ul-advs li span {
    display: block;
    float: left;
    width: 40px;
    height: 40px;
    margin-top: 36px;
    margin-left: 40px;
    margin-right: 15px;
}

.ul-advs li:nth-child(4) {
    border-right: 1px solid #eaeaea;
}

.ul-advs li:nth-child(1) span {
    background: url(../images/20200623184426_1220719975.png) top left no-repeat;
    background-size: 100%;
}

.ul-advs li:nth-child(2) span {
    background: url(../images/20200623184658_1379464582.png) top left no-repeat;
    background-size: 100%;
}

.ul-advs li:nth-child(3) span {
    background: url(../images/20200623184942_1735956188.png) top left no-repeat;
    background-size: 100%;
}

.ul-advs li:nth-child(4) span {
    background: url(../images/20200623185204_47717108.png) top left no-repeat;
    background-size: 100%;
}

.ul-advs li:hover span {
    background-position: 0px -40px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.ul-advs li strong {
    display: block;
    color: #222;
    font-size: 24px;
    margin-top: 30px;
    font-weight: normal;
}

.ul-advs li em {
    margin-top: 5px;
    display: block;
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    color: #444;
    font-weight: normal;
}

.ul-advs li:hover {
    cursor: pointer;
}

.ul-advs li:hover em {
    color: #064893;
}

.m-adv_card {
    height: 584px;
}

.ul-advs li.on strong {
    font-weight: normal;
}

.ul-advs li.on span {
    background-position: 0px -41px;
}

.ul-advs li.on b {
    color: #e3e6f6;
}

.ul-advs li.on strong {
    color: #064893;
}

.ul-advs li.on em {
    color: #064893;
}

.m-adv_card dl {
    background: url(../images/20200624110856_1641831288.jpg) center bottom no-repeat;
    position: relative;
    width: 100%;
    height: 584px;
    overflow: hidden;
}

.m-adv_card dl.bg2 {
    background: url(../images/20200624112344_407796658.jpg) center bottom no-repeat;
    position: relative;
    overflow: hidden;
}

.m-adv_card dl.bg3 {
    background: url(../images/20200624111038_1393801424.jpg) center bottom no-repeat;
    position: relative;
    overflow: hidden;
}

.m-adv_card dl.bg4 {
    background: url(../images/20200623185350_1419230466.jpg) center bottom no-repeat;
    position: relative;
    overflow: hidden;
}



.m-adv_card dt {
    width: 1300px;
    margin: 0 auto;
}

.m-card {
    width: 470px;
    height: 484px;
    background: rgba(255, 255, 255, .8);
    padding: 50px;
    float: left;
}

.m-card p {
    font-size: 100px;
    color: #b3b3b4;
    margin-bottom: 18px;
}

.m-card b {
    font-size: 50px;
    color: #064893;
    font-weight: bold;
}

.m-card em {
    font-size: 40px;
    display: block;
    color: #222;
    padding-bottom: 20px;
    margin-top: 15px;
    font-style: normal;
}

.m-card span {
    font-size: 15px;
    color: #555;
    line-height: 30px
}

.m-card a {
    width: 194px;
    display: block;
    height: 50px;
    text-align: center;
    line-height: 50px;
    background-color: #064893;
    color: #fff;
    margin-top: 30px
}



/*客户见证*/
.ul-listb1 li {
    width: 363px;
    height: 375px;
    border: 1px solid #eeeeee;
    padding: 29px;
    float: left;
    margin-right: 20px;
    overflow: hidden;
    position: relative;
}

.witpic img {
    width: 360px;
    height: 255px;
    margin-bottom: 27px;
}

.ul-listb1 li div {
    position: relative;
    z-index: 33;
}

.ul-listb1 li a {
    display: block;
    width: 100%;
    height: 100%;
}

.witwa p:nth-child(1) {
    font-size: 18px;
    color: #666666;
    padding-left: 38px;
    background: url(../images/20200623195213_190164707.png) no-repeat left top;
    line-height: 21px;
    padding-bottom: 17px;
    border-bottom: 1px solid #eeeeee;
}

.witwa p:nth-child(2) {
    font-size: 13px;
    color: #999999;
    line-height: 26px;
    margin-top: 15px;
    background: url(../images/20200623195235_1749774320.png) no-repeat right center;
}

.ul-listb1 li:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: #064893;
    right: -130%;
    top: 0px;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    position: absolute;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.ul-listb1 li:hover:after {
    right: 0px;
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
}

.ul-listb1 li:hover p:nth-child(1) {
    color: #fff;
    background: url(../images/20200623195305_1273041992.png) no-repeat left top;
}

.ul-listb1 li:hover p:nth-child(2) {
    color: #fff;
    background: url(../images/20200623195332_289518695.png) no-repeat right center;
}

.witbtn {
    height: 44px;
    position: relative;
    margin: 43px auto 0px auto;
    width: 980px;
}

.witbtn>i {
    display: block;
    width: 24px;
    height: 44px;
    position: absolute;
    top: 0px;
    cursor: pointer;
}

.witbtn>i.prev {
    left: 0px;
    background: url(../images/20200623195424_922574392.png) no-repeat left top;
}

.witbtn>i.next {
    right: 0px;
    background: url(../images/20200623195534_1010574066.png) no-repeat left top;
}

.witbtn i:hover {
    background-position-x: -24px;
}

.wit_pg i {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #999999;
    cursor: pointer;
}

.wit_pg i+i {
    margin-left: 27px;
}

.wit_pg i.cur {
    background: #064893;
}

.wit_pg {
    text-align: center;
    padding-top: 15px;
}

/*简介*/
 .row-a8{
    background: url(../images/11.jpg)no-repeat center top;
    height:645px;
    background-attachment: fixed;
    background-size: cover;

} 

.m-txtb1 {
    overflow: hidden;
    padding-top: 80px;

}

.m-txtb1 .pic {
    float: right;
    width: 46%;
    margin-top: 3.5%;
}.m-txtb1 .pic img{
    display: block;
    width: 100%;
}

.m-txtb1 .txt {
    width: 30%;
    height: 445px;
    padding: 30px 0px 0px;
    margin-top: 92px;
    margin-left: 350px;
}

.m-txtb1 .txt .d {
    font-size: 26px;
    color: #fff;
    display: block;
    font-weight: bold;
}

.m-txtb1 .txt .font_en {
    font-size: 12px;
    color: #999;
    display: block;
    line-height: 48px;
    margin-top: 0;
    text-indent: 0;
}

.m-txtb1 .txt span {
    width: 126px;
    height: 4px;
    background: #064893;
    display: block;
}

.m-txtb1 .txt p {
    font-size: 15px;
    line-height: 30px;
    margin-top: 30px;
}

.m-txtb1 .txt a {
    width: 176px;
    height: 52px;
    background: #000;
    color: #fff;
    font-size: 15px;
    text-align: center;
    display: block;
    line-height: 52px;
    -webkit-transition: .3s all ease-in-out;
    transition: .3s all ease-in-out;
    margin-top: 45px;
    border-left: 5px solid #064893;
}

.m-txtb1 .txt a:hover {
    background: #064893;
    width: 200px;
    position: relative;
}



/*厂房设备*/
.m-tit2 p {
    font-size: 40px;
    color: #222;
    font-weight: lighter;
}

.m-tit2 b {
    font-weight: bold;
}

.m-tit2 span {
    font-size: 20px;
    color: #999;
    display: block;
    margin-top: 20px;
}

.m-tit2 .en {
    font-size: 14px;
    margin-top: 18px;
}

.m-tit2 .a {
    margin-top: 38px;
}

.m-tit2 .a a {
    display: block;
    background-image: url(../images/20200623203846_733662780.png);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px #ccc solid;
    transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    background-position: 0px 0px;
}

.m-tit2 .a a:hover {
    border: 1px #064893 solid;
    background-position: 46px 0px;
    background-color: #064893;
}

.equ_d table tr td a:nth-child(1) {
    display: block;
    margin-left: 27px;
}

.equ_d table tr td {
    position: relative;
}

.equ_d table tr td a:nth-child(2) {
    display: block;
    height: 44px;
    width: 270px;
    position: absolute;
    bottom: 3px;
    border-bottom: 3px #064893 solid;
    background: rgba(0, 0, 0, 0.5);
    left: 32px;
    line-height: 15px;
    color: #fff;
    font-size: 16px;
}

.equ_d table tr td img {
    border: 1px #eee solid;
}



.row-a9 .fr {
    width: 967px;
}

.slider_b1 {
    white-space: nowrap;
}

.slider_b1 .item {
    display: inline-block;
    vertical-align: top;
}

.slider_b1 .con {
    display: block;
    position: relative;
    margin: 0 16px;
}

.slider_b1 .pic {
    width: 272px;
    height: 345px;
    overflow: hidden;
}

.slider_b1 .pic img {
    width: 100%;
    height: 100%;
    display: block;
}

.slider_b1 .txt {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    height: 44px;
    position: absolute;
    bottom: 3px;
    border-bottom: 3px #064893 solid;
    background: rgba(0, 0, 0, 0.5);
    left: 0;
    line-height: 41px;
    color: #fff;
    font-size: 16px;
    box-sizing: border-box;
}


/*新闻*/
.m-news {
    padding: 70px 0;
    background: #f5f5f5;
}

.m-news .left {
    float: left;
    width: 430px;
    height: 583px;
    background: #fff;
    position: relative;
    margin-right: 2%;
}

.m-news .right {
    overflow: hidden;
    height: 583px;
}

.m-news .left .tit {
    background: url(../images/20200624084054_1073324273.png) no-repeat center;
    width: 360px;
    height: 178px;
    padding: 30px 35px;
}

.m-news .tit a {
    font-size: 28px;
    color: #fff;
    display: block;
    line-height: 30px;
    position: relative;
}

.m-news .tit a .en {
    font-size: 14px;
    font-family: arial, microsoft yahei;
    display: block;
    line-height: 25px;
    font-weight: 100;
    text-transform: capitalize;
}

.m-news .tit a i {
    position: absolute;
    width: 25px;
    height: 25px;
    background: #064893 url(../images/20200624084116_1321911947.png) no-repeat center;
    right: 0;
    top: 13px
}

.m-news_card {
    width: 360px;
    position: absolute;
    left: 35px;
    top: 110px;
}

.m-news_card .con {
    width: 100%;
}

.m-news_card .item {
    display: block;
    width: 100%;
}

.m-news_card .item img {
    width: 100%;
    height: 240px;
    display: block;
    border: 1px #eee solid;
}

.m-news_card .item strong,
.m-newsb1 .item strong {
    font-size: 18px;
    font-weight: normal;
    color: #343434;
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
    display: block;
    line-height: 50px;
    padding: 10px 0 0;
    text-overflow: ellipsis;
}

.m-news_card .item p,
.m-newsb1 .item p {
    font-size: 14px;
    font-weight: 100;
    color: #999;
    line-height: 28px;
    text-align: justify;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.news_l_cont_tit {
    position: absolute;
    width: 96%;
    top: 210px;
    text-align: right;
    left: 0;
}

.news_l_cont_tit li {
    width: 10px;
    height: 10px;
    background: #ccc;
    display: inline-block;
    border-radius: 50px;
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
    margin-right: 3px;
    cursor: pointer
}

.news_l_cont_tit li.cur {
    width: 30px;
    background: #064893
}

.m-news_card .item i {
    font-size: 14px;
    font-family: arial;
    line-height: 30px;
    position: relative;
    text-align: right;
    color: #999;
    display: block;
    width: 100%;
    height: 30px;
    font-style: normal;
    margin-top: 55px;
}

.m-news_card .item i:after,
.m-newsb1 .item i:after {
    content: '';
    width: 65px;
    height: 1px;
    top: 14px;
    background: #ccc;
    display: block;
    position: absolute;
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
}

.m-news_card .item *,
.m-newsb1 .item * {
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease
}

.m-news_card .item:hover i:after,
.m-newsb1 .item:hover i:after {
    background: #064893;
    width: 100px
}

.m-news_card .item:hover strong,
.m-newsb1 .item:hover strong {
    color: #064893
}

.m-newsb1 .item {
    width: 365px;
    float: left;
    margin-right: 50px
}

.m-newsb1 .item i {
    font-size: 14px;
    font-family: arial;
    line-height: 30px;
    position: relative;
    text-align: right;
    color: #999;
    display: block;
    width: 100%;
    height: 30px;
    font-style: normal;
    margin-top: 25px;
}

.m-news_card .item i em,
.m-newsb1 .item i em {
    font-size: inherit;
    font-style: normal;
    font-family: inherit;
    float: right;
}

.m-newsb1 {
    padding: 30px 35px;
    width: 780px;
    height: 215px;
    background: #fff;
    position: relative;
    border: 1px #eee solid;
}

.m-newsb1 .tit a,
.m-newsb2 .tit a {
    color: #343434
}

.m-newsb1 .tit a .color,
.m-newsb2 .tit a .color {
    color: #064893;
    font-size: inherit;
    font-weight: bold;
}

.m-newsb1 .tit a .en,
.m-newsb2 .tit a .en {
    color: #999
}

.m-newsb2 {
    padding: 30px 35px;
    width: 780px;
    height: 225px;
    background: #fff url(../images/20200624084237_26186131.jpg) no-repeat 35px center;
    margin-top: 20px;
    position: relative;
    border: 1px #eee solid;
}

.m-newsb2 .fl {
    width: 365px;
}

.m-newsb2 .fr {
    width: 360px
}


.news_r2_cont {
    overflow: hidden;
}

.news_r2_cont_tit {
    position: absolute;
    width: 96%;
    top: 50px;
    text-align: right;
    left: 0;
}

.news_r2_cont_tit li {
    width: 10px;
    height: 10px;
    background: #dedede;
    display: inline-block;
    border-radius: 50px;
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
    margin-right: 3px;
    cursor: pointer
}

.news_r2_cont_tit li.cur {
    width: 30px;
    background: #064893
}


.news_r3_cont {
    position: relative;
}

.m-newsb2 .item p {
    background: url(../images/20200624084422_210782888.png) no-repeat left center;
    font-size: 16px;
    color: #333;
    font-weight: normal;
    padding-left: 40px;
    line-height: 38px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;

}

.m-newsb2 .item span.small {
    background: url(../images/20200624084450_1035688776.png) no-repeat left center;
    font-size: 14px;
    color: #999;
    padding-left: 40px;
    display: block;
    line-height: 32px;
    font-weight: 100;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.m-newsb2 .item {
    display: block;
    padding: 15px 0 0px;
}

.news_r3_cont_tit {
    position: absolute;
    width: 100%;
    top: -35px;
    text-align: right;
    left: 0;
}

.news_r3_cont_tit li {
    width: 10px;
    height: 10px;
    background: #dedede;
    display: inline-block;
    border-radius: 50px;
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
    margin-right: 3px;
    cursor: pointer
}

.news_r3_cont_tit li.cur {
    width: 30px;
    background: #064893
}



.linkTagcs {
    width: 1036px;
    height: auto;
}

.linkTagcs ul {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}

.linkTagcs li {
    list-style: none;
    margin: 0px;
    padding-right: 10px;
    line-height: 80px;
    float: left;
}

.linkTagcs li a {
    color: #fff;
    word-break: break-all;
}

.linkTagcs li img {
    border: 0px;
}


.m-citys {
    padding: 10px;
    background: #000000;
    overflow: hidden;
    width: 100%;
    display: inline-block;
    box-sizing: border-box;
}

.m-citys a {
    font-size: 14px;
    display: inline-block;
    width: 95px;
    float: left;
    color: #E1E0E0;
    margin: 2px 0;
}










@media only screen and (min-width: 1199px) and (max-width: 1920px) {
    .g-titb1 p {
        font-size: 36px;
        color: #222;
        margin-bottom: 0.2083vw;
    }

    .g-titb1 p b {
        color: #122366;
    }

    .g-titb1 span {
        font-size:14px;
        color: #555;
    }

    /*幻灯片*/
    .banner {
    max-height:958px;
    overflow: hidden;
    position: relative;
    margin-top: -100px;

    }

    .banner .item img {
        display: block;
        width: 100%;
    }

    .banner .slick-arrow {
        font-size: 0;
        text-indent: 520.7vw;
        z-index: 5;
        cursor: pointer;
        outline: 0;
        top: 50%;
        border: none;
        margin-top: -2.708vw;
        background-position: 0 0;
        background-color: transparent;
        background-repeat: no-repeat;
        background-image: url(../images/20201126100325_1671150766.png);
        background-size: 5vw;
        width: 2.552vw;
        height: 5.416vw;
        position: absolute;
        filter: alpha(opacity=0);
        -moz-opacity: 0;
        -khtml-opacity: 0;
        opacity: 0;
        -webkit-transition: 0.3s all ease-in-out;
        transition: 0.3s all ease-in-out;
    }

    .banner .slick-prev {
        left: -2.812vw;
    }

    .banner .slick-next {
        right: -2.812vw;
        background-position: -2.552vw 0;
    }

    .banner:hover .slick-prev {
        left: 2.812vw;
        filter: alpha(opacity=40);
        -moz-opacity: .4;
        -khtml-opacity: .4;
        opacity: .4;
    }

    .banner:hover .slick-next {
        right: 2.812vw;
        filter: alpha(opacity=40);
        -moz-opacity: .4;
        -khtml-opacity: .4;
        opacity: .4;
    }

    .banner .slick-arrow:hover {
        opacity: .8;
    }

    .banner .slick-dots {
        position: absolute;
        left: 0;
        bottom: 5%;
        width: 100%;
        text-align: center;
        font-size: 0;
        z-index: 1;
    }

    .banner .slick-dots li {
        display: inline-block;
        width: 1.041vw;
        height: 0.520vw;
        background-color: #ccc;
        cursor: pointer;
        margin: 0 0.260vw;
        -webkit-transition: 0.3s all ease-in-out;
        transition: 0.3s all ease-in-out;
        border-radius: 1.041vw;
        -webkit-border-radius: 1.041vw;
        -moz-border-radius: 1.041vw;
        -ms-border-radius: 1.041vw;
        -o-border-radius: 1.041vw;
    }

    .banner .slick-dots button {
        display: none;
    }

    .banner .slick-dots li.slick-active {
        width: 1.666vw;
        background-color: #006fb4;
    }





    /*搜索*/
    .m-sobox {
        position: relative;
        width: 100%;
        height: 3.958vw;
        overflow: hidden;
        background: #064893;
    }

    .sear_nbox {
        position: absolute;
        width: 100%;
        height: 3.958vw;
        overflow: hidden;
        background: #064893;
        top: 23.43vw;
    }

    .sear_nbox::after {
        position: absolute;
        content: '';
        top: 0;
        right: 0;
        width: 43%;
        background: #fff;
        height: 3.854vw;
    }

    .m-sobox::after {
        position: absolute;
        content: '';
        top: 0;
        right: 0;
        width: 43%;
        background: #fff;
        height: 3.854vw;
    }

    .m-sobox .text {
        font-size: 0.781vw;
        height: 3.958vw;
        line-height: 3.958vw;
        margin-left: 0.572vw;
    }

    .m-sobox .text span {
        color: #fff;
        display: inline-block;
        vertical-align: middle;
    }

    .m-sobox .text a {
        color: #b1d2f8;
        display: inline-block;
        vertical-align: middle;
        margin-right: 0.781vw;
        font-size: 0.781vw;
    }

    .m-sobox .btn {
        height: 3.75vw;
        position: relative;
        z-index: 2;
        width: 36.2%;
        margin-right: 1.510vw;
    }

    #search_bg {
        width: 100%;
        line-height: 2.135vw;
    }

    #infoname {
        width: 79%;
        text-indent: 0.625vw;
        line-height: 3.7vw;
        border: none;
    }

    #so {
        float: right;
        padding:.8vw 0.781vw 0;
    }


    /*产品*/
    .ul-types_a {
        width: 70vw;
        margin: 0 auto;
    }

    .ul-types_a a {
        display: block;
        float: left;
        width: 7.720vw;
        height: 3.281vw;
        background-image: url(../images/20200623135344_71982488.png);
        background-position: center left;
        background-repeat: no-repeat;
        background-color: #f5f5f5;
        padding-left: 4.895vw;
        padding-top: 1.406vw;
    }

    .ul-types_a a>p {
        font-size: 0.937vw;
        color: #333;
    }

    .ul-types_a a>span {
        display: block;
        color: #999;
        font-size: 0.729vw;
    }

    .ul-types_a a+a {
        margin-left: 1.041vw;
    }

    .ul-types_a a:hover {
        background-color: #064893;
        background-image: url(../images/20200623140056_1437280531.png);
    }

    .ul-types_a a:hover>p {
        color: #fff;
    }

    .ul-types_a a:hover>span {
        color: #5e93cf;
    }

    .m-prod_d table tr td {
        display: block;
        float: left;
        width: 21.5vw;
        position: relative;
        overflow: hidden;
        border: 0.052vw #eee solid;
    }

    .m-prod_d table tr td+td {
        margin-left: 1.197vw;
    }

    .m-prod_d table tr+tr {
        margin-top: 1.197vw;
        display: block;
    }

    .m-prod_d table tr td img {
        display: block;
        width: 21.66vw;
        height: 21.66vw;
        transition: all linear 0.5s;
        -moz-transition: all linear 0.5s;
        -ms-transition: all linear 0.5s;
        -webkit-transition: all linear 0.5s;
    }

    .m-prod_d table tr td:hover img {
        -webkit-transform: scale(1.12, 1.12);
        transform: scale(1.12, 1.12);
    }

    .m-prod_d table tr td span {
        display: block;
        line-height: 4.687vw;
        height: 4.687vw;
        background: #f5f5f5;
        position: relative;
        z-index: 2;
    }

    .m-prod_d table tr td span a {
        display: block;
        line-height: 4.687vw;
        font-size: 0.937vw;
        margin-left: 15px;
    }

    .m-prod_d table tr td:hover span {
        background: #064893;
    }

    .m-prod_d table tr td:hover span a {
        color: #fff;
    }

    .m-prod_d table tr td br {
        display: none;
    }


    /*问题*/
    .row-a2 {
        background: url(../images/20200623141928_648876576.jpg)no-repeat center;
        height: 13.02vw;
    }

    .m-problem .txt p {
        color: #fff;
        font-size: 1.875vw;
        font-weight: lighter;
        line-height: 2.187vw;
        margin-bottom: 1.041vw;
        margin-top: 3.333vw;
    }

    .m-problem .info {
        position: relative;
        width: 39.58vw;
        margin-top: 2.916vw;
        margin-right: 1.041vw;
    }

    .m-problem .info p {
        padding-left: 0.781vw;
        position: absolute;
        line-height: 1.458vw;
        font-size: 0.937vw;
        color: #fff;
    }

    .m-problem .info p:after {
        content: '';
        display: block;
        width: 0.416vw;
        height: 0.416vw;
        position: absolute;
        top: 0.625vw;
        left: -0.312vw;
        background: #fff;
        border-radius: 50%;
    }

    .m-problem .info p:nth-child(1) {
        left: 2.604vw;
        top: 2.083vw;
    }

    .m-problem .info p:nth-child(2) {
        left: -1.562vw;
        top: 5.208vw;
    }

    .m-problem .info p:nth-child(3) {
        left: 23.95vw;
        top: 0.781vw;
    }

    .m-problem .info p:nth-child(4) {
        left: 28.12vw;
        top: 2.864vw;
    }

    .m-problem .info p:nth-child(5) {
        left: 25.52vw;
        top: 5.208vw;
    }

    /*对比*/
    .row-a3 {
        background: url(../images/20200623144115_672779511.jpg)no-repeat center;
        height: 38.28vw;
    }

    .ul-compared {
        position: relative;
    }

    .ul-compared li {
        float: left;
        width: 33.48vw;
        height: 26.77vw;
        background: #fff;
    }

    .ul-compared li:nth-child(2) {
        float: right;
    }

    .ul-compared:before {
        content: "";
        position: absolute;
        top: 7.395vw;
        left: 29.68vw;
        background: url(../images/20200623145848_2100617593.png);
        background-size: 100%;
        width: 8.385vw;
        height: 9.583vw;
        z-index: 2;
    }

    .ul-compared .h3 {
        background: url(../images/20200623150434_2121374106.jpg)no-repeat center;
        width: 10.72vw;
        height: 3.489vw;
        line-height: 3.489vw;
        color: #333;
        text-align: center;
        font-weight: bold;
        font-size: 1.354vw;
        margin: 0 auto;
    }

    .ul-compared li:nth-child(1) .ul-compared .h3 {
        color: #064893;
    }

    .ul-compared .img {
        width: 28.64vw;
        height: 13.4375vw;
        overflow: hidden;
    }

    .ul-compared .img img {
        display: block;
        margin: 0 auto;
        margin-top: 1.562vw;
    }

    .ul-compared .desc {
        width: 28.64vw;
        margin: 0 auto;
    }

    .ul-compared .desc p {
        font-size: 1.145vw;
        font-weight: bold;
        color: #333;
    }

    .ul-compared .desc span {
        display: block;
        font-size: 0.833vw;
        line-height: 1.458vw;
    }

    /*产品优势*/
    .row-a4 {
        background: url(../images/20200623153647_659666929.jpg)no-repeat center;
    }

    .ul-prodadv {
        height: 14.89vw;
    }

    .ul-prodadv li {
        float: left;
        text-align: center;
    }

    .ul-prodadv li i {
        background-color: #fff;
        border-radius: 50%;
        display: block;
        width: 5.729vw;
        height: 5.729vw;
        line-height: 5.729vw;
        -webkit-transform: rotate(360deg);
        animation: rotation 2s linear infinite;
        -moz-animation: rotation 2s linear infinite;
        -webkit-animation: rotation 2s linear infinite;
        -o-animation: rotation 2s linear infinite;
        margin: 0 auto;
    }

    .ul-prodadv li i img {
        width: 5.7894vw;
    }

    .ul-prodadv li p {
        font-size: 1.354vw;
        color: #333;
        font-weight: bold;
        margin-top: 0.520vw;
        margin-bottom: 0.104vw;
    }

    .ul-prodadv li span {
        display: block;
        font-size: 0.833vw;
    }

    .ul-prodadv li .d {
        color: #064893;
        display: inline;
    }

    .ul-prodadv li:nth-child(1) {
        margin-top: 1.302vw;
    }

    .ul-prodadv li:nth-child(2) {
        margin-top: 3.593vw;
        margin-left: 6.354vw;
    }

    .ul-prodadv li:nth-child(3) {
        margin-top: 0.833vw;
        margin-left: 6.354vw;
    }

    .ul-prodadv li:nth-child(4) {
        margin-top: 2.812vw;
        margin-left: 6.354vw;
    }

    .ul-prodadv li:nth-child(5) {
        margin-top: 3.906vw;
        margin-left: 6.354vw;
    }

    /*旋转*/
    @-webkit-keyframes rotation {
        from {
            -webkit-transform: rotate(0deg);
        }

        to {
            -webkit-transform: rotate(360deg);
        }
    }

    .ul-prodadv li i {
        -webkit-transform: rotate(360deg);
        animation: rotation 2s linear infinite;
        -moz-animation: rotation 2s linear infinite;
        -webkit-animation: rotation 2s linear infinite;
        -o-animation: rotation 2s linear infinite;
    }


    .ul-prodadv_b1 li {
        float: left;
        background: #0959b3;
        border-radius: 0.520vw;
        width: 13.539vw;
        height: 10.10vw;
        text-align: center;
        position: relative;
        padding: 1.822vw 1.145vw 0vw 1.145vw;
        -webkit-transition: all 0.4s linear;
        transition: all 0.4s linear;
        cursor: pointer;
        margin-right: 20px;
    }

    .ul-prodadv_b1 li:before {
        position: absolute;
        content: '';
        display: block;
        width: 1.354vw;
        height: 0.625vw;
        
        bottom: -0.625vw;
        left: 5.312vw;
    }


    .ul-prodadv_b1 li p:nth-child(1) {
        font-size: 1.354vw;
        color: #fff;
    }

    .ul-prodadv_b1 li p:nth-child(2) {
        width: 1.354vw;
        height: 0.052vw;
        background: #1059ad;
        margin: 0.781vw auto;
        -webkit-transition: all 0.5s linear;
        transition: all 0.5s linear;
    }

    .ul-prodadv_b1 li p:nth-child(3) {
        font-size: 16px;
        color: #fff;
        line-height: 1.458vw;
    }

    .ul-prodadv_b1 li p:nth-child(4) {
        position: absolute;
        width: 1.458vw;
        height: 1.458vw;
        border: 0.364vw solid #acacae;
        background: #000;
        left: 5.312vw;
        bottom: -4.270vw;
        border-radius: 50%;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-transition: all 0.4s linear;
        transition: all 0.4s linear;
    }


    /*应用案例*/
    .m-case {
        width: 100%;
        margin-top: 1.562vw;
    }

    .m-case table {
        display: block;
        text-align: center;
    }

    .m-case>table>tbody {
        width: 90%;
        display: inline-block;
    }

    .m-case>table>tbody>tr {
        display: block;
    }

    .m-case>table>tbody>tr+tr {
        margin-top: 1.354vw;
        text-align: center;
    }

    .m-case>table>tbody>tr>td {
        width: 23%;
        display: inline-block;
        overflow: hidden;
        padding: 0vw !important;
    }

    .m-case>table>tbody>tr>td>br {
        display: none;
    }

    .m-case>table>tbody>tr>td+td {
        margin-left: 1%;
    }

    .m-case>table>tbody>tr>td>a {
        overflow: hidden;
        display: block;
    }

    .m-case>table>tbody>tr>td>a>img {
        overflow: hidden;
        width: 100%;
        height: auto;
        -webkit-transition: 0.5s;
        transition: 0.5s;
    }

    .m-case>table>tbody>tr>td:hover a>img {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        -webkit-transition: 0.5s;
        transition: 0.5s;
    }

    .m-case>table>tbody>tr>td>div {
        margin: 0vw !important;
        padding: 0vw !important;
        position: relative;
        width: 100%;
        display: block;
        height: 4.229vw;
        -webkit-transition: 500ms ease-out;
        transition: 500ms ease-out;
    }

    .m-case>table>tbody>tr>td>div::after {
        position: absolute;
        top: 0vw;
        left: 0vw;
        width: 0;
        height: 100%;
        background: #0759b5;
        content: '';
        z-index: 1;
        -webkit-transition: all 0.5s ease;
        transition: all 0.5s ease;
    }

    .m-case>table>tbody>tr>td:hover div::after {
        width: 100%;
    }

    .m-case>table>tbody>tr>td:hover div>a {
        color: #fff;

    }

    .m-case>table>tbody>tr>td:hover div>a::after {

        color: #fff;
    }

    .m-case>table>tbody>tr>td>div>a {
        float: left;
        position: relative;
        width: 100%;
        text-align:center;
        padding: 1.25vw 0vw;
        z-index: 2;
        -webkit-transition: 0.5s;
        transition: 0.5s;
        font-size: 24px;
        font-weight: bold;
        color: #fff;
    }

    .m-case>table>tbody>tr>td>div>a::after {
        position: absolute;
        top: 1.25vw;
        right: 0vw;
        font-size: 0.781vw;
        -webkit-transition: 500ms;
        transition: 500ms;
        color: #1a1a1a;
    }

    .g-more>a {
        text-align: center;
        display: block;
        margin: 0 auto;
        width: 1.354vw;
        height: 0.208vw;
        margin-top: 1.354vw;
        background: #064893;
        border-radius: 3.125vw;
        padding: 1.145vw 0.572vw;
        position: relative;
        overflow: hidden;
        -webkit-transition: 0.5s ease;
        transition: 0.5s ease;
    }

    .g-more>a>i {
        width: 0.208vw;
        height: 0.208vw;
        border-radius: 3.125vw;
        background: #fff;
        float: left;
        -webkit-transition: 0.5s ease;
        transition: 0.5s ease;
    }

    .g-more>a>i+i {
        margin-left: 0.364vw;
    }

    .g-more>a:hover i {
        -webkit-animation: mymore 0.5s linear;
        animation: mymore 0.5s linear;
    }

    .g-more>a:hover>i:nth-child(2) {
        -webkit-animation-delay: -0.2s linear;
        animation-delay: -0.2s linear;
    }

    .g-more>a:hover>i:nth-child(3) {
        -webkit-animation-delay: -0.4s linear;
        animation-delay: -0.4s linear;
    }




    /*优势*/
    em {
        font-style: normal;
    }

    .row-a6 {
        margin: 3.645vw auto 0;
    }

    .adv {
        position: relative;
        overflow: hidden;
        margin-top: 1.562vw;
    }

    .ul-advs {
        margin: auto;
        height: 4.895vw;
        margin-bottom: 1.562vw;
        overflow: hidden;
    }

    .m-tit1 {
        text-align: center;
    }

    .m-tit1 p {
        font-size: 2.083vw;
        font-weight: bold;
        color: #333;
    }

    .m-tit1 b {
        font-size: 0.937vw;
        color: #666;
        display: block;
        font-weight: normal;
    }

    .m-tit1 strong {
        font-size: 2.708vw;
        color: #064893;
    }

    .ul-advs li {
        float: left;
        width: 16.61vw;
        height: 4.895vw;
        border-left: 0.052vw solid #eaeaea;
    }

    .ul-advs li img {
        float: left;
        margin-top: 1.406vw;
        margin-left: 1.562vw;
    }

    .ul-advs li span {
        display: block;
        float: left;
        width: 2.083vw;
        height: 2.083vw;
        margin-top: 1.875vw;
        margin-left: 2.083vw;
        margin-right: 0.781vw;
    }

    .ul-advs li:nth-child(4) {
        border-right: 0.052vw solid #eaeaea;
    }

    .ul-advs li:nth-child(1) span {
        background: url(../images/20200623184426_1220719975.png) top left no-repeat;
        background-size: 100%;
    }

    .ul-advs li:nth-child(2) span {
        background: url(../images/20200623184658_1379464582.png) top left no-repeat;
        background-size: 100%;
    }

    .ul-advs li:nth-child(3) span {
        background: url(../images/20200623184942_1735956188.png) top left no-repeat;
        background-size: 100%;
    }

    .ul-advs li:nth-child(4) span {
        background: url(../images/20200623185204_47717108.png) top left no-repeat;
        background-size: 100%;
    }

    .ul-advs li:hover span {
        background-position: 0vw -2.083vw;
        -webkit-transition: all 0.5s;
        transition: all 0.5s;
    }

    .ul-advs li strong {
        display: block;
        color: #222;
        font-size: 1.25vw;
        margin-top: 1.562vw;
        font-weight: normal;
    }

    .ul-advs li em {
        margin-top: 0.260vw;
        display: block;
        font-size: 0.729vw;
        line-height: 1.041vw;
        text-transform: uppercase;
        color: #444;
        font-weight: normal;
    }

    .ul-advs li:hover {
        cursor: pointer;
    }

    .ul-advs li:hover em {
        color: #064893;
    }

    .m-adv_card {
        height: 30.41vw;
    }

    .ul-advs li.on strong {
        font-weight: normal;
    }

    .ul-advs li.on span {
        background-position: 0vw -2.135vw;
    }

    .ul-advs li.on b {
        color: #e3e6f6;
    }

    .ul-advs li.on strong {
        color: #064893;
    }

    .ul-advs li.on em {
        color: #064893;
    }

    .m-adv_card dl {
        background: url(../images/20200624110856_1641831288.jpg) center bottom no-repeat;
        position: relative;
        width: 100vw;
        height: 30.41vw;
        overflow: hidden;
    }

    .m-adv_card dl.bg2 {
        background: url(../images/20200624112344_407796658.jpg) center bottom no-repeat;
        position: relative;
        width: 100vw;
        height: 30.41vw;
        overflow: hidden;
    }

    .m-adv_card dl.bg3 {
        background: url(../images/20200624111038_1393801424.jpg) center bottom no-repeat;
        position: relative;
        width: 100vw;
        height: 30.41vw;
        overflow: hidden;
    }

    .m-adv_card dl.bg4 {
        background: url(../images/20200623185350_1419230466.jpg) center bottom no-repeat;
        position: relative;
        width: 100vw;
        height: 30.41vw;
        overflow: hidden;
    }

    .m-adv_card dl {
        width: 100%;
        height: 30.41vw;
        overflow: hidden;
    }

    .m-adv_card dt {
        width: 67.70vw;
        margin: 0 auto;
    }

    .m-card {
        width: 24.47vw;
        height: 25.20vw;
        background: rgba(255, 255, 255, .8);
        padding: 2.604vw;
        float: left;
    }

    .m-card p {
        font-size: 5.208vw;
        color: #b3b3b4;
        margin-bottom: 0.937vw;
    }

    .m-card b {
        font-size: 2.604vw;
        color: #064893;
        font-weight: bold;
    }

    .m-card em {
        font-size: 2.083vw;
        display: block;
        color: #222;
        padding-bottom: 1.041vw;
        margin-top: 0.781vw;
        font-style: normal;
    }

    .m-card span {
        font-size: 0.781vw;
        color: #555;
        line-height: 1.562vw
    }

    .m-card a {
        width: 10.10vw;
        display: block;
        height: 2.604vw;
        text-align: center;
        line-height: 2.604vw;
        background-color: #064893;
        color: #fff;
        margin-top: 1.562vw
    }



    /*客户见证*/
    .ul-listb1 li {
        width: 18.90vw;
        height: 19.53vw;
        border: 0.052vw solid #eeeeee;
        padding: 1.510vw;
        float: left;
        margin-right: .7vw;
        overflow: hidden;
        position: relative;
    }

    .witpic img {
        width: 18.75vw;
        height: 13.28vw;
        margin-bottom: 1.406vw;
    }

    .ul-listb1 li div {
        position: relative;
        z-index: 33;
    }

    .ul-listb1 li a {
        display: block;
        width: 100%;
        height: 100%;
    }

    .witwa p:nth-child(1) {
        font-size: 0.937vw;
        color: #666666;
        padding-left: 1.979vw;
        background: url(../images/20200623195213_190164707.png) no-repeat left top;
        line-height: 1.093vw;
        padding-bottom: 0.885vw;
        border-bottom: 0.052vw solid #eeeeee;
    }

    .witwa p:nth-child(2) {
        font-size: 0.677vw;
        color: #999999;
        line-height: 1.354vw;
        margin-top: 0.781vw;
        background: url(../images/20200623195235_1749774320.png) no-repeat right center;
    }

    .ul-listb1 li:after {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        background: #064893;
        right: -130%;
        top: 0vw;
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
        position: absolute;
        -webkit-transition: all 0.3s linear;
        transition: all 0.3s linear;
    }

    .ul-listb1 li:hover:after {
        right: 0vw;
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }

    .ul-listb1 li:hover p:nth-child(1) {
        color: #fff;
        background: url(../images/20200623195305_1273041992.png) no-repeat left top;
    }

    .ul-listb1 li:hover p:nth-child(2) {
        color: #fff;
        background: url(../images/20200623195332_289518695.png) no-repeat right center;
    }

    .witbtn {
        height: 2.291vw;
        position: relative;
        margin: 2.239vw auto 0vw auto;
        width: 51.04vw;
    }

    .witbtn>i {
        display: block;
        width: 1.25vw;
        height: 2.291vw;
        position: absolute;
        top: 0vw;
        cursor: pointer;
    }

    .witbtn>i.prev {
        left: 0vw;
        background: url(../images/20200623195424_922574392.png) no-repeat left top;
        background-size: 2.461vw;
    }

    .witbtn>i.next {
        right: 0vw;
        background: url(../images/20200623195534_1010574066.png) no-repeat left top;
        background-size: 2.461vw;
    }

    .witbtn i:hover {
        background-position-x: -1.25vw;
    }

    .wit_pg i {
        display: inline-block;
        width: 0.729vw;
        height: 0.729vw;
        border-radius: 50%;
        background: #999999;
        cursor: pointer;
    }

    .wit_pg i+i {
        margin-left: 1.406vw;
    }

    .wit_pg i.cur {
        background: #064893;
    }

    .wit_pg {
        text-align: center;
        padding-top: 0.781vw;
    }

    /*简介*/

    .m-txtb1 {
        overflow: hidden;
        padding-top: 44px;
    }


    .m-txtb1 .txt {
        width: 70%;
        height: 28.17vw;
        padding: 1.562vw 0vw 0vw;
        margin-top: 2.6vw;
        margin-left: 16vw;
        color: #fff;
    }

    .m-txtb1 .txt .d {
        font-size: 1.92vw;
        color: #fff;
        display: block;
        font-weight: bold;
    }

    .m-txtb1 .txt .font_en {
        font-size: 0.8vw;
        color: #fff;
        display: block;
        line-height: 2.5vw;
    }

    .m-txtb1 .txt span {
        width: 6.562vw;
        height: 0.208vw;
        background: #064893;
        display: block;
    }

    .m-txtb1 .txt p {
        font-size: 0.781vw;
       
        line-height: 1.562vw;
        margin-top:30px;
    }

    .m-txtb1 .txt a {
        width: 9.166vw;
        height: 2.708vw;
        background: #000;
        color: #fff;
        font-size: 0.781vw;
        text-align: center;
        display: block;
        line-height: 2.708vw;
        -webkit-transition: .3s all ease-in-out;
        transition: .3s all ease-in-out;
        margin-top: 2.343vw;
        border-left: 0.260vw solid #064893;
    }

    .m-txtb1 .txt a:hover {
        background: #064893;
        width: 10.41vw;
        position: relative;
    }



    /*厂房设备*/
    .m-tit2 p {
        font-size: 2.083vw;
        color: #222;
        font-weight: lighter;
    }

    .m-tit2 b {
        font-weight: bold;
    }

    .m-tit2 span {
        font-size: 1.041vw;
        color: #999;
        display: block;
        margin-top: 1.041vw;
    }

    .m-tit2 .en {
        font-size: 0.729vw;
        margin-top: 0.937vw;
    }

    .m-tit2 .a {
        margin-top: 1.979vw;
    }

    .m-tit2 .a a {
        display: block;
        background-image: url(../images/20200623203846_733662780.png);
        width: 2.395vw;
        height: 2.395vw;
        border-radius: 50%;
        border: 0.052vw #ccc solid;
        transition: all linear 0.3s;
        -moz-transition: all linear 0.3s;
        -ms-transition: all linear 0.3s;
        -webkit-transition: all linear 0.3s;
        background-position: 0vw 0vw;
        background-size: 5vw;
    }

    .m-tit2 .a a:hover {
        border: 0.052vw #064893 solid;
        background-position: 2.395vw 0vw;
        background-color: #064893;
    }

    .equ_d table tr td a:nth-child(1) {
        display: block;
        margin-left: 1.406vw;
    }

    .equ_d table tr td {
        position: relative;
    }

    .equ_d table tr td a:nth-child(2) {
        display: block;
        height: 2.291vw;
        width: 14.06vw;
        position: absolute;
        bottom: 0.156vw;
        border-bottom: 0.156vw #064893 solid;
        background: rgba(0, 0, 0, 0.5);
        left: 1.666vw;
        line-height: 0.781vw;
        color: #fff;
        font-size: 0.833vw;
    }

    .equ_d table tr td img {
        border: 0.052vw #eee solid;
    }



    .row-a9 .fr {
        width: 50.36vw;
    }

    .slider_b1 {
        white-space: nowrap;
    }

    .slider_b1 .item {
        display: inline-block;
        vertical-align: top;
    }

    .slider_b1 .con {
        display: block;
        position: relative;
        margin: 0 0.833vw;
    }

    .slider_b1 .pic {
        width: 14.16vw;
        height: 17.67vw;
        overflow: hidden;
    }

    .slider_b1 .pic img {
        width: 100%;
        height: 100%;
        display: block;
    }

    .slider_b1 .txt {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        text-align: center;
        height: 2.291vw;
        position: absolute;
        bottom: 0.156vw;
        border-bottom: 0.156vw #064893 solid;
        background: rgba(0, 0, 0, 0.5);
        left: 0;
        line-height: 2.135vw;
        color: #fff;
        font-size: 0.833vw;
        box-sizing: border-box;
    }


    /*新闻*/
    .m-news {
        padding: 3.645vw 0;
        background: #f5f5f5;
    }

    .m-news .left {
        float: left;
        width: 22.39vw;
        height: 30.36vw;
        background: #fff;
        position: relative;
        margin-right: 2%;
    }

    .m-news .right {
        overflow: hidden;
        height: 30.36vw;
    }

    .m-news .left .tit {
        background: url(../images/20200624084054_1073324273.png) no-repeat center;
        width: 18.75vw;
        height: 9.270vw;
        padding: 1.562vw 1.822vw;
    }

    .m-news .tit a {
        font-size: 1.458vw;
        color: #fff;
        display: block;
        line-height: 1.562vw;
        position: relative;
    }

    .m-news .tit a .en {
        font-size: 0.729vw;
        font-family: arial, microsoft yahei;
        display: block;
        line-height: 1.302vw;
        font-weight: 100;
        text-transform: capitalize;
    }

    .m-news .tit a i {
        position: absolute;
        width: 1.302vw;
        height: 1.302vw;
        background: #064893 url(../images/20200624084116_1321911947.png) no-repeat center;
        right: 0;
        top: 0.677vw
    }

    .m-news_card {
        width: 18.75vw;
        position: absolute;
        left: 1.822vw;
        top: 5.729vw;
    }

    .m-news_card .con {
        width: 100%;
    }

    .m-news_card .item {
        display: block;
        width: 100%;
    }

    .m-news_card .item img {
        width: 100%;
        height: 12.5vw;
        display: block;
        border: 0.052vw #eee solid;
    }

    .m-news_card .item strong,
    .m-newsb1 .item strong {
        font-size: 0.937vw;
        font-weight: normal;
        color: #343434;
        white-space: nowrap;
        overflow: hidden;
        width: 100%;
        display: block;
        line-height: 2.604vw;
        padding: 0.520vw 0 0;
        text-overflow: ellipsis;
    }

    .m-news_card .item p,
    .m-newsb1 .item p {
        font-size: 0.729vw;
        font-weight: 100;
        color: #999;
        line-height: 1.458vw;
        text-align: justify;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }

    .news_l_cont_tit {
        position: absolute;
        width: 96%;
        top: 10.93vw;
        text-align: right;
        left: 0;
    }

    .news_l_cont_tit li {
        width: 0.520vw;
        height: 0.520vw;
        background: #ccc;
        display: inline-block;
        border-radius: 2.604vw;
        -webkit-transition: 0.3s all ease;
        transition: 0.3s all ease;
        margin-right: 0.156vw;
        cursor: pointer
    }

    .news_l_cont_tit li.cur {
        width: 1.562vw;
        background: #064893
    }

    .m-news_card .item i {
        font-size: 0.729vw;
        font-family: arial;
        line-height: 1.562vw;
        position: relative;
        text-align: right;
        color: #999;
        display: block;
        width: 100%;
        height: 1.562vw;
        font-style: normal;
        margin-top: 2.864vw;
    }

    .m-news_card .item i:after,
    .m-newsb1 .item i:after {
        content: '';
        width: 3.385vw;
        height: 0.052vw;
        top: 0.729vw;
        background: #ccc;
        display: block;
        position: absolute;
        -webkit-transition: 0.3s all ease;
        transition: 0.3s all ease;
    }

    .m-news_card .item *,
    .m-newsb1 .item * {
        -webkit-transition: 0.3s all ease;
        transition: 0.3s all ease
    }

    .m-news_card .item:hover i:after,
    .m-newsb1 .item:hover i:after {
        background: #064893;
        width: 5.208vw
    }

    .m-news_card .item:hover strong,
    .m-newsb1 .item:hover strong {
        color: #064893
    }

    .m-newsb1 .item {
        width: 19.01vw;
        float: left;
        margin-right: 2.604vw
    }

    .m-newsb1 .item i {
        font-size: 0.729vw;
        font-family: arial;
        line-height: 1.562vw;
        position: relative;
        text-align: right;
        color: #999;
        display: block;
        width: 100%;
        height: 1.562vw;
        font-style: normal;
        margin-top: 1.302vw;
    }

    .m-news_card .item i em,
    .m-newsb1 .item i em {
        font-size: inherit;
        font-style: normal;
        font-family: inherit;
        float: right;
    }

    .m-newsb1 {
        padding: 1.562vw 1.822vw;
        width: 40.62vw;
        height: 11.19vw;
        background: #fff;
        position: relative;
        border: 0.052vw #eee solid;
    }

    .m-newsb1 .tit a,
    .m-newsb2 .tit a {
        color: #343434
    }

    .m-newsb1 .tit a .color,
    .m-newsb2 .tit a .color {
        color: #064893;
        font-size: inherit;
        font-weight: bold;
    }

    .m-newsb1 .tit a .en,
    .m-newsb2 .tit a .en {
        color: #999
    }

    .m-newsb2 {
        padding: 1.562vw 1.822vw;
        width: 40.62vw;
        height: 11.71vw;
        background: #fff url(../images/20200624084237_26186131.jpg) no-repeat 1.822vw center;
        background-size: 44%;
        margin-top: 1.041vw;
        position: relative;
        border: 0.052vw #eee solid;
    }

    .m-newsb2 .fl {
        width: 19.01vw;
    }

    .m-newsb2 .fr {
        width: 18.75vw
    }


    .news_r2_cont {
        overflow: hidden;
    }

    .news_r2_cont_tit {
        position: absolute;
        width: 96%;
        top: 2.604vw;
        text-align: right;
        left: 0;
    }

    .news_r2_cont_tit li {
        width: 0.520vw;
        height: 0.520vw;
        background: #dedede;
        display: inline-block;
        border-radius: 2.604vw;
        -webkit-transition: 0.3s all ease;
        transition: 0.3s all ease;
        margin-right: 0.156vw;
        cursor: pointer
    }

    .news_r2_cont_tit li.cur {
        width: 1.562vw;
        background: #064893
    }


    .news_r3_cont {
        position: relative;
    }

    .m-newsb2 .item p {
        background: url(../images/20200624084422_210782888.png) no-repeat left center;
        font-size: 0.833vw;
        color: #333;
        font-weight: normal;
        padding-left: 2.083vw;
        line-height: 1.979vw;
    }

    .m-newsb2 .item span.small {
        background: url(../images/20200624084450_1035688776.png) no-repeat left center;
        font-size: 0.729vw;
        color: #999;
        padding-left: 2.083vw;
        display: block;
        line-height: 1.666vw;
        font-weight: 100;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .m-newsb2 .item {
        display: block;
        padding: 0.781vw 0 0vw;
    }

    .news_r3_cont_tit {
        position: absolute;
        width: 100%;
        top: -1.822vw;
        text-align: right;
        left: 0;
    }

    .news_r3_cont_tit li {
        width: 0.520vw;
        height: 0.520vw;
        background: #dedede;
        display: inline-block;
        border-radius: 2.604vw;
        -webkit-transition: 0.3s all ease;
        transition: 0.3s all ease;
        margin-right: 0.156vw;
        cursor: pointer
    }

    .news_r3_cont_tit li.cur {
        width: 1.562vw;
        background: #064893
    }



    .linkTagcs {
        width: 53.95vw;
        height: auto;
    }

    .linkTagcs ul {
        margin: 0vw;
        padding: 0vw;
        list-style-type: none;
    }

    .linkTagcs li {
        list-style: none;
        margin: 0vw;
        padding-right: 0.520vw;
        line-height: 4.166vw;
        float: left;
    }

    .linkTagcs li a {
        color: #fff;
        word-break: break-all;
    }

    .linkTagcs li img {
        border: 0vw;
    }


    .m-citys {
        padding: 0.520vw;
        background: #000000;
        overflow: hidden;
        width: 100%;
        display: inline-block;
        box-sizing: border-box;
    }

    .m-citys a {
        font-size: 0.729vw;
        display: inline-block;
        width: 4.947vw;
        float: left;
        color: #E1E0E0;
        margin: 0.104vw 0;
    }
}


@media screen and (max-width: 1199px) {
    .g-titb1 p {
        font-size: 26px;
    }

    .g-titb1 span {
        font-size: 14px;
    }
    #so{
        padding: 0;
        margin-top: 23px;
    }
    .link_bg,
    .m-citys {
        display: none;
    }

    .row-a6{
        margin-top: 4vw;
    }
    .m-prod_d table tr td {
        width: 33.33%;
        box-sizing: border-box;
        border: none;
        margin-left: 0 !important;
    }

    .m-prod_d .con {
        display: block;
        border: 1px solid #eee;
        margin: 0 5px;
    }

    .m-prod_d table tr td img {
        width: 100%;
        height: auto;
    }

    .m-prod_d table tr td span {
        height: auto;
        line-height: 1.5;
    }

    .m-prod_d table tr td span a {
        font-size: 16px;
        line-height: 50px;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
        padding-left: 5px;
    }

    .row-a2 {
        background: none;
        height: auto;
        display: none;
    }

    .m-bgb1 {
        display: block;
    }
    .m-problem{
        display: none;
    }

    .row-a3 {
        height: auto;
    }

    .ul-compared li {
        width: 49%;
        height: auto;
        padding-bottom: 10px;
    }

    .ul-compared .h3 {
        font-size: 18px;
    }

    .ul-compared .img {
        width: 90%;
        height: 200px;
        margin: 0 auto;
    }

    .ul-compared .desc p {
        font-size: 16px;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;

    }

    .ul-compared .desc span {
        font-size: 14px;
        line-height: 1.8;
        height: 3.6em;
        overflow: hidden;
    }

    .ul-compared .desc {
        width: 90%;
    }

    .ul-compared ul {
        overflow: hidden;
    }

    .ul-compared:before {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
    }

    .ul-prodadv {
        height: auto;
        overflow: hidden;
    }

    .ul-prodadv ul {
        margin: 7vw 0;
        overflow: hidden;
    }

    .ul-prodadv li p {
        font-size: 16px;
    }

    .ul-prodadv li span {
        font-size: 14px;
    }

    .ul-prodadv li i {
        width: 55px;
        height: 55px;
        line-height: 55px;
    }

    .ul-prodadv li i img {
        width: 100%;
    }

    .ul-prodadv li {
        width: 20%;
        text-align: center;
        margin: 0 !important;
    }


    .row-a4 {
        height: auto;
    }

    .ul-prodadv_b1 {
        overflow: hidden;
    }

    .ul-prodadv_b1 li {
        width: 25%;
        height: auto;
        padding: 0;
        background: transparent;
        margin: 0 !important;
        border-radius: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
    }

    .ul-prodadv_b1 .con {
        height: 180px;
        padding: 1vw;
        background: #064893;
        margin: 0 5px 10px;
        border-radius: 10px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        -o-border-radius: 10px;
    }

    .ul-prodadv_b1 li p:nth-child(1) {
       font-size: 20px;
       padding-top: 20px;
    }

    .ul-prodadv_b1 li:before {
        display: none;
    }

    .ul-prodadv_b1 li p:nth-child(4) {
        display: none;
    }

    .m-case>table>tbody>tr>td>div>a {
        font-size: 20px;
        padding: 1vw 0;
        color: #fff;
        font-weight: bold;
        text-align: center;
        margin-top: 15px;
    }

    .m-case>table>tbody>tr>td>div>a::after {
        top: 1vw;
        font-size: 14px;
    }

    .m-tit1 p {
        font-size: 16px;
    }

    .m-tit1 strong {
        font-size: 18px;
    }

    .m-tit1 b {
        font-size: 14px;
    }

    .ul-advs {
        transform: scale(.6);
        -webkit-transform: scale(.6);
        -moz-transform: scale(.6);
        -ms-transform: scale(.6);
        -o-transform: scale(.6);
    }

    .m-adv_card {
        height: auto;
    }

    .m-adv_card dl {
        height: 300px;
    }

    .m-adv_card dt {
        width: auto;
    }

    .m-card {
        padding: 2vw;
        width: 50%;
        height: 100%;
    }

    .m-card p {
        font-size: 24px;
    }

    .m-card b {
        font-size: 18px;
    }

    .m-card em {
        font-size: 16px;
    }

    .m-card span {
        font-size: 14px;
        line-height: 1.7;
    }

    .ul-listb1 li {
        width: 50%;
        height: auto;
        border: none;
        padding: 0;
        margin-right: 0px;
    }

    .ul-listb1 li a {
        width: auto;
        height: auto;
        padding: 1vw;
        border: 1px solid #eee;
        margin: 0 8px;
        box-sizing: border-box;
    }

    .witpic img {
        display: block;
        width: 100%;
        height: auto;
    }

    .m-txtb1 {
        padding: 0 15px;
        padding-top: 44px;
    }

    .m-txtb1 .pic {
        float: none;
        width: auto;
        margin-bottom: 15px;
    }

    .m-txtb1 .txt {
        width: auto;
        height: auto;
        overflow: hidden;
        margin-left: 0;
        margin-top: 1vw;
        padding-top: 1vw;
    }

    .m-txtb1 .txt .d {
        font-size: 18px;
        display: none;
    }

    .m-txtb1 .txt .font_en {
        margin-top: 1vw;
        line-height: 1.8;
        display: none;
    }

    .m-txtb1 .txt span {
        height: 1px;
    }

    .m-txtb1 .txt p {
        font-size: 14px;
        line-height: 2.5;
        margin-top: 1vw;
        color: #fff;
    }
    .m-txtb1 .txt a{
        margin: 15px auto;
    }
    .m-tit2 span {
        font-size: 14px;
    }

    .m-tit2 p {
        font-size: 18px;
    }

    .row-a9 .fr,
    .row-a9 .fl {
        float: none;
        width: auto;
    }

    .row-a9 .fl {
        margin-bottom: 10px;
    }


    .m-news {
        padding: 2vw 0;
    }

    .m-news .left {
        float: none;
        width: auto;
        height: auto;
        margin-right: 0;
    }

    .m-news .left .tit {
        width: auto;
        height: auto;
        background-size: 100% 100%;
    }

    .m-news .left .tit {
        padding: 1vw;
        margin-bottom: 1vw;
    }

    .m-news .right {
        height: auto;
    }

    .m-news .tit a {
        font-size: 18px;
    }

    .m-news_card {
        width: auto;
        position: static;
        overflow: hidden;
    }

    .m-news_card .item img {
        width: auto;
        height: auto;
        display: block;
        max-width: 100%;
        margin: 0 auto;
    }

    .news_r2_cont_tit,
    .news_r3_cont_tit,
    .news_l_cont_tit {
        position: static;
        text-align: center;
    }

    .m-news_card .item i {
        margin-top: 1vw;
        padding: 0 1vw;
        box-sizing: border-box;
    }

    .m-news_card .item p,
    .m-news_card .item strong {
        padding: 0 1vw;
    }

    .m-newsb2,
    .m-newsb1 {
        width: 100%;
        height: auto;
        padding: 1vw;
        box-sizing: border-box;
    }

    .m-newsb1 .item {
        display: block;
        float: none;
        width: auto;
        margin-right: 0;
        /* padding: 1vw; */
        /* box-sizing: border-box; */
    }

    .m-newsb2 .fr {
        width: 64%;
    }

    .m-newsb2 {
        background-position: 2% center;
        background-size: 33% 90%;
    }

    .m-news_card .item strong,
    .m-newsb1 .item strong {
        font-size: 16px;
        line-height: 2;
    }

    .witbtn .prev,
    .witbtn .next {
        display: none;
    }

    .witbtn {
        width: auto;
    }
}

@media screen and (max-width: 950px) {
    .banner {
    max-height:958px;
    overflow: hidden;
    position: relative;
    margin-top:0px;

    }
    .m-sobox::after{
        display: none;
    }

    .ul-types_a {
        width: auto;

    }

    .ul-advs {
        transform: none;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
    }

    .ul-advs li {
        width: 25%;
        height: 60px;
        box-sizing: border-box;
    }

    .ul-advs li span {
        margin: 15px 5px 0;
    }

    .ul-advs li strong {
        font-size: 16px;
        margin-top: 14px;
    }



    .m-sobox .text {
        display: none;
    }

    .m-sobox .btn {
        width: 100%;
        float: none;
        height: auto;
        margin: 0 auto;
    }
    .m-sobox{
        width: auto;
        height: auto;
        padding: 1vw;
    }
    #infoname{
        height: 60px;
        line-height: 1.5;
    }
    #so{
        margin-top: 17px;
    }
    .ul-types_a {
        white-space: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        text-align: center;
    }

    .ul-types_a a {
        float: none;
        display: inline-block;
        vertical-align: top;
        width: auto;
        box-sizing: border-box;
        padding: 11px 2vw 0 60px;
        margin: 0 1vw !important;
        background-size: 160px;
        text-align: left;
    }

    .ul-compared:before {
        width: 80px;
        height: 92px;
        background-size: 100%;
    }
}

@media screen and (max-width: 767px) {
    .m-newsb2 {
        background: #fff;
    }

    .m-newsb2 .fr {
        float: none;
        width: auto;
    }

    .m-sobox {
        height: auto;
    }

    .m-sobox .btn {
        height: auto;
        box-sizing: border-box;
    }

    #search_bg {
        line-height: 1.5;
    }

    #infoname {
        width: 100%;
        height: 35px;
        box-sizing: border-box;
        padding-right: 45px;
    }

    #so {
        position: absolute;
        top: 4px;
        margin-top: 0;
        right: 8px;
    }
    .ul-types_a a>p{
        font-size: 14px;
    }
    .ul-types_a a>span{
        font-size: 12px;
    }
    .ul-types_a a{
        padding-top: 6px;
        height: 45px;
    }
    .m-prod_d table tr td {
        width: 100%;
        margin-bottom: 10px;
    }

    .m-prod_d table tr+tr {
        margin-top: 0;
    }



    .ul-prodadv_b1 li {
        width: 50%;
    }


    .m-case>table>tbody>tr>td {
        width: 100%;
    }

    .m-case>table>tbody>tr>td+td {
        margin-left: 0;
    }

    .m-case>table>tbody>tr+tr {
        margin-top: 0;
    }

    .ul-advs {
        height: auto;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
    }

    .ul-advs li {
        float: none;
        width: auto;
        display: inline-block;
        overflow: hidden;
        padding: 0 1vw;
    }
    .ul-advs li strong{
        overflow: hidden;
    }
    .m-card {
        float: none;
        width: auto;
        height: 300px;
    }

    .ul-listb1 li{
        width: auto;
        float: none;
    }

    .ul-compared .h3{
        width: 90%;
        height: 50px;
        line-height: 50px;
        background-size: 100% 100%;
        font-size: 16px;
    }
    .ul-compared .img{
        height: auto;
    }
    .ul-compared .img img{
        margin-top: 1vw;
    }
    .ul-compared .desc p{
        font-size: 14px;
    }
    .ul-compared .desc span{
        font-size: 12px;
    }

    .m-txtb1 .txt a{
        margin: 10px auto;
    }
}