/*common start*/
body, div, ul, li, a, img, p, dl, dt, dd, h1, h2, h3, h4, span, strong, input {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    border: 0;
    list-style: none;
}

body {
    font-size: 12px;
    font-family: ' ';
    color: #666;
}

    body.head_on {
        overflow: hidden
    }

a {
    color: #333;
    transition: 0.3s;
}

    a:hover {
        color: var(--main-color);
        text-decoration: none;
        cursor: pointer;
    }

p {
    line-height: 1.8em;
    padding: 5px 0;
}

.clear {
    margin: 0;
    padding: 0;
    font-size: 0;
    clear: both;
}

.wapper {
    width: 1200px;
    margin: 0 auto;
}

*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

:root {
    --main-color: #F39618;
    --main-color1: #dc552a;
    --main-color2: #300204;
    --main-color-white: #ffffff;
    --main-color-555: #555555;
    --main-color-999: #999999;
    --main-color-666: #666666;
    --main-color-333: #333333;
    --main-color-888: #888888;
    --main-color-222: #222222;
    --main-transition: all ease 0.4s;
    --main-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.header {
    position: relative;
    background: #333;
    z-index: 999;
}

.headList {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 88px;
}

    .headList .logo {
        display: block;
    }

        .headList .logo img {
            max-height: 55px;
            width: auto;
        }


/*menu*/
.menu {
    height: 50px;
    line-height: 50px;
}

    .menu ul li {
        float: left;
        position: relative;
    }

        .menu ul li dl {
            background: #434242;
            width: 225px;
            position: absolute;
            left: 0px;
            top: 50px;
            box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
            padding: 10px 0;
            display: none;
            z-index: 9;
            border-radius: 5px;
        }

            .menu ul li dl dd {
                line-height: 40px;
            }

                .menu ul li dl dd a {
                    font-size: 14px;
                    color: #fff;
                    display: block;
                    padding: 0 10px 0 25px;
                    text-align: left;
                }

                    .menu ul li dl dd a:hover {
                        color: #fff;
                        background: var(--main-color);
                    }

    .menu a {
        font-size: 16px;
        color: #fff;
        display: block;
        text-align: center;
        padding: 0 15px;
        position: relative;
    }

        .menu a:hover {
            color: #fff;
        }

a.menu_hover {
    color: #fff;
}

.menu ul li span a:after {
    height: 4px;
    background: var(--main-color);
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    display: none;
}

.menu ul li.on span a:after,
.menu ul li span a:hover:after {
    display: block;
}

.menu ul li span a.menu_hover:after {
    display: block;
}

.search {
    width: 180px;
    height: 36px;
    border: 1px solid #999;
    border-radius: 1px;
    position: relative;
}

    .search input {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding: 0 40px 0 10px;
        box-sizing: border-box;
        outline: none;
        background: transparent;
        color: #fff;
    }

    .search button {
        width: 40px;
        height: 36px;
        position: absolute;
        top: 0;
        right: 0;
        text-align: center;
        border: none;
        background: none;
        color: #999;
        font-size: 16px;
    }

.searPanel {
    position: absolute;
    top: 60px;
    left: 0;
    background: #fff;
    z-index: 999;
    width: 145px;
    border-radius: 5px;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #dfdfdf;
    box-shadow: #ccc 0px 0px 4px;
    display: none;
}

    .searPanel:after {
        position: absolute;
        width: 0;
        height: 12px;
        font-size: 0;
        line-height: 0;
        overflow: hidden;
        border-width: 9px;
        border-style: dashed dashed dashed solid;
        border-color: transparent transparent #fff transparent;
        top: -30px;
        left: 25px;
        right: 0;
        content: "";
    }

    .searPanel ul li {
        line-height: 24px;
    }

        .searPanel ul li a {
            font-size: 14px;
            color: #417dc9;
        }

            .searPanel ul li a:hover {
                color: #f60;
            }

.language a {
    display: inline-block;
    margin-left: 10px;
}

    .language a img {
        width: 21px;
    }


/*mMenu*/
.m_header {
    width: 100%;
}

.sp_header {
    height: 52px;
    overflow: hidden;
    background: #333;
    position: fixed;
    z-index: 9999;
    width: 100%;
    display: none;
    top: 0;
}

.sp_logo {
    float: left;
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 10px;
}

    .sp_logo img {
        margin: auto;
        max-height: 40px;
    }

.sp_nav {
    width: 50px;
    float: right;
    position: relative;
    cursor: pointer;
    height: 30px;
    margin-top: 15px
}

    .sp_nav span {
        display: block;
        background: #fff;
        width: 30px;
        height: 2px;
        position: absolute;
        left: 10px;
        transition: all ease 0.35s
    }

        .sp_nav span:nth-of-type(1) {
            top: 0px
        }

        .sp_nav span:nth-of-type(2) {
            top: 10px
        }

        .sp_nav span:nth-of-type(3) {
            top: 20px
        }

.sp_nav_se span:nth-of-type(1) {
    top: 10px;
    transform: rotate(45deg)
}

.sp_nav_se span:nth-of-type(2) {
    width: 0
}

.sp_nav_se span:nth-of-type(3) {
    top: 10px;
    transform: rotate(-45deg)
}

.sjj_nav {
    position: fixed;
    z-index: 999;
    background: #333;
    width: 100%;
    height: calc(100% - 52px);
    font-size: 14px;
    line-height: 40px;
    top: -100%;
    left: 0;
    overflow: auto;
    overflow-x: hidden;
    transition: top ease 0.35s;
    display: none;
}

.nav_show {
    top: 52px;
}

    .nav_show .warp {
        padding: 0 10px;
        box-sizing: border-box;
        border-top: 1px #ffffff33 solid;
    }

.sjj_nav ul li i {
    position: absolute;
    top: 5px;
    right: 0px;
    height: 30px;
    padding: 0px 7px 0 7px;
}

    .sjj_nav ul li i svg {
        transform: rotate(-90deg);
        transition: all ease 0.35s
    }

.sjj_nav ul li .sjj_nav_i_se svg {
    transform: rotate(0deg)
}

.sjj_nav ul li {
    border-bottom: 1px #ffffff33 solid;
    position: relative;
    line-height: 45px;
    font-size: 14px
}

    .sjj_nav ul li ul {
        display: none
    }

    .sjj_nav ul li a {
        color: #fff;
        width: 100%;
        padding: 0 10px;
        display: block;
        box-sizing: border-box;
    }

        .sjj_nav ul li a:hover {
            color: var(--main-color);
        }

    .sjj_nav ul li ul li a {
        color: #fff;
        display: block;
        text-align: left;
    }

    .sjj_nav ul li i svg {
        width: 25px;
        height: 25px;
        fill: #fff;
    }

    .sjj_nav ul li .sjj_nav_i_se svg {
        fill: #fff
    }

    .sjj_nav ul li ul li > ul {
        margin-left: 10px
    }

    .sjj_nav ul li ul li {
        border-top: none;
    }

        .sjj_nav ul li ul li a {
            padding: 0 30px;
        }

.mLanguage {
    float: right;
    height: 52px;
    line-height: 52px;
}

    .mLanguage a {
        display: inline-block;
        margin-right: 10px;
    }

        .mLanguage a img {
            width: 20px;
        }
/*mSearch*/
.mSearch {
    position: relative;
    width: 100%;
    height: 45px;
    overflow: hidden;
}

    .mSearch input {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding: 0 60px 0 10px;
        box-sizing: border-box;
        border: none;
        border-bottom: 1px solid #ffffff33;
        background: none;
        outline: none;
    }

    .mSearch button {
        background: transparent;
        width: 60px;
        height: 45px;
        position: absolute;
        top: 0;
        right: 0;
        color: #fff;
        font-size: 14px;
        border: none;
    }

/*swiper*/
.swiper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.swiper-slide {
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

    .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.swiper-button-next, .swiper-button-prev {
    background-size: 20px !important;
}

.swiper-container {
    width: 100%;
    position: relative;
    overflow: hidden;
}

/*common*/
.disFlex {
    flex-wrap: wrap;
    display: -webkit-box; /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
    display: -moz-box; /* Firefox 17- */
    display: -webkit-flex; /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
    display: -moz-flex; /* Firefox 18+ */
    display: -ms-flexbox; /* IE 10 */
    display: flex;
}

.jusBet {
    justify-content: space-between;
}

.jusCet {
    justify-content: center;
}

.jusEnd {
    justify-content: flex-end;
}

.aliTop {
    align-items: flex-start;
}

.aliCet {
    align-items: center;
}

.alibtm {
    align-items: flex-end;
}

.img {
    font-size: 0px;
    overflow: hidden;
}

img {
    transition: 0.5s;
}

.f_left {
    float: left;
}

.f_right {
    float: right;
}

.clearfix:before,
.clearfix:after {
    content: "";
    display: table;
}

.clearfix:after {
    clear: both;
    overflow: hidden;
}

.clearfix {
    *zoom: 1;
}

.bgfff {
    background: #fff !important;
}

.fff {
    color: #fff !important;
}

em {
    font-style: normal;
}

.overflow1 {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 100%;
    display: block;
}

.overflow2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.overflow3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pt140 {
    padding-top: 140px;
}

.pb140 {
    padding-bottom: 140px;
}

.pt120 {
    padding-top: 120px;
}

.pb120 {
    padding-bottom: 120px;
}

.pt100 {
    padding-top: 100px;
}

.pb100 {
    padding-bottom: 100px;
}

.pt80 {
    padding-top: 80px;
}

.pb80 {
    padding-bottom: 80px;
}

.pt60 {
    padding-top: 60px;
}

.pb60 {
    padding-bottom: 60px;
}

.pt50 {
    padding-top: 50px;
}

.pb50 {
    padding-bottom: 50px;
}

.mt10 {
    margin-top: 10px;
}

.mt20 {
    margin-top: 20px;
}

.mt35 {
    margin-top: 35px;
}

.mt50 {
    margin-top: 50px;
}

.mt60 {
    margin-top: 60px;
}

.mt70 {
    margin-top: 70px;
}

.mt80 {
    margin-top: 80px;
}

.textCet {
    text-align: center;
}

.iIcon img {
    width: auto;
    max-width: 50px;
}

.iTit {
    font-size: 26px;
    color: #333;
    font-weight: bold;
    margin: 5px 0;
}

.i1More a {
    height: 40px;
    line-height: 40px;
    padding-left: 30px;
    padding-right: 30px;
    display: inline-block;
    background-color: var(--main-color1);
    color: #fff;
    border-radius: 3px;
    border-color: var(--main-color1);
    border-style: solid;
    border-width: 1px;
    box-sizing: content-box;
    font-size: 14px;
}

    .i1More a i {
        opacity: 0;
        transform: 0.3s;
        width: 0;
    }

    .i1More a:hover {
        background: #fff;
        color: var(--main-color1);
    }

        .i1More a:hover i {
            opacity: 1;
            width: 2em;
        }

.transition1 {
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.iInfo {
    font-size: 16px;
    color: #333;
}

.mobile {
    display: none;
}
/*-------------------------------------------*/

/*banner*/
.banner {
    width: 100%;
}

.bannerSwiper .swiper-button-prev,
.bannerSwiper .swiper-button-next {
    filter: brightness(0%) contrast(200%) invert(100%) opacity(100%);
    opacity: 0;
    transition: 0.3s;
}

.bannerSwiper .swiper-button-prev {
    left: 5%;
}

.bannerSwiper .swiper-button-next {
    right: 5%;
}

.bannerSwiper:hover .swiper-button-prev,
.bannerSwiper:hover .swiper-button-next {
    opacity: 1;
}

.banner .img {
    display: block;
    width: 100%;
    height: 100%;
}

.swiperPage .swiper-pagination-bullet {
    opacity: 1;
    width: 20px;
    height: 20px;
    background-image: url(../images/skin.png);
    background-position: 0 -150px;
    background-color: transparent;
    position: relative;
    margin: 0 !important;
}

.swiperPage .swiper-pagination-bullet-active {
    background-position: -75px -150px;
}

.swiperPage .swiper-pagination-bullet:before {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 60px;
    overflow: hidden;
    transition: 0.3s;
    background-size: cover;
    content: "";
    opacity: 0;
    visibility: hidden;
    border: 1px solid #fff;
}

.swiperPage .swiper-pagination-bullet:after {
    position: absolute;
    width: 0;
    height: 0;
    font-size: 0;
    line-height: 0;
    overflow: hidden;
    border-width: 6px;
    border-style: dashed dashed dashed solid;
    border-color: #fff transparent transparent transparent;
    top: -6px;
    left: 0;
    right: 0;
    content: "";
    opacity: 0;
    visibility: hidden;
}

.swiperPage .swiper-pagination-bullet:hover {
    background-position: -75px -150px;
}

    .swiperPage .swiper-pagination-bullet:hover:before {
        opacity: 1;
        visibility: visible;
    }

    .swiperPage .swiper-pagination-bullet:hover:after {
        opacity: 1;
        visibility: visible;
    }

.index1 {
    width: 100%;
    padding: 70px 0;
}

.i1List {
    width: 100%;
}

    .i1List ul li {
        float: left;
        width: 25%;
        padding: 0 10px;
        box-sizing: border-box;
        margin-bottom: 20px;
    }

    .i1List .part {
        display: block;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

        .i1List .part .img {
            width: 100%;
            height: 290px;
            background: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
        }

            .i1List .part .img img {
                width: auto;
                height: auto;
                max-height: 100%;
                max-width: 100%;
            }

        .i1List .part .desc {
            text-align: center;
            padding: 10px 0 5px 0;
        }

        .i1List .part .t1 {
            font-size: 14px;
            color: #333;
            font-weight: bold;
        }

            .i1List .part .t1:hover {
                color: var(--main-color);
                text-decoration: underline;
            }

.i1List2 {
    width: 100%;
}

    .i1List2 ul li {
        float: left;
        width: 25%;
        padding: 0 10px;
        box-sizing: border-box;
        margin-bottom: 20px;
    }

    .i1List2 .part {
        display: block;
        width: 100%;
        height: 100%;
        overflow: hidden;
        border: 1px solid #ddd;
        background: #fff;
    }

        .i1List2 .part .img {
            width: 100%;
            height: 220px;
            background: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
        }

            .i1List2 .part .img img {
                width: auto;
                height: auto;
                max-height: 100%;
                max-width: 100%;
            }

        .i1List2 .part .desc {
            padding: 20px;
        }

        .i1List2 .part .t1 {
            font-size: 20px;
            color: #333;
            font-weight: bold;
        }

        .i1List2 .part .txt {
            font-size: 14px;
            color: #333;
            margin-top: 10px;
            min-height: 80px;
        }

            .i1List2 .part .txt p {
                padding: 0;
            }

            .i1List2 .part .txt i img {
                width: 15px;
                vertical-align: middle;
                margin-right: 10px;
            }

        .i1List2 .part .btn {
            margin-top: 10px;
            text-align: center;
        }

            .i1List2 .part .btn span {
                display: inline-block;
                padding: 10px 20px;
                border: 1px solid var(--main-color);
                border-radius: 5px;
                color: var(--main-color);
                font-size: 15px;
            }

        .i1List2 .part:hover {
            box-shadow: var(--main-shadow);
        }

            .i1List2 .part:hover .t1 {
                color: var(--main-color);
            }

            .i1List2 .part:hover .btn span {
                background: var(--main-color);
                color: #fff;
            }


.index2 {
    width: 100%;
    padding: 80px 0;
}

.i2Warp {
    width: 100%;
}

    .i2Warp .f_left {
        width: 49%;
    }

    .i2Warp .f_right {
        width: 49%;
    }

.i2Swiper {
    width: 100%;
    height: 100%;
}

    .i2Swiper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .i2Swiper .swiper-button-prev,
    .i2Swiper .swiper-button-next {
        opacity: 0;
        transition: 0.3s;
        width: 40px;
        height: 40px;
        background: #fff;
        border-radius: 50%;
        background-image: none;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #ddd;
        font-size: 30px;
    }

        .i2Swiper .swiper-button-prev:hover,
        .i2Swiper .swiper-button-next:hover {
            color: #333;
        }

    .i2Swiper:hover .swiper-button-prev,
    .i2Swiper:hover .swiper-button-next {
        opacity: 1;
    }

.i2List {
    width: 100%;
}

    .i2List .f_left {
        width: 33.3%;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .i2List .f_right {
        width: 66.6%;
    }

    .i2List ul li {
        width: 50%;
        padding: 0 10px;
        box-sizing: border-box;
        margin-top: 20px;
    }

        .i2List ul li:nth-child(1),
        .i2List ul li:nth-child(2) {
            margin-top: 0;
        }

    .i2List .part {
        display: block;
        width: 100%;
        height: 100%;
        position: relative;
        overflow: hidden;
        transition: transform 0.3s ease;
    }

        .i2List .part .img {
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

            .i2List .part .img img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

        .i2List .part .imgTop {
            width: 100%;
            height: 100%;
            position: absolute;
            bottom: -100%;
            left: 0;
            display: flex;
            align-items: center;
            padding: 15px;
            box-sizing: border-box;
            background: rgba(0,0,0,0.5);
            transition: 0.6s;
        }

        .i2List .part .desc {
            width: 100%;
        }

            .i2List .part .desc h3 {
                color: #fff;
                font-size: 22px;
            }

            .i2List .part .desc .iInfo {
                font-size: 12px;
                color: #fff;
            }

        .i2List .part:hover .imgTop {
            bottom: 0;
        }

.index3 {
    width: 100%;
    padding: 40px 0;
}

.i3Warp {
    width: 100%;
    max-width: 580px;
    background: #fff;
    padding: 30px 40px;
    box-sizing: border-box;
}

.i3Form {
    width: 100%;
}

    .i3Form ul li {
        margin: 10px 0;
    }

    .i3Form input,
    .i3Form textarea {
        width: 100%;
        height: 30px;
        border: 1px solid #ddd;
        border-radius: 3px;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .i3Form textarea {
        height: 90px;
        padding: 10px;
    }

    .i3Form button {
        width: 100px;
        height: 30px;
        border: 1px solid var(--main-color1);
        border-radius: 3px;
        background: var(--main-color1);
        color: #fff;
    }

    .i3Form .upload_file {
        position: relative;
    }

        .i3Form .upload_file .input_file {
            border: none;
            padding: 0;
            line-height: 30px;
            position: relative;
        }

    .i3Form .input_file:before {
        background: -webkit-linear-gradient(top,#e2e2e2,#f3f3f3);
        position: absolute;
        top: 0;
        left: 0;
        text-align: center;
        line-height: 30px;
        content: "update ";
        width: 70px;
        height: 30px;
        border: 1px solid #ddd;
        box-sizing: border-box;
        border-radius: 3px;
    }

    .i3Form .tit {
        font-size: 14px;
        color: #333;
    }

        .i3Form .tit span {
            color: #f00;
        }

.footer {
    width: 100%;
    padding-top: 60px;
    background: #363b3f;
    font-size: 14px;
    color: #808080;
}

.fWarp {
    width: 100%;
}

    .fWarp .item1 {
        width: 480px;
    }

    .fWarp .item2 {
        width: 280px;
    }

    .fWarp .item3 {
        width: 370px;
    }

.fLogo img {
    max-height: 56px;
}

.flinks {
    font-size: 14px;
    color: #7d7d7e;
    margin-top: 10px;
}

    .flinks p a {
        color: var(--main-color);
    }

    .flinks .list {
        margin-top: 5px;
    }

        .flinks .list a {
            display: inline-block;
            color: #fff;
            font-size: 22px;
            margin-right: 20px;
        }

            .flinks .list a:hover {
                color: #2699fb;
            }

.fTit {
    font-size: 16px;
    color: #fff;
    margin-bottom: 10px;
}

.fMenu {
    width: 100%;
}

    .fMenu ul li {
        margin: 10px 0;
        padding-left: 10px;
        box-sizing: border-box;
        background: url(../images/icon-4.png) left center no-repeat;
    }

        .fMenu ul li a {
            color: #7e7e7e;
            font-size: 14px;
        }

            .fMenu ul li.cur a,
            .fMenu ul li a:hover {
                color: var(--main-color);
            }

.fTel {
    width: 100%;
}

    .fTel ul li {
        margin: 10px 0;
        font-size: 14px;
        color: #999;
        line-height: 1.8;
    }

        .fTel ul li i {
            color: var(--main-color);
            margin-right: 5px;
        }

        .fTel ul li a {
            color: #7e7e7e;
        }

            .fTel ul li a:hover {
                color: var(--main-color);
            }

.copyright {
    width: 100%;
    padding: 35px 0;
    border-top: 1px solid rgb(73, 77, 80);
    margin-top: 35px;
}

.footer p {
    padding: 0;
}

.footer a {
    color: #7e7e7e;
}

    .footer a:hover {
        color: var(--main-color);
    }

.fMenuTit {
    font-size: 16px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    display: none;
}

    .fMenuTit.active i:before {
        content: "\f106";
    }

.tongtu {
    width: 100%;
    overflow: hidden;
}

    .tongtu img {
        width: 100%;
        overflow: hidden;
    }

.current {
    width: 100%;
    height: 60px;
    line-height: 60px;
    font-size: 14px;
    color: #333;
}

    .current a {
        display: inline-block;
        font-size: 14px;
        color: #333;
        position: relative;
    }

        .current a:after {
            content: " > ";
            padding: 0 5px;
        }

        .current a:last-child:after {
            display: none;
        }

.about {
    padding: 40px 0;
}

.aboutWarp {
    width: 100%;
}

/*é¡µç Â*/
.pagebar {
    margin: 0 auto;
    padding: 15px 0 10px;
}

    .pagebar a {
        margin: 2px;
        padding: 5px 10px;
        font-size: 14px;
        color: #777;
        font-weight: 400;
        border: 1px solid #e2e2e2;
        border-radius: 2px;
        background: #fff;
        display: inline-block;
    }

    .pagebar .now-page {
        font-size: 14px;
        color: #fff;
        font-weight: 400;
        padding: 5px 10px;
        margin: 0 5px 5px;
        border: 1px solid var(--main-color);
        border-radius: 2px;
        background: var(--main-color);
        display: inline-block;
    }

    .pagebar a:hover {
        color: #fff;
        border: 1px solid var(--main-color);
        background: var(--main-color);
    }

    .pagebar .dot {
        display: inline-block;
        padding: 0 5px;
    }

.mainWarp {
    width: 100%;
    margin: 60px 0;
}

.ml {
    width: 280px;
    margin-right: 20px;
}

.mr {
    width: calc(100% - 300px);
}

.mlTit {
    width: 100%;
    height: 46px;
    line-height: 46px;
    overflow: hidden;
    background: var(--main-color);
    border-radius: 0 20px 0 0;
    color: #fff;
    font-size: 20px;
    padding: 0 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mlmenu {
    width: 100%;
    background: #f6f5f4;
    font-size: 12px;
    color: #333;
    padding: 10px 20px;
    box-sizing: border-box;
}

    .mlmenu a {
        color: #212121;
        display: block;
        line-height: 34px;
    }

        .mlmenu a:hover {
            color: var(--main-color);
        }

    .mlmenu dd a {
        position: relative;
    }

        .mlmenu dd a:before {
            content: "â—";
            color: #f60;
            padding-right: 10px;
        }

    .mlmenu.active {
        display: block;
    }

    .mlmenu dl dd.on a {
        color: var(--main-color);
    }

.mrTit {
    font-size: 30px;
    color: #333;
    font-weight: bold;
}

.mlTit2 {
    display: none;
}

    .mlTit2.active i:before {
        content: "\f106";
    }


.product {
    width: 100%;
}

    .product ul li {
        width: 25%;
        padding: 0 6px;
        box-sizing: border-box;
        margin-bottom: 12px;
    }

    .product .part {
        display: block;
        width: 100%;
        height: 100%;
        border: 1px solid #ddd;
        box-sizing: border-box;
        padding: 10px 3px;
    }

        .product .part .img {
            width: 100%;
            height: 210px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

            .product .part .img img {
                width: auto;
                height: auto;
                max-width: 100%;
                max-height: 100%;
            }

        .product .part .t1 {
            text-align: center;
            font-size: 14px;
            color: #333;
            margin: 5px 0;
            height: 40px;
            line-height: 20px;
        }

        .product .part .btm {
            width: 100%;
            height: 36px;
            display: flex;
            justify-content: space-between;
        }

        .product .part .cartDetail {
            width: 36px;
            height: 36px;
            color: #fff;
            background: var(--main-color);
            font-size: 16px;
            text-align: center;
            line-height: 36px;
        }

        .product .part .addCart {
            width: calc(100% - 40px);
            height: 36px;
            border: 1px solid #dcdcdc;
            box-sizing: border-box;
            background: #fafafa;
            text-align: center;
            line-height: 34px;
            font-size: 14px;
            color: var(--main-color);
            font-size: 14px;
        }

            .product .part .addCart i {
                padding-right: 10px;
            }

        .product .part:hover {
            box-shadow: 0px 2px 18px -11px rgb(0 0 0 / 30%);
        }


/*è´­ç‰©è½¦*/
.gouwucheIcon {
    position: fixed;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #7a8599;
    color: #fff;
    font-size: 20px;
    z-index: 9999;
    right: 20px;
    bottom: 120px;
    cursor: pointer;
}

    .gouwucheIcon .proNumb {
        width: 20px;
        height: 20px;
        border-radius: 20px;
        background: #f00;
        text-align: center;
        line-height: 20px;
        position: absolute;
        top: -5px;
        right: -5px;
        color: #fff;
        font-size: 12px;
    }

.gouwuchePanel {
    position: fixed;
    right: 0;
    bottom: -100%;
    width: 230px;
    height: 275px;
    border: 1px solid #ddd;
    box-sizing: border-box;
    box-shadow: 0px 2px 18px -11px rgb(0 0 0 / 30%);
    background: #fff;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
}

    .gouwuchePanel.active {
        bottom: 0;
        opacity: 1;
        visibility: visible;
    }

    .gouwuchePanel .title {
        height: 36px;
        line-height: 36px;
        text-align: center;
        background: #7a8599;
        color: #fff;
        font-weight: bold;
        font-size: 12px;
        position: relative;
    }

        .gouwuchePanel .title .num {
            color: #ffb629;
        }

.gwcClose {
    color: #fff;
    font-size: 16px;
    position: absolute;
    left: 20px;
    top: 0;
    line-height: 36px;
}

.gouwuchePanel .list {
    width: 100%;
    height: 194px;
    overflow: hidden;
    overflow-y: auto;
}

    .gouwuchePanel .list ul li {
        width: 100%;
        height: 60px;
        border-bottom: 1px solid #ddd;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px;
        box-sizing: border-box;
    }

    .gouwuchePanel .list .img {
        width: 40px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: 10px;
    }

        .gouwuchePanel .list .img img {
            width: auto;
            height: auto;
            max-height: 100%;
            max-width: 100%;
        }

    .gouwuchePanel .list .desc {
        width: calc(100% - 50px);
    }

    .gouwuchePanel .list .t1 {
        font-size: 12px;
        color: #246bb3;
    }

    .gouwuchePanel .list ul li:hover {
        background: #fffeee;
    }

        .gouwuchePanel .list ul li:hover .delCartPro {
            opacity: 1;
        }

.gouwuchePanel .btm {
    height: 45px;
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.delCartPro {
    color: #999;
    opacity: 0;
    height: 16px;
    line-height: 16px;
}

.clearCart {
    line-height: 16px;
    padding: 4px 10px;
    font-size: 12px;
    color: #e64545;
    border: 0;
    background-color: #f1f1f1;
    border-radius: 3px;
    display: inline-block;
}

.xunjiaBtn {
    display: inline-block;
    line-height: 16px;
    padding: 4px 10px;
    font-size: 12px;
    color: #fff;
    border: 0;
    background-color: #e64545;
    border-radius: 3px;
}

.prodetail {
    width: 100%;
    padding: 40px 0;
}

/* å›¾ç‰‡æ”¾å¤§é•œ */
.small-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.clearfix:before,
.clearfix:after {
    display: table;
    line-height: 0;
    content: "";
}

.magnifier {
    width: 300px;
    position: relative;
}

.magnifier-container {
    width: 300px;
    height: 260px;
    overflow: hidden;
    position: relative;
    border: 1px solid #ddd;
}

.move-view {
    width: 100px;
    height: 100px;
    position: absolute;
    background-image: url('../images/move-box.png');
}

.images-cover {
    height: 100%;
    width: 100%;
    position: relative;
}

    .images-cover img {
        position: absolute;
    }

.magnifier-assembly {
    height: 45px;
    overflow: hidden;
    position: relative;
    padding-left: 30px;
    padding-right: 30px;
    margin-top: 10px;
}

.magnifier-btn {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

    .magnifier-btn span {
        line-height: 45px;
        height: 45px;
        width: 20px;
        background-color: #6e6e6e;
        color: #fff;
        display: block;
        z-index: 9998;
        text-align: center;
        font-size: 20px;
        cursor: pointer;
        border-radius: 3px;
    }

    .magnifier-btn .magnifier-btn-left {
        float: left;
    }

    .magnifier-btn .magnifier-btn-right {
        float: right;
    }

.magnifier-line {
    position: relative;
    overflow: hidden;
    height: 45px;
}

    .magnifier-line ul {
        display: block;
        font-size: 0;
        width: 10000%;
        position: absolute;
        left: 0;
        z-index: 9997;
    }

    .magnifier-line li {
        float: left;
        width: 55px;
        cursor: pointer;
    }

    .magnifier-line ul > .active .small-img {
        border-color: #f00;
    }

.small-img {
    height: 45px;
    padding: 1px;
    margin: 0 5px;
    overflow: hidden;
    border: 1px solid #bbb;
    text-align: center;
    box-sizing: border-box;
}

    .small-img img {
        max-width: 100%;
        max-height: 100%;
    }

.magnifier-view {
    width: 100%;
    height: 100%;
    position: absolute;
    right: -105%;
    top: 0;
    z-index: 9999;
    background-color: #fff;
    display: none;
    overflow: hidden;
}

    .magnifier-view img {
        display: block;
    }

.animation03 {
    transition: all 0.3s ease-in 0.1s;
    -ms-transition: all 0.3s ease-in 0.1s;
    -moz-transition: all 0.3s ease-in 0.1s;
    -webkit-transition: all 0.3s ease-in 0.1s;
    -o-transition: all 0.3s ease-in 0.1s;
}

.prod1 .left {
    float: left;
    width: 300px;
}

.prod1 .right {
    float: right;
    width: calc(100% - 320px);
}

.prodTit {
    font-size: 18px;
    color: #333;
    display: flex;
}

.proEwm {
    display: inline-block;
    position: relative;
    margin-left: 10px;
}

    .proEwm .panel {
        position: absolute;
        top: 30px;
        left: 0;
        width: 200px;
        padding: 10px;
        box-sizing: border-box;
        background: #fff;
        border: 1px solid #eee;
        text-align: center;
        font-size: 14px;
        display: none;
    }

        .proEwm .panel img {
            width: 100%;
        }

.add_proNumb {
    width: 100%;
    margin: 20px 0;
}

.btn-numbox {
    overflow: hidden;
    margin-top: 20px;
}

    .btn-numbox li .number,
    .kucun {
        display: inline-block;
        font-size: 12px;
        color: #808080;
        vertical-align: sub;
        margin-right: 20px;
    }

    .btn-numbox .count {
        overflow: hidden;
        margin-left: 60px;
    }

        .btn-numbox .count .num-jian,
        .input-num,
        .num-jia {
            display: inline-block;
            width: 28px;
            height: 28px;
            line-height: 28px;
            text-align: center;
            font-size: 18px;
            color: #999;
            cursor: pointer;
            border: 1px solid #e6e6e6;
        }

        .btn-numbox .count .input-num {
            width: 45px;
            height: 28px;
            color: #333;
            border-left: 0;
            border-right: 0;
        }

.prodBtn .xunjia {
    line-height: 38px;
    height: 38px;
    background-color: #ecf8e6;
    border: 1px solid #42ba05;
    color: #40be03;
    padding: 0 30px;
    font-size: 16px;
    display: inline-block;
}

    .prodBtn .xunjia:hover {
        color: #40be03;
        background-color: #dbf1d0;
    }

.prodBtn .addCart {
    background-color: #40be03;
    line-height: 38px;
    height: 38px;
    color: #fff;
    padding: 0 30px;
    font-size: 16px;
    display: inline-block;
    margin-left: 10px;
}

    .prodBtn .addCart:hover {
        background: #3aac03;
    }

    .prodBtn .addCart i {
        padding-right: 10px;
    }

.prod2 {
    width: 100%;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid #ddd;
}

.pro2Tab {
    background: #efefef;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

    .pro2Tab ul {
        display: flex;
        flex-wrap: wrap;
    }

        .pro2Tab ul li {
            border-right: 1px solid #ccc;
            border-top: 2px solid #ddd;
            position: relative;
            margin-top: -3px;
            bottom: -2px;
            height: 35px;
            padding: 0 25px;
            line-height: 35px;
            font-size: 14px;
        }

            .pro2Tab ul li.on {
                border-top: 2px solid #4d9058;
                background: #fff;
                color: #4d9058;
            }

.pro2Panel {
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
    color: #333;
    font-size: 14px;
    border: 1px solid #ddd;
}

    .pro2Panel img {
        width: auto;
        max-width: 100%;
    }

.prodBtm {
    width: 100%;
    margin-top: 20px;
}

    .prodBtm a {
        padding: 10px;
        text-align: center;
        border-radius: 10px;
        overflow: hidden;
        border: 1px solid #ddd;
        text-overflow: ellipsis;
        white-space: nowrap;
        max-width: 40%;
        height: 22px;
        background-color: #efefef;
        line-height: 22px;
        font-size: 14px;
    }

.prod1Links {
    font-size: 14px;
    color: #333;
    line-height: 32px;
}

    .prod1Links a {
        display: inline-block;
        margin-left: 10px;
    }

        .prod1Links a img {
            width: 32px;
            transition: 0.3s;
        }

        .prod1Links a:hover {
            transform: translateY(-3px);
            opacity: 0.8;
        }


.factories {
    width: 100%;
    margin: 40px 0;
}

.facTit {
    font-size: 24px;
    color: #333;
    font-weight: bold;
    padding-left: 20px;
    border-left: 8px solid var(--main-color);
    margin: 20px 0;
}

.facDesc {
    margin: 40px 0;
    font-size: 16px;
    color: #333;
    overflow: hidden;
}

    .facDesc img {
        width: 100%;
        max-width: 100%;
    }

.certificates {
    margin: 40px 0;
}

    .certificates ul li {
        width: 49%;
        padding: 20px 0;
        box-sizing: border-box;
        border-bottom: 1px solid #ddd;
        display: flex;
        justify-content: space-between;
        position: relative;
    }

        .certificates ul li .left {
            width: 120px;
            text-align: center;
        }

        .certificates ul li .img {
            width: 102px;
            height: 102px;
            margin: 0 auto;
            text-align: center;
            display: flex;
            justify-content: center;
            align-items: center;
        }

            .certificates ul li .img img {
                width: auto;
                height: auto;
                max-width: 100%;
                max-height: 100%;
            }

        .certificates ul li .pdf {
            width: 100%;
            height: 28px;
            line-height: 28px;
            background: #285172;
            color: #fff;
            text-align: center;
        }

        .certificates ul li .right {
            width: calc(100% - 120px);
            padding: 0 30px;
            box-sizing: border-box;
        }

        .certificates ul li .top {
            font-size: 14px;
            color: #888;
        }

        .certificates ul li .t1 {
            font-size: 14px;
            color: #333;
            font-weight: bold;
            margin-top: 5px;
        }

    .certificates .downloadBtn {
        display: block;
        width: 25px;
        height: 25px;
        border: 1px solid #333;
        text-align: center;
        line-height: 25px;
        color: #333;
        font-size: 16px;
        position: absolute;
        right: 0;
        bottom: 20px;
    }

.contact {
    margin: 40px 0;
    position: relative;
}

    .contact:before {
        position: absolute;
        top: 0;
        right: 130px;
        width: 380px;
        height: 380px;
        background: var(--main-color);
        content: "";
        z-index: -1;
    }

    .contact .f_left {
        width: 48%;
    }

    .contact .f_right {
        width: 48%;
    }

    .contact .map {
        width: 100%;
        height: 425px;
        overflow: hidden;
        border: 1px solid #eee;
        box-sizing: border-box;
    }

        .contact .map img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

.contList {
    width: 100%;
}

    .contList ul li {
        width: 33.3%;
        padding: 0 10px;
        box-sizing: border-box;
        margin-bottom: 20px;
    }

    .contList .part {
        display: block;
        width: 100%;
        height: 100%;
        background: #eee;
        border-radius: 3px;
        padding: 30px 20px;
        box-sizing: border-box;
        text-align: center;
        font-size: 18px;
        color: #808080;
    }

        .contList .part .icon {
            margin-bottom: 10px;
        }

            .contList .part .icon img {
                width: 25px;
            }

.inquire {
    width: 100%;
    margin: 40px 0;
}

.inqList {
    width: 100%;
    border: 1px solid #ddd;
    box-sizing: border-box;
}

    .inqList dt {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        background: #f3f3f3;
    }

        .inqList dt .tit1 {
            width: 40%;
            border-right: 1px solid #ddd;
            box-sizing: border-box;
        }

        .inqList dt .tit2 {
            width: 30%;
            border-right: 1px solid #ddd;
            box-sizing: border-box;
        }

        .inqList dt .tit3 {
            width: 30%;
        }

        .inqList dt .tit {
            font-size: 14px;
            color: #333;
            padding: 5px;
            box-sizing: border-box;
        }

    .inqList ul li {
        border-top: 1px solid #ddd;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        box-sizing: border-box;
        align-items: center;
        height: 140px;
    }

        .inqList ul li .box {
            padding: 10px;
            box-sizing: border-box;
            height: 100%;
            display: flex;
            align-items: center;
        }

        .inqList ul li .img {
            width: 40%;
            border-right: 1px solid #ddd;
            box-sizing: border-box;
            text-align: center;
            justify-content: center;
        }

            .inqList ul li .img img {
                width: 100%;
                max-width: 120px;
            }

        .inqList ul li .tit {
            width: 30%;
            border-right: 1px solid #ddd;
            box-sizing: border-box;
            font-size: 14px;
        }

        .inqList ul li .numb {
            width: 30%;
        }

            .inqList ul li .numb input {
                width: 100px;
                height: 30px;
                padding: 0 5px;
                border: 1px solid #ddd;
                border-radius: 5px;
            }

.inquire .i3Form ul li {
    display: flex;
}

.inquire .i3Form .tit {
    width: 180px;
    text-align: right;
    margin-right: 20px;
}

.inquire .i3Form input, .inquire .i3Form textarea {
    width: calc(100% - 250px);
}

.inquire .i3Form .upload_file .input_file {
    width: 100%;
}

.inquire .i3Form button {
    margin-left: 200px;
}

.inside {
    width: 100%;
    margin: 40px 0;
}

    .inside img {
        max-width: 100%;
        width: auto;
    }

.ml_contactcon_right {
    margin-bottom: 40px;
}

.ml_map1 p {
    padding: 0;
}






@media only screen and (max-width: 1200px) {
    .current {
        padding: 0 5px;
    }

    .inside {
        width: 100%;
        margin: 10px 0;
    }

    .wapper {
        width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .mt60 {
        margin-top: 20px;
    }

    .headList .logo img {
        max-height: 40px;
    }

    .menu a {
        padding: 0 8px;
        font-size: 14px;
    }

    .menu ul li dl dd a {
        font-size: 14px;
    }

    .search {
        width: 150px;
    }

    .product ul li {
        width: 33.3%;
    }

    .contact:before {
        right: 2vw;
        width: 20vw;
        height: 20vw;
    }

    .fWarp .item1 {
        width: 30%;
    }

    .fWarp .item2 {
        width: 20%;
    }

    .fWarp .item3 {
        width: 30%;
    }
}

@media only screen and (max-width: 991px) {
    .header {
        display: none
    }

    .sp_header {
        display: block;
        padding: 0 5px;
    }

    .sjj_nav {
        display: block;
    }

    .hHei {
        height: 52px;
    }

    .fWarp .item1 {
        margin-bottom: 20px;
    }

    .product ul li {
        width: 50%;
    }

    .i1List2 ul li {
        width: 50%;
    }
}


@media only screen and (max-width: 780px) {

    .mobile {
        display: block;
    }

    .pc {
        display: none;
    }

    .mlTit2 {
        display: block;
        display: flex;
    }

    .mlmenu {
        display: none;
    }

    .i1List ul li {
        width: 50%;
        padding: 0 5px;
        margin-bottom: 10px;
    }

    .i1List .part .img {
        height: 160px;
    }

    .iIcon img {
        max-width: 30px;
    }

    .iTit {
        font-size: 20px;
    }

    .mt50 {
        margin-top: 35px;
    }


    .i2Warp .f_left {
        width: 100%;
        margin-bottom: 20px;
    }

    .i2Warp .f_right {
        width: 100%;
    }

    .i2List .f_left {
        width: 100%;
        padding: 0;
    }

    .i2List ul li {
        padding: 0;
    }

        .i2List ul li:nth-child(1), .i2List ul li:nth-child(2) {
            margin-top: 20px;
        }

    .i2List ul li {
        width: 100%;
    }

    .i2List .f_right {
        width: 100%;
    }

    .fWarp .item1 {
        width: 100%;
    }

    .fWarp .item2 {
        width: 100%;
        margin-bottom: 20px;
    }

    .fWarp .item3 {
        width: 100%;
    }

    .fWarp .item2 .fTit {
        display: none;
    }

    .fMenuTit {
        display: block;
        display: flex;
    }

    .fMenu ul {
        display: none;
    }

    .i3Warp {
        padding: 20px;
    }

    .mrTit {
        font-size: 22px;
    }

    .ml {
        width: 100%;
        margin-bottom: 20px;
        margin-right: 0;
    }

    .mr {
        width: 100%;
    }

    .product .part .img {
        height: 160px;
    }

    .prod1 .left {
        width: 100%;
        margin-bottom: 20px;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .prod1 .right {
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .magnifier {
        margin: 0 auto;
    }

    .proEwm .panel {
        width: 150px;
    }

    .inqList ul li {
        height: 100px;
    }

        .inqList ul li .img img {
            max-width: 90px;
        }

        .inqList ul li .numb input {
            width: 60px;
        }

    .inquire .i3Form .tit {
        width: 100%;
        margin-right: 0;
        text-align: left;
        margin-bottom: 5px;
    }

    .inquire .i3Form input, .inquire .i3Form textarea {
        width: 100%;
    }

    .inquire .i3Form ul li {
        flex-wrap: wrap;
    }

    .inquire .i3Form button {
        margin-left: 0;
    }

    .contact .f_left {
        width: 100%;
        margin-bottom: 20px;
    }

    .contact .f_right {
        width: 100%;
    }

    .contact:before {
        display: none;
    }

    .i3Form .tit {
        margin-bottom: 5px;
    }

    .contact .map {
        height: 280px;
    }

    .contList ul li {
        width: 100%;
    }

    .certificates ul li {
        width: 100%;
    }

    .facTit {
        font-size: 20px;
    }

    .facDesc {
        margin: 20px 0;
    }

    .update_detail_bot {
        flex-wrap: wrap;
    }

        .update_detail_bot a {
            width: 100% !important;
            amargin-bottom: 10px;
        }

        .update_detail_bot .prev {
            margin-right: 0 !important;
        }

    .i1List2 ul li {
        width: 100%;
    }
}
