﻿body {
    padding-top: 90px;
}

@font-face {
    font-family: 'raleway';
    src: url("../font/raleway.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}





/***********通用基本类1************/
body, html {
    background-color: #fff !important;
}
/*格式化样式*/
:root {
    --theme-color: #d1292e;
    --blue: #2C5BB3;
    --background-color: #4d302a;
}

* {
    margin: 0;
    padding: 0;
}

address,
cite,
dfn,
em,
var,
i {
    font-style: normal;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
th {
    font-size: 100%;
    font-weight: normal;
}

input:focus {
    outline: none;
}

button,
input,
select,
textarea {
    font-size: 100%;
}

fieldset,
img {
    border: 0;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
    background: none
}

    a:hover {
        color: var(--theme-color);
    }

ul,
ol {
    list-style: none;
}

i,
strong,
em,
b {
    font-style: normal;
}

/*结构样式*/

.p10 {
    padding-left: 10px;
    padding-right: 10px;
}

.marginTop {
    margin-top: 3%;
}

@media (max-width: 768px) {
    .marginTop {
        margin-top: 5%;
    }
}

/***********通用基本类2************/

body {
    font-size: 14px;
    line-height: 1.5;
    font-family: 'Microsoft Yahei', 'simsun', 'arial', 'tahoma';
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
    color: #000;
}

.wrap {
    width: 100%;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
}

.main {
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.main2 {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.main1400 {
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

@media (max-width: 1600px) {

    .main, .main2 {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 768px) {

    .main, .main2 {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.m {
    display: none;
}

@media (max-width: 768px) {
    .pc {
        display: none !important;
    }

    .m {
        display: block;
    }

    .main2 {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* 单行文字超出隐藏 */

.ellipsis {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* 清理浮动 */

.fn-clear:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}

.fn-clear {
    zoom: 1;
    /* for IE6 IE7 */
}

.floatL {
    float: left;
}

.floatR {
    float: right;
}

.overflowH {
    overflow: hidden;
}

/* 响应式图片盒子 */

.imgBox {
    position: relative;
}

    .imgBox img {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
    }

        .imgBox img.full {
            width: 100%;
            height: 100%;
        }

        .imgBox img.auto {
            max-width: 100%;
            max-height: 100%;
        }

/* 图片放大 */

.hoverScale {
    overflow: hidden;
}

    .hoverScale img {
        -webkit-transition: .4s;
        transition: .4s;
        backface-visibility: hidden;
    }

    .hoverScale:hover img {
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
    }

.middleBox:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.middleLi {
    display: inline-block;
    vertical-align: middle;
}


/***********其他公共样式************/
@keyframes Right_tada__rnCA_ {
    0% {
        transform: scaleX(1)
    }

    10%,20% {
        transform: scale3d(.9,.9,.9) rotate(-3deg)
    }

    30%,50%,70%,90% {
        transform: scale3d(1.1,1.1,1.1) rotate(3deg)
    }

    40%,60%,80% {
        transform: scale3d(1.1,1.1,1.1) rotate(-3deg)
    }

    to {
        transform: scaleX(1)
    }
}


/*ao-顶部栏目*/
.ao-headerNav .next-btn {
    display: none;
}
.ao-headerNav .item1 > li {
    position: relative;
    height: 100%;
    text-align: center;
    font-size: 14px;
    float: left;
    margin: 0px 20px;
    padding: 0 1em;
}

    .ao-headerNav .item1 > li > a {
        position: relative;
        display: block;
        color: #34364b;
    }

.ao-headerNav .item2 {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 2;
    font-size: 14px;
    line-height: 3em;
    text-align: center;
    width: 210px;
    min-width: 100%;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    white-space: nowrap;
    box-sizing: border-box;
}
    .ao-headerNav .item2 > li {
        position: relative;
        padding: 0 17px;
    }
        .ao-headerNav .item2 > li > a {
            display: block;
            border-bottom: 1px solid #e0e0e0;
        }
    .ao-headerNav .item1 > li:hover .item2 {
    display: block;
}


.ao-headerNav .item2 > li .naxt-btn {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    height: 36px;
    width: 80%;
}

    .ao-headerNav .item2 > li .naxt-btn:after {
        content: '';
        display: block;
        width: 0;
        height: 0;
        border-top: 6px solid transparent;
        border-left: 7px solid #b3b3b3;
        border-bottom: 6px solid transparent;
        position: absolute;
        right: 13px;
        top: 50%;
        margin-top: -4px;
    }
    .ao-headerNav .item2 > li:hover .naxt-btn:after {

        border-left-color: var(--theme-color);
    }
.ao-headerNav .item3 {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    width: 160px;
    background: #fff;
    color: #666666;
    border: 1px solid #e0e0e0;
}
.ao-headerNav .item3 > li a{
    padding: 6px 20px;
    display: block;
    line-height: 24px;
}
.ao-headerNav .item2 > li:hover .item3 {
    display: block;
}
@media (max-width: 1600px) {
    .ao-headerNav .item1 > li {
            font-size: 14px;
            margin: 0px 15px;
        }
    }

    @media (max-width: 1200px) {
        .ao-headerNav {
            display: none;
        }
    }
    /*顶部栏目end*/
    /*ao-响应式顶部栏目+按钮*/

    .ao-navBtn .navbar-toggle {
    position: relative;
    padding: 9px 10px;
    background-color: transparent;
    background-image: none;
    cursor: pointer;
    outline: none;
    /*border: 1px solid #ddd;*/
    border-radius: 6px;
}

.ao-navBtn .navbar-box .sr-only {
    display: block;
    width: 100%;
    padding: 0;
    margin: -1px;
    font-size: 12px;
    line-height: 1.4;
    overflow: hidden;
    border: 0;
    color: #888;
    text-align: center;
    margin-top: 2px;
}

.ao-navBtn .navbar-toggle .icon-bar {
    display: block;
    width: 20px;
    height: 3px;
    border-radius: 1px;
    background-color: #000;
    transition: 0.5s;
}

    .ao-navBtn .navbar-toggle .icon-bar + .icon-bar {
        margin-top: 4px;
    }


    .ao-navBtn .navbar-toggle .icon-bar:first-child {
        transform-origin: 10px 11px;
    }

    .ao-navBtn .navbar-toggle .icon-bar:last-child {
        transform-origin: 8px -10px;
    }

    .ao-navBtn .navbar-toggle.on .icon-bar:first-child {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
    }

.ao-navBtn .navbar-toggle.on .icon-bar:nth-child(2) {
    display: none;

}
    .ao-navBtn .navbar-toggle.on .icon-bar:last-child {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
    }
/*响应式顶部栏目+按钮end*/

/* header头部 */

@keyframes slideDown {
    from {
        transform: translateY(-100px);
        opacity: 0.8;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header.on {
    animation: slideDown 0.8s forwards;
}
.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 222;
    transition: 0.4s;
}


    .header .header_tel .icon a {
        transition: 0.6s;
    }

        .header .header_tel .icon a:hover {
            transform: translateY(-10px);
        }

        .header .header_tel .icon a .mi.m2 {
            display: none;
        }

    .header .header_main .header_tel .ttt img {
        height: 1.5em;
    }
    /* .header .header_main .header_tel .ttt img {
        animation-name: Right_tada__rnCA_;
        animation-duration: 1s;
        animation-timing-function: ease-in-out;
        animation-iteration-count: infinite;
        height: 1.5em;
    }*/

    .header .header_main {
        height: 90px;
        transition: 0.6s;
        padding-left: 10%;
        padding-right: 4%;
        /*background: hsla(0, 0%, 100%, .3);
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .04);*/
        background-color: #fff;
    }

@media (max-width: 1670px) {
    .header .header_main {
        width: 100%;
        max-width: 1600px;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
        padding: 0;
    }
}

@media (max-width: 1600px) {
    .header .header_main {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (min-width: 1200px) {
}


.top_line {
    background: #686868;
    height: 36px;
    line-height: 36px;
    font-size: 12px;
    overflow: hidden;
}

    .top_line,
    .top_line a {
        color: #fff;
    }

        .top_line .welcome {
            float: left;
        }

        .top_line .topBtn {
            float: right;
        }

.header .logo {
    float: left;
    font-size: 0;
    height: 100%;
    display: flex;
    align-items: center;
}

.header .logo a{
    height: 100%;
    display: flex;
    align-items: center;
}

    .header .logo img {
        max-height: 90%;
    }

    .header .logo .text {
        display: inline-block;
        vertical-align: middle;
        padding: 5px 0 5px 30px;
        margin-left: 30px;
        line-height: 1;
        border-left: 1px solid #e5e5e5;
    }



        .header .logo .text i {
            line-height: 1;
            font-size: 18px;
            font-weight: bold;
            margin-right: 1em;
            color: var(--theme-color);
        }


.header_main .header_tel {
    float: right;
    line-height: 1.2;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 20px;
}

    .header_main .header_tel .ttt {
        margin-right: 12px;
        font-size: 16px;
        display: flex;
        align-items: center;
    }

        .header_main .header_tel .ttt img {
            margin-right: 10px;
        }

            .header_main .header_tel .ttt img.t2 {
                display: none;
            }

.header_tel .icon {
    display: flex;
    justify-content: end;
    align-items: center;
    height: 100%;
}

    .header_tel .icon a {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-left: 13px;
        position: relative;
    }

        .header_tel .icon a .mi {
            width: 28px;
            border-radius: 50%;
            padding: 8px;
            background-color: rgba(255,255,255,0.3);
        }

        .header_tel .icon a span {
            margin-top: 15px;
        }

        .header_tel .icon a:hover .mi {
            background-color: #2b884c !important;
            display: block !important;
        }

            .header_tel .icon a:hover .mi.hei {
                background-color: #000 !important;
            }

            .header_tel .icon a:hover .mi.m2 {
                display: none !important;
            }

        .header_tel .icon a .i {
            position: absolute;
            width: 100px;
            height: 100px;
            top: 100%;
            left: 50%;
            margin-left: -50px;
            margin-top: 10px;
            display: none;
            transition: 0.4s;
            border: 1px solid #ccc;
        }

            .header_tel .icon a .i img {
                width: 100%;
                height: 100%;
            }

        .header_tel .icon a:hover .i {
            display: block;
        }

.header_main .header_tel .phoneIco,
.header_main .header_tel .telInfo {
    display: table-cell;
    vertical-align: middle;
    text-align: left;
}

    .header_main .header_tel .phoneIco i {
        display: inline-block;
        width: 4em;
        height: 4em;
        background: url("../Images/phoneIco.png") no-repeat center center / contain;
        margin-right: 20px;
    }

    .header_main .header_tel .telInfo .telText {
        font-size: 20px;
        color: #fff;
        margin-bottom: 5px;
    }

    .header_main .header_tel .telInfo .telNum {
        font-size: 22px;
        color: #00479d;
    }

        .header_main .header_tel .telInfo .telNum a {
            color: #fff;
            font-size: 36px;
        }

.header .h_b.icoBtn {
    display: none;
}

    .header .icoBtn .navbar-box {
        display: inline-block;
        vertical-align: middle;
    }


.header_btn {
    float: right;
    display: flex;
    height: 100%;
    
}
    .header_btn .h_b {
        min-width: 5vw;
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        padding: 0 10px;
        border-left: 1px solid #efefef;
    }
        .header_btn .h_b.m {
            display: none;
        }
        .header_btn .h_b .h_d_show {
            display: none;
            position: absolute;
            top: 100%;
            right: 0;
            background-color: #ffffff;
            -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1);
            -moz-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1);
        }
        .header_btn .h_b:hover .h_d_show {
            display: block;
        }
        .header_btn .h_b.phone {
            font-weight: bold;
        }
        .header_btn .h_b.phone img {
            width: 2em;
            height: 2em;
        }
.h_d_phone {
    white-space: nowrap;
    padding: 10px 20px;
}
.h_d_search {
    display: flex;
    width: 260px;
    height: 40px;
}
.h_d_search_text {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
}
.h_d_search_btn {
    width: 60px;
    height: 40px;
    color: #fff;
    font-family: "Microsoft YaHei";
    cursor: pointer;
    background-color: var(--theme-color);
    border: none;
}

.h_nav_logo img{
   max-width: 90%;
   margin: 10px auto 30px;
   display: block;
}

@media (min-width: 768px) {
    .header_btn .h_b {
        position: relative;
    }
}
@media (max-width: 1400px) {
    .header .h_b.icoBtn {
        display: flex;
        align-items: center;
    }
}
    @media (max-width: 1200px) {
        .header {
            position: fixed;
            top: 0;
            left: 0;
            z-index: 44;
        }

        body {
            padding-top: 80px;
        }

        .header .header_main {
            height: 80px;
        }

       
    }

    @media (max-width: 992px) {
        body {
            padding-top: 80px;
        }

        .header .header_main {
            height: 80px;
        }

        .header .logo {
            max-width: 44%;
        }

            .header .logo img {
                max-height: 60px;
                max-width: 100%;
            }

            .header .logo .text i {
                font-size: 12px;
            }

            .header .logo .text {
                padding: 5px 0 5px 10px;
                margin-left: 10px;
            }

        .header_main .header_tel .ttt {
            font-size: 14px;
            padding-left: 0;
        }
    }

    @media (max-width: 900px) {
    }

    @media (max-width: 768px) {
        .header_btn .h_b {
            
            border-left: none;
        }
        .header_btn .h_b.m {
            display: flex;
        }
        .header_btn .h_b a {
            color: #999999;
        }
        body {
            padding-top: 65px;
        }

        .header .logo .text i {
            display: block;
        }

            .header .logo .text i:first-child {
                margin-bottom: 6px;
            }

        .header .header_main {
            height: 65px;
        }

        .top_line {
            height: 24px;
            line-height: 24px;
        }

            .top_line .welcome {
                float: none;
                text-align: center;
                font-size: 12px;
            }

            .top_line .topBtn {
                display: none;
            }

        .header_btn .h_b.phone {
            font-size: 13px;
        }

        .header_btn {
            margin-right: -10px;
        }

            .header_btn .h_b:first-child {
                border-left: none;
            }

            .header_btn .h_b:hover .h_d_show {
                width: 100%;
            }

        .h_d_search {
            width: 100%;
        }
    }
    /* nav */

    .header_nav {
        height: 90px;
        line-height: 90px;
        float: right;
        margin-right: 4%;
    }

        .header_nav li {
            height: 100%;
            font-size: 14px;
            position: relative;
        }


        .header_nav .item1 > li:after {
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            content: "";
            position: absolute;
            left: 50%;
            bottom: 0;
            width: 0;
            height: 3px;
            background: var(--theme-color);
            -webkit-transform: translate(-50%, 0);
            -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
            -webkit-transition: all 0.2s ease;
            -o-transition: all 0.2s ease;
            transition: all 0.2s ease;
        }

        .header_nav .item1 > li:hover:after {
            width: 95%;
        }

        .header_nav .item1 > .on:after {
            width: 95%;
        }


    .header.on .header_tel .ttt a {
        color: #000 !important;
    }

    .header .header_tel .ttt a:hover {
        color: var(--theme-color) !important;
    }

    @media (max-width: 1400px) {
        .header_nav {
            display: none;
            margin-left: 15px;
            margin-right: 15px;
        }

        .header_tel .icon {
            display: none;
        }
    }


    /* nav end*/

    /* 移动端侧导航 */

    .ao-navMask {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: -100%;
        background-color: rgba(0, 0, 0, .5);
        z-index: 2225;
        -webkit-transition: all 0.5s;
        transition: all 0.5s;
    }

    .ao-slideNav {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        visibility: visible;
        position: fixed;
        top: 0;
        right: -320px;
        width: 320px;
        height: 100%;
        background-color: #fff;
        -webkit-transition: all 0.5s;
        transition: all 0.5s;
        z-index: 2226;
        box-sizing: border-box;
    }

        .ao-slideNav .ao-padding {
            padding: 20px 30px;
        }


        .ao-slideNav .btn {
            background: url("../Images/slide-close.png") no-repeat center center / cover;
            width: 30px;
            height: 30px;
            margin-left: auto;
            margin-right: 15px;
            margin-top: 15px;
            cursor: pointer;
        }

    .as-logo img {
        width: 100%;
        margin-bottom: 10px;
    }

    .ao-slideNav li {
        width: 100%;
        border-left: 0;
        line-height: 1.8;
        /*border-bottom: 1px solid #dee2e6;*/
    }

        .ao-slideNav li a {
            display: block;
            padding: 6px 32px;
        }

    .ao-slideNav .item1 > li {
        font-size: 21px;
        color: #8B8784;
        text-align: center;
    }

    .ao-slideNav .item2 {
        display: none;
    }



    @media (min-width: 768px) {
        .ao-navMask.on {
            left: 0;
        }

        .ao-slideNav.on {
            right: 0;
        }
    }

    @media (max-width: 992px) {
        .ao-slideNav {
            right: -30%;
            width: 30%;
        }

        .ao-navMask {
            width: 70%;
        }
    }

    @media (max-width: 768px) {
        .ao-slideNav .ao-padding {
            padding: 0;
        }

        .ao-slideNav {
            top: 65px;
            right: 0;
            width: 100%;
            height: 0;
            overflow: hidden;
        }

        .ao-navMask {
            width: 50%;
            display: none;
        }

            .ao-navMask.on {
                left: 0;
            }

        .ao-slideNav.on {
            height: calc(100vh - 65px);
        }

        .ao-slideNav .item1 > li {
            font-size: 16px;
            border-bottom: 1px solid #898989;
            text-align: left;
        }

        .ao-slideNav li a {
            padding: 8px 10px;
            color: #333;
        }
    }

    /* footer脚部 */

    .footer {
        border-top: 1px solid var(--theme-color);
        padding: 3% 0;
        margin-top: 4%;
        background: #fff;
        color: #85868f;
    }

        .footer a {
            color: #85868f;
        }

        .footer .info {
            float: right;
        }
        .footer .info .footer-logo {
            max-width: 290px;
        }

.footer .nav.code .ccc {
    float: left;
    width: 260px;
    margin-right: 10px;
    text-align: center;
}

            .footer .nav.code .ccc img {
                width: 100%;
                height: 100%;
            }

            .footer .nav.code .ccc span {
                width: 100%;
                height: 100%;
            }

        .footer .nav .item1 > li {
            position: relative;
            font-size: 15px;
            float: left;
            margin-right: 45px;
        }

        .footer .nav .item3 {
            display: none;
        }

        .footer .nav.code .item1 > li:last-child {
            margin-right: 0 !important;
        }

        .footer .nav .item2 {
            padding-top: 15px;
        }

            .footer .nav .item2.column {
                padding-top: 15px;
                column-count: 2;
            }

            .footer .nav .item2 li {
                margin-bottom: 1em;
                font-size: 13px;
                text-align: left;
            }

                .footer .nav .item2 li a {
                    color: #abacb7;
                }

                    .footer .nav .item2 li a:hover {
                        color: var(--theme-color);
                    }

        .footer .info {
            text-align: right;
        }

            .footer .info .hotTel {
                font-size: 16px;
                color: #f08400;
            }

            .footer .info .hotNum {
                font-size: 42px;
                margin-bottom: 0.5em;
            }

                .footer .info .hotNum a {
                }

            .footer .info .logo {
                display: none;
            }

            .footer .info .icon {
                display: flex;
                justify-content: end;
                margin-top: 40px;
                margin-right: 15px;
            }

                .footer .info .icon img {
                    /*height: 45px;*/
                }

                .footer .info .icon a {
                    margin-left: 25px;
                    position: relative;
                    text-align: center;
                    transition: 0.6s;
                    z-index: 1;
                }

                    .footer .info .icon a .mi {
                        width: 24px;
                        border-radius: 50%;
                        background-color: rgba(255, 255, 255, 0.5);
                        padding: 10px;
                    }

                    .footer .info .icon a span {
                        margin-top: 15px;
                        display: block;
                    }

                    .footer .info .icon a:hover .mi {
                        background-color: #2b884c;
                    }

                        .footer .info .icon a:hover .mi.hei {
                            background-color: #000;
                        }

                    .footer .info .icon a .i {
                        position: absolute;
                        width: 100px;
                        height: 100px;
                        bottom: 100%;
                        left: 50%;
                        margin-left: -50px;
                        margin-bottom: 4px;
                        display: none;
                        transition: 0.4s;
                    }

                        .footer .info .icon a .i img {
                            width: 100%;
                            height: 100%;
                        }

                    .footer .info .icon a:hover {
                        transform: translateY(-10px);
                    }

                        .footer .info .icon a:hover .i {
                            display: block;
                        }

        .footer .companyInfo {
            margin-top: 10px;
            font-size: 14px;
        }


    @media (min-width: 768px) {
        .footer .info {
            margin-top: -140px;
        }
    }

    @media (max-width: 1280px) {
        .footer .nav .item1 > li {
            font-size: 16px;
            margin-right: 30px;
        }

        .footer .info .hotNum {
            font-size: 30px;
        }
    }

    @media (max-width: 1060px) {
        .footer .nav .item1 > li {
            font-size: 14px;
            margin-right: 15px;
        }

        .footer .nav .item2 li {
            font-size: 12px;
        }

        .footer .info {
            text-align: center;
            float: none;
        }

            .footer .info .hotNum {
                font-size: 22px;
            }

            .footer .info img {
                display: block;
                margin: 10px auto 0;
                max-width: 60%;
            }

        .footer .nav.code .ccc {
            width: 70px;
        }
    }

    @media (max-width: 768px) {
        .footer .info .footer-logo{
            max-width: 200px;
        }
        .footer .nav {
            float: none;
        }

        .footer .fl {
            float: none;
        }

        .footer .companyInfo span {
            display: block;
            text-align: center;
            font-size: 12px;
            margin-right: 0;
        }

        .footer .info .il {
            float: left;
            text-align: left;
        }

        .footer .info .hotTel {
            font-size: 14px;
            margin-top: 10px;
        }

        .footer .info .hotNum {
            font-size: 20px;
        }

        .footer .info .icon {
            margin-top: 10px;
            float: right;
        }

            .footer .info .icon img {
                /*height: 30px;*/
            }

            .footer .info .icon a {
                margin-left: 10px;
            }

                .footer .info .icon a .mi {
                    width: 18px;
                }

                .footer .info .icon a span {
                    margin-top: 4px;
                }

        .footer {
            padding-top: 10px;
        }



            .footer .nav .item1 > li {
                width: 100%;
                margin-right: 0;
                float: none;
            }

                .footer .nav .item1 > li > a {
                    display: block;
                    height: 40px;
                    line-height: 40px;
                    font-size: 15px;
                    border-bottom: 1px solid #ddd;
                    display: flex;
                    justify-content: space-between;
                }

                    .footer .nav .item1 > li > a:after {
                        content: "+";
                        font-size: 1.5em;
                        color: #000;
                        font-weight: lighter;
                    }
                    .footer .nav .item1 > li > a.on:after {
                        content: "-";
                        font-size: 2em;
                    }

            .footer .nav .item2 {
                display: none;
            }
    }

    /*swiper*/

    .swiper-button-prev,
    .swiper-button-next {
        position: absolute;
        z-index: 2;
        left: 1%;
        top: 50%;
        margin-top: -20px;
        display: block;
        width: 32px;
        height: 40px;
        background: url(../Images/slider-arrow.png) -110px 5px no-repeat;
        filter: alpha(opacity=50);
        opacity: 0.5;
    }

    .swiper-button-next {
        left: auto;
        right: 1%;
        background-position: 8px 5px;
    }

        .swiper-button-prev:hover,
        .swiper-button-next:hover {
            filter: alpha(opacity=100);
            opacity: 1;
        }

    /* lignhtBox */

    #wrap {
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate3d(-50%, -50%, 0);
        -ms-transform: translate3d(-50%, -50%, 0);
        transform: translate3d(-50%, -50%, 0);
    }

    #mask {
        width: 100%;
        height: 100%;
        position: fixed;
        left: 0;
        top: 0;
        z-index: 1000;
        background: #292929;
        opacity: 0.5;
        filter: alpha(opacity=50);
        display: none;
    }

    .photo_border {
        width: 300px;
        height: 300px;
        position: fixed;
        left: 50%;
        margin-left: -150px;
        z-index: 1001;
        background: url(../Images/lightbox/loading.gif) no-repeat center center #fff;
        display: none;
        z-index: 1000;
        zoom: 1;
    }

    .photo {
        position: relative;
        border: 5px solid #fff;
        border-radius: 3px;
        overflow: hidden;
    }

    .photo_btn {
        display: block;
        position: absolute;
        height: 100%;
        width: 40%;
        top: 0;
        zoom: 1;
        background: url(../Images/lightbox/ie-bug.gif);
        cursor: pointer;
    }

    .photo_pre_btn {
        left: 0;
    }

    .photo_pre_btn_show {
        background: url(../Images/lightbox/prev.png) no-repeat;
        background-position: 10% center;
    }

    .photo_next_btn {
        right: 0;
    }

    .photo_next_btn_show {
        background: url(../Images/lightbox/next.png) no-repeat;
        background-position: 90% center;
    }

    .caption {
        position: relative;
        top: -65px;
        width: auto;
        height: 60px;
        margin: 0 5px;
        display: block;
        background: rgba(126, 126, 126, 0.5);
    }

    .photo_border .index {
        padding-left: 10px;
        color: #000;
        height: 30px;
        line-height: 30px;
    }

    .photo_border .title {
        padding-left: 10px;
        height: 30px;
        line-height: 30px;
        color: #fff;
    }

    .caption_close_btn {
        width: 27px;
        height: 27px;
        position: absolute;
        right: 10px;
        top: 13px;
        background: url(../Images/lightbox/close.png) no-repeat;
        cursor: pointer;
    }

    /* lignhtBox end*/

    .goTop {
        position: fixed;
        bottom: 10%;
        right: 0;
        width: 3.6em;
        height: 3.6em;
        border-radius: 50%;
        background: #c9c9c9 url('../Images/go-top.png') no-repeat center center / 60% 60%;
        z-index: 34;
        opacity: 0.8;
    }

        .goTop img {
            width: 100%;
            height: 100%;
        }

        .goTop:hover {
            background-color: var(--theme-color);
            opacity: 1;
        }

    /*客户 end*/

    .friendsLinks_content {
        color: #fff;
        background-color: #f1f4f9;
        padding: 17px 0;
        color: #6c6e7e;
        font-size: 13px;
    }

        .friendsLinks_content .main {
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
        }


        .friendsLinks_content a {
            color: #6c6e7e;
            margin-right: 1.5em;
        }

    @media (max-width: 768px) {
        .friendsLinks_content {
            padding: 5px;
        }

            .friendsLinks_content span,
            .friendsLinks_content a {
                font-size: 13px;
            }
    }

    .fApp {
        text-align: center;
        margin-top: 30px;
    }

        .fApp ul {
            display: flex;
            justify-content: center;
        }

        .fApp .fat {
            font-size: 15px;
            color: #f1cba3;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .fApp li {
            width: 230px;
            margin: 0 15px;
        }

            .fApp li img {
                width: 100%;
            }



    .swiper-button-prev,
    .swiper-button-next {
        line-height: 40px;
        width: auto;
        color: #ccc;
        font-weight: bold;
        padding: 0 10px;
        background: none;
    }

        .swiper-button-prev:before,
        .swiper-button-prev:after,
        .swiper-button-next:before,
        .swiper-button-next:after {
            content: '';
            position: absolute;
            width: 2px;
            height: 50%;
            background: #858585;
            transition: all 0.5s;
        }

        .swiper-button-prev:before,
        .swiper-button-prev:after {
            left: 0;
        }

        .swiper-button-next:before,
        .swiper-button-next:after {
            right: 0;
        }

        .swiper-button-prev:before,
        .swiper-button-next:before {
            top: 0;
        }

        .swiper-button-prev:after,
        .swiper-button-next:after {
            bottom: 0;
        }

        .swiper-button-next:before {
            -webkit-transform: rotate(-45deg);
            top: 4px;
        }

        .swiper-button-next:after {
            -webkit-transform: rotate(45deg);
            bottom: 4px;
        }

        .swiper-button-prev:before {
            -webkit-transform: rotate(45deg);
            top: 4px;
        }

        .swiper-button-prev:after {
            -webkit-transform: rotate(-45deg);
            bottom: 4px;
        }

@media (max-width: 768px) {
        /*  .swiper-button-prev,
    .swiper-button-next {
        display: none;
    }*/
    .swiper-button-next.m1400 {
        margin-right: 30px;
    }

    .swiper-button-prev.m1400 {
        margin-left: 30px;
    }

    .swiper-button-next {
        margin-right: 12px;
    }

    .swiper-button-prev {
        margin-left: 12px;
    }
}



.footerForm {
    background-color: var(--theme-color);
    color: #fff;
    padding: 4% 0;
    display: none;
}

        .footerForm .cont {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footerForm .p1 {
            font-size: 47px;
            font-weight: bold;
        }

        .footerForm .p2 {
            font-size: 23px;
            margin-top: 1em;
        }

        .footerForm .ffb {
            padding: 10px;
            background-color: #fff;
            border-radius: 10px;
        }

        .footerForm .ffb_t {
            width: 400px;
            height: 60px;
            font-size: 20px;
        }

        .footerForm .ffb_s {
            width: 140px;
            height: 60px;
            background-color: var(--theme-color);
            border-radius: 10px;
            color: #fff;
            font-size: 20px;
        }

        .footerForm input {
            border: none;
        }

    @media (max-width: 768px) {
        .footerForm .cont {
            flex-direction: column;
            align-items: flex-start;
        }

        .footerForm .p1 {
            font-size: 20px;
        }

        .footerForm .p2 {
            font-size: 16px;
            margin-top: 10px;
        }

        .footer_form {
            width: 100%;
            margin-top: 20px;
        }

        .footerForm .ffb {
            display: flex;
            padding: 5px;
            border-radius: 5px;
        }

        .footerForm .ffb_t {
            flex: 1;
            width: auto;
            height: 30px;
            font-size: 14px;
        }

        .footerForm .ffb_s {
            width: 60px;
            height: 30px;
            font-size: 15px;
        }
    }


    .cpys_list {
        overflow: hidden;
    }

    .cpys .cont {
        position: relative;
    }

        .cpys .cont img {
            width: 100%;
            display: block;
        }

        .cpys .cont .cpys_list {
            width: 100%;
            box-sizing: border-box;
            display: flex;
            align-items: center;
        }

    .cpys_list ul {
    }

    .cpys_list li {
        width: 50%;
        float: left;
        padding: 10px;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 30px 0;
    }

        .cpys_list li .cpys_t {
            font-size: 25px;
            font-weight: bold;
            margin-bottom: 20px;
        }

            .cpys_list li .cpys_t .n {
                display: inline-block;
                width: 0.4em;
                height: 0.4em;
                margin-right: 0.4em;
                background-color: var(--theme-color);
            }

        .cpys_list li p {
            font-size: 15px;
            line-height: 1.8em;
            color: #666;
        }

    .cpys_n_b {
        width: 80%;
    }

    @media (max-width: 768px) {
        .cpys .main {
            padding: 0;
        }

        .cpys .cont .cpys_list {
            position: initial;
            padding: 0;
        }

        .cpys_list li {
            width: 100%;
            padding: 15px 20px;
            margin: 0;
        }

        .cpys_n_b {
            width: 100%;
        }

        .cpys_list li .cpys_t {
            font-size: 20px;
        }

        .cpys_list li p {
            font-size: 13px;
        }
    }




.na-title {
    color: #000;
    text-align: center;
    margin-top: 96px;
    margin-bottom: 54px;
}

    .na-title a:hover {
        text-decoration: underline;
        text-underline-offset: 10px;
    }

    .na-title .p1 {
        font-size: 36px;
        font-weight: bold;
        display: flex;
        justify-content: center;
        align-items: center;
        line-height: 1.5em;
    }
        .na-title .p1 a {
            color: var(--theme-color);
        }
        .na-title .p1 .b {
            font-size: 1.6em;
            color: var(--theme-color);
            margin-right: 0.1em;
        }

    .na-title .p2 {
        font-size: 48px;
        font-weight: 700;
        color: #ccc;
        position: relative;
        line-height: 1;
        margin-top: 1.0em;
        text-transform: uppercase;
        margin-bottom: 0.2em;
    }


        .na-title .p2::before {
            content: "— ";
        }
        .na-title .p2::after {
            content: " —";
        }

@media (max-width: 768px) {
    .na-title {
        margin-top: 40px;
        margin-bottom: 20px;
    }

        .na-title .p1 {
            font-size: 22px;
        }

        .na-title .p2 {
            font-size: 6.4vw;
        }
}


    .swiper-pagination-bullet-active {
        background-color: var(--theme-color);
    }

    .swiper-wrapper {
        -webkit-transition-timing-function: linear; /*ä¹‹å‰æ˜¯ease-out*/
        -moz-transition-timing-function: linear;
        -ms-transition-timing-function: linear;
        -o-transition-timing-function: linear;
        transition-timing-function: linear;
    }



    .showVideoBox {
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        background-color: rgba(0,0,0,.4);
        z-index: 666666;
        transform: translateY(100%);
        transition: 0.5s;
    }

        .showVideoBox.action {
            transform: translateY(0);
        }

    .svbCenter {
        position: absolute;
        width: 800px;
        height: 450px;
        max-width: 90%;
        max-height: 50.625vw;
        top: 50%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
    }

        .svbCenter video {
            background: #000;
            width: 100%;
            height: 100%;
        }

    .svbClose {
        position: absolute;
        width: 30px;
        height: 30px;
        background-color: var(--theme-color);
        top: 0;
        right: 0;
        transform: translateX(50%) translateY(-50%);
        border-radius: 40px;
        color: #fff;
        font-size: 20px;
        text-align: center;
        line-height: 29px;
        cursor: pointer;
    }




.hNavBtn {
    font-size: 16px;
    font-weight: bold;
}
  
    .hNavBtn  a {
        display: flex;
        align-items: center;
    }
        .hNavBtn img{
        height: 20px;
        margin-right: 5px;
    }

.hNavBtn-m{
    margin-top: 20px;
}
.hNavBtn-m li {
    float: left;
    width: 47%;
    margin-left: 2%;
    border: 1px solid #ddd;
    font-weight: bold;
}

        .hNavBtn-m li a {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 6px 4px;
        }

        .hNavBtn-m li img {
            height: 20px;
            margin-right: 2px;
        }
@media (max-width: 1400px) {
    .hNavBtn{
        display: none;
    }
}