/* 样式初始化
--------------------------------------------------*/
html, body {
    width: 100%;
    height: 100%;
    background-color: #f9f9f9;
}

body {
    margin: 0;
    font-family: 'Microsoft YaHei';
    overflow-y: auto;
}

nav, footeraa, section, header, article {
    display: block;
}

ul, dl, dd, h1, h2, h3, h4, h5, h6, form, p, input, textarea, i, em, select {
    padding: 0;
    margin: 0;
    font-weight: normal;
    font-style: normal;
    font-family: 'Microsoft YaHei';
}

ul, li {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    margin: 0px;
    padding: 0px;
    border: none;
    max-width: 100%;
}

.img {
    display: block;
    height: 100%;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

    .img img {
        -webkit-transition: 0.5s;
        -moz-transition: 0.5s;
        transition: 0.5s;
    }

        .img img:hover {
            -webkit-transform: scale(1.04);
            -moz-transform: scale(1.04);
            transform: scale(1.04);
        }

a {
    color: #3e3a39;
    text-decoration: none;
}

    a:link {
        -webkit-tap-highlight-color: rgba(0,0,0,0); /*禁止链接高亮*/
        -webkit-touch-callout: none; /*禁止链接长按弹出选项菜单*/
    }

    a:hover, a:active {
        color: #f08c00;
    }

input, textarea {
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
}

    a, button, input, input:focus, textarea:focus, select:focus, label:focus, option:focus {
        outline: none;
    }

.clear {
    clear: both;
    height: 0;
    font-size: 1px;
    line-height: 0px;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.img_r img {
    float: right;
}

.img_l img {
    float: left;
}

.wingdings {
    font-family: Wingdings;
}
.t_right {
    text-align: right;
}

/* 主体结构
--------------------------------------------------*/
.clear {
    clear: both;
    height: 0;
    font-size: 0;
    line-height: 0px;
}

.blank5 {
    clear: both;
    height: 5px;
    overflow: hidden;
    display: block;
}

.blank8 {
    clear: both;
    height: 8px;
    overflow: hidden;
    display: block;
}

.blank10 {
    clear: both;
    height: 10px;
    overflow: hidden;
    display: block;
}

.blank15 {
    clear: both;
    height: 15px;
    overflow: hidden;
    display: block;
}

.blank20 {
    clear: both;
    height: 20px;
    overflow: hidden;
    display: block;
}

.center {
    text-align: center;
}

.radius {
    -webkit-border-radius: .5em;
    -moz-border-radius: .5em;
    border-radius: .5em;
}

.opacity {
    filter: alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
}

.wrap {
    width: 100%;
    max-width: 1170px;
    _width: 1170px;
    margin: 0 auto;
}
/*布局*/
.box_root {
    width: 100%;
    height: 100%;
    max-width: 1024px;
    margin: 0 auto;
    position: relative;
}

.owl-theme {
    position: relative;
}

.owl-wrapper:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.owl-wrapper {
    display: none;
    position: relative;
    -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-wrapper-outer {
    overflow: hidden;
    position: relative;
    width: 100%;
}

    .owl-wrapper-outer.autoHeight {
        -webkit-transition: height 500ms ease-in-out;
        -moz-transition: height 500ms ease-in-out;
        -ms-transition: height 500ms ease-in-out;
        -o-transition: height 500ms ease-in-out;
        transition: height 500ms ease-in-out;
    }

.owl-wrapper, .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    float: left;
}
    
    .owl-wrapper, .owl-item .item img {
        display: block;
        width: 100%;
        height: auto;
    }
    .owl-item .item .img {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
    }
    .owl-item .item em {
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
    }

    .owl-controls {
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    }

    .owl-controls .owl-prev, .owl-controls .owl-next {
        cursor: pointer;
        color: #FFF;
        display: inline-block;
        zoom: 1;
        *display: inline;
        margin: 0;
        padding: 0 0.5em;
        line-height: 3em;
        font-size: 1.8em;
        background: #000;
        filter: Alpha(Opacity=70);
        opacity: 0.7;
        border-radius: 0;
        font-family: "宋体";
        position: absolute;
        top: 50%;
        margin-top: -1.5em;
        transition: all 0.3s ease;
    }
        .owl-controls .owl-prev:hover, .owl-controls .owl-next:hover {
            opacity: 0.8;
            font-size: 2em;
        }

    .owl-controls .owl-prev {
        left: 0%;
        border-top-right-radius: 3em;
        border-bottom-right-radius: 3em;
    }

    .owl-controls .owl-next {
        right: 0%;
        border-top-left-radius: 3em;
        border-bottom-left-radius: 3em;
    }

    .owl-controls .owl-pagination {
        cursor: pointer;
        text-align: center;
        position: absolute;
        bottom: 0;
        width: 100%;
        padding: 0.3rem 0;
        display: block;
        overflow: hidden;
    }

        .owl-controls .owl-pagination .owl-page {
            display: inline-block;
            margin: 0;
            padding: 0;
            line-height: 0;
            zoom: 0;
            *display: inline;
        }

            .owl-controls .owl-pagination .owl-page span {
                display: block;
                margin: 0;
                padding: 0;
                line-height: 0;
                width: 0.8rem;
                height: 0.8rem;
                margin: 0 0.2em;
                filter: Alpha(Opacity=100);
                opacity: 1;
                background: #fff;
                border-radius: 50%;
            }

            .owl-controls .owl-pagination .owl-page.active span, .owl-theme .owl-controls.clickable .owl-page:hover span {
                filter: Alpha(Opacity=100);
                opacity: 1;
                z-index: 10;
                position: relative;
                background: #f08c00;
            }
/*--------------------------------------------------*/
.banner .owl-wrapper-outer, .banner .owl-wrapper, .banner .owl-item, .banner .item, .banner .item a {
    height: 560px;
    display: block;
    overflow: hidden;
    background-size: auto 100% !important;
}

/* 轮播图 头图配置 */
   .banner .owl-item:nth-of-type(1) a {
        background: url(../images/bannerzhaoping.jpg) top center no-repeat;
    }
    .banner .owl-item:nth-of-type(2) a {
        background: url(../images/banner1.png) top center no-repeat;
    }

    .banner .owl-item:nth-of-type(3) a {
        background: url(../images/index_banner1.jpg) top center no-repeat;
    }

    .banner .owl-item:nth-of-type(4) a {
        background: url(../images/index_banner2.jpg) top center no-repeat;
    }



.header {
    width: 100%;
}

    .header .top {
        display: none!important;
        height: 36px;
        line-height: 36px;
        background: #f8f8f8;
        width: 100%;
        overflow: hidden;
        text-align: right;
        font-size: 12px;
        margin-bottom: 1px;
    }

        .header .top span {
            padding-left: 15px;
        }

        .header .top img {
            padding-right: 5px;
        }

        .header .top a {
            color: #3e3a39;
        }

    .header .logo a {
        position: relative;
        display: block;
        height: 105px;
        width: auto;
        max-width: 170px;
    }
    .header .logo a img:first-of-type {
        width: 100px;
        height: 105px;
        transition:opacity 0.5s linear, visibility 0.5s linear;
    }
        .header .logo a #logoFlat {
            visibility: hidden;
            opacity: 0;
            position: absolute;
            bottom: -5px;
            left: -40px;
            width: 170px;
            transition: opacity 0.5s linear, visibility 0.5s linear;
        }

.headline {
    border-top: 1px solid #ddd;
    padding: 15px 0;
    background-color: #fff;
    position: relative;
}

    .headline .wrap {
        position: relative;
    }
    .headline .pcLangSelect {
        position: absolute;
        top: 0px;
        right: 25px;
        text-align: right;
        font-size: 12px;
        margin-bottom: 1px;
    }
        .headline .pcLangSelect span {
            padding-left: 15px;
        }

        .headline .pcLangSelect img {
            padding-right: 5px;
        }


.header .menu {
    position: relative;
    z-index: 999;
    position: absolute;
    top: 75px;
    right: 50px;
}

.menu,
.menu ul,
.menu ul li,
.menu ul li a,
.menu #menu-button {
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 99;
}

    .menu ul li a {
        display: block;
    }

        .menu ul li a.on {
            color: #f08c00;
        }

    .menu:after,
    .menu > ul:after {
        content: ".";
        display: block;
        clear: both;
        visibility: hidden;
        line-height: 0;
        height: 0;
    }

    .menu #menu-button {
        display: none;
    }

#menu-line {
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    background: #f08c00;
    -webkit-transition: all 0.25s ease-out;
    -moz-transition: all 0.25s ease-out;
    -ms-transition: all 0.25s ease-out;
    -o-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
}

.menu > ul > li {
    float: left;
}

.menu.align-center > ul {
    font-size: 0;
    text-align: center;
}

    .menu.align-center > ul > li {
        display: inline-block;
        float: none;
    }

.menu.align-center ul ul {
    text-align: left;
}

.menu.align-right > ul > li {
    float: right;
}

.menu.align-right ul ul {
    text-align: right;
}

.menu > ul > li > a {
    padding: 0 20px;
    margin-bottom: 13px;
    height: 32px;
    line-height: 32px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    color: #3e3a39;
}

.menu > ul > li:hover > a,
.menu > ul > li.active > a {
    color: #f08c00;
}

.menu > ul > li.has-sub > a {
    padding-right: 25px;
}

    .menu > ul > li.has-sub > a::after {
        position: absolute;
        top: 50%;
        right: 10px;
        width: 4px;
        height: 4px;
        margin-top: -4px;
        border-bottom: 1px solid #c5c5c5;
        border-right: 1px solid #c5c5c5;
        content: "";
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
        -webkit-transition: border-color 0.2s ease;
        -moz-transition: border-color 0.2s ease;
        -ms-transition: border-color 0.2s ease;
        -o-transition: border-color 0.2s ease;
        transition: border-color 0.2s ease;
    }

.menu ul ul {
    position: absolute;
    left: -9999px;
}
.menu ul ul::before {
    position:absolute;
    content: '';
    top:0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #f08c00;
    z-index: 9999;
}

.menu li:hover > ul {
    left: auto;
}

.menu.align-right li:hover > ul {
    right: 0;
}

.menu ul ul ul {
    margin-left: 100%;
    top: 0;
}

.menu.align-right ul ul ul {
    margin-left: 0;
    margin-right: 100%;
}

.menu ul ul li {
    height: 0;
    -webkit-transition: height .2s ease;
    -moz-transition: height .2s ease;
    -ms-transition: height .2s ease;
    -o-transition: height .2s ease;
    transition: height .2s ease;
}

.menu ul li:hover > ul > li {
    height: 42px;
    line-height: 42px;
}

.menu ul ul li a {
    padding: 0 28px;
    width: 200px;
    font-size: 13px;
    font-weight: 600;
    background-color: rgba(255,255,255,0.82);
    text-decoration: none;
    color: #666;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    display: block;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.menu>ul>li>ul ul li a {
    font-size: 12px;
}

    .menu ul ul li:hover > a:not(.showpro),
    .menu ul ul li a:not(.showpro):hover {
        background: #f9f9f9;
        color: #f08c00;
        padding-left: 18px !important;
    }

.menu ul ul li.has-sub > a::after {
    position: absolute;
    top: 13px;
    right: 10px;
    width: 4px;
    height: 4px;
    border-bottom: 1px solid #dddddd;
    border-right: 1px solid #dddddd;
    content: "";
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: border-color 0.2s ease;
    -moz-transition: border-color 0.2s ease;
    -ms-transition: border-color 0.2s ease;
    -o-transition: border-color 0.2s ease;
    transition: border-color 0.2s ease;
}

.menu.align-right ul ul li.has-sub > a::after {
    right: auto;
    left: 10px;
    border-bottom: 0;
    border-right: 0;
    border-top: 1px solid #ddd;
    border-left: 1px solid #dddddd;
}

.menu ul ul li.has-sub:hover > a::after {
    border-color: #fff;
}


.menu a.showpro {
    padding: 0;
    border: 1px solid #ccc;
}
.menu a.showpro div {
    padding: 0 28px;
    transition: all .2s ease-in-out;
}
.menu a.showpro div:hover {
    padding-left: 18px;
    color: #f08c00;
}
.menu .test_ul {
    max-height: 320px;
}
.menu .test_ul li:has(.spec_ul) {
    display: flex;
    flex-direction: column;
    height: auto;
}
.spec_ul {
    position: relative!important;
    top: 0!important;
    left: -250px!important;
}
.spec_ul a {
    padding-left: 25px!important;
    color: #999!important;
}
.spec_ul a:hover {
    color: #f08c00!important;
    background:#fff!important;
}


.search {
    position: absolute;
    top: 70px;
    right: 0;
    z-index: 999;
}

    .search input {
        outline: none;
    }

        .search input[type=search] {
            -webkit-appearance: textfield;
            -webkit-box-sizing: content-box;
            font-family: inherit;
            font-size: 100%;
        }

        .search input::-webkit-search-decoration,
        .search input::-webkit-search-cancel-button {
            display: none;
        }

        .search input[type=search] {
            background: #ededed url(../images/search-icon.png) no-repeat 9px center;
            border: solid 1px #ccc;
            padding: 8px 10px 8px 10px;
            width: 55px;
            font: 85%/140% Arial, Helvetica, sans-serif;
            -webkit-border-radius: 10em;
            -moz-border-radius: 10em;
            border-radius: 10em;
            -webkit-transition: all .5s;
            -moz-transition: all .5s;
            transition: all .5s;
        }

            .search input[type=search]:focus {
                width: 130px;
                background: #ededed url(../images/search-icon.png) no-repeat 139px center;
                background-color: #fff;
                border-color: #6dcff6;
                -webkit-box-shadow: 0 0 5px rgba(109,207,246,.5);
                -moz-box-shadow: 0 0 5px rgba(109,207,246,.5);
                box-shadow: 0 0 5px rgba(109,207,246,.5);
            }

        .search input:-moz-placeholder {
            color: #999;
        }

        .search input::-webkit-input-placeholder {
            color: #999;
        }

        .search input[type=search] {
            width: 15px;
            padding-left: 10px;
            color: transparent;
            cursor: pointer;
        }

            .search input[type=search]:hover {
                background-color: #fff;
            }

            .search input[type=search]:focus {
                width: 130px;
                padding-right: 32px;
                color: #000;
                background-color: #fff;
                cursor: auto;
            }

        .search input:-moz-placeholder {
            color: transparent;
        }

        .search input::-webkit-input-placeholder {
            color: transparent;
        }

.notice_bx {
    height: 20px;
    line-height: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #ccc;
    overflow: hidden;
}

    .notice_bx .title {
        float: left;
        font-size: 16px;
        color: #f08c00;
    }

.notice_cut {
    font-size: 12px;
    margin-left: 140px;
}

    .notice_cut i {
        float: right;
        color: #777;
    }

    .notice_cut a {
        display: block;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
        color: #3e3a39;
    }

        .notice_cut a:hover {
            color: #f08c00;
        }

.title_bx {
    width: 100%;
    max-width: 400px;
    margin: 20px auto;
    margin-top: 45px;
    border-bottom: 1px solid #ddd;
    font-size: 24px;
    color: #3e3a39;
    padding-bottom: 15px;
    text-align: center;
    position: relative;
}

    .title_bx:after {
        content: "";
        width: 8px;
        height: 7px;
        background-color: #f08c00;
        display: block;
        position: absolute;
        left: 50%;
        margin-left: -4px;
        bottom: -4px;
    }

.bgf6 {
    background-color: #f6f6f6;
}

.about_bx {
    display: block;
    overflow: hidden;
    padding: 0 0 50px 0;
}

    .about_bx .text {
        padding: 25px 0;
        line-height: 30px;
        font-size: 14px;
        text-align: center;
        color: #3e3a39!important;
    }

.about_cut em {
    font-size: 12px;
    line-height: 24px;
    display: block;
    overflow: hidden;
    background-color: #333436;
    color: #fff;
}

.about_cut a {
    margin: 0 5%;
    text-align: center;
    display: block;
    overflow: hidden;
}

    .about_cut a:hover em {
        background-color: #017fc6;
    }

.pro_bx {
    padding: 0 0 50px 0;
    display: block;
    overflow: hidden;
}

.pro_cut em {
    line-height: 40px;
    display: block;
    overflow: hidden;
    background-color: #e3e3e3;
    color: #333;
    font-size: 13px;
}

.pro_cut a {
    margin: 0 5%;
    text-align: center;
    display: block;
    overflow: hidden;
}

    .pro_cut a:hover em {
        background-color: #017fc6;
        color: #fff;
    }


.news_bx {
    padding: 0 0 50px 0;
    display: block;
    overflow: hidden;
}

    .news_bx li {
        width: 50%;
        float: left;
        padding: 0 2%;
        box-sizing: border-box;
        position: relative;
        margin: 0.6rem 0;
    }

        .news_bx li .img {
            float: left;
            max-width: 30%;
        }

        .news_bx li .inner {
            float: left;
            padding: 0 2%;
            max-width: 66%;
        }

            .news_bx li .inner b {
                font-size: 16px;
                font-weight: 550;
                color: #3e3a39;
            }

            .news_bx li .inner em {
                font-size: 12px;
                color: #3e3a39;
                display: block;
                margin-top: 1em;
            }

            .news_bx li .inner i {
                position: absolute;
                right: 2%;
                bottom: 2px;
            }

                .news_bx li .inner i a {
                    background-color: #f08c00;
                    color: #fff;
                    text-transform: uppercase;
                    border-radius: 4px;
                    font-size: 12px;
                    padding: 0 0.6rem;
                    line-height: 1.8em;
                    display: block;
                    transition: background-color 0.6s ease;
                }
                .news_bx li .inner i a:hover {
                    background-color: #ff9f1a;
                }

.news_title {
    overflow: hidden;
    margin-top: -30px;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .news_title summary {
        color: #fff;
        background: #f08c00;
        width: 120px;
        height: 120px;
        float: left;
        margin-top: 22px;
        -webkit-transition: 0.3s;
        -moz-transition: 0.3s;
        transition: 0.3s;
    }

        .news_title summary p {
            font-weight: bold;
            padding: 20px 20px 0;
            font-size: 40px;
            height: 40px;
            line-height: 40px;
            box-sizing: content-box!important;
        }

        .news_title summary aside {
            padding: 0 25px;
            font-size: 16px;
        }

    .news_title article {
        width: 965px;
        float: right;
    }

        .news_title article h2 {
            margin-top: 25px;
            font-weight: bold;
            color: #f08c00;
            font-size: 18px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            display: block;
        }

        .news_title article aside {
            font-size: 12px;
            color: #999;
            margin: 14px 0 15px;
        }

.news_con {
    overflow: hidden;
}

    .news_con h2 {
        font-weight: bold;
        text-align: center;
        margin-top: 15px;
        font-size: 18px;
    }

    .news_con p {
        line-height: 30px;
        margin: 15px 0;
    }

.return {
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    padding: 30px 0;
    margin-top: 40px;
    overflow: hidden;
}

    .return .fnahui {
        height: 50px;
        line-height: 50px;
        text-align: center;
        width: 140px;
        background: #e67817;
        color: #fff;
        display: block;
        font-size: 16px;
    }

    .return .fnahui_r {
        float: right;
    }

    .return .bshare-custom {
        float: left;
        margin-top: 15px;
    }

.pro_xg {
    overflow: hidden;
}

    .pro_xg h2 {
        font-size: 20px;
        height: 60px;
        line-height: 60px;
        font-weight: bold;
        color: #047bca;
    }

    .pro_xg ul {
        overflow: hidden;
    }

        .pro_xg ul li {
            padding-left: 10px;
            position: relative;
            overflow: hidden;
            height: 36px;
            line-height: 36px;
        }

            .pro_xg ul li i {
                position: absolute;
                left: 0;
                top: 50%;
                margin-top: -2px;
                width: 4px;
                height: 4px;
                background: #999;
                border-radius: 50%;
            }

            .pro_xg ul li a {
                float: left;
            }

            .pro_xg ul li span {
                color: #999;
                float: right;
            }


.footer {
    background: #3e3a39;
    color: #fff;
}

.foot_nav {
    padding: 35px 0;
    display: block;
    overflow: hidden;
}

    .foot_nav ul {
        display: flex;
        width: 100%;
    }

    .foot_nav li {
        
        width: 14%;
        float: left;
        box-sizing: content-box;
    }

        .foot_nav li.qr {
            text-align: center;
            padding-right: 0;
            width: 15%;
        }

            .foot_nav li.qr em {
                display: block;
                overflow: hidden;
                color: #fff;
                font-size: 12px;
            }

        .foot_nav li h3 {
            /*background: url(../images/foot_line.png) bottom repeat-x;*/
            padding-bottom: 15px;
            display: block;
            
        }

            .foot_nav li h3, .foot_nav li h3 a {
                font-size: 15px;
                color: #fff!important;
                
            }

        .foot_nav li p, .foot_nav li p a {
            font-size: 14px;
            color: #999;
            line-height: 25px;
            transition: color 0.3s linear;
        }

        .foot_nav li a:hover {
            color: #fff;
        }

.copy {
    font-size: 14px;
    padding: 15px 0;
    background: #212528;
    color: #fff;
    display: block;
    overflow: hidden;
}
.copy a {
    color: #fff;
}
.footnav {
    display: none;
}


.banners .inner {
    width: 100%;
    height: 365px;
    display: block;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: auto 100% !important;
}
.banners .innerImg {
    width: 100%;
    height: 365px;
    display: block;
    object-fit: cover;
}

.sub_box {
    background: #f9f9f9;
    text-align: center;
    height: 62px;
    line-height: 62px;
    display: block;
    overflow: hidden;
    border-bottom: 1px solid #dcdcdc;
    margin-bottom: 20px;
}

    .sub_box ul {
        float: right;
        display: block;
        overflow: hidden;
        height: 62px;
    }

    .sub_box li {
        float: left;
        margin-left: 25px;
    }

        .sub_box li a {
            color: #666;
        }

            .sub_box li a.on, .sub_box li a:hover {
                color: #f08c00;
            }

.location {
    float: left;
    background: url(../images/ico_home.png) left center no-repeat;
    padding-left: 20px;
    font-size: 16px;
}

    .location em {
        color: #f08c00;
    }

.about .inner {
    padding: 25px;
    color: #666;
    font-size: 14px;
    line-height: 1.6em;
}

.inner .title {
    font-size: 18px;
    color: #333;
    padding-bottom: 10px;
}

.filter {
    padding: 15px 20px;
    background: #fff;
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

    .filter select {
        font-size: 14px;
        border: none;
        color: #666;
        background-color: #f9f9f9;
        padding: 0 15px;
    }

    .filter span {
        float: right;
    }

.product ul {
    display: block;
    overflow: hidden;
}

.product li {
    width: 46%;
    float: left;
    padding: 0 2%;
    margin-bottom: 30px;
}

    .product li .inner {
        padding: 10px;
        background-color: #fff;
        display: block;
        overflow: hidden;
    }

        .product li .inner b {
            color: #f08c00;
            font-size: 20px;
            display: block;
            overflow: hidden;
            font-weight: normal;
            padding: 0 10px;
        }

        .product li .inner em {
            display: block;
            overflow: hidden;
            height: 50px;
            line-height: 20px;
            font-size: 12px;
            color: #666;
            padding: 5px 10px 10px 0px;
            border-bottom: 1px solid #e6e6e6;
        }

            .product li .inner em a {
                color: #888;
                margin-right: 15px;
            }

                .product li .inner em a:hover {
                    color: #f08c00;
                }

        .product li .inner i {
            padding: 10px 10px;
            display: block;
            overflow: hidden;
        }

            .product li .inner i a {
                background: url(../images/ico_more.png) right center no-repeat;
                padding-right: 20px;
                font-size: 14px;
                color: #666;
            }

                .product li .inner i a:hover {
                    color: #0b84c6;
                }

.listnav {
    border-bottom: 1px solid #ddd;
    margin-bottom: 30px;
}

.listnav ul {
    display: flex;
    justify-content: space-around;
    overflow: hidden;
    /*margin-bottom: 40px;*/
}

.listnav li {
    width: 153px;
    overflow: hidden;
    margin-right: 2px;
    margin-bottom: 12px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .listnav li a {
        padding: 0 20px;
        height: 100%;
        display: block;
        overflow: hidden;
        text-align: center;
        font-weight: 600;
        color: #3e3a39;
        transition: all 0.3s ease-in;
    }

        .listnav li a.on, .listnav li a:hover {
            background-color: #f08c00;
            color: #fff;
        }

.subnavAndPro {
    display: flex;
    justify-content: center;
}

.listnav1 {
    color: #999;
}
    .listnav1 ul {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        width: 230px;
        background-color: #fff;
        overflow: hidden;
    }
        .listnav1 ul li {
            padding: 10px 10px;
            margin-bottom: 10px;
            background-color: #fff;
            width: 100%;
            transition: margin .2s ease-in-out;
        }
        .listnav1 ul li:hover {
            border-right: 3px solid #f08c00;
        }
            .listnav1 ul li:has(a.on) {
                border-right: 3px solid #f08c00;
            }

.listnav1 ul li a{
    display: block;
    width: 160px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-align:right;
    color:#666; 
    font-weight: 600;
    transition: all .3s ease-in-out;
}
        .listnav1 ul li:hover a {
            
            color: #f08c00;
            margin-left: 45px;
        }

    .listnav1 li a.on {
        color: #f08c00;
        margin-left: 45px;
    }
.listnav2 ul li {
   float:left; padding:0 10px;
}
.listnav2 {
   display: none;
   padding:10px 0 10px 40px;color:#999
}
.listnav2 ul li a{ color:#999}
.listnav2 ul li a:hover{ color:#b1cc1d}
.listnav2 li a.on{ color:#f08c00}

.productlist {
    width: 80%;
}

.productlist ul {
    display: block;
    overflow: hidden;
    margin-bottom: 40px;
}

.productlist li {
    width: 25%;
    float: left;
    padding: 0 10px;
    box-sizing: border-box;
    /* margin-bottom: 40px;*/
    height: 200px;
}

    .productlist li a {
        color: #666;
        text-align: center;
        display: block;
        overflow: hidden;
    }

    .productlist li span {
        border: 10px solid #fff;
        box-sizing: border-box;
    }

    .productlist li em {
        line-height: 44px;
        margin-top: 3px;
        background: #fff;
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .productlist li a:hover {
        color: #f08c00;
    }

.productshow {
    padding: 20px 20px;
    background: #fff;
    margin-bottom: 40px;
}

.pro_zoom {
    width: 40%;
    float: left;
}

    .pro_zoom img {
        width: 100%;
    }

.pro_info {
    width: 60%;
    float: right;
}

    .pro_info dl {
        position: relative;
        padding-left: 20px;
    }

    .pro_info dt {
        height: 60px;
        line-height: 60px;
        border-bottom: 1px solid #ddd;
        color: #333;
        font-size: 16px;
    }

    .pro_info dd {
        padding: 15px 0;
        height: 8em;
        line-height: 2em;
        font-size: 14px;
    }

.pro_btn {
    float: left;
    clear: both;
}

    .pro_btn a {
        width: 155px;
        height: 28px;
        line-height: 28px;
        padding: 0;
        font-size: 14px;
        background: url(../images/pro_btn.png) center no-repeat;
        color: #fff;
        display: block;
        text-align: center;
    }

.detail_top {
    height: 40px;
    border-bottom: 1px solid #999;
    margin-top: 30px;
}

    .detail_top em {
        background: #999;
        color: #fff;
        float: left;
        line-height: 40px;
        padding: 0 25px;
    }

.detail .detail_inner {
    padding: 20px 15px;
    padding-top: 40px;
    font-size: 14px;
    line-height: 1.8em;
    color: #666;
}

.ad {
    line-height: 0;
    padding: 0;
    margin: 0;
}

.supplier {
    margin-bottom: 40px;
}

    .supplier ul {
        display: block;
        margin-left: -15px;
        margin-top: 15px;
        display: block;
        overflow: hidden;
    }

    .supplier li {
        width: 33.33%;
        height: 108px;
        overflow: hidden;
        float: left;
        padding-left: 15px;
        box-sizing: border-box;
    }

        .supplier li a {
            line-height: 108px;
            display: block;
            background-color: #267bb5;
            color: #fff;
            font-size: 24px;
        }

        .supplier li img {
            float: left;
            padding-left: 10%;
            padding-right: 5%;
        }

.contact {
    background: url(../images/contact_bg.jpg) center top no-repeat;
    display: block;
    overflow: hidden;
}

    .contact .title {
        margin: 170px 0 0 35px;
        font-size: 22px;
        color: #f08c00;
        padding: 10px 10px;
        border-bottom: 2px solid #f08c00;
        float: left;
    }

    .contact dl {
        display: block;
        overflow: hidden;
        clear: both;
        padding: 20px 0 0 35px;
    }
    .contact dl>dt:nth-of-type(2)>dl:first-of-type div {
        color: #f08c00!important;
    }

    .contact h3 {
        font-size: 18px;
    }

    .contact p {
        line-height: 26px;
        padding-left: 40px;
        margin-top: 20px;
        font-size: 14px;
        background: 0 0 no-repeat;
    }

        .contact p.tel {
            background-image: url(../images/i_tel.png);
        }

        .contact p.mail {
            background-image: url(../images/i_mail.png);
        }

        .contact p.add {
            background-image: url(../images/i_add.png);
        }

        .contact p.fax {
            background-image: url(../images/i_fax.png);
        }

    .contact dt {
        margin-bottom: 90px;
    }

        .contact dt h3 {
            color: #f08c00;
        }

    .contact dd {
        width: 50%;
        float: left;
        margin-bottom: 40px;
    }

.customers {
    background: #fff;
    padding: 20px;
}

    .customers h3 {
        color: #0B84C5;
        font-size: 22px;
        padding: 0 0 10px 20px;
        border-bottom: 1px solid #EFEFEF;
        margin-bottom: 10px;
    }

    .customers ul {
        display: block;
        overflow: hidden;
    }

    .customers li {
        float: left;
        margin: 5px 0;
        max-width: 16%;
        padding: 0 0.8%;
        text-align: center;
    }

        .customers li img {
            border: 1px solid #ddd;
        }

.cul {
    display: block;
    overflow: hidden;
    background: #fff;
    padding: 30px 30px;
    margin-bottom: 40px;
}

    .cul .text {
        width: 60%;
        float: left;
        font-size: 14px;
        color: #333;
    }

        .cul .text p {
            margin-bottom: 15px;
        }
        

        .cul .text strong {
            font-size: 16px;
            color: #0B84C5;
            display: block;
            overflow: hidden;
            padding-bottom: 5px;
            font-weight: normal;
        }

    .cul .pic {
        width: 30%;
        float: right;
        padding: 0 3% 0 7%;
    }

.honor {
    margin-bottom: 40px;
}

.honor_list {
    position: relative;
    padding: 20px 0;
}

    .honor_list:after {
        content: "";
        position: absolute;
        top: 0;
        left: 55px;
        width: 3px;
        height: 100%;
        background-color: #999;
        z-index: 0;
    }

    .honor_list .title {
        position: absolute;
        left: 0;
        top: 20px;
        text-align: center;
        padding: 10px 0;
        background: #f9f9f9;
        z-index: 10;
        font-size: 14px;
        color: #047BCA;
        width: 110px;
    }

        .honor_list .title i {
            display: block;
            overflow: hidden;
            font-size: 12px;
            border-bottom: 2px solid #999;
            width: 80px;
            margin: 0 auto;
        }

.honor_cut {
    padding-left: 150px;
}

    .honor_cut .item img {
        width: auto;
        height: 200px;
        margin: 0 auto;
    }

    .honor_cut .item em {
        display: block;
        overflow: hidden;
        text-align: center;
        padding: 10px 0;
        font-size: 12px;
    }

.honor_list:first-child:before {
    content: "";
    position: absolute;
    top: -8px;
    left: 55px;
    width: 26px;
    height: 15px;
    background: url(../images/arrow_t.png);
    margin-left: -12px;
}

.social {
    display: block;
    overflow: hidden;
    padding: 20px;
    background: #fff;
}

.sociallist {
    float: left;
    width: 50%;
    padding: 0 20px;
    box-sizing: border-box;
}

    .sociallist .title {
        background: url(../images/ico_social.png) left center no-repeat;
        padding-left: 15px;
        margin-bottom: 0px;
        font-size: 18px;
        color: #f08c00;
    }

    .sociallist .inner {
        padding: 10px;
    }

        .sociallist .inner h3 a {
            font-size: 18px;
            color: #f08c00;
            padding: 10px 0 5px 0;
            display: block;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .sociallist .inner p {
            font-size: 14px;
            line-height: 1.6em;
            color: #3e3a39;
        }

    .sociallist li {
        margin-bottom: 0px;
    }

.news {
    padding: 10px 20px;
    padding-bottom: 20px;
    background: #fff;
    display: block;
    overflow: hidden;
    margin-bottom: 40px;
}

    .news .hot {
        display: block;
        overflow: hidden;
        border-bottom: 1px solid #e8e8e8;
        padding: 20px 10px;
        margin-bottom: 20px;
    }

        .news .hot .img {
            float: right;
            width: auto;
            max-width: 35%;
        }

        .news .hot .inner {
            float: left;
            max-width: 65%;
            padding: 20px;
            box-sizing: border-box;
        }

            .news .hot .inner h3, .news .hot .inner h3 a {
                font-size: 18px;
                color: #f08c00;
            }

            .news .hot .inner p {
                padding: 25px 0;
                font-size: 14px;
                line-height: 1.6em;
                color: #666;
            }

            .news .hot .inner i a {
                font-size: 14px;
                color: #666;
                background: url(../images/ico_more.png) right center no-repeat;
                padding-right: 20px;
            }

    .news li {
        padding: 20px 5px;
        border-bottom: 1px dotted #e8e8e8;
    }

        .news li .time {
            width: 80px;
            height: 80px;
            float: left;
            padding: 20px;
            background: #f9f9f9;
            color: #666;
            font-size: 16px;
            box-sizing: content-box!important;
        }

            .news li .time b {
                display: block;
                overflow: hidden;
                font-size: 46px;
                line-height: 1em;
            }

            .news li .time em {
                display: block;
                overflow: hidden;
                line-height: 1.2em;
            }

            .news li .time span {
                display: block;
                overflow: hidden;
                line-height: 1.2em;
            }

        .news li:hover .time {
            background: #f08c00;
            color: #fff;
        }

        .news li .inner {
            padding: 20px;
            display: block;
            overflow: hidden;
        }

            .news li .inner b {
                display: block;
                overflow: hidden;
                font-size: 18px;
                text-overflow: ellipsis;
                white-space: nowrap;
                color: #f08c00;
                font-weight: normal;
            }

            .news li .inner i {
                display: block;
                overflow: hidden;
                font-size: 16px;
                padding: 5px 0;
                font-size: 12px;
                color: #888;
            }

            .news li .inner span {
                display: block;
                overflow: hidden;
                font-size: 14px;
                color: #666;
                line-height: 1.2em;
                height: 2.4em;
            }

.layout .map {
    padding: 5% 8%;
    text-align: center;
    background-color: #fff;
    margin-bottom: 40px;
}

.layout .inner {
    padding: 30px 50px;
    background-color: #fff;
    margin-bottom: 40px;
    display: block;
    overflow: hidden;
}

    .layout .inner .ad {
        float: left;
    }

.layoutlist {
    padding-left: 60px;
    display: block;
    overflow: hidden;
}

    .layoutlist li {
        position: relative;
        padding-left: 120px;
        line-height: 20px;
    }

        .layoutlist li h3 {
            position: absolute;
            top: 10px;
            left: 0;
            width: 100px;
            text-align: right;
            color:#f08c00;
        }

        .layoutlist li .text {
            border-left: 1px solid #e4e4e4;
            padding: 10px 0;
            padding-left: 25px;
        }

            .layoutlist li .text:before {
                content: "";
                position: absolute;
                top: 20px;
                left: 120px;
                width: 18px;
                height: 1px;
                background: #e4e4e4;
            }


.scope {
    background: #fff;
    overflow: hidden;
    padding: 30px;
    margin-bottom: 22px;
}

.journal {
    overflow: hidden;
    padding-bottom: 40px;
}

    .journal picture {
        float: left;
        width: 246px;
        height: 206px;
        overflow: hidden;
    }

        .journal picture img {
            width: 100%;
            -webkit-transition: 0.5s;
            -moz-transition: 0.5s;
            transition: 0.5s;
        }

    .journal:hover picture img {
        -webkit-transform: scale(1.06);
        -moz-transform: scale(1.06);
        transform: scale(1.06);
    }

    .journal article {
        padding-left: 20px;
        height: 206px;
        overflow: hidden;
    }

        .journal article h2 {
            font-size: 18px;
            color: #047ACA;
            margin: 10px 0;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .journal article p {
            line-height: 26px;
            height: 85px;
        }

        .journal article a {
            margin-top: 15px;
            display: block;
            height: 46px;
            line-height: 46px;
            color: #fff;
            background: url(../images/ico_down.png) no-repeat 16px center #047ACA;
            padding: 0 20px 0 40px;
            float: left;
            clear: both;
            background-size: 20px auto;
        }

.journal_title {
    overflow: hidden;
    border-top: 2px solid #e1e1e1;
    padding-bottom: 20px;
    border-bottom: 2px solid #e1e1e1;
}

    .journal_title h2 {
        font-size: 18px;
        color: #f08c00;
        margin: 15px 0 8px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .journal_title aside {
        font-size: 16px;
        color: #333;
        margin-bottom: 12px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .journal_title article {
        overflow: hidden;
    }

        .journal_title article picture {
            float: left;
            width: 120px;
            height: 120px;
            overflow: hidden;
        }

            .journal_title article picture img {
                width: 100%;
                -webkit-transition: 0.5s;
                -moz-transition: 0.5s;
                transition: 0.5s;
            }

        .journal_title article:hover picture img {
            -webkit-transform: scale(1.06);
            -moz-transform: scale(1.06);
            transform: scale(1.06);
        }

        .journal_title article div {
            padding-left: 20px;
            display: block;
            overflow: hidden;
        }

            .journal_title article div p {
                height: 80px;
                margin-top: 8px;
                line-height: 26px;
                overflow: hidden;
            }

            .journal_title article div a {
                font-size: 12px;
            }

.journal_list {
    overflow: hidden;
}

    .journal_list h2 {
        font-size: 18px;
        color: #f08c00;
        margin-top: 15px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .journal_list ul {
        overflow: hidden;
    }

        .journal_list ul li {
            border-bottom: 1px dotted #e1e1e1;
            padding-bottom: 20px;
            margin-top: 15px;
        }

            .journal_list ul li h3 {
                font-size: 16px;
                color: #333;
                margin-bottom: 10px;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
            }

    .journal_list article {
        overflow: hidden;
    }

        .journal_list article picture {
            float: left;
            width: 120px;
            height: 120px;
            overflow: hidden;
        }

            .journal_list article picture img {
                width: 100%;
                -webkit-transition: 0.5s;
                -moz-transition: 0.5s;
                transition: 0.5s;
            }

        .journal_list article:hover picture img {
            -webkit-transform: scale(1.06);
            -moz-transform: scale(1.06);
            transform: scale(1.06);
        }

        .journal_list article div {
            padding-left: 20px;
            display: block;
            overflow: hidden;
        }

            .journal_list article div p {
                height: 110px;
                margin-top: 8px;
                line-height: 26px;
            }

            .journal_list article div a {
                font-size: 12px;
            }

.pagination, #pagination {
    overflow: hidden;
    height: 50px;
    padding: 20px 0;
    box-sizing: content-box!important;
}

    .pagination a, #pagination a {
        display: inline-block;
        *display: inline;
        *zoom: 1;
        width: 40px;
        height: 40px;
        text-align: center;
        line-height: 40px;
        border: 2px solid #f2f2f2;
        background: #fff;
        color: #ccc;
        -webkit-transition: 0.3s;
        -moz-transition: 0.3s;
        transition: 0.3s;
        margin-right: 5px;
        font-weight: bold;
        font-size: 20px;
        box-sizing: content-box!important;
    }

        .pagination a.prev, .pagination a.next, #pagination a.prev, #pagination a.next {
            color: #ccc;
        }

            .pagination a.prev:hover, .pagination a.next:hover,#pagination a.prev:hover, #pagination a.next:hover {
                background: #f08c00;
            }

        .pagination a:hover, .pagination a.act, #pagination a:hover, #pagination a.active {
            background: #f08c00;
            color: #fff;
            border-color: #f08c00;
        }
        .pagination a:nth-child(1), .pagination a:nth-child(2), .pagination a:nth-last-child(1), .pagination a:nth-last-child(2) {
            font-size: 12px;
        }
    .pagination input {
        width:40px!important;
        height: 40px;
        box-sizing: inherit;
        border: 2px solid #f2f2f2;
        text-align:center;
        text-transform:capitalize;
        transition: 0.5s;
    }
    .pagination input:last-of-type:hover {
        background-color: #f08c00;
    }

        .download_list {
            overflow: hidden;
            margin-top: 20px;
        }
.productlist .img img {
    width:100%;
    height: auto;
    max-height: 77px;
}
.news_bx .img {
    border-radius: 0.5rem;
}
.news_bx .img img {
    width: 168px;
    height: 126px;
    object-fit: cover;
}
/* ====================
          手机
==================== */

@media all and (max-width:768px), only screen and (-webkit-min-device-pixel-ratio:2) and (max-width:1024px), only screen and (min--moz-device-pixel-ratio:2) and (max-width:1024px), only screen and (-o-min-device-pixel-ratio:2/1) and (max-width:1024px), only screen and (min-device-pixel-ratio:2) and (max-width:1024px), only screen and (min-resolution:192dpi) and (max-width:1024px), only screen and (min-resolution:2dppx) and (max-width:1024px) {
    .header .top {
        display: block!important;
        text-align: left;
    }

    .listnav1 {
        display: none;
    }
    .productlist {
        width: auto;
    }

    .search {
        top: -40px;
        right: 5px;
    }

        .search input[type=search] {
            padding: 5px 7px;
            background-position: 6px center;
        }

    .headline {
        position: relative;
        padding: 5px 0;
    }
    .headline .pcLangSelect {
        display: none;
    }

    .logo {
        padding: 5px 10px;
        float: left;
        position: relative;
        z-index: 99999;
    }
        .logo a {
            height: auto!important;
        }
        .logo img {
            width: auto!important;
            height: 50px!important;
        }
        .logo img#logoFlat {
            display: none;
        }

    .header .menu {
        width: 100%;
        top: 0;
        right: 0;
    }

    .menu ul {
        width: 100%;
        display: none;
        background: #fff;
        margin-top:15px;
    }

    .menu.align-center > ul,
    .menu.align-right ul ul {
        text-align: left;
    }

    .menu ul li,
    .menu ul ul li,
    .menu ul li:hover > ul > li {
        width: 100%;
        height: auto;
        border-top: 1px solid rgba(120, 120, 120, 0.15);
    }

        .menu ul li a,
        .menu ul ul li a {
            width: 100%;
            display: block;
            z-index: 0;
        }

    .menu > ul > li,
    .menu.align-center > ul > li,
    .menu.align-right > ul > li {
        float: none;
        display: block;
    }

        .menu ul li a, .menu > ul > li > a {
            height: auto;
            line-height: 40px;
        }

    .menu ul ul li a {
        font-size: 12px;
        color: #666;
    }

        .menu ul ul li:hover > a,
        .menu ul ul li a:hover {
            color: #444;
            background: #fff;
        }

        .menu ul ul li:hover > a, .menu ul ul li a:hover {
            background: #eee !important;
        }

    .menu ul ul ul li a {
        padding-left: 40px;
    }

    .menu ul ul,
    .menu ul ul ul {
        position: relative;
        left: 0;
        right: auto;
        width: 100%;
        margin: 0;
        border-top: 1px solid #ddd;
    }

        .menu > ul > li.has-sub > a::after,
        .menu ul ul li.has-sub > a::after {
            display: none;
        }

    .menu-line {
        display: none;
    }

    .menu #menu-button {
        display: block;
        padding: 20px;
        height: 50px;
        line-height: 50px;
        color: #fff;
        cursor: pointer;
        font-size: 12px;
        text-transform: uppercase;
    }

        .menu #menu-button::after {
            content: '';
            position: absolute;
            top: 20px;
            right: 10px;
            display: block;
            width: 15px;
            height: 2px;
            background: #444;
        }

        .menu #menu-button::before {
            content: '';
            position: absolute;
            top: 25px;
            right: 10px;
            display: block;
            width: 15px;
            height: 3px;
            border-top: 2px solid #444;
            border-bottom: 2px solid #444;
        }

    .menu .submenu-button {
        position: absolute;
        z-index: 99;
        right: 0;
        top: 0;
        display:;
        border-left: 1px solid rgba(120, 120, 120, 0.15);
        height: 100%;
        line-height: 1;
        width: 52px;
        cursor: pointer;
    }

        .menu .submenu-button::after {
            content: '';
            position: absolute;
            top: 16px;
            left: 26px;
            display: block;
            width: 1px;
            height: 11px;
            background: #444;
            z-index: 99;
        }

        .menu .submenu-button::before {
            content: '';
            position: absolute;
            top: 21px;
            left: 21px;
            display: block;
            width: 11px;
            height: 1px;
            background: #444;
            z-index: 99;
        }

        .menu .submenu-button.submenu-opened:after {
            display: none;
        }

    .menu ul ul li a {
        background: #f5f5f5 !important;
    }

    .menu ul ul ul li a {
        background: #eee !important;
    }

    .menu ul.pc_ul {
        display: none!important;
    }
    .menu ul.spec_ul {
        display: none!important;
    }
    .menu ul.test_ul .submenu-button::after, .menu ul.test_ul .submenu-button::before {
        display: none!important;
    }

    .menu a.showpro div {
        padding: 0 60px;
    }

    .banner .owl-wrapper-outer, .banner .owl-wrapper, .banner .owl-item, .banner .item, .banner .item a {
        height: 10rem !important;
    }

    .owl-controls .owl-prev, .owl-controls .owl-next {
        display: none;
        padding: 0 0.2rem;
        line-height: 1.6em;
        margin-top: 0;
    }

    .owl-controls .owl-pagination .owl-page span {
        width: 0.5rem;
        height: 0.5rem;
    }
    #intro , #pro{
        display:block;
        width: auto;
    }
    .pcIntro , .proList{
        display: none;
    }
    .title_bx {
        margin: 20px auto 10px auto;
    }

    .notice_bx {
        padding: 10px 5px;
    }

    .about_bx, .pro_bx, .news_bx {
        padding-bottom: 20px;
    }

        .about_bx .text {
            padding: 15px 5px;
            text-align: left;
            line-height: 1.6em;
        }

        .about_bx #intro {
            display: flex;
            justify-content: flex-start;
            overflow: scroll;
        }

            .about_bx #intro .card {
                min-width: 120px;
                margin: 0 10px;
            }

                .about_bx #intro .card .card-body {
                    max-height: 23px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                }

    .pro_bx #pro {
        display: flex;
    }
        .pro_bx #pro .card {
            max-height: 200px;
            transform: scale(0.9);
            margin: 0;
        }
            .pro_bx #pro .card .card-body {
                max-height: 70px;
                display: flex;
                justify-content: center;
                align-items: center;
            }
                .pro_bx #pro .card .card-body .card-title {
                    font-size: 18px;
                }

    .layui-tab-title {
        width: 180px !important;
    }
        .layui-tab-title li {
            max-width: 170px;
            overflow: scroll;
        }
            .layui-tab-title li::-webkit-scrollbar {
                display: none;
            }
    .layui-tab-content {
        margin-left: 180px !important;
        padding: 8px !important;
    }

    .pro_cut em {
        font-size: 14px;
    }

    .news_bx li {
        width: 100%;
        float: none;
        display: block;
        overflow: hidden;
        margin: 15px auto;
    }
        .news_bx li .inner {
            max-width: 70% !important;
        }

        .news_bx li .inner i {
            display: none;
        }

    .footer {
        background: #fff;
        border-top: 5px solid #ededed;
        color: #000;
    }

    .foot_nav {
        display: none;
    }

    .copy {
        text-align: center;
        font-size: 12px;
        padding: 10px 5px;
        line-height: 1.4em;
        display: block;
        overflow: hidden;
    }

        .copy .fl, .copy .fr {
            float: none;
            display: block;
            overflow: hidden;
        }

    .footnav {
        height: 3rem;
        display: block;
    }

    .bottomToolbar {
        width: 100%;
        height: 3rem;
        font-size: 1em;
        position: fixed;
        display: -webkit-box;
        display: -moz-box;
        display: box;
        margin: 0;
        padding: 0;
        bottom: 0;
        left: 0;
        _position: absolute;
        _top: expression(documentElement.scrollTop+documentElement.clientHeight-this.offsetHeight);
        text-align: center;
        background: #666666;
        z-index: 999;
    }

        .bottomToolbar li {
            -moz-box-flex: 1.0;
            -webkit-box-flex: 1.0;
            box-flex: 1.0;
            width: 25%;
            float: left;
            position: relative;
            text-align: center;
            border-left: 1px solid #808080;
            border-right: 1px solid #5e5e5e;
            box-sizing: border-box;
        }

            .bottomToolbar li img {
                text-align: center;
                margin: 0 auto;
                height: 1.6rem;
            }

            .bottomToolbar li a {
                padding: 0;
                margin-right: 1px;
                display: block;
                text-align: center;
                color: #fff;
                text-decoration: none;
                text-shadow: 0 1px rgba(0, 0, 0, 0.3);
                -webkit-box-flex: 1;
            }

            .bottomToolbar li span {
                display: block;
                overflow: hidden;
                padding: 0;
                margin: 0;
                padding-top: 0.2rem;
                line-height: 0;
            }

            .bottomToolbar li em {
                text-align: center;
                margin: 0 auto;
                color: #fff;
                font-size: 0.6em;
                display: block;
                overflow: hidden;
            }

            .bottomToolbar li a:hover em {
                color: #fff;
            }

            .bottomToolbar li.nobg {
                border-left: none;
            }

    .banners {
        overflow: scroll;
    }

        .banners::-webkit-scrollbar {
            display: none
        }

        .banners .inner {
            height: 155px;
            
        }
        .banners .innerImg {
            height: 155px;
        }

        .bg {
            background: none;
            padding: 10px 10px;
        }

    .sub_box {
        height: 36px;
    }

        .sub_box .location {
            display: none;
        }

        .sub_box ul {
            float: none;
            display: flex;
            justify-content: center;
        }

        .sub_box li {
            height: 36px;
            line-height: 36px;
            margin: 0 5px;
        }

            .sub_box li a {
                width: auto;
                padding: 0 5px;
                height: 36px;
                line-height: 36px;
                font-size: 14px;
            }

                .sub_box li a.on:before {
                    content: "";
                    position: absolute;
                    border: 4px solid transparent;
                    border-top: 0;
                    border-bottom-color: #fff;
                    bottom: 0;
                    left: 50%;
                    margin-left: -4px;
                }

    .about {
        font-size: 14px;
        line-height: 1.6em;
        color: #666;
        padding: 0;
    }

        .about .inner {
            padding: 10px;
        }
            .about .inner .joblist {
                width: 90%;
            }
    .product li {
        width: 100%;
    }
    .product li .inner {
        padding: 10px;
        padding-bottom: 0;
    }

        .product li .inner b {
            font-size: 14px;
            text-overflow: ellipsis;
            white-space: nowrap;
            text-align: center;
        }

        .product li .inner em {
            height: auto;
        }

    .pagination {
        height: auto;
    }

    .listnav ul {
        margin-bottom: 10px;
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
    }

    .listnav li a {
        width: auto;
        line-height: 36px;
        padding: 0 20px; display:block;
      
    }
  
    .productlist ul {
        margin-bottom: 0;
    }

    .productlist li {
        width: 25%;
        margin-bottom: 20px;
    }

    .productshow {
        padding: 0;
        margin-bottom: 0;
    }

    .pro_zoom, .pro_info {
        width: 100%;
        float: none;
    }

        .pro_info dl {
            padding: 15px;
        }

        .pro_info dt {
            height: auto;
            line-height: 40px;
        }

        .pro_info dd {
            height: auto;
        }

    .pro_btn {
        float: none;
    }

    .detail {
        padding: 20px 15px;
        padding-top: 0;
    }

        .detail .detail_inner {
            padding: 20px 0 0 0;
        }

    .detail_top {
        margin: 0;
    }

    .contact {
        background-size: auto 300px;
    }

        .contact .title {
            margin-left: 15px;
            margin-bottom: 10px;
        }

        .contact dl {
            padding: 0 5px;
            display: flex;
            flex-wrap: wrap;
        }

        .contact dt {
            margin-bottom: 40px;
        }

        .contact dd {
            margin-bottom: 20px;
            margin-left: 8px;
            width: 47%!important;
        }

        .contact h3 {
            font-size: 15px;
        }

        .contact p {
            font-size: 12px;
            padding-left: 30px;
            margin-top: 10px;
        }

    .cul .text {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .cul .pic {
        display: none;
    }

    .news {
        padding: 10px 15px;
        margin-bottom: 0;
    }

        .news .hot {
            padding: 0;
            margin-bottom: 0;
        }

            .news .hot .inner {
                padding: 0 5px;
                padding-bottom: 10px;
            }

                .news .hot .inner h3, .news .hot .inner h3 a {
                    font-size: 16px;
                }

                .news .hot .inner p {
                    padding: 0;
                    height: 3.6em;
                    overflow: hidden;
                }

        .news li {
            padding: 15px 5px;
        }

            .news li .time {
                width: 60px;
                height: 60px;
                font-size: 14px;
                padding: 15px;
            }

                .news li .time b {
                    font-size: 36px;
                }

            .news li .inner {
                padding: 0 0 0 15px;
            }

                .news li .inner b {
                    font-size: 16px;
                }

    .news_title article {
        width: 300px;
    }
    .news_title article h2 {
        white-space: normal;
    }
    .news_con {
        padding: 0 10px;
    }

    .layout .map {
        margin-bottom: 20px;
    }

    .layout .inner {
        padding: 20px;
        margin-bottom: 0;
    }

        .layout .inner .ad {
            display: none;
        }

    .layoutlist {
        padding: 0;
    }

        .layoutlist li {
            padding-left: 90px;
        }

            .layoutlist li h3 {
                width: 80px;
            }

            .layoutlist li .text:before {
                left: 90px;
            }

    .cul {
        margin-bottom: 0;
        padding: 20px 15px;
    }

    .honor_list .title {
        width: 100px;
    }

    .honor_cut {
        padding-left: 100px;
    }

        .honor_cut img {
            padding: 0 5px;
            box-sizing: border-box;
        }

    .honor_list:after {
        left: 50px;
    }

    .honor_list:first-child:before {
        left: 50px;
    }

    .person-stock-news .el-row {
        display: flex;
        flex-direction: column;
        margin: 0!important;
    }

        .person-stock-news .el-row .el-col-4 {
            width: 100%;
        }
        .person-stock-news .el-row .el-col-20 {
            padding: 0 !important;
        }
    .person-stock-news-item {
        width: 100% !important;
    }

    .el-input input {
        width: 250px !important;
    }

    .kscx_dig {
        position: static !important;
    }

        .kscx_dig .span_title {
            padding-left: 0 !important;
        }

        .kscx_dig .el-input input {
            width: 200px !important;
        }

        .kscx_dig div:last-of-type {
            padding: 0 !important;
        }

    .social {
        padding: 10px 5px;
        display: flex;
        flex-direction: column;
    }

    .sociallist .title {
        margin-bottom: 10px;
    }

    .sociallist {
        padding: 0 10px;
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .customers li {
        max-width: 31%;
    }

    .scope {
        padding: 15px;
    }

    .journal {
        padding-bottom: 20px;
    }

        .journal picture {
            float: none;
            width: 100%;
            height: auto;
        }

        .journal article p {
            height: auto;
        }

        .journal article {
            padding: 0;
            float: none;
            height: auto;
        }

    .journal_title article div p, .journal_list article div p {
        height: auto;
        margin: 0;
    }

    .news_bx .img {
        border-radius: 0.5rem;
    }
    .news_bx .img img {
        width: 168px;
        height: 126px;
        object-fit: cover;
    }
}
.joblist {
    width:600px;margin:auto;
}
.joblist li{list-style:decimal; line-height:26px;font-size:14px; clear:both;}
.joblist li .time{float:right;}
.joblist li a{float:left;}
.indexnews img {
    height:120px;width:160px;
}

.pro_cut1{
    width:100%;
    margin:0 auto;
    text-align:center;
}
.pro_cut1 .item{
    width:33.3%;
    text-align:center;  
    float:left;
   
}
.pro_cut1 .item .img {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.pro_cut1 em {
    line-height: 40px;
    display: block;
    overflow: hidden;
    background-color: #e3e3e3;
    color: #333;
    font-size: 13px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}
.pro_cut1 a {
    margin: 0 3%;
    text-align: center;
    display: block;
    overflow: hidden;
}

    .pro_cut1 a:hover em {
        background-color: #017fc6;
        color: #fff;
    }

.pagination .act, #pagination .active {
    border: 1px solid #f08c00;
    background-color: #f08c00;
    color: #FFF;
    border-radius: 2px;
    margin: 2px;
    height: 40px;
    line-height: 40px;
    box-sizing: border-box;
    text-align: center;
    display: inline-block;
    width: 40px;
}
    
#intro {
    display: none;
}
    #intro .card {
        max-width: 180px;
    }
#intro .card .card-click div.card-body {
    padding: 0.75rem!important;
}
#intro .card .card-click div.card-body h5.card-title {
    margin-bottom: 0;
    font-size: 1rem!important;
}

#pro {
    display: none;
}
    #pro .card {
        max-width: 280px;
        border-width: 1px;
        margin: 0 10px;
    }

.layui-this a{
    color: #f08c00!important;
}
.layui-this:after {
    border-bottom-color: #f08c00!important;
}