/*===================CSS Reset============================*/
html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow-y: scroll;
    overflow-x: auto;
    font-size: 100px;
}
*,
*:before,
*:after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
pre,
form,
fieldset,
legend,
button,
input,
textarea,
th,
td,
img {
    border: medium none;
    margin: 0;
    padding: 0;
}
body,
button,
input,
select,
textarea {
    color: #666;
    font: 16px fontR, "微软雅黑";
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
}
em,
i {
    font-style: normal;
}
ul,
ol {
    list-style: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
input:focus,
button:focus,
textarea:focus {
    outline: none;
}
img {
    max-width: 100%;
}

@font-face {
    font-family: "HanSans";
    src: url("../font/SourceHanSansCN-Regular.otf") format("opentype"),
        url("../font/SourceHanSansCN-Normal.otf") format("opentype"),
        url("../font/SourceHanSansCN-Light.otf") format("opentype"),
        url("../font/SourceHanSansCN-Bold.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "alimama";
    src: url("../font/AlimamaShuHeiTi-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: "HanSans-song";
    src: url("../font/SourceHanSong-Regular.otf") format("opentype");
    font-weight: bold;
    font-style: normal;
}
* {
    font-family: "HanSans", "微软雅黑", "Microsoft YaHei", "Helvetica Neue",
        Helvetica, Arial, sans-serif;
}

/*===================Link Style============================*/
a,
a:hover,
a:active,
a:visited,
a:link,
a:focus {
    outline: none;
    text-decoration: none;
}

/*===================Common Style============================*/

*::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    position: absolute;
    left: 0;
}

::-webkit-scrollbar-thumb {
    background: #666;
    border-radius: 20px;
}

::-webkit-scrollbar-track {
    background: #ddd;
    border-radius: 20px;
}

.fl {
    float: left;
}
.fr {
    float: right;
}
.wrap {
    width: 1400px;
    margin: 0 auto;
}
.clearfix:after {
    clear: both;
}
.clearfix:before,
.clearfix:after {
    content: "";
    display: table;
}
.ovh {
    overflow: hidden;
}
.textH {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}
.text-center {
    text-align: center;
}
.fontB {
    font-family: fontB, "微软雅黑";
}
.fontL {
    font-family: fontL, "微软雅黑";
}
.color-fff {
    color: #fff !important;
}
.color-333 {
    color: #333;
}
.color-blue {
    color: var(--main-color) !important;
}
.color-gray {
    color: #ededed;
}
.color-less-gray {
    color: rgba(255, 255, 255, 0.2);
}
.color-orange {
    color: #ffa70d;
}
.bg-orange {
    background: #ffa70d;
}
.bg-blue {
    background: var(--main-color);
}

/*============================ Header ============================*/
.header {
    background-size: cover;
    width: 100%;
    height: 105px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    box-shadow: 0 0 10px #aaa;
}
.header .logo {
    display: block;
    width: 400px;
    height: 76px;
    background: url(../images/logo1.png) no-repeat;
    background-size: contain;
    font-size: 0;
}
.header .right {
}
.header .zs {
}
.header .tel {
    display: inline-block;
    color: #ea8b2e;
    font-size: 0.2rem;
    line-height: 0.19rem;
    background: url(../images/topTel.png) center left no-repeat;
    background-size: 0.17rem 0.19rem;
    padding-left: 0.24rem;
    margin: 0.16rem 0 0 0.1rem;
}
.header .button a {
    :inline-block ;
    width: 0.86rem;
    height: 0.26rem;
    font-size: 14px;
    color: #fff;
    text-align: center;
    line-height: 0.26rem;
    border: 1px solid #43b5e8;
    border-radius: 0.2rem;
    margin-right: 0.05rem;
}
.header .navbar_nav li {
    float: left;
    position: relative;
    display: block;
    margin-right: 0.35rem;
}
.header .navbar_nav li a {
    color: #000;
    line-height: 1.05rem;
    display: inline-block;
    font-weight: bold;
}
.header .navbar_nav li a:hover,
.header .navbar_nav li a.active {
    color: #000;
}
#navToggle {
    display: none;
}
.m_nav {
    position: fixed;
    top: 0px;
    box-shadow: 0 15px 27px 0 rgba(167, 165, 165, 0.38);
    width: 100%;
    height: 100%;
    background: #fff;
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
    z-index: 1000;
    opacity: 1;
    visibility: visible;
    margin-top: 0;
    overflow-y: auto;
    transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
    top: 0;
    transform: translateX(100%);
}
.m_nav.open {
    transform: translateX(0);
}
.m_nav .top {
    height: 0.3rem;
    padding: 0.2rem;
    box-sizing: border-box;
}
.m_nav .top .closed {
    width: 0.3rem;
    height: 0.3rem;
    vertical-align: middle;
    float: right;
    cursor: pointer;
}
.m_nav .ul li {
    padding: 0 0.2rem;
    border-bottom: 1px solid #f5f5f5;
}
.m_nav .ul li a {
    display: block;
    text-decoration: none;
    color: #333;
    font-size: 0.16rem;
    height: 0.5rem;
    line-height: 0.5rem;
    width: 100%;
}
.m_nav .info {
    display: block;
    margin-top: 0.2rem;
}
.m_nav .info em {
    display: inline-block;
}
.m_nav .info .tel {
    color: var(--main-color);
    background: url(../images/topTel.png) center left no-repeat;
    background-size: 0.17rem 0.19rem;
    padding-left: 0.25rem;
    margin-bottom: 0.2rem;
}
.m_nav .info .button a {
    display: inline-block;
    margin: 0 0.2rem;
}

/*============================ Footer ============================*/
.footer-box {
    background: var(--main-color);
}
.footer {
    background-size: cover;
    color: #fff;
    padding-top: 0.3rem;
}
.footer .tel {
    font-size: 0.28rem;
    margin-left: 0.4rem;
}
.footer .tel img {
    width: 53px;
    height: 53px;
    margin-bottom: 0.1rem;
}
.footer dl {
    margin-left: 1.3rem;
}
.footer dt {
    font-weight: normal;
    font-size: 0.2rem;
    margin-bottom: 0.1rem;
}
.footer dd,
.footer a {
    color: #fff;
    line-height: 0.3rem;
}
.footer .code {
    color: #fff;
}
.footer .code img {
    width: 120px;
    height: 120px;
    border: 1px solid #f4f4f5;
    margin-bottom: 0.1rem;
}
.footer .copy {
    font-size: 14px;
    color: #ffffff;
    padding: 0.15rem 0;
    border-top: 1px solid var(--main-color);
    margin-top: 0.3rem;
    background: rgba(0, 0, 0, 0.5);
}

/*============================ Index ============================*/
.banner-active {
    overflow: hidden;
    height: 450px;
}
.banner-area {
    height: 450px;
    background-position: bottom center;
    background-size: cover;
    position: relative;
    z-index: 5;
}
.banner-area .banner-content .text1 {
    display: block;
    width: 5rem;
    height: 0.7rem;
    margin-top: 1rem;
    position: relative;
}
.banner-area .banner-content .text1 span {
    font-size: 0.54rem;
    border-bottom: 5px solid #41a8ee;
    position: relative;
    z-index: 1;
    left: 0;
    top: 0.15rem;
}
.banner-area .banner-content .text1 span i {
    display: block;
    height: 0.05rem;
    background: #41a8ee;
    position: absolute;
    bottom: -0.2rem;
}
.banner-area .banner-content .text1 em {
    font-size: 0.76rem;
    color: rgba(89, 141, 248, 0.2);
    position: absolute;
    left: 0.9rem;
    top: 0;
    text-transform: uppercase;
}
.banner-area .banner-content .text2 {
    font-size: 0.72rem;
    margin: 0.25rem 0 0.4rem 0;
}
.banner-area .banner-content .text3 {
    font-size: 0.22rem;
}
.banner-area .banner-content a {
    display: inline-block;
    width: 2rem;
    height: 0.5rem;
    color: #fff;
    font-size: 0.26rem;
    text-align: center;
    line-height: 0.5rem;
    background: linear-gradient(to bottom, #e5be01 0%, #771e18 100%);
    border-radius: 0.3rem;
    text-shadow: rgba(0, 0, 0, 0.3) 0.1em 0.1em 0.2em;
    margin-top: 0.7rem;
}
.banner-area .banner-content .text4 {
    font-weight: bold;
    font-size: 0.62rem;
    color: var(--main-color);
}
.banner-area .banner-content .text5 {
    font-size: 0.4rem;
    margin: 0.3rem 0;
    padding-top: 1.1rem;
    color: #b82617;
}
.banner-area .banner-content .text6 {
    color: #3881e6;
    font-size: 0.2rem;
    background: url(../images/shopBg1.png) center no-repeat;
    background-size: cover;
    margin: 0.25rem 0 0.6rem 0;
    color: #b82617;
}
.banner-area .banner-content .but2 {
    margin-top: 0.3rem;
}
.main {
}
.ixTit span {
    display: block;
    font-size: 0.44rem;
    position: relative;
    top: -0.7rem;
}
.ixTit em {
    font-size: 0.72rem;
    text-transform: uppercase;
}
.ixTit p {
    font-family: fontL, "微软雅黑";
    font-size: 0.22rem;
    margin-top: -0.6rem;
}
.ixTit-sm span {
    display: block;
    font-size: 0.24rem;
    position: relative;
    top: -0.5rem;
}
.ixTit-sm em {
    font-size: 0.32rem;
    text-transform: uppercase;
}
.ixTit-sm p {
    font-family: fontL, "微软雅黑";
    font-size: 0.12rem;
    margin-top: -0.3rem;
}
.ixPart1 {
    position: relative;
    top: -0.7rem;
    background: #fff;
    z-index: 9;
    padding: 0.3rem 0.2rem;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.ixPart1 li img {
    width: 78px;
    height: 78px;
    margin-right: 0.15rem;
}
.ixPart1 li p {
    font-size: 0.2rem;
    color: var(--main-color);
    line-height: 50px;
    font-weight: bold;
}
.ixPart1 li p em {
    display: block;
    font-size: 0.16rem;
    color: #666;
    font-weight: normal;
    line-height: 24px;
}
.sy_bk {
    width: 100%;
    padding: 0 0 80px;
    text-align: center;
    overflow: hidden;
}
.sy_bk .row {
    margin: 0 -10px;
}
.sy_bk .rowbox {
    position: relative;
    display: flex;
}
.sy_bk .col-lg-4 {
    padding: 0 10px;
}
.sy_bk .n_r {
    overflow: hidden;
    position: relative;
}
.sy_bk .fdwz {
    position: absolute;
    z-index: 99;
    color: #fff;
    width: 100%;
    top: 50%;
    transform: translate(0, -50%);
    height: 120px;
    overflow: hidden;
    text-align: center;
    transition: all 0.6s;
}
.sy_bk .n_r:hover {
}
.sy_bk .n_r:hover .fdwz {
    height: 305px;
    transition: all 0.6s;
    background: rgba(0, 0, 0, 0.45);
    padding: 20px 0;
}
.sy_bk .fdwz h1 {
    font-size: 30px;
    font-weight: normal;
}
.sy_bk .fdwz em {
    display: block;
    background: #fff;
    width: 53px;
    height: 3px;
    margin: 25px auto;
}
.sy_bk .fdwz h2 {
    font-size: 23px;
    display: block;
    margin-bottom: 20px;
    font-weight: normal;
}
.sy_bk .fdwz p {
    font-size: 14px;
    line-height: 30px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    transition: all 0.6s;
    width: 85%;
    margin: 0 auto;
}
.sy_bk .fdwz span {
    display: block;
    margin: 0 auto;
    border: #fff 1px solid;
    width: 120px;
    line-height: 30px;
    text-align: center;
    margin-top: 20px;
    transition: all 0.6s;
}

.jjfa ul li:hover .fdwz em {
    display: none;
    transition: all 0.6s;
}

@media only screen and (max-width: 992px) {
    .header .zs {
        display: none;
    }
    .zs1 {
        margin: 0 auto;
        width: 188px;
    }
    .sy_bk {
        padding: 0 0 40px;
        margin-top: -20px;
    }
    .sy_bk .row {
        margin: 0 auto;
    }
    .sy_bk .col-xs-6 {
        padding-right: 5px;
        padding-left: 5px;
    }
    .sy_bk .n_r {
        margin-bottom: 15px;
    }
    .sy_bk .w_z h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    .sy_bk .w_z span {
        width: 100px;
        height: 28px;
        font-size: 13px;
        line-height: 26px;
    }
    .sy_bk .fdwz h1 {
        font-size: 20px;
        font-weight: normal;
        margin-top: 5px;
    }
    .sy_bk .fdwz em {
        display: block;
        background: #fff;
        width: 53px;
        height: 3px;
        margin: 10px auto;
    }

    .sy_bk .fdwz h2 {
        font-size: 15px;
        display: block;
        margin-bottom: 8px;
        font-weight: normal;
    }
    .sy_bk .fdwz p {
        display: none;
    }
    .sy_bk .fdwz span {
        display: block;
        margin: 0 auto;
        border: #fff 1px solid;
        width: 100px;
        line-height: 24px;
        text-align: center;
        margin-top: 20px;
        transition: all 0.6s;
    }
    .sy_bk .n_r:hover .fdwz {
        position: absolute;
        z-index: 99;
        color: #fff;
        width: 100%;
        top: 40%;
        transform: translate(0, -50%);
        height: auto;
        overflow: hidden;
        text-align: center;
        transition: all 0.6s;
    }
    .col-xs-1,
    .col-sm-1,
    .col-md-1,
    .col-lg-1,
    .col-xs-2,
    .col-sm-2,
    .col-md-2,
    .col-lg-2,
    .col-xs-3,
    .col-sm-3,
    .col-md-3,
    .col-lg-3,
    .col-xs-4,
    .col-sm-4,
    .col-md-4,
    .col-lg-4,
    .col-xs-5,
    .col-sm-5,
    .col-md-5,
    .col-lg-5,
    .col-xs-6,
    .col-sm-6,
    .col-md-6,
    .col-lg-6,
    .col-xs-7,
    .col-sm-7,
    .col-md-7,
    .col-lg-7,
    .col-xs-8,
    .col-sm-8,
    .col-md-8,
    .col-lg-8,
    .col-xs-9,
    .col-sm-9,
    .col-md-9,
    .col-lg-9,
    .col-xs-10,
    .col-sm-10,
    .col-md-10,
    .col-lg-10,
    .col-xs-11,
    .col-sm-11,
    .col-md-11,
    .col-lg-11,
    .col-xs-12,
    .col-sm-12,
    .col-md-12,
    .col-lg-12 {
        position: relative;
        min-height: 1px;
        padding-right: 5px;
        padding-left: 5px;
        outline: none;
    }
    .row {
        margin-right: 0;
        margin-left: 0;
    }
}
.ixPart2 .slick-arrow,
.ixPart4 .slick-arrow {
    position: absolute;
    top: 42%;
    width: 38px;
    height: 98px;
    text-indent: -9999px;
    cursor: pointer;
}
.ixPart2 .slick-arrow.prev,
.ixPart4 .slick-arrow.prev {
    left: -44px;
    background: url(../images/btnL.png) no-repeat;
}
.ixPart2 .slick-arrow.next,
.ixPart4 .slick-arrow.next {
    right: -44px;
    background: url(../images/btnR.png) no-repeat;
}
.ixPart3 {
    background: url(../images/ixBg1.jpg) no-repeat;
    background-size: cover;
    padding: 0.3rem 0 0.3rem 0;
}
.ixPart3 .box {
    background: #fff;
    border-radius: 5px;
    margin: 0.15rem 0;
    padding: 0.4rem 0.2rem;
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
    text-align: center;
}
.ixPart3 .box img {
    width: 78px;
    height: 78px;
    margin: 0 auto 0.2rem;
}
.ixPart3 .box .text {
    font-family: fontL, "微软雅黑";
    color: #666;
    line-height: 0.26rem;
    width: 100%;
}
.ixPart3 .box .text span {
    display: block;
    font-size: 0.24rem;
    color: #333;
    margin-bottom: 0.15rem;
}
.ixPart3 .box .text p {
    font-size: 0.14rem;
}
.ixPart3 .box .text em {
    display: inline-block;
    width: 1.2rem;
    height: 0.3rem;
    font-size: 14px;
    color: var(--main-color);
    line-height: 0.28rem;
    border: 1px solid var(--main-color);
    border-radius: 0.15rem;
    text-align: center;
    margin-top: 0.15rem;
}
.ixPart3 .box:hover .text em {
    background: var(--main-color);
    color: #fff;
}
.ixPart4 {
    padding: 0.8rem 0;
}
.ixPart4 .box {
    background: #f7f7f7;
    border-radius: 5px;
}
.ixPart4 .img {
    position: relative;
}
.ixPart4 .img img {
    width: 100%;
}
.ixPart4 .img span {
    display: block;
    width: 100%;
    height: 0.36rem;
    color: #fff;
    font-size: 0.16rem;
    line-height: 0.36rem;
    padding: 0 0.3rem;
    background: var(--main-color-light);
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: center;
}
.ixPart4 .text {
    width: 1.8rem;
    float: left;
    margin: 0.3rem 0 0.3rem 0.3rem;
}
.ixPart4 .text em,
.ixPart4 .text span {
    display: block;
    font-size: 0.24rem;
    color: #333;
    border-bottom: 1px solid #bebebe;
    padding-bottom: 0.15rem;
}
.ixPart4 .text em {
    color: var(--main-color);
    border-color: var(--main-color);
}
.ixPart4 .text p {
    font-family: fontL, "微软雅黑";
    margin-top: 0.2rem;
}
.ixPart4 .slick-arrow.prev {
    left: -32px;
}
.ixPart4 .slick-arrow.next {
    right: -32px;
}
.ixPart5 {
    background: url(../images/ixBg2.jpg) center top no-repeat;
    padding: 0.8rem 0 1.2rem 0;
}
.ixPart5 .row {
    margin-left: 0;
    margin-right: 0;
}
.ixPart5 .col-sm-4 {
    padding-left: 8px;
    padding-right: 8px;
}
.ixPart5 .box {
    min-height: 2.7rem;
    color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    margin-top: 0.5rem;
    padding: 0.4rem 0.2rem 0.3rem 0.2rem;
}
.ixPart5 .box.bg1 {
    background: var(--main-color);
}
.ixPart5 .box.bg2 {
    background: #ffa70d;
}
.ixPart5 .box.bg3 {
    background: var(--main-color-light);
}
.ixPart5 .box img {
    width: 78px;
    height: 78px;
    margin-top: 0.3rem;
}
.ixPart5 .box .text {
    padding-left: 1.1rem;
    line-height: 0.3rem;
}
.ixPart5 .box .text span {
    display: block;
    font-size: 0.24rem;
}
.ixPart5 .box .text p {
    font-family: fontL, "微软雅黑";
    height: 1.2rem;
    overflow: hidden;
    margin: 0.15rem 0 0.1rem 0;
}
.ixPart5 .box .text em {
    display: inline-block;
    width: 0.96rem;
    height: 0.26rem;
    font-size: 14px;
    color: #fff;
    line-height: 0.24rem;
    border: 1px solid #fff;
    border-radius: 0.2rem;
    text-align: center;
}
.ixPart5 .box:hover .text em {
    background: #fff;
    color: var(--main-color);
}
.ixPart6 {
    background: url(../images/ixBg3.jpg) center no-repeat;
    background-size: cover;
}
.ixPart6 ul {
    width: 5.88rem;
    padding: 0.4rem 0;
}
.ixPart6 .line {
    height: 5px;
    background: url(../images/ixLine.png) no-repeat;
    background-size: cover;
    margin: 0.4rem 0;
}
.ixPart6 li {
    position: relative;
}
.ixPart6 li .num {
    font-size: 1.84rem;
    font-family: arial;
    color: rgba(255, 255, 255, 0.08);
    position: absolute;
    right: 0;
    top: 0;
}
.ixPart6 .box {
    color: #fff;
    padding: 0.6rem 0.5rem 0 0.3rem;
}
.ixPart6 .box img {
    width: 95px;
    height: 95px;
    float: left;
}
.ixPart6 .box p {
    padding-left: 1.3rem;
    line-height: 0.3rem;
}
.ixPart6 .box p span,
.ixPart6 .box p em {
    display: block;
}
.ixPart6 .box p span {
    font-size: 0.24rem;
    margin-bottom: 0.1rem;
}
.ixPart6 .box p em {
    font-family: fontL, "微软雅黑";
    height: 0.6rem;
    overflow: hidden;
}
.ixPart7 {
    background: #f7f7f7;
    padding-bottom: 0.8rem;
    padding-top: 0.6rem;
}
.ixPart7 .top {
    background: #fff;
    border-radius: 5px;
}
.ixPart7 .top .tit {
    font-size: 0.24rem;
    color: #333;
    padding: 0.4rem 0.3rem 0.2rem 0.3rem;
}
.ixPart7 .top .text {
    color: #666;
    height: 0.52rem;
    line-height: 0.26rem;
    padding: 0 0.3rem;
    overflow: hidden;
}
.ixPart7 .top .time {
    padding: 0.3rem 0.3rem 0.35rem 0.3rem;
}
.ixPart7 .top .time em {
    color: #999;
}
.ixPart7 .top .time span {
    display: inline-block;
    width: 0.96rem;
    height: 0.26rem;
    font-size: 14px;
    color: var(--main-color);
    line-height: 0.24rem;
    border: 1px solid var(--main-color);
    border-radius: 0.2rem;
    text-align: center;
}
.ixPart7 .top:hover .time span {
    background: var(--main-color);
    color: #fff;
}
.ixPart7 .bottom {
    line-height: 0.3rem;
    margin: 0.4rem 0;
}
.ixPart7 .bottom span,
.ixPart7 .bottom em {
    display: block;
}
.ixPart7 .bottom span {
    color: #666;
    width: 70%;
    background: url(../images/ixDot1-1.png) center left no-repeat;
    padding-left: 0.12rem;
}
.ixPart7 .bottom em {
    color: #999;
    width: 80px;
    text-align: right;
}
.ixPart7 .bottom a:hover span {
    background-image: url(../images/ixDot1-2.png);
    color: var(--main-color);
}
.ixPart7 .bottom a:hover em {
    color: #3eb3e7;
}
.ixPart8 {
    background: #fff;
    background-size: cover;
    padding-bottom: 0.8rem;
    padding-top: 0.5rem;
}
.ixPart8 .bigTit {
    font-size: 0.5rem;
    padding: 1.1rem 0;
}
.tradeTit {
    width: 3.2rem;
    border-right: 1px solid #323232;
}
.tradeTit span {
    width: 100%;
    height: 0.56rem;
    text-align: center;
    color: #fff;
    line-height: 0.56rem;
    border-right: 4px solid rgba(137, 211, 244, 0);
    display: inline-block;
    cursor: pointer;
}
.tradeTit .a {
    border-right: 4px solid #89d3f4;
    background: var(--main-color);
}
.tradeCon {
    width: 8.4rem;
    display: none;
    color: #fff;
    margin-left: 0.5rem;
    padding-top: 0.3rem;
}
.tradeCon .tit {
    font-size: 0.32rem;
}
.tradeCon .text {
    line-height: 0.3rem;
    margin: 0.3rem 0 0.4rem 0;
}
.tradeCon .img {
    padding: 0.6rem 0;
    margin-top: 0.4rem;
    border-top: 1px solid #323232;
}
.tradeCon .img p {
    width: 100%;
    font-size: 0.2rem;
    color: #fff;
    text-align: center;
    position: absolute;
    top: 33%;
    left: 0;
}

/*============================ 右侧浮动导航 ============================*/
.rightMenu {
    position: fixed;
    right: 0;
    bottom: 20%;
    z-index: 99999;
}
.rightMenu a {
    display: block;
    width: 66px;
    height: 66px;
    font-size: 14px;
    color: #fff;
    background: #939393;
    text-align: center;
    margin-top: 7px;
}
.rightMenu a img {
    margin: 9px 0 3px 0;
}
.rightMenu a.zx:hover,
.rightMenu a.wx:hover,
.rightMenu a.sq:hover {
    background: var(--main-color-light);
}
.rightMenu a.qq,
.rightMenu a.wx,
.rightMenu a.tel {
    position: relative;
}
.rightMenu a.qq span,
.rightMenu a.tel span {
    display: none;
    background: var(--main-color-light);
    width: 140px;
    height: 66px;
    color: #fff;
    text-align: center;
    line-height: 66px;
    position: absolute;
    top: -1px;
    left: -74px;
}
.rightMenu a.wx .code {
    display: none;
    max-width: inherit;
    width: 120px;
    height: 120px;
    position: absolute;
    left: -122px;
    top: -55px;
    border: 1px solid #009df7;
    margin: 0;
}
.rightMenu a.qq:hover span,
.rightMenu a.wx:hover .code,
.rightMenu a.tel:hover span {
    display: block;
}
.rightMenu a.returnTop {
    background: var(--main-color-light);
}
.mobFoot {
    width: 100%;
    height: 0.6rem;
    background: #939393;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 999;
}
.mobFoot a {
    display: block;
    width: 20%;
    color: #fff;
    font-size: 12px;
    text-align: center;
    float: left;
    padding-top: 0.35rem;
}
.mobFoot a.zx {
    background: url(../images/rightIcon1.png) center top 0.1rem no-repeat;
    background-size: 0.2rem;
}
.mobFoot a.zs {
    background: url(../images/rightIcon7.png) center top 0.1rem no-repeat;
    background-size: 0.2rem;
}

.mobFoot a.wx {
    background: url(../images/rightIcon3.png) center top 0.1rem no-repeat;
    background-size: 0.2rem;
    position: relative;
}
.mobFoot a.tel {
    background: url(../images/rightIcon4.png) center top 0.1rem no-repeat;
    background-size: 0.2rem;
}
.mobFoot a.returnTop {
    background: url(../images/rightIcon6.png) center top 0.15rem no-repeat;
    background-size: 0.1rem;
}
#mobCode {
    display: none;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.7);
}
.mobFoot a.wx .code {
    max-width: inherit;
    width: 180px;
    height: 180px;
    position: absolute;
    top: 30%;
    left: 50%;
    margin-left: -90px;
    border: 1px solid #939393;
}

/*============================ Others ============================*/
.inBanner {
    height: 6rem;
}
.inBanner .text1 {
    font-weight: bold;
    font-size: 0.62rem;
    padding-top: 1.4rem;
}
.inBanner .text2 {
    font-size: 0.4rem;
}
.inBanner .text3 {
    color: #3881e6;
    font-size: 0.24rem;
    background: url(../images/shopBg1.png) center no-repeat;
    background-size: cover;
    margin: 0.25rem 0 0.6rem 0;
}
.inBanner a {
    display: inline-block;
    width: 2rem;
    height: 0.5rem;
    color: #fff;
    font-size: 0.26rem;
    text-align: center;
    line-height: 0.5rem;
    background: linear-gradient(to bottom, #ffbd4a 0%, #ffa810 100%);
    border-radius: 0.3rem;
    text-shadow: rgba(0, 0, 0, 0.3) 0.1em 0.1em 0.2em;
}
.inBanner .text4 {
    font-size: 0.4rem;
    color: rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    padding-top: 1.5rem;
}
.inBanner .text5 {
    font-size: 0.84rem;
    color: #feb638;
}
.inBanner .text6 {
    font-size: 0.24rem;
}
.inBanner .line {
    height: 1px;
    background: url(../images/cusLine1.png) no-repeat;
    margin: 0.2rem 0;
}
.shopPart1 {
    background: none;
    padding: 0;
    margin-top: -0.4rem;
}
.shopPart1 .box {
    min-height: auto;
    margin-top: 0;
}
.shopPart2 {
    padding: 0.7rem 0 1rem 0;
}
.shopPart2 .ixTit em {
    background: #fff;
    padding: 0 0.9rem;
}
.shopPart2 .con {
    border: 1px dashed #9d9d9d;
    padding: 1rem 5% 0.6rem;
    margin-top: -1rem;
}
.shopPart3 {
    background: url(../images/shopBg2.jpg) no-repeat;
    background-size: cover;
    padding: 0.3rem 0;
}
.shopPart3 .li2,
.shopPart3 .li3 {
    background: url(../images/shopLine.png) center left no-repeat;
}
.shopPart3 .li4 {
    margin-left: 17%;
    background: url(../images/shopLine.png) center right no-repeat;
}
.shopPart3 .box {
    color: #fff;
    padding: 0.6rem;
    line-height: 0.3rem;
}
.shopPart3 .box span {
    display: block;
    font-size: 0.24rem;
    padding: 0.1rem 0;
}
.shopPart4 {
    padding: 0.7rem 0;
}
.shopPart4 .shopTit,
.mobShopPart4 .mobShopTit {
    text-align: center;
    border-bottom: 1px solid #aaa;
    z-index: 5;
    position: relative;
    zoom: 1;
}
.shopPart4 .shopTit li,
.mobShopPart4 .mobShopTit span {
    display: inline-block;
    color: #333;
    font-size: 0.3rem;
    padding: 0 0.3rem 0.25rem 0.3rem;
    margin: 0 1rem;
    cursor: pointer;
}
.shopPart4 .shopTit li.on,
.mobShopPart4 .mobShopTit .a {
    border-bottom: 4px solid #3eb4e7;
    color: #3eb4e7;
}
.shopPart4 .shopCon {
    background: #42b6ff;
    color: #fff;
    height: 4.7rem;
    margin: 0.5rem 0;
    border-radius: 5px;
    position: relative;
}
.shopPart4 .col-sm-5 {
    width: 48%;
}
.shopPart4 .img,
.mobShopPart4 .img {
    position: relative;
}
.shopPart4 .img p,
.mobShopPart4 .img p {
    width: 100%;
    text-align: center;
    font-size: 0.28rem;
    color: #fff;
    position: absolute;
    top: 0.4rem;
    left: 0;
}
.shopPart4 .img p b,
.mobShopPart4 .img p b {
    font-family: arial;
    display: block;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
}
.shopPart4 .img p span,
.mobShopPart4 .img p span {
    background: #3eb4e7;
    display: inline-block;
    padding: 0.03rem 0.25rem;
    border-radius: 0.3rem;
}
.shopPart4 .text {
    padding-top: 1rem;
}
.shopPart4 .text p,
.mobShopPart4 .text p {
    font-size: 0.24rem;
    margin-bottom: 0.25rem;
}
.shopPart4 .text span,
.mobShopPart4 .text span {
    display: block;
    border: 2px solid #a1dbff;
    border-radius: 5px;
    margin-bottom: 0.2rem;
}
.shopPart4 .text .ul2 p,
.mobShopPart4 .text .ul2 p {
    font-size: 0.2rem;
    margin-top: 0.1rem;
}
.shopPart4 .prev,
.shopPart4 .next {
    position: absolute;
    left: -40px;
    top: 40%;
}
.shopPart4 .next {
    left: auto;
    right: -40px;
}
.mobShopPart4 {
    display: none;
    padding: 0.6rem 0;
}
.mobShopPart4 .mobShopTit span {
    margin: 0;
    width: 30%;
}
.mobShopPart4 .mobShopCon {
    display: none;
}
.mobShopPart4 .mobShopCon .img {
    margin-top: 0.4rem;
    border-radius: 5px;
    overflow: hidden;
}
.mobShopPart4 .mobShopCon .img img {
    width: 100%;
}
.mobShopPart4 .text {
    background: #42b6ff;
    color: #fff;
    padding: 0.3rem 0;
    width: 96%;
    margin: 0.3rem 2%;
}
.shopPart5 {
    background: url(../images/shopBg3.jpg) center top no-repeat;
    padding: 0.7rem 0 0.3rem 0;
}
.shopPart5 .bg {
    font-size: 0.24rem;
    color: #333;
    margin: 0 0.2rem;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    padding: 0.7rem;
    margin-bottom: 0.4rem;
}
.shopPart5 .col-sm-2 {
    width: 20%;
}
.shopPart5 img {
    width: 78px;
    height: 78px;
    margin-bottom: 0.2rem;
}
.shopPart6 .con {
    border: 1px solid #a3a3a3;
    margin: 1rem 0;
}
.modeTit span {
    width: 3.2rem;
    height: 0.7rem;
    font-size: 0.3rem;
    color: #fff;
    line-height: 0.7rem;
    display: inline-block;
    border-radius: 0 0 5px 5px;
    background: linear-gradient(to bottom, #319be3 0%, #59bbfe 100%);
    cursor: pointer;
    margin: 0 0.25rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.modeTit .a {
    background: linear-gradient(to bottom, #ffa70d 0%, #ffb127 100%);
}
.modeCon {
    display: none;
    padding: 0.4rem 0.5rem 0.7rem 0.5rem;
}
.modeCon .text {
    padding-top: 1.2rem;
}
.modeCon .text span {
    font-size: 0.5rem;
    color: #333;
    display: block;
    margin-bottom: 0.3rem;
}
.modeCon .text p {
    font-family: fontL, "微软雅黑";
    font-size: 0.2rem;
    line-height: 0.5rem;
}
.cusPart1 {
    color: #fff;
    background: #445bd0;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    padding: 0.2rem 0;
    margin-top: -0.4rem;
}
.cusPart1 .box {
    padding: 0.2rem 0.3rem;
}
.cusPart1 .box.line {
    background: url(../images/cusLine2.png) center left no-repeat;
}
.cusPart1 .box img {
    width: 78px;
    height: 78px;
    float: left;
}
.cusPart1 .box p {
    font-family: fontL, "微软雅黑";
    padding-left: 1rem;
    line-height: 0.3rem;
}
.cusPart1 .box span {
    font-size: 0.24rem;
    display: block;
}
.cusPart2 {
    padding: 0.7rem 0;
}
.cusPart2 .row {
    margin-left: 0;
    margin-right: 0;
}
.cusPart2 .box {
    height: 3.7rem;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    padding: 0.4rem 0.3rem;
    margin: 0.15rem 0;
}
.cusPart2 .box span {
    display: block;
    font-size: 0.24rem;
    color: #333;
    padding: 0.3rem 0 0.1rem 0;
}
.cusPart2 .box p {
    font-family: fontL, "微软雅黑";
    line-height: 0.26rem;
}
.cusPart3 {
    color: #fff;
    background: url(../images/cusBg1.jpg) no-repeat;
    background-size: cover;
    padding: 0.6rem 0 1rem 0;
}
.cusPart3 .box p {
    font-size: 0.2rem;
    margin-bottom: 0.1rem;
}
.cusPart3 .box.box1 {
    margin-top: 0.25rem;
}
.cusPart3 .box.box2 {
    margin-top: 0.5rem;
}
.cusPart3 .box.box3 {
    margin-top: 0.15rem;
}
.cusPart4 {
    padding: 0.7rem 0;
}
.cusPart4 .pcCon {
    background: url(../images/cusImg1.jpg) center top no-repeat;
    padding-top: 0.7rem;
}
.cusPart4 .mobCon {
    display: none;
}
.cusPart4 .li1 {
    margin-bottom: 0.7rem;
}
.cusPart4 .li2 {
    margin-bottom: 1rem;
}
.cusPart4 .text span {
    font-size: 0.24rem;
    color: #333;
    background: #fff;
    display: inline-block;
    height: 0.74rem;
    line-height: 0.74rem;
    padding: 0 0.35rem;
}
.cusPart4 .text.t1 span,
.cusPart4 .text.t3 span {
    padding-right: 0.5rem;
}
.cusPart4 .text.t1 img,
.cusPart4 .text.t3 img {
    margin-left: -0.36rem;
}
.cusPart4 .text.t2 span,
.cusPart4 .text.t4 span,
.cusPart4 .text.t5 span {
    padding-left: 0.5rem;
}
.cusPart4 .text.t2 img,
.cusPart4 .text.t4 img,
.cusPart4 .text.t5 img {
    margin-right: -0.36rem;
    position: relative;
}
.cusPart4 .text.t5 img {
    margin-top: -0.05rem;
}
.cusPart5 {
    background: url(../images/cusBg2.jpg) no-repeat;
    background-size: cover;
    padding: 0.7rem 0 1.3rem 0;
}
.cusPart5 .bgLine {
    height: 8px;
    background: url(../images/cusLine3.png) no-repeat;
}
.cusPart5 ul {
    color: #fff;
    margin-top: -0.34rem;
}
.cusPart5 .box {
    font-size: 0.24rem;
    margin: 0 0.3rem;
}
.cusPart5 .box span {
    display: block;
    padding: 0.2rem 0;
}
.cusPart5 .box .text {
    font-family: fontL, "微软雅黑";
    text-align: left;
    border: 1px solid #fff;
    line-height: 0.46rem;
    padding: 0 0.2rem;
    border-radius: 5px;
}
.news {
    padding-top: 0.7rem;
}
.news .left .text {
    font-size: 0.26rem;
    color: #222;
    background: #fff;
    padding: 0.4rem 0.15rem 0.2rem 0.15rem;
    position: fixed;
}
.news .left .text i {
    display: block;
    height: 1px;
    background: #bebebe;
    margin: 0.1rem 0;
}
.news .left span {
    display: inline-block;
    color: var(--main-color);
    font-size: 0.2rem;
    background: url(../images/newsTel.png) center left no-repeat;
    background-size: 0.26rem 0.26rem;
    padding-left: 0.4rem;
}
.news .left img {
    width: 120px;
}
.news .right .line {
    border-bottom: 1px dashed #e1e1e1;
    padding-bottom: 0.65rem;
    margin-bottom: 0.45rem;
}
.news .right .col-lg-12 {
    padding-left: 0;
    padding-right: 0;
}
.news .right .box img {
    width: 2.78rem;
    height: 1.85rem;
}
.news .right .box span,
.news .right .box em {
    display: block;
}
.news .right .box span {
    font-size: 0.24rem;
    color: #333;
}
.news .right .box em {
    font-size: 0.2rem;
    color: var(--main-color);
}
.news .right .box p {
    font-family: fontL, "微软雅黑";
    line-height: 0.3rem;
    height: 0.6rem;
    overflow: hidden;
    margin: 0.1rem 0;
}
.news .right .box .more {
    display: inline-block;
    color: #fff;
    font-size: 14px;
    height: 0.28rem;
    line-height: 0.28rem;
    padding: 0 0.15rem;
    border-radius: 0.2rem;
    background: var(--main-color);
}
.news .right .fenye {
    padding: 0.8rem 0;
}
.news .right .fenye a {
    color: #888;
    font-size: 14px;
    border: 1px solid #d2d2d2;
    padding: 0.05rem;
}
.news .right .fenye a:hover,
.news .right .fenye a:active,
.news .right .fenye a.on {
    color: #fff;
    background: var(--main-color);
    border-color: var(--main-color);
}
.about .part1 {
    padding: 0.7rem 0 1.6rem 0;
}
.about .part1 .tit span {
    font-size: 0.44rem;
    color: var(--main-color);
}
.about .part1 .tit em {
    font-size: 0.3rem;
    color: #e5e5e5;
    margin-left: 0.2rem;
    text-transform: uppercase;
}
.about .part1 .text p {
    font-family: fontL, "微软雅黑";
    line-height: 0.3rem;
    text-indent: 2em;
    margin-top: 0.2rem;
}
.aboutPro {
    line-height: 0.78rem;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    margin-top: -0.6rem;
    padding: 0.3rem;
}
.aboutPro .col-sm-3 {
    padding-left: 0;
    padding-right: 0;
}
.aboutPro .box {
    padding-left: 0.4rem;
}
.aboutPro .line {
    background: url(../images/aboutLine.png) center left no-repeat;
}
.aboutPro span {
    font-size: 0.3rem;
    color: #3eb3e7;
    padding: 0 0.4rem;
}
.aboutPro img {
    float: left;
}
.aboutPro p {
    padding-left: 0.9rem;
    font-size: 0.22rem;
    color: #333;
}
.about .part2 {
    background: #fff;
    border-radius: 5px;
    padding: 0.4rem 0.2rem;
    margin-bottom: 1.6rem;
}
.about .part2 .col-sm-4 {
    width: 29%;
}
.about .part2 .text {
    color: #fff;
    font-size: 0.3rem;
    height: 2.95rem;
    border-radius: 5px;
    text-align: center;
    padding-top: 0.4rem;
}
.about .part2 .text span,
.about .part2 .text em {
    font-family: fontL, "微软雅黑";
    font-size: 0.24rem;
}
.about .part2 .text span {
    display: inline-block;
    width: 1.6rem;
    height: 0.4rem;
    line-height: 0.4rem;
    border: 1px solid #fff;
    border-radius: 3px;
    margin: 0.05rem 0 0.1rem 0;
}
.about .part2 .text.text1 {
    margin-top: 0.2rem;
}
.about .part2 .text.text2 {
    margin-bottom: 0.2rem;
}
.plan {
    padding-top: 0.7rem;
}
.plan .col-lg-12,
.plan .col-sm-6 {
    padding-left: 0;
    padding-right: 0;
}
.plan .part1 {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}
.plan .part1 .img {
    width: 100%;
}
.plan .part1 .box {
    padding: 0.2rem 1rem 0.5rem 1rem;
}
.plan .part1 .box .tit {
    font-size: 0.24rem;
    color: #333;
    margin-bottom: 0.55rem;
}
.plan .part1 .box .input {
    line-height: 0.42rem;
    margin-bottom: 0.45rem;
}
.plan .part1 .box .input input {
    height: 0.42rem;
    line-height: 0.42rem;
    border: 1px solid #ccc;
    border-radius: 3px;
}
.plan .part1 .box .button {
    font-size: 14px;
    color: #666;
}
.plan .part1 .box .button button {
    width: 2.3rem;
    height: 0.5rem;
    font-size: 0.26rem;
    color: #fff;
    line-height: 0.5rem;
    margin-bottom: 0.15rem;
    border-radius: 0.3rem;
    background: linear-gradient(to bottom, #5bbcff 0%, #329ce4 100%);
}
.planPro {
    margin: 0.9rem 0 0.7rem 0;
}

/*============================ 媒体查询 ============================*/
.mobHide {
    display: block;
}
.mobShow {
    display: none;
}

@media (max-width: 1366px) {
    .wrap {
        width: 90%;
    }
    .banner-area {
        height: 5.4rem;
    }
    .banner-area .banner-content .text1 {
        margin-top: 0.5rem;
    }
    .banner-area .banner-content .text2 {
        font-size: 0.6rem;
        margin: 0.3rem 0;
    }
    .banner-area .banner-content a {
        margin-top: 0.3rem;
    }
    .banner-area .banner-content .text4 {
        padding-top: 0.6rem;
        font-size: 0.5rem;
    }
    .banner-area .banner-content .but2 {
        margin-top: 0.1rem;
    }
    .inBanner {
        height: 5.4rem;
    }
    .inBanner .text1 {
        font-size: 0.5rem;
        padding-top: 1.1rem;
    }
    .header .wrap,
    .footer .wrap {
        width: 96%;
    }
    .header .tel {
        font-size: 0.16rem;
    }
    .header .navbar_nav li {
        margin-right: 0.1rem;
    }
    .header .navbar_nav li {
        margin-right: 0.25rem;
    }
    .header .button a {
        width: 0.7rem;
        font-size: 12px;
    }
    .ixPart2 .row,
    .ixPart4 .row {
        padding: 0 0.5rem;
    }
    .ixPart2 .slick-arrow.prev {
        left: 0;
    }
    .ixPart2 .slick-arrow.next {
        right: 0;
    }
    .ixPart4 .slick-arrow.prev {
        left: 15px;
    }
    .ixPart4 .slick-arrow.next {
        right: 15px;
    }
    .rightMenu {
        bottom: 0;
    }
    .footer dl {
        margin-left: 0.8rem;
    }
    .footer .code {
        margin-right: 0.5rem;
    }
    .ixPart4 .text {
        width: 50%;
        padding: 0 0.1rem;
        margin: 0.3rem 0;
    }
    .shopPart4 .wrap {
        width: 96%;
    }
    .about.wrap {
        width: 90%;
    }
    .about .part1 {
        padding: 0.7rem 0.1rem 1rem 0;
    }
    .aboutPro span {
        padding: 0;
    }
    .aboutPro .box {
        padding-left: 0.2rem;
    }
    .about .part2 .text {
        height: 2.5rem;
        padding-top: 0.1rem;
    }
    .about .part2 .text.text1 {
        margin-top: 0.25rem;
    }
    .about .part2 .text.text2 {
        margin-bottom: 0.25rem;
    }
    .ixPart6 .wrap {
        width: 98%;
    }
    .ixPart3 .box {
        padding: 0.4rem 0.2rem;
    }
    .ixPart4 .text p {
        font-size: 14px;
    }
    .tradeTit {
        width: 2.4rem;
    }
    .shopPart3 .box {
        padding: 0.5rem 0.3rem;
    }
    .shopPart4 .shopCon {
        width: 87%;
        height: 3.89rem;
        margin: 0.5rem auto;
    }
    .shopPart4 .shopCon .col-sm-2 {
        padding-left: 10px;
        padding-right: 10px;
    }
    .shopPart4 .text {
        padding-top: 0.6rem;
    }
    .inBanner .text5 {
        font-size: 0.8rem;
    }
    .cusPart3 .box p {
        font-size: 0.16rem;
    }
    .cusPart3 .box.box2 {
        margin-top: 0.3rem;
    }
    .news .left span {
        font-size: 0.16rem;
        background-size: 0.2rem 0.2rem;
        padding-left: 0.3rem;
    }
    .news .right .line {
        padding-bottom: 0.4rem;
        margin-bottom: 0.3rem;
    }
    .news .right .box span {
        font-size: 0.2rem;
    }
    .news .right .box em {
        font-size: 0.16rem;
    }
    .news .right .box p {
        line-height: 0.26rem;
        height: 0.52rem;
    }
    .aboutPro {
        padding: 0.2rem;
        margin-right: 0.1rem;
    }
    .about .part1 {
        text-align: justify;
    }
    .plan.wrap {
        width: 86%;
    }
    .plan .part1 .box {
        padding: 0.4rem 0.3rem 0 0.3rem;
    }
    .plan .part1 .box .tit {
        margin-bottom: 0.4rem;
    }
    .plan .part1 .box .input {
        margin-bottom: 0.3rem;
    }
    .planPro {
        margin-right: 0;
    }
    .modeCon .text span {
        font-size: 0.4rem;
    }
}

@media (max-width: 1280px) {
    .rightMenu {
        display: none;
    }
    .wrap {
        width: 96%;
    }
    .header .navbar_nav li {
        margin-right: 0.2rem;
    }
    .header .tel {
        padding-left: 0.2rem;
        margin: 0.03rem 0 0 0;
    }
    .ixPart1 li img {
        width: 60px;
        height: 60px;
    }
    .ixPart3 .box {
        padding: 0.3rem 0.1rem;
    }
    .ixPart5 .box {
        margin-top: 0;
    }
    .ixPart6 .wrap {
        padding: 0;
    }
    .ixPart6 ul {
        background: linear-gradient(
            to right,
            var(--main-color-light),
            var(--main-color-lighter)
        );
    }
    .footer dl {
        margin-left: 0.7rem;
    }
    .shopPart4 .shopCon {
        height: 4.11rem;
    }
    .news .left span {
        padding-left: 0.3rem;
        font-size: 0.16rem;
        background-size: 0.2rem 0.2rem;
    }
    .news .right .line {
        margin-bottom: 0.3rem;
        padding-bottom: 0.3rem;
    }
    .about .part1 {
        padding: 0.7rem 0;
    }
    .aboutPro span {
        padding: 0 0 0 0.2rem;
    }
    .about .part2 .text {
        height: 2.4rem;
        font-size: 0.22rem;
        padding-top: 0.2rem;
    }
    .about .part2 .text span,
    .about .part2 .text em {
        font-size: 0.2rem;
    }
    .about .part2 .text.text2 {
        padding-top: 0.3rem;
    }
    .about .part2 {
        margin-bottom: 0.7rem;
    }

    .shopPart4 .shopCon {
        width: 94%;
        height: 3.99rem;
    }
}

@media (max-width: 1024px) {
    .header .wrap {
        width: 98%;
    }
    .header .tel {
        font-size: 14px;
    }
    .header .button a {
        font-size: 12px;
        width: auto;
        height: 0.2rem;
        line-height: 0.18rem;
        padding: 0 0.05rem;
        margin-top: 0.05rem;
    }
    .header .navbar_nav li {
        margin-right: 0.1rem;
    }
    .banner-area .banner-content .text2 {
        font-size: 0.6rem;
    }
    .ixPart1 {
        padding: 0;
    }
    .ixPart1 .col-sm-3 {
        width: 50%;
        padding: 0.2rem 0 0.2rem 0.5rem;
    }
    .ixPart2 .slick-arrow.prev {
        left: 0;
    }
    .ixPart2 .slick-arrow.next {
        right: 0;
    }
    .ixPart4 .slick-arrow.prev {
        left: 15px;
    }
    .ixPart4 .slick-arrow.next {
        right: 15px;
    }
    .ixPart3 .col-sm-4 {
        width: 50%;
    }
    .ixPart5 .box {
        height: 3rem;
    }
    .tradeTit {
        width: 2rem;
    }
    .tradeCon {
        width: 7rem;
        margin-left: 0.4rem;
    }
    .footer {
        text-align: center;
        padding-top: 0.4rem;
    }
    .footer .tel {
        width: 100%;
        margin-left: 0;
    }
    .footer dl {
        display: block;
        width: 100%;
        margin-left: 0;
        padding: 0.1rem 0;
    }
    .footer .code {
        width: 100%;
        margin-right: 0;
    }
    .footer .copy {
        padding: 0.2rem 0;
        margin-top: 0.2rem;
    }
    .inBanner .text1 {
        padding-top: 0.8rem;
    }
    .shopPart3 .box {
        padding: 0.3rem 0.2rem;
    }
    .shopPart4 .shopTit li {
        margin: 0;
    }
    .shopPart4 {
        padding: 0.4rem 0 0 0;
    }
    .shopPart4 .wrap {
        width: 86%;
        padding: 0;
    }
    .shopPart4 .shopCon {
        height: auto;
        background: none;
    }
    .shopPart4 .col-sm-5 {
        width: 100%;
    }
    .shopPart4 .col-sm-6 {
        width: 100%;
    }
    .shopPart4 img {
        width: 100%;
    }
    .shopPart4 .text {
        height: auto;
        padding-top: 0.4rem;
        padding-bottom: 0.2rem;
        background: #42b6ff;
    }
    .shopPart5 .bg {
        padding: 0.3rem 0;
        font-size: 0.18rem;
    }
    .modeTit span {
        width: 26%;
        margin: 0 0.15rem;
    }
    .inBanner .text5 {
        font-size: 0.5rem;
    }
    .inBanner .line {
        background-size: contain;
    }
    .cusPart5 .box {
        margin: 0;
    }
    .cusPart1 .box {
        padding: 0.2rem 0.1rem;
    }
    .cusPart2 .box {
        height: 3.8rem;
        padding: 0.2rem 0.1rem;
    }
    .news .left {
        font-size: 0.2rem;
    }
    .news .left span {
        font-size: 14px;
        padding-left: 0.2rem;
        background-size: 0.15rem 0.15rem;
    }
    .news .right .box span {
        font-size: 0.18rem;
    }
    .news .right .box em {
        font-size: 14px;
    }
    .news .right .box p {
        font-size: 14px;
        line-height: 0.24rem;
        height: 0.48rem;
    }
    .news .right .line {
        padding-bottom: 0.2rem;
        margin-bottom: 0.2rem;
    }
    .news .right .fenye {
        padding: 0.4rem 0;
    }
    .about .part1 {
        padding: 0.7rem 0;
    }
    .aboutPro.col-sm-9 {
        width: 96%;
        margin: 0.4rem 2% 0 2%;
    }
    .about .part2 {
        margin-bottom: 0.6rem;
    }
    .about .part2 .text {
        font-size: 0.2rem;
        height: 15vh;
        padding-top: 0;
    }
    .about .part2 .text span,
    .about .part2 .text em {
        font-size: 14px;
    }
    .about .part2 .text.text2 {
        padding-top: 0.2rem;
    }
    .plan {
        padding: 0.5rem 0;
    }
    .plan .part1 .box {
        padding: 0.2rem 0.4rem;
    }
    .plan .part1 .box .tit,
    .plan .part1 .box .input {
        margin-bottom: 0.3rem;
    }
}

@media (max-width: 834px) {
    .header {
        height: 0.6rem;
        position: fixed;
        left: auto;
        right: 0;
        padding: 0;
        transition: right 300ms !important;
    }
    .header .wrap {
        padding: 0;
    }
    .header .nav,
    .header .right {
        display: none;
    }
    .header #navToggle {
        height: 100%;
        display: inline-block;
        float: right;
    }
    .header #navToggle span {
        display: block;
        position: relative;
        width: 0.3rem;
        height: 0.3rem;
        background: url(../images/menu.png) no-repeat;
        background-size: contain;
        top: 0.23rem;
        right: 0.1rem;
    }
    .main {
        padding: 0.3rem 0;
    }
    .banner-area {
        height: 5rem;
        background-position: center left;
    }
    .banner-area .banner-content {
        padding: 0 0.1rem;
    }
    .banner-area .banner-content .text1 {
        margin-top: 0.3rem;
    }
    .banner-area .banner-content .text1 span {
        font-size: 0.4rem;
    }
    .banner-area .banner-content .text1 em {
        font-size: 0.6rem;
    }
    .banner-area .banner-content .text2 {
        font-size: 0.4rem;
        margin: 0.2rem 0;
    }
    .banner-area .banner-content a {
        margin-top: 0.4rem;
    }
    .banner-area.banner2 {
        background-position: center right;
    }
    .banner-area.banner2 .col-lg-6 {
        width: 100%;
    }
    .banner-area .banner-content .text4 {
        padding-top: 0.6rem;
    }
    .banner-area .banner-content .text5 {
        margin: 0.1rem 0;
    }
    .banner-area .banner-content .but2 {
        margin-top: 0;
    }
    .ixTit span {
        font-size: 0.4rem;
    }
    .ixPart3 {
        padding: 0.3rem 0;
    }
    .ixPart4 {
        padding: 0.3rem 0;
    }
    .ixPart4 .text {
        width: 40%;
        margin: 0.3rem 5%;
    }
    .ixPart5 {
        padding: 0.3rem 0;
    }
    .ixPart5 .col-sm-4 {
        width: 90%;
        margin: 0 auto;
        float: inherit;
    }
    .ixPart5 .box {
        height: auto;
        margin: 0.2rem 0;
    }
    .ixPart6 ul {
        width: 100%;
    }
    .ixPart7 {
        padding-bottom: 0.4rem;
    }
    .ixPart7 .col-sm-4 {
        width: 50%;
    }
    .ixPart8 {
        padding-bottom: 0;
    }
    .tradeTit {
        width: 100%;
        text-align: center;
    }
    .tradeTit span {
        display: inline-block;
        width: 10.5%;
    }
    .tradeCon {
        width: 100%;
        margin-left: 0;
        padding: 0.3rem 0.1rem;
    }
    .shopPart1 .box {
        margin: 0 0 0.2rem 0;
    }
    .shopPart3 .box span {
        font-size: 0.2rem;
    }
    .inBanner {
        height: 5.4rem;
        background-position: right !important;
    }
    .inBanner .col-sm-6 {
        width: 100%;
        padding-top: 0.3rem;
    }
    .modeTit span {
        font-size: 0.2rem;
    }
    .modeCon .text {
        padding-top: 0.5rem;
    }
    .modeCon .text span {
        font-size: 0.3rem;
        margin-bottom: 0.2rem;
    }
    .cusPart2 .box {
        height: 4.6rem;
    }
    .cusPart4 .pcCon {
        display: none;
    }
    .cusPart4 .mobCon {
        display: block;
    }
    .cusPart4 .mobCon p {
        margin: 0.1rem;
        position: relative;
    }
    .cusPart4 .mobCon p span {
        background: #fff;
        display: inline-block;
        height: 0.78rem;
        line-height: 0.78rem;
        width: 90%;
        margin-left: 0.36rem;
        padding-left: 0.5rem;
    }
    .cusPart4 .mobCon p img {
        position: absolute;
        top: 0;
        left: 0;
    }
    .cusPart5 .box {
        font-size: 0.2rem;
    }
    .plan .part1 .box {
        padding: 0.1rem 0.2rem;
    }
    .plan .part1 .box .col-sm-3 {
        width: 30%;
    }
    .plan .part1 .box .col-sm-9 {
        width: 70%;
    }
    .plan .part1 .box .tit,
    .plan .part1 .box .input {
        margin-bottom: 0.2rem;
    }
    .plan .part1 .box .tit {
        font-size: 0.2rem;
    }
    .planPro {
        padding: 0.3rem 0;
    }
    .planPro span {
        padding: 0 0 0 0.2rem;
    }
    .aboutPro {
        padding: 0.2rem 0;
    }
    .aboutPro .box {
        padding-left: 0.1rem;
    }
    .aboutPro .line {
        background: none;
    }
    .ixPart5 .col-sm-4 {
        width: 100%;
    }
    .news {
        padding-top: 0.4rem;
    }
    .news .left {
        font-size: 14px;
        padding: 0.2rem 0.1rem;
    }
    .news .left span {
        background: none;
        padding-left: 0;
    }
    .about .part1 .col-sm-6 {
        width: 100%;
        text-align: center;
    }
    .about .part1 .tit {
        margin-top: 0.2rem;
    }
    .about .part2 .text {
        height: 14.5vh;
    }
    .about .part2 .text.text2 {
        padding-top: 0.05rem;
    }
    .about .part1 .text p {
        text-align: left;
    }
    .about .part2 .text span {
        height: auto;
        line-height: inherit;
    }
    .shopPart4 {
        display: none;
    }
    .mobShopPart4 {
        display: block;
    }
}

@media (max-width: 768px) {
    .header {
        height: 0.6rem;
        padding: 0.1rem 0;
    }
    .header .logo {
        width: 300px;
        margin-top: -8px;
    }

    .header #navToggle span {
        width: 0.25rem;
        height: 0.25rem;
        top: 0.1rem;
    }
    .ixPart8 .bigTit {
        font-size: 0.44rem;
        padding: 0.4rem 0;
    }
    .plan .part1 .box .button button {
        font-size: 0.22rem;
        margin-bottom: 0.1rem;
        width: 2rem;
        height: 0.4rem;
        line-height: 0.4rem;
    }
    .cusPart1 .col-sm-4,
    .cusPart2 .col-sm-4 {
        width: 100%;
    }
    .cusPart1 .box.line {
        background: none;
    }
    .cusPart2 {
        padding: 0.4rem 0;
    }
    .cusPart2 .box {
        height: auto;
    }
    .cusPart3 {
        padding: 0.6rem 0;
    }
    .cusPart3 .col-sm-2 {
        width: 50%;
    }
    .cusPart3 .box.box1,
    .cusPart3 .box.box2,
    .cusPart3 .box.box3 {
        margin-top: 0.2rem;
    }
    .cusPart3 .box {
        margin-top: 0.2rem;
    }
    .cusPart3 .box p {
        font-size: 14px;
    }
    .aboutPro p {
        font-size: 0.16rem;
    }
    .about .part2 .text {
        font-size: 14px;
        padding-top: 0.1rem;
    }
    .about .part2 .text.text2 {
        padding-top: 0.2rem;
    }
}

@media (max-width: 767px) {
    .mobHide {
        display: none;
    }
    .mobShow {
        display: block;
    }
    body,
    button,
    input,
    select,
    textarea {
        font-size: 14px;
    }
    .ixPart1 .col-sm-3 {
        width: 50%;
        padding: 0 0 10px;
        text-align: center;
    }
    .ixPart1 .fl {
        float: none;
    }
    .ixPart1 li p {
        font-size: 16px;
    }
    .ixPart1 li p em {
        font-size: 12px;
    }
    .ixPart1.wrap {
        padding: 10px;
    }
    .ixTit span {
        font-size: 0.28rem;
        top: -0.4rem;
    }
    .ixTit em {
        font-size: 28px;
    }
    .ixPart2 .row,
    .ixPart4 .row {
        padding: 0 0.3rem;
    }
    .ixPart2 .box {
        height: 4.4rem;
        margin: 0 0.2rem 0.5rem 0.2rem;
    }
    .ixPart2 .box img {
        margin-top: 0.2rem;
    }
    .ixPart2 .box p em {
        padding: 0.15rem 0;
        font-size: 0.2rem;
    }
    .ixPart3 .col-sm-4 {
        width: 100%;
    }
    .ixPart3 .box .text p {
        font-size: 13px;
        height: 80px;
        overflow: hidden;
    }
    .ixPart4 .row {
        margin-left: 0;
        margin-right: 0;
        padding: 0 0.35rem;
    }
    .ixPart4 .box {
        margin: 0 0.1rem;
    }
    .ixPart4 .text {
        width: 50%;
        margin: 0.3rem 0;
    }
    .ixPart4 .text em,
    .ixPart4 .text span {
        font-size: 0.16rem;
    }
    .ixPart6 .wrap {
        width: 100%;
    }
    .ixPart6 ul {
        padding: 0.2rem 0;
    }
    .ixPart6 .box {
        padding: 0.5rem 0.3rem 0 0.2rem;
    }
    .ixPart6 .box p {
        padding-left: 1.2rem;
        line-height: inherit;
    }
    .ixPart6 .line {
        margin: 0.2rem 0;
    }
    .ixPart6 li .num {
        font-size: 1.6rem;
    }
    .ixPart7 {
        padding: 0.4rem 0;
    }
    .ixPart7 .col-sm-4 {
        width: 100%;
    }
    .ixPart7 .bottom {
        margin: 0.2rem 0;
    }
    .ixPart8 .bigTit {
        font-size: 0.3rem;
    }
    .ixPart8 {
        padding-bottom: 0.3rem;
        padding-top: 0.3rem;
    }
    .tradeTit {
        padding-top: 0.3rem;
        border-right: none;
    }
    .tradeTit span {
        width: 30%;
        font-size: 14px;
        height: 0.4rem;
        line-height: 0.4rem;
        background: #ebebeb;
        color: #333;
        border-right: none;
        margin: 1%;
    }
    .tradeTit .a {
        border-right: none;
        color: #fff;
    }
    .tradeCon {
        padding: 0.2rem 0.1rem 0 0.1rem;
    }
    .tradeCon .tit {
        font-size: 0.2rem;
    }
    .tradeCon .text {
        margin: 0.2rem 0;
    }
    .tradeCon .img {
        padding: 0.1rem 0;
        margin-top: 0.1rem;
    }
    .tradeCon .img div {
        margin: 0.1rem 0;
    }
    .tradeCon .img p {
        font-size: 14px;
    }
    .inBanner {
        height: 3.4rem;
    }
    .inBanner .col-sm-6 {
        padding-top: 0;
    }
    .inBanner .text1 {
        font-size: 0.36rem;
        padding-top: 0.6rem;
    }
    .inBanner .text2 {
        font-size: 0.3rem;
    }
    .inBanner .text3 {
        font-size: 0.16rem;
        margin: 0.2rem 0 0.3rem 0;
        padding: 0.05rem 0;
    }
    .inBanner a {
        width: 1.4rem;
        height: 0.36rem;
        line-height: 0.36rem;
        font-size: 0.2rem;
    }
    .inBanner .text4 {
        font-size: 0.24rem;
        padding-top: 0.3rem;
    }
    .inBanner .text5 {
        font-size: 0.28rem;
    }
    .inBanner .text6 {
        font-size: 14px;
    }
    .shopPart1 .box {
        padding: 0.1rem 0.2rem 0.1rem 0.2rem;
    }
    .shopPart2 {
        padding: 0 0 0.4rem 0;
    }
    .shopPart2 .con {
        margin-top: -0.7rem;
    }
    .shopPart3 .li4 {
        margin-left: 0;
    }
    .shopPart5 {
        padding: 0.4rem 0;
    }
    .shopPart5 .col-sm-2 {
        width: 50%;
        margin: 0.2rem 0;
    }
    .shopPart6 .ixTit p {
        margin-top: -0.3rem;
        font-size: 0.16rem;
    }
    .shopPart6 .con {
        margin: 0.4rem 0;
    }
    .modeTit span {
        width: auto;
        height: auto;
        line-height: inherit;
        margin: 0 0.05rem;
        padding: 0.1rem;
        font-size: 16px;
    }
    .modeCon {
        padding: 0.2rem;
    }
    .modeCon .text {
        padding: 0.2rem 0.1rem 0 0.1rem;
    }
    .modeCon .text span {
        font-size: 0.18rem;
    }
    .modeCon .text p {
        font-size: 14px;
        line-height: 0.3rem;
    }
    .cusPart4 .mobCon p span {
        font-size: 0.16rem;
        padding-left: 0.7rem;
    }
    .cusPart5 {
        padding: 0.6rem 0;
    }
    .cusPart5 .bgLine {
        display: none;
    }
    .cusPart5 .box {
        margin-top: 0.3rem;
    }
    .news {
        padding-top: 0;
    }
    .news .left {
        margin-bottom: 0.2rem;
        font-size: 0.2rem;
    }
    .news .left .text {
        position: inherit;
        font-size: 0.22rem;
        padding: 0.2rem 0.15rem;
    }
    .news .left span {
        font-size: 0.18rem;
    }
    .news .right img {
        width: 100%;
        margin-bottom: 0.2rem;
    }
    .about .part1 {
        padding: 0.2rem;
    }
    .about .part1 .tit span {
        font-size: 0.26rem;
    }
    .about .part1 .tit em {
        font-size: 0.18rem;
    }
    .about .part1 .text p {
        margin-top: 0.1rem;
    }
    .aboutPro .line {
        background: none;
    }
    .aboutPro .box {
        padding: 0.2rem;
    }
    .about .part2 .col-sm-4 {
        width: 100%;
        margin-top: 0.2rem;
    }
    .about .part2 .text {
        height: auto;
        padding: 0.3rem 0;
        font-size: 0.2rem;
    }
    .about .part2 .text span,
    .about .part2 .text em {
        font-size: 0.16rem;
    }
    .about .part2 .text span {
        padding: 0.05rem 0;
        font-size: 0.16rem;
    }
    .plan {
        padding: 0.2rem 0 0.4rem 0;
    }
    .plan.wrap {
        width: 86%;
    }
    .plan .part1 .box {
        padding: 0.2rem 0.1rem;
    }
    .plan .part1 .box .button {
        margin-bottom: 0.2rem;
    }
    .plan .part1 .box .button button {
        height: 0.3rem;
        line-height: 0.3rem;
        margin-bottom: 0.1rem;
        font-size: 0.16rem;
        width: 1.6rem;
    }
    .plan .part1 .box .col-sm-3,
    .plan .part1 .box .col-sm-9 {
        width: 100%;
    }
    .planPro.col-sm-9 {
        width: 100%;
        margin: 0.4rem 0 0 0;
    }
    .aboutPro {
        padding: 0;
    }
    .aboutPro span {
        display: block;
        width: 100%;
        font-size: 0.18rem;
    }
    .aboutPro .box {
        padding: 0 0 0.2rem 0;
        text-align: center;
    }
    .aboutPro img {
        float: inherit;
    }
    .aboutPro p {
        padding-left: 0;
        font-size: 14px;
        line-height: 0.3rem;
    }
    .mobShopPart4 {
        padding: 0.4rem 0 0.2rem 0;
    }
    .mobShopPart4 .mobShopTit span {
        font-size: 0.18rem;
        padding: 0 0 0.1rem 0;
    }
    .mobShopPart4 .wrap {
        width: 90%;
    }
    .mobShopPart4 .img p {
        top: 0.2rem;
    }
    .mobShopPart4 .img p b {
        font-size: 0.22rem;
        margin-bottom: 0.1rem;
    }
    .mobShopPart4 .img p span {
        font-size: 0.2rem;
    }
    .banner-area .banner-content .text1 em {
        font-size: 0.52rem;
    }
    .banner-area .banner-content .text4 {
        font-size: 24px;
        padding-top: 20px;
    }
    .banner-area .banner-content .text5 {
        font-size: 20px;
    }
    .banner-area .banner-content .text6 {
        font-size: 0.2rem;
    }
    .ixPart7 .top .tit {
        font-size: 0.2rem;
        padding: 0.2rem 0.3rem;
    }
    .ixPart3 .box {
        margin: 0 0 10px;
    }
    .ixPart3 .box .text span {
        font-size: 0.2rem;
        margin-bottom: 0.1rem;
    }
    .ixPart4 .text p {
        font-size: 12px;
    }
    .ixPart5 .box .text span {
        font-size: 0.2rem;
    }
    .footer {
        padding-top: 0;
    }
    .footer .tel,
    .footer dl,
    .footer .code {
        display: none;
    }
    .footer .copy {
        margin-top: 0;
        border-top: none;
    }
    .shopPart3 .box {
        padding: 0.1rem;
    }
    .shopPart3 .box span {
        font-size: 0.18rem;
    }
    .shopPart4 .text p,
    .mobShopPart4 .text p {
        font-size: 0.2rem;
    }
    .shopPart5 .bg {
        font-size: 0.16rem;
    }
    .cusPart1 .box span {
        font-size: 0.18rem;
    }
    .cusPart2 .box span {
        font-size: 0.2rem;
        padding: 0.1rem 0;
    }
    .cusPart5 .box span {
        font-size: 0.18rem;
    }
    .cusPart5 .box {
        font-size: 0.16rem;
    }
    .cusPart5 .box .text {
        line-height: 0.28rem;
        padding: 0.1rem 0.2rem;
    }
    .news .right .box span {
        font-size: 0.16rem;
    }
    .news .right .box em {
        font-size: 12px;
    }
    .news .right .box .more {
        font-size: 12px;
        height: 0.24rem;
        line-height: 0.24rem;
    }
    .about .part2 .text,
    .plan .part1 .box .tit {
        font-size: 0.18rem;
    }
}

@media (max-width: 375px) {
    .banner-area .banner-content .text1 {
        margin-top: 0.2rem;
    }
    .banner-area .banner-content .text1 span {
        font-size: 0.24rem;
    }
    .banner-area .banner-content .text1 em {
        font-size: 0.4rem;
    }
    .banner-area .banner-content .text2 {
        font-size: 0.26rem;
        margin: 0.2rem 0;
    }
    .banner-area .banner-content .text3 {
        font-size: 0.16rem;
    }
    .banner-area .banner-content a {
        margin-top: 0.4rem;
        height: 40px;
        line-height: 40px;
        font-size: 18px;
    }
    .banner-area .banner-content .text4 {
        font-size: 24px;
    }
    .banner-area .banner-content .text6 {
        font-size: 20px;
    }
    .inBanner {
        height: 3rem;
    }
    .inBanner .text1 {
        font-size: 0.3rem;
        padding-top: 0.4rem;
    }
    .inBanner .text2 {
        font-size: 0.24rem;
    }
    .inBanner .text3 {
        font-size: 14px;
    }
    .modeTit span {
        margin: 0 0.03rem;
        padding: 0.1rem 0.03rem;
        font-size: 14px;
    }
    .shopPart4 .col-xs-4 {
        width: 50%;
    }
    .shopPart2 .ixTit em {
        padding: 0 0.5rem;
    }
}

@media (max-width: 320px) {
    .modeTit span {
        padding: 0.1rem 0.05rem;
    }
    .aboutPro .box {
        padding: 0;
    }
    .aboutPro p {
        font-size: 14px;
    }
    .banner-area .banner-content .text4 {
        font-size: 0.3rem;
    }
    .banner-area .banner-content .text5 {
        font-size: 0.24rem;
    }
}
.link {
    width: 1400px;
    margin: 0 auto;
}
.link ul {
    position: relative;
    width: 1412px;
}
.link ul li {
    float: left;
    width: 270px;
    margin-right: 12px;
    margin-bottom: 12px;
    border: #e5e5e5 1px solid;
    box-sizing: border-box;
    height: 120px;
    position: relative;
}
.link ul li img {
    position: absolute;
    max-width: 90%;
    max-height: 90%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s;
}
.link ul li:hover img {
    transform: scale(0.9, 0.9) translate(-50%, -50%);
    transition: all 0.6s;
}
.link ul li:hover {
    box-shadow: 0px 0px 10px rgba(195, 195, 195, 0.75);
}

@media (max-width: 767px) {
    .link {
        width: 100%;
        margin: 0 auto;
    }
    .link ul {
        position: relative;
        width: 100%;
    }
    .link ul li {
        float: left;
        width: 31%;
        margin-right: 2%;
        margin-bottom: 12px;
        border: #e5e5e5 1px solid;
        box-sizing: border-box;
        height: 80px;
        position: relative;
    }
    .link ul li img {
        position: absolute;
        max-width: 90%;
        max-height: 90%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: all 0.6s;
    }
    .link ul li:hover img {
        transform: scale(0.9, 0.9) translate(-50%, -50%);
        transition: all 0.6s;
    }
    .link ul li:hover {
        box-shadow: 0px 0px 10px rgba(195, 195, 195, 0.75);
    }
    .link ul li:nth-child(10n) {
        display: none;
    }
}
.btn1 a {
    display: block;
    background: linear-gradient(
        to right,
        var(--main-color-light),
        var(--main-color-lighter)
    );
    text-align: center;
    color: #fff;
    width: 160px;
    line-height: 35px;
    border-radius: 17px;
    margin: 0 auto;
    transition: all 0.6s;
    margin-top: 50px;
}
.btn1 a:hover {
    background: linear-gradient(
        to right,
        var(--main-color-lighter),
        var(--main-color-light)
    );
    transition: all 0.6s;
    color: #fff;
}

.n_ban {
    width: 100%;
    height: 320px;
    position: relative;
    margin-top: 105px;
}
.n_ban .w_z {
    width: 90%;
    max-width: 1170px;
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: right;
    color: #333;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}
.n_ban .w_z.t_l {
    text-align: left;
}
.n_ban .w_z.t_c {
    text-align: center;
}
.n_ban .w_z h3 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 15px;
}
.n_ban .w_z p {
    font-size: 16px;
    font-weight: normal;
    text-transform: uppercase;
    color: #666;
}
@media only screen and (max-width: 992px) {
    .n_ban {
        height: 200px;
        margin-top: 0;
        margin-bottom: 0px;
    }
    .n_ban .w_z {
        width: 90%;
        max-width: 1170px;
        position: absolute;
        top: 60%;
        left: 50%;
        text-align: right;
        color: #333;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
    }
    .n_ban .w_z h3 {
        font-size: 16px;
        margin: 10px;
    }
    .n_ban .w_z p {
        font-size: 12px;
    }
}

.ny_ej {
    width: 100%;
    padding: 20px 0;
    background-color: #fafafa;
    text-align: center;
    overflow: hidden;
}
.ny_ej ul li {
    display: inline-block;
    font-size: 14px;
    line-height: 40px;
    margin: 0 5px;
}
.ny_ej ul li a {
    padding: 0 20px;
    border-radius: 5px;
    display: block;
    color: var(--main-color);
    background: #f5f5f5;
}
.ny_ej ul li a:hover {
    background-color: var(--main-color);
    color: #fff;
}
.ny_ej ul li a.on {
    background-color: var(--main-color);
    color: #fff;
}
@media only screen and (max-width: 992px) {
    .ny_ej {
        padding: 0;
        background-color: #f7f7f7;
    }
    .ny_ej ul li {
        width: 50%;
        float: left;
        display: block;
        margin: 0;
    }
    .ny_ej ul li a {
        padding: 0;
        border-radius: 0;
    }
    .ny_ej ul li a:hover {
        background: none;
        color: #555;
    }
}
.ny_nr {
    padding: 50px 0;
    overflow: hidden;
}

.ny_nr .st_zs {
    text-align: left;
}
.ny_nr .st_zs .j_s {
    margin-bottom: 30px;
    font-size: 14px;
    line-height: 30px;
}
.ny_nr .st_zs .j_s p {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 30px;
}
.ny_nr .st_zs .x_q ul li {
    overflow: hidden;
    margin-bottom: 20px;
}
.ny_nr .st_zs .x_q .t_w {
    position: relative;
}

.ny_nr .st_zs .x_m {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    font-size: 14px;
    line-height: 32px;
    color: #fff;
    text-align: center;
}
.ny_nr .st_zs .y_j .n_r {
    background-color: var(--main-color);
    color: #fff;
    padding: 20px 0;
    margin-bottom: 30px;
}
.ny_nr .st_zs .y_j .n_r .w_z {
    margin-top: 15px;
    font-size: 16px;
}
.ny_nr .st_zs .y_j .n_r i {
    font-size: 50px;
    line-height: 50px;
}
.ny_nr .st_zs .b_x {
    font-size: 22px;
    color: var(--main-color);
    margin-top: 20px;
}
.ny_nr .st_zs .g_h .n_r {
    margin-bottom: 30px;
}
.ny_nr .st_zs .g_h .b_t {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--main-color);
    font-size: 30px;
    line-height: 60px;
    color: #fff;
    margin: 0 auto 15px;
}
.ny_nr .st_zs .g_h .w_z h3 {
    font-size: 18px;
    margin-bottom: 15px;
}
.ny_nr .st_zs .g_h .w_z p {
    font-size: 13px;
}
.ny_nr .st_zs .t_d {
    margin-top: 50px;
    text-align: left;
}
.ny_nr .st_zs .t_d .t_p {
    margin-bottom: 20px;
}
.ny_nr .st_zs .t_d .t_p img {
    width: 100%;
    height: auto;
    display: block;
}
.ny_nr .st_zs .t_d .w_z h3 {
    font-size: 18px;
    margin-bottom: 10px;
}
.ny_nr .st_zs .t_d .w_z em {
    width: 30px;
    height: 2px;
    background-color: var(--main-color);
    display: block;
    margin-bottom: 15px;
}
.ny_nr .st_zs .t_d .w_z p {
    font-size: 14px;
    line-height: 24px;
}

.ny_nr .ny_bn {
    margin: 50px 0;
}
.ny_nr .ny_bn img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px;
}

.ny_nr .sz_ll ul li {
    margin-bottom: 30px;
}
.ny_nr .sz_ll .t_w {
    position: relative;
    overflow: hidden;
}
.ny_nr .sz_ll .t_w img {
    width: 100%;
    height: auto;
    display: block;
}
.ny_nr .sz_ll .j_s {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 10%;
    background-color: rgba(80, 80, 80, 0.9);
    font-size: 12px;
    line-height: 24px;
    color: #fff;
    text-align: center;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}
.ny_nr .sz_ll .j_s h3 {
    font-size: 15px;
    margin-bottom: 15px;
}
.ny_nr .sz_ll ul li:hover .j_s {
    top: 0;
}
.ny_nr .sz_ll .w_z {
    margin-top: 2px;
    padding: 15px;
    background-color: #fafafa;
    color: #555;
    text-align: center;
}
.ny_nr .sz_ll .w_z h3 {
    font-size: 16px;
}
.ny_nr .sz_ll .w_z p {
    font-size: 12px;
}

.ny_nr .hz_lb {
    margin: 0 -10px;
}
.ny_nr .hz_lb ul li {
    padding: 0 10px;
}
.ny_nr .hz_lb .t_w {
    margin-bottom: 20px;
    overflow: hidden;
}
.ny_nr .hz_lb .t_p {
    overflow: hidden;
}
.ny_nr .hz_lb .t_p img {
    width: 100%;
    height: auto;
    display: block;
}
.ny_nr .hz_lb .w_z {
    border: 1px solid #d7d7d7;
    padding: 15px;
    margin-top: 2px;
}
.ny_nr .hz_lb .w_z h3 {
    font-size: 16px;
    margin-bottom: 10px;
}
.ny_nr .hz_lb .w_z span {
    float: right;
    font-size: 14px;
    color: #777;
}
.ny_nr .hz_lb .w_z p {
    font-size: 13px;
    line-height: 24px;
    color: #777;
    height: 48px;
    overflow: hidden;
    margin-bottom: 10px;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -moz-line-clamp: 2;
    -o-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.ny_nr .hz_lb .w_z em {
    width: 30px;
    height: 1px;
    background-color: var(--main-color);
    display: block;
    margin-bottom: 15px;
}
.ny_nr .hz_lb .w_z a {
    color: var(--main-color);
}

.ny_nr .wd_zq ul li {
    background-color: #f7f7f7;
    padding: 20px;
    margin-bottom: 20px;
}
.ny_nr .wd_zq ul li.on {
    background-color: var(--main-color);
}
.ny_nr .wd_zq i {
    width: 32px;
    height: 32px;
    display: block;
    border-radius: 50%;
    background-color: #a5a5a5;
    color: #fff;
    font-size: 16px;
    text-align: center;
    line-height: 32px;
    position: absolute;
    left: 0;
    top: 2px;
}
.ny_nr .wd_zq ul li.on i {
    background-color: #fff;
    color: #000;
}
.ny_nr .wd_zq .w_t {
    width: 100%;
    font-size: 16px;
    line-height: 36px;
    position: relative;
    cursor: pointer;
    padding-left: 45px;
}
.ny_nr .wd_zq ul li.on .w_t {
    color: #fff;
}
.ny_nr .wd_zq .w_t span {
    width: 52px;
    height: 52px;
    position: absolute;
    top: 0;
    right: 0;
    display: block;
}
.ny_nr .wd_zq .w_t span em.x_1 {
    width: 16px;
    height: 2px;
    background-color: #aaa;
    position: absolute;
    top: 20px;
    left: 13px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}
.ny_nr .wd_zq .w_t span em.x_2 {
    width: 16px;
    height: 2px;
    background-color: #aaa;
    position: absolute;
    top: 20px;
    right: 13px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}
.ny_nr .wd_zq ul li.on .w_t span em.x_1 {
    width: 22px;
    left: 15px;
    background-color: #fff;
}
.ny_nr .wd_zq ul li.on .w_t span em.x_2 {
    width: 22px;
    right: 15px;
    background-color: #fff;
}
.ny_nr .wd_zq .j_d {
    width: 100%;
    font-size: 14px;
    line-height: 26px;
    display: none;
    margin-bottom: 10px;
    margin-top: 10px;
    position: relative;
    padding: 5px 0 5px 45px;
}
.ny_nr .wd_zq ul li.on .j_d {
    color: #fff;
}

.ny_nr .xw_lb ul li {
    border-bottom: 1px dotted #eaeaea;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.ny_nr .xw_lb img {
    width: 100%;
    height: auto;
    display: block;
}
.ny_nr .xw_lb .w_z h3 {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 5px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.ny_nr .xw_lb .w_z span {
    font-size: 12px;
    color: #555;
    padding-right: 15px;
}
.ny_nr .xw_lb .w_z i {
    color: #333;
    padding-right: 5px;
}
.ny_nr .xw_lb .w_z p {
    font-size: 13px;
    line-height: 24px;
    color: #777;
    height: 48px;
    overflow: hidden;
    margin-top: 10px;
    margin-bottom: 10px;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -moz-line-clamp: 2;
    -o-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.ny_nr .xw_lb .w_z a.x_q {
    width: 120px;
    height: 32px;
    border-radius: 5px;
    background-color: var(--main-color);
    font-size: 14px;
    text-align: center;
    line-height: 32px;
    color: #fff;
    display: block;
}

.ny_nr .yema {
    margin-top: 40px;
    text-align: center;
}
.ny_nr .yema ul li {
    margin: 0 5px;
    display: inline-block;
}
.ny_nr .yema ul li a {
    border: 1px solid #eaeaea;
    width: 40px;
    height: 40px;
    font-size: 14px;
    line-height: 38px;
    text-align: center;
    color: #555;
    display: block;
}
.ny_nr .yema ul li a.on {
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
    color: #fff;
}
@media only screen and (max-width: 992px) {
    .ny_nr {
        padding: 30px 0;
    }

    .ny_nr .st_zs .j_s {
        margin-bottom: 20px;
        font-size: 14px;
        line-height: 26px;
    }
    .ny_nr .st_zs .x_q ul li {
        margin-bottom: 15px;
    }
    .ny_nr .st_zs .b_x {
        font-size: 16px;
        line-height: 26px;
        margin-top: 0;
    }
    .ny_nr .sz_ll .j_s p {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 4;
    }
    .ny_nr .hz_lb .w_z {
        margin-top: 10px;
    }
    .ny_nr .hz_lb .w_z h3 {
        font-size: 15px;
        line-height: 26px;
        font-weight: normal;
        margin-bottom: 5px;
    }
    .ny_nr .hz_lb .w_z p {
        font-size: 12px;
        line-height: 22px;
        margin-bottom: 10px;
    }
    .ny_nr .hz_lb .w_z a.m_r {
        width: 100px;
        height: 26px;
        font-size: 12px;
        line-height: 26px;
    }

    .ny_nr .wd_zq ul li {
        padding: 10px;
        margin-bottom: 10px;
    }
    .ny_nr .wd_zq i {
        width: 26px;
        height: 26px;
        border-radius: 50%;
        font-size: 14px;
        line-height: 26px;
    }
    .ny_nr .wd_zq .w_t {
        font-size: 14px;
        line-height: 26px;
        padding-left: 32px;
    }
    .ny_nr .wd_zq .w_t span {
        display: none;
    }
    .ny_nr .wd_zq .j_d {
        font-size: 13px;
        line-height: 22px;
        margin-bottom: 5px;
        margin-top: 5px;
        padding: 2px 0 2px 32px;
    }

    .ny_nr .xw_lb ul li {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    .ny_nr .xw_lb img {
        margin-bottom: 10px;
    }
    .ny_nr .xw_lb .w_z h3 {
        font-size: 15px;
        line-height: 26px;
        font-weight: normal;
        margin-bottom: 5px;
    }
    .ny_nr .xw_lb .w_z p {
        font-size: 12px;
        line-height: 22px;
        margin-bottom: 10px;
    }
    .ny_nr .xw_lb .w_z a.m_r {
        width: 100px;
        height: 26px;
        font-size: 12px;
        line-height: 26px;
    }

    .ny_nr .yema {
        margin-top: 20px;
    }
    .ny_nr .yema ul li {
        margin: 0 3px;
    }
    .ny_nr .yema ul li a {
        font-size: 12px;
        line-height: 28px;
        width: 30px;
        height: 30px;
    }
}

.ny_ly {
    padding: 60px 0;
    overflow: hidden;
}
.ny_ly h3 {
    margin-bottom: 15px;
    font-size: 24px;
    color: #333;
}
.ny_ly h4 {
    font-size: 14px;
    line-height: 26px;
    color: #888;
    margin-top: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e7e7e7;
    margin-bottom: 15px;
}
.ny_ly p {
    color: #777;
    line-height: 38px;
}
.ny_ly i {
    width: 20px;
    display: inline-block;
}
.ny_ly strong {
    font-size: 16px;
    font-weight: normal;
    color: #000;
}
.ny_ly input.z_c {
    width: 49%;
    height: 46px;
    font-size: 14px;
    line-height: 46px;
    margin-bottom: 15px;
    border: 1px solid #e7e7e7;
    padding: 0 5px;
    float: left;
}
.ny_ly input.y_c {
    width: 49%;
    height: 46px;
    font-size: 14px;
    line-height: 46px;
    margin-bottom: 15px;
    border: 1px solid #e7e7e7;
    padding: 0 5px;
    float: right;
}
.ny_ly button {
    width: 100%;
    height: 46px;
    background-color: var(--main-color);
    font-size: 15px;
    color: #fff;
    line-height: 46px;
}
.ny_ly textarea {
    width: 100%;
    height: 94px;
    padding: 5px;
    border: 1px solid #e7e7e7;
    outline: none;
    resize: none;
    font-size: 14px;
    line-height: 28px;
    margin-bottom: 15px;
}
.ny_ly .d_t {
    border: 2px solid #fff;
}
.ny_ly .d_t img {
    width: 100%;
    height: auto;
    display: block;
}
@media only screen and (max-width: 992px) {
    .ny_ly {
        padding: 30px 0;
    }
    .ny_ly h3 {
        font-size: 20px;
    }
    .ny_ly h4 {
        line-height: 24px;
        margin-top: 0;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
    .ny_ly p {
        line-height: 28px;
        margin-bottom: 30px;
    }
    .ny_ly strong {
        font-size: 16px;
    }
    .ny_ly input.z_c {
        width: 100%;
        float: none;
    }
    .ny_ly input.y_c {
        width: 100%;
        float: none;
    }
}
.yqpart_3 {
    width: 100%;
    margin: 0 auto;

    text-align: center;

    height: auto;
}

.s_title {
    font-size: 28px;
    color: #045dad;
    margin-bottom: 50px;
    text-align: center;
}

.yqpart_3 ul {
    overflow: hidden;
}

.yqpart_3 ul li {
    width: 322px;
    height: 250px;
    float: left;
    padding-left: 10px;
    border: 1px solid #808080;
    margin-left: 20px;
    margin-bottom: 20px;
    background: #fff;
}
.yqpart_3 ul li:nth-child(4n) {
    margin-right: 0;
}
.yqpart_3 ul li p {
    height: 190px;
    padding-top: 10px;
}

.yqpart_3 ul li span {
    display: block;
    width: 302px;
    border-top: 1px solid #808080;
    height: 50px;
    line-height: 50px;
}

#yq img {
    /*! transition: all 0.5s ease-in-out; */
}

#yq img:hover {
    -webkit-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    -moz-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
    -o-transform: scale(1.1, 1.1);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    /*图片旋转360度动效transform: rotateY(360deg);
  -webkit-transform: rotateY(360deg);
  -moz-transform: rotateY(360deg);
  -o-transform: rotateY(360deg);*/
    /*图片向左偏移动效 transform: translate3d(-10px, 0, 0)*/
    /*图片顺时针向右上方向倾斜动效 transform: rotate3d(0, 0, 1, 5deg)*/
    /*图片逆时针向左下倾斜动效 transform: rotate3d(0, 0, 1, -10deg)*/
}
@media only screen and (max-width: 992px) {
    .yqpart_3 ul li {
        width: 46%;
        height: auto;
        float: left;
        padding-left: 0;
        border: 1px solid #808080;
        margin-left: 2%;
        margin-bottom: 20px;
        background: #fff;
    }
    .yqpart_3 ul li p {
        height: auto;
        padding-top: 10px;
    }
    .yqpart_3 ul li span {
        display: block;
        width: 100%;
        border-top: 1px solid #808080;
        height: 30px;
        line-height: 30px;
    }
    #yq img:hover {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -moz-transform: scale(1);
        transform: scale(1);
        -o-transform: scale(1);
        -webkit-transition: all 0.5s ease-in-out;
        -moz-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
        -o-transition: all 0.5s ease-in-out;
        /*图片旋转360度动效transform: rotateY(360deg);
  -webkit-transform: rotateY(360deg);
  -moz-transform: rotateY(360deg);
  -o-transform: rotateY(360deg);*/
        /*图片向左偏移动效 transform: translate3d(-10px, 0, 0)*/
        /*图片顺时针向右上方向倾斜动效 transform: rotate3d(0, 0, 1, 5deg)*/
        /*图片逆时针向左下倾斜动效 transform: rotate3d(0, 0, 1, -10deg)*/
    }
}
.ny_bt {
    text-align: center;
    margin-bottom: 40px;
}
.ny_bt h3 {
    font-size: 26px;
    font-weight: bold;
}
.ny_bt h4 {
    font-size: 22px;
    margin-bottom: 20px;
}
.ny_bt i {
    width: 52px;
    height: 2px;
    background-color: var(--main-color);
    margin: 15px auto;
    display: block;
}
.ny_bt p {
    font-size: 15px;
    color: #999;
}
@media only screen and (max-width: 992px) {
    .ny_bt {
        margin-bottom: 20px;
    }
    .ny_bt h3 {
        font-size: 20px;
    }
    .ny_bt h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    .ny_bt i {
        width: 40px;
        height: 1px;
        margin: 10px auto;
    }
    .ny_bt p {
        font-size: 12px;
    }
}
.lianxi {
    width: 100%;
    height: auto;
    overflow: hidden;
}
.lianxi li {
    float: left;
    width: 49%;
    margin-right: 2%;
    background: #fff;
    border-radius: 8px;
    padding: 20px 0 10px;
    margin-bottom: 2%;
}
.lianxi li:nth-child(2n) {
    margin-right: 0;
}
.contact {
    height: auto;
    overflow: hidden;
}
.title_address {
    float: left;
    width: 625px;
    line-height: 31px;
}
.title_address img {
    float: left;
    display: inline;
    margin-right: 5px;
    height: 30px;
    width: 30px;
    margin-left: 5px;
}
.title_address .adrname {
    float: left;
    width: 580px;
    font-family: "微软雅黑";
    font-size: 18px;
    color: #242424;
    line-height: 31px;
}
.contact_info {
    padding: 0px 0px 0px 40px;
    float: left;
    font-size: 16px;
    font-weight: normal;
}
.contact_info div {
    float: left;
}

@media only screen and (max-width: 992px) {
    .lianxi li {
        float: none;
        width: 98%;
        margin-right: 0%;
        background: #fff;
        border-radius: 8px;
        padding: 20px 0 0;
    }
    .lianxi li:nth-child(2n) {
        margin-right: 0;
    }
    .title_address {
        float: left;
        width: 100%;
        line-height: 31px;
    }
    .title_address img {
        float: left;
        display: inline;
        margin-right: 5px;
    }
    .title_address .adrname {
        float: right;
        width: 86%;
        font-family: "微软雅黑";
        font-size: 14px;
        color: #242424;
        line-height: 24px;
        padding-left: 2%;
    }
    .contact_info {
        padding: 0px 0px 0px 0;
        float: right;
        font-size: 14px;
        font-weight: normal;
        width: 86%;
        padding-left: 2%;
    }
}

.fwpart_2 {
    width: 100%;
    height: 238px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0px 3px 6px #afafb0;
    margin-bottom: 45px;
}

.fwpart_2 li {
    float: left;
    margin-top: 46px;
}

.fwpart_2 .order1 {
    width: 250px;
    text-align: center;
    margin-top: 0px;
}

.fwpart_2 .fwt {
    display: block;
    width: 103px;
    height: 103px;
    margin: 35px auto 20px auto;
}

.fwpart_2 .fwt1 {
    background: url(../images/fw_icon1.jpg) no-repeat 0 0;
}

.fwpart_2 .order1:hover .fwt1 {
    background: url(../images/fw_icon11.jpg) no-repeat 0 0;
}

.fwpart_2 .fwt2 {
    background: url(../images/fw_icon2.jpg) no-repeat 0 0;
}

.fwpart_2 .order1:hover .fwt2 {
    background: url(../images/fw_icon22.jpg) no-repeat 0 0;
}

.fwpart_2 .fwt3 {
    background: url(../images/fw_icon3.jpg) no-repeat 0 0;
}

.fwpart_2 .order1:hover .fwt3 {
    background: url(../images/fw_icon33.jpg) no-repeat 0 0;
}

.fwpart_2 .fwt4 {
    background: url(../images/fw_icon4.jpg) no-repeat 0 0;
}

.fwpart_2 .order1:hover .fwt4 {
    background: url(../images/fw_icon44.jpg) no-repeat 0 0;
}

.fwpart_2 .fwt5 {
    background: url(../images/fw_icon5.jpg) no-repeat 0 0;
}

.fwpart_2 .order1:hover .fwt5 {
    background: url(../images/fw_icon55.jpg) no-repeat 0 0;
}

.fwpart_2 .fwt6 {
    background: url(../images/fw_icon6.jpg) no-repeat 0 0;
}

.fwpart_2 .order1:hover .fwt6 {
    background: url(../images/fw_icon66.jpg) no-repeat 0 0;
}

.fwpart_2 .fwt7 {
    background: url(../images/fw_icon7.jpg) no-repeat 0 0;
}

.fwpart_2 .order1:hover .fwt7 {
    background: url(../images/fw_icon77.jpg) no-repeat 0 0;
}

.fwpart_2 .fwt8 {
    background: url(../images/fw_icon8.jpg) no-repeat 0 0;
}

.fwpart_2 .order1:hover .fwt8 {
    background: url(../images/fw_icon88.jpg) no-repeat 0 0;
}

.fwpart_2 .fwt9 {
    background: url(../images/fw_icon9.jpg) no-repeat 0 0;
}

.fwpart_2 .order1:hover .fwt9 {
    background: url(../images/fw_icon99.jpg) no-repeat 0 0;
}

.fwpart_2 .order1 .fwtxt2 {
    display: block;
    font-size: 26px;
    color: #3e3a39;
}

.fwpart_2 .order1 .fwtxt3 {
    text-transform: uppercase;
    color: #727171;
    font-size: 12px;
    font-family: 新宋体;
}

.fwpart_2 .order2 {
    width: 120px;
    text-align: center;
    padding-top: 20px;
}

.fwpart_2 p {
    color: #595757;
    padding: 4px 5px;
    margin-bottom: 10px;
}

.fwpart_2 p:hover {
    background: linear-gradient(
        to right,
        var(--main-color-light),
        var(--main-color-lighter)
    );
    color: #fff;
    border-radius: 14px;
}

.fwpart_2 .order3 {
    width: 160px;
    text-align: center;
    padding-top: 20px;
}
.fwpart_2 .order6 {
    width: 160px;
    text-align: center;
    padding-top: 20px;
}
.fwpart_2 .order4 {
    width: 170px;
    text-align: center;
    padding-top: 20px;
}

.fwpart_2 .order5 {
    width: 290px;
    height: 238px;
    overflow: hidden;
    margin-top: 0px;
    position: relative;
    float: right;
}
.fw_mask {
    width: 290px;
    height: 238px;
    position: absolute;
    left: 0;
    bottom: -238px;
    background: rgba(0, 0, 0, 0.6);
    transition: all 1s ease-in;
    color: #fff;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
}

.order5:hover .fw_mask {
    bottom: 0;
}

.fw_mask a {
    display: block;
    width: 182px;
    height: 55px;
    line-height: 55px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid #fff;
    text-align: center;
    margin-left: 55px;
    letter-spacing: 2px;
    cursor: pointer;
    margin-top: 90px;
    color: #fff;
}
@media only screen and (max-width: 992px) {
    .fwpart_2 {
        width: 100%;
        height: auto;
        overflow: hidden;
        background: #fff;
        box-shadow: 0px 3px 6px #afafb0;
        margin-bottom: 25px;
    }
    .fwpart_2 li {
        float: left;
        margin-top: 16px;
    }

    .fwpart_2 .order1 {
        width: 100%;
        text-align: center;
        margin-top: 0px;
    }

    .fwpart_2 .fwt {
        display: block;
        width: 103px;
        height: 103px;
        margin: 15px auto 20px auto;
    }

    .fwpart_2 .fwt1 {
        background: url(../images/fw_icon1.jpg) no-repeat 0 0;
    }

    .fwpart_2 .order1:hover .fwt1 {
        background: url(../images/fw_icon11.jpg) no-repeat 0 0;
    }

    .fwpart_2 .fwt2 {
        background: url(../images/fw_icon2.jpg) no-repeat 0 0;
    }

    .fwpart_2 .order1:hover .fwt2 {
        background: url(../images/fw_icon22.jpg) no-repeat 0 0;
    }

    .fwpart_2 .fwt3 {
        background: url(../images/fw_icon3.jpg) no-repeat 0 0;
    }

    .fwpart_2 .order1:hover .fwt3 {
        background: url(../images/fw_icon33.jpg) no-repeat 0 0;
    }

    .fwpart_2 .order1 .fwtxt2 {
        display: block;
        font-size: 26px;
        color: #3e3a39;
    }

    .fwpart_2 .order1 .fwtxt3 {
        text-transform: uppercase;
        color: #727171;
        font-size: 12px;
        font-family: 新宋体;
    }

    .fwpart_2 .order2 {
        width: 25%;
        text-align: center;
        padding-top: 0;
    }

    .fwpart_2 p {
        color: #595757;
        padding: 4px 5px;
        margin-bottom: 10px;
    }

    .fwpart_2 p:hover {
        background: linear-gradient(
            to right,
            var(--main-color-lighter),
            var(--main-color-light)
        );
        color: #fff;
        border-radius: 14px;
    }

    .fwpart_2 .order3 {
        width: 20%;
        text-align: center;
        padding-top: 0;
    }
    .fwpart_2 .order6 {
        width: 40%;
        text-align: center;
        padding-top: 0;
    }
    .fwpart_2 .order4 {
        width: 50%;
        text-align: center;
        padding-top: 0;
    }

    .fwpart_2 .order5 {
        width: 100%;
        height: 238px;
        overflow: hidden;
        margin-top: 0px;
        position: relative;
        float: none;
    }
    .fwpart_2 .order5 img {
        width: 100%;
    }
    .fw_mask {
        width: 100%;
        height: 238px;
        position: absolute;
        left: 0;
        bottom: -238px;
        background: rgba(0, 0, 0, 0.6);
        transition: all 1s ease-in;
        color: #fff;
        transition: all 0.2s;
        -webkit-transition: all 0.2s;
        -moz-transition: all 0.2s;
    }

    .order5:hover .fw_mask {
        bottom: 0;
    }

    .fw_mask a {
        display: block;
        width: 182px;
        height: 55px;
        line-height: 55px;
        background: rgba(255, 255, 255, 0.2);
        border: 1px solid #fff;
        text-align: center;
        margin: 0 auto;
        letter-spacing: 2px;
        cursor: pointer;
        margin-top: 90px;
        color: #fff;
    }
}
.plan {
    padding-top: 20px;
}
.plan .part1 {
    background: #fafafa;
    border-radius: 5px;
    overflow: hidden;
    width: 100%;
    margin: 50px auto;
    padding: 50px 50px 20px;
}
.plan .part1 .img {
    width: 100%;
}
.plan .part1 .box {
    padding: 10px;
}
.plan .part1 .box em {
    font-style: normal;
    font-size: 16px;
    text-align: center;
}
.plan .part1 .box .tit {
    font-size: 30px;
    color: #333;
    margin-bottom: 40px;
}
.plan .part1 .box .input {
    line-height: 42px;
    margin-bottom: 40px;
    width: 80%;
    margin: 0 auto;
}
.plan .part1 .box .input input {
    height: 42px;
    line-height: 42px;
    border: 1px solid #ccc;
    border-radius: 3px;
    width: 73%;
    margin-left: 10px;
    margin-bottom: 40px;
}
.plan .part1 .box .button {
    font-size: 14px;
    color: #666;
}
.plan .part1 .box .button button {
    width: 200px;
    height: 40px;
    font-size: 16px;
    color: #fff;
    line-height: 40px;
    margin-bottom: 20px;
    border-radius: 4px;
    background: var(--main-color);
    border: 0;
}
.planPro {
    margin: 0.9rem 0 0.7rem 0;
}
@media only screen and (max-width: 992px) {
    .plan {
        padding-top: 0px;
    }
    .plan .part1 {
        background: #fafafa;
        border-radius: 5px;
        overflow: hidden;
        width: 100%;
        margin: 0 auto;
        padding: 10px;
    }
    .plan .part1 .box .tit {
        font-size: 20px;
        color: #333;
        margin-bottom: 20px;
        font-weight: bold;
    }
    .plan .part1 .box .input {
        line-height: 42px;
        margin-bottom: 40px;
        width: 100%;
        margin: 0 auto;
    }
    .plan .part1 .box .input input {
        height: 42px;
        line-height: 42px;
        border: 1px solid #ccc;
        border-radius: 3px;
        width: 100%;
        margin-left: 10px;
        margin-bottom: 0px;
    }
    .plan .part1 .box .button {
        font-size: 14px;
        color: #666;
        margin-top: 20px;
    }
    .plan .part1 .box .button button {
        width: 80px;
        height: 30px;
        font-size: 14px;
        color: #fff;
        line-height: 30px;
        margin-bottom: 0px;
        border-radius: 4px;
        background: var(--main-color);
        border: 0;
    }
    .planPro {
        margin: 0.9rem 0 0.7rem 0;
    }
}
.sm {
    height: auto;
    overflow: hidden;
    margin-bottom: 20px;
    width: 100%;
}
.sm .L {
    float: left;
    width: 68%;
    line-height: 35px;
}
.sm .L h1 {
    font-size: 30px;
    margin-bottom: 18px;
}
.sm .L span {
    color: #f00;
    display: inline-block;
}
.sm .R {
    float: right;
    width: 30%;
}
.sm .R img {
    width: 100%;
}

.gg {
    width: 100%;
    margin: 0 auto;
    height: auto;
    overflow: hidden;
}
@media only screen and (max-width: 992px) {
    .sm .L {
        float: none;
        width: 100%;
        line-height: 25px;
    }
    .sm .L h1 {
        font-size: 20px;
        margin-bottom: 18px;
    }
    .sm .R {
        float: none;
        width: 100%;
    }
    .sm .R img {
        width: 100%;
    }
    .gg {
        width: 100%;
        margin: 0 auto;
        height: auto;
        overflow: hidden;
    }
}

.youshi {
    background: #f7f7f7;
    padding-bottom: 0.6rem;
    padding-top: 0.6rem;
}
.youshi ul li {
    float: left;
    width: 13.4%;
    margin-right: 1%;
    margin-bottom: 40px;
    background: linear-gradient(
        to right,
        var(--main-color-light),
        var(--main-color-lighter)
    );
    border-radius: 5px;
    overflow: hidden;
    box-sizing: border-box;
    text-align: center;
    padding-bottom: 30px;
    transition: all 0.6s;
}
.youshi ul li:nth-child(7n) {
    margin-right: 0;
}
.youshi ul li i {
    display: block;
    margin: 30px auto;
    width: 80%;
    text-align: center;
}
.youshi ul li i img {
    width: 100%;
    max-width: 100px;
    height: auto;
    display: block;
    margin: 0 auto;
}
.youshi ul li .zss {
    display: block;
}
.youshi ul li .xss {
    display: none;
}
.youshi ul li h3 {
    font-size: 25px;
    color: #313131;
    font-weight: bold;
    padding-bottom: 25px;
}
.youshi ul li p {
    display: block;
    width: 85%;
    margin: 0 auto;
    font-size: 15px;
    color: #fff;
    line-height: 25px;
    height: 75px;
    overflow: hidden;
}
.youshi ul li:hover {
    background: linear-gradient(
        to right,
        var(--main-color-lighter),
        var(--main-color-light)
    );
    box-shadow: 0px 0px 20px rgba(41, 22, 111, 0.15);
}
.youshi ul li:hover p {
    color: #fff;
}
.youshi ul li:hover h3 {
    color: #fff;
}
.youshi ul li:hover * {
    color: #29166f;
}
.youshi ul li:hover .zss {
    display: none;
}
.youshi ul li:hover .xss {
    display: block;
}

.zjjs {
    background: #fff;
    padding-bottom: 0.6rem;
    padding-top: 0.6rem;
}
.zjjs ul {
    height: auto;
    overflow: hidden;
}
.zjjs li {
    background: #f7f7f7;
    border-radius: 4px;
    width: 49%;
    padding: 2%;
    margin-right: 2%;
    float: left;
    margin-bottom: 2%;
}
.zjjs li:nth-child(2n) {
    margin-right: 0;
}
.zjjs li h1 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 2%;
}
.zjjs li p {
    font-size: 14px;
    line-height: 26px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}
.zjjs li span {
    width: 120px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: linear-gradient(
        to right,
        var(--main-color-light),
        var(--main-color-lighter)
    );
    display: block;
    border-radius: 15px;
    margin-top: 2%;
}
.zjjs li span a {
    color: #fff;
    font-size: 14px;
}
.zjjs li span:hover {
    background: linear-gradient(
        to right,
        var(--main-color-lighter),
        var(--main-color-light)
    );
}

@media only screen and (max-width: 992px) {
    .youshi {
        background: #f7f7f7;
        padding-bottom: 0.3rem;
        padding-top: 0.3rem;
    }
    .youshi ul li {
        float: left;
        width: 48%;
        margin: 1%;
        margin-bottom: 5px;
        background: linear-gradient(
            to right,
            var(--main-color-light),
            var(--main-color-lighter)
        );
        border-radius: 5px;
        overflow: hidden;
        box-sizing: border-box;
        text-align: center;
        padding-bottom: 10px;
        transition: all 0.6s;
    }
    .youshi ul li:nth-child(2n) {
        margin-right: 0;
    }
    .youshi ul li:nth-child(7n) {
        width: 98%;
    }
    .youshi ul li p {
        display: block;
        width: 85%;
        margin: 0 auto;
        font-size: 13px;
        color: #fff;
        line-height: 22px;
        height: auto;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }
    .youshi ul li i {
        display: block;
        margin: 10px auto;
        width: 60%;
        text-align: center;
    }
    .youshi ul li i img {
        width: 100%;
        max-width: 80px;
        height: auto;
        display: block;
        margin: 0 auto;
    }
    .zjjs {
        background: #fff;
        padding-bottom: 0.3rem;
        padding-top: 0.3rem;
    }
    .zjjs li {
        background: #f7f7f7;
        border-radius: 4px;
        width: 98%;
        padding: 2%;
        margin-right: 0%;
        float: none;
        margin: 0 auto 2%;
    }
    .zjjs li span {
        width: 100px;
        height: 28px;
        line-height: 28px;
        text-align: center;
        background: linear-gradient(
            to right,
            var(--main-color-light),
            var(--main-color-lighter)
        );
        display: block;
        border-radius: 14px;
        margin-top: 2%;
    }
    .zjjs li span a {
        color: #fff;
        font-size: 12px;
    }
    .zjjs li:nth-child(2n) {
        margin: 0 auto 2%;
    }
}

.zw {
    line-height: 30px;
    padding: 15px 0;
    min-height: 350px;
    color: #555555;
    font-size: 14px;
}
.zw a:link {
    color: #555555;
}
.zw a:visited {
    color: #555;
}
.zw a:hover {
    color: #ff6205;
}
.zw a:active {
    color: #555555;
}
.zw img {
    max-width: 100%;

    width: expression(document.body.clientWidth>100%? "100%": "auto");
}

.xiaocms-page span {
    margin: 0 3px;
    border: 1px solid var(--main-color);
    line-height: 35px;
    padding: 0 15px;
    background: var(--main-color);
    color: #ffffff;
    display: inline-block;
    border-radius: 5px;
}
.xiaocms-page a {
    margin: 0 3px;
    border: 1px solid #eee;
    line-height: 35px;
    background: #fff;
    display: block;
    color: #333;
    padding: 0 10px;
    display: inline-block;
    border-radius: 5px;
}
.xiaocms-page a:hover {
    margin: 0 3px;
    border: 1px solid var(--main-color);
    line-height: 35px;
    background: var(--main-color);
    color: #fff;
    padding: 0 10px;
    display: inline-block;
    border-radius: 5px;
}

.fc {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.fac {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.fachover {
    position: absolute;
    top: 0;
}
.fachover:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.fa {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.right {
    margin-left: auto;
}
.c-pointer {
    cursor: pointer;
}

.c-full-vw {
    width: 100vw;
}

.c-navbar {
    display: flex;
    padding: 15px 0;
    justify-content: space-between;
}
.nav-item:hover {
    color: var(--main-color);
}

.nav-sub {
    padding-top: 15px;
    position: absolute;
    background: #ffffff;
    text-align: center;
    display: none;
    box-shadow: 4px 4px 24px rgba(191, 201, 219, 0.5);
}

.nav-item:hover .nav-sub {
}

.nav-sub-wrap {
    padding: 10px 25px;
    border-left: 2px solid transparent;
}

.nav-sub-wrap:hover {
    color: var(--main-color);
    background: rgba(233, 236, 242, 1);
    border-left: 2px solid var(--main-color);
}

.head-tel {
    font-size: 18px;
    font-weight: 400;
    color: rgba(36, 38, 43, 1);
    height: 100%;
}

.foot-nav-head {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.foot-nav-item {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 400;
    color: rgba(197, 208, 230, 1);
}

.connect-us {
    text-align: center;
    height: 100%;
    width: 335px;
}

.tel-box {
    background-image: url(../images/tel-frame.svg);
    background-size: 100% 100%;
}

.foot-tel {
    font-size: 26px;
    font-weight: 400;
}

.foot-service-time {
    display: inline-block;
    margin: 10px 0;
    font-size: 14px;
    font-weight: 400;
}
.foot-location-title {
    margin-top: 15px;
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 1);
}
.foot-location {
    margin-top: 5px;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 1);
}

.foot-qrcode img {
    margin: 0 10px 5px 10px;
}

.certificate-query {
    padding: 15px 20px;
    flex: 0 0 473px;
    height: 586px;
    margin-right: 100px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 6px 8px 30px rgba(0, 0, 0, 0.2);
}

.about-us-brief {
    background-repeat: no-repeat;
    background-position: center 375px;
}

.more {
    width: 120px;
    height: 32px;
    border-radius: 4px;
    border: 2px solid var(--main-color-light);
    font-size: 14px;
    font-weight: 400;
    color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 0 auto;
}
.noMargin {
    margin: 0;
}

.c-sy_bk {
    display: flex;
    justify-content: center;
    padding: 50px 0 80px 0;
    background-image: url(../images/business-area.png);
    background-size: cover;
    width: 100%;
    text-align: center;
    overflow: hidden;
}

.c-sy_bk .c-n_r {
    padding: 0 15px;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
}

.c-sy_bk .c-fdwz {
    color: #fff;
    overflow: hidden;
    text-align: center;
    transition: all 0.6s;
    /* width: 334px; */
    height: 334px;
    position: relative;
}

.c-sy_bk .c-fdwz .business-name {
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 0;
    font-size: 18px;
    font-weight: 500;
    width: 100%;
    position: absolute;
    bottom: 0;
    transition: all 0.6s;
}

.c-sy_bk .c-fdwz:hover .business-name {
    bottom: -100px;
}
.c-sy_bk .c-fdwz:hover .business-name-cover {
    bottom: -100px;
    top: 0;
}

.business-name-cover {
    top: 100%;
    width: 100%;
    height: 100%;
    background: var(--main-color-deep-opacity);
    position: absolute;
    font-weight: 700;
    transition: all 0.6s;
}
.business-name-cover .cover-name {
    font-size: 28px;
    margin-top: 30px;
}
.business-name-cover .index-num {
    font-size: 50px;
    border-bottom: 4px solid #fff;
    padding-bottom: 10px;
}

.ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-wrap: break-word;
    word-break: break-all;
}

.limit {
    white-space: normal !important;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.l-1 {
    -webkit-line-clamp: 1;
}

.l-2 {
    -webkit-line-clamp: 2;
}

.l-3 {
    -webkit-line-clamp: 3;
}

.l-4 {
    -webkit-line-clamp: 4;
}
.l-5 {
    -webkit-line-clamp: 5;
}
.l-6 {
    -webkit-line-clamp: 6;
}

.l-7 {
    -webkit-line-clamp: 7;
}

.footer-honor {
    font-size: 28px;
    font-weight: 400;
    color: rgba(255, 255, 255, 1);
    font-family: "alimama";
}

.wow {
    visibility: hidden;
}

.c-scroll {
    overflow: hidden !important;
}

.c-scroll:hover {
    overflow: auto !important;
}

.c-scroll:hover > * {
    -webkit-line-clamp: unset;
}

.swal-pop-img {
    width: auto;
}