@charset "UTF-8";
/* 预加载 */
.fd::after {
    content: " ";
    display: block;
    clear: both;
}

.fd {
    zoom: 1;
}

.ssk {
    display: none;
    position: absolute;
    right: 40px;
    top: 40%;
    transform: translate(0%,-50%);
}

.wb2 {
    display: none;
    position: absolute;
    right: 0;
}

.nav-menu .ss {
    float: none;
    margin: 0 auto;
}

#preloader {
    position: fixed;
    width: 96px;
    height: 96px;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.9);
    -webkit-box-shadow: 0px 24px 64px rgba(0, 0, 0, 0.24);
    box-shadow: 0px 24px 64px rgba(0, 0, 0, 0.24);
    border-radius: 16px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .2s ease-out, visibility 0s linear .2s;
    -o-transition: opacity .2s ease-out, visibility 0s linear .2s;
    transition: opacity .2s ease-out, visibility 0s linear .2s;
    z-index: 1002;
}

    #preloader.fullscreen {
        padding: 0;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        background-color: #fff;
        border-radius: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    #preloader.show {
        -webkit-transition: opacity .4s ease-out, visibility 0s linear 0s;
        -o-transition: opacity .4s ease-out, visibility 0s linear 0s;
        transition: opacity .4s ease-out, visibility 0s linear 0s;
        visibility: visible;
        opacity: 1;
    }

    #preloader .circular {
        -webkit-animation: loader-rotate 2s linear infinite;
        animation: loader-rotate 2s linear infinite;
        position: absolute;
        left: 50%;
        top: 50%;
        margin-top: -24px;
        margin-left: -24px;
        display: block;
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    #preloader .path {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
        -webkit-animation: loader-dash 1.5s ease-in-out infinite;
        animation: loader-dash 1.5s ease-in-out infinite;
        stroke-linecap: round;
    }

@-webkit-keyframes loader-rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes loader-rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes loader-dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
    }

    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -136px;
    }
}

@keyframes loader-dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
    }

    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -136px;
    }
}


.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

@charset "UTF-8";

.container, .index-container {
    padding-right: 0px;
    padding-left: 0px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .container {
        /* width: 750px; */
    }
}

@media (min-width: 992px) {
    .container, .index-container {
        /* width: 970px; */
    }
}

@media (min-width: 1260px) {
    .container {
        width: 100%;
    }

    .index-container {
        width: 1200px;
    }
}

@media (min-width: 1460px) {
    .container, .index-container {
        width: 1430px;
    }
}

@media (min-width: 1520px) {
    .index-container {
        width: 1490px;
    }
}

@media (min-width: 1680px) {
    .container {
        width: 1600px;
    }

    .index-container {
        width: 1800px;
        position: relative;
    }
}

.header {
    z-index: 1000;
    position: fixed;
    top: -135px;
    height: 135px;
    width: 100%;
    border-bottom: solid 3px rgb(224,100,29);
    background: #fff;
    transition: all 0.5s;
}

.header2 {
    top: 0;
}
/* .header.white{background: rgba(0,0,0,0.8);border-color: rgba(0,0,0,0.1);}
.header:hover{background: rgba(0,0,0,0.8);border-color: rgba(0,0,0,0.1);} */


/*===============下拉==============*/
.header .logo {
    padding: 14.5px 0;
    float: left;
}

.navbar {
    float: left;
    margin-left: 480px;
    padding-top: 40px;
}

    .navbar * {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

.category-item {
    float: left;
    padding: 0 25px;
}

.category-item-single {
    position: relative;
}

.category-a {
    padding: 0 0;
    display: block;
    font-size: 18px;
    line-height: 95px;
    color: #333;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    position: relative;
}

    .category-a.on, .category-a:hover {
        color: rgb(224,100,92);
    }

.logowz {
    width: 216px;
    padding: 35px 0;
    font-size: 24px;
    color: #333;
    position: absolute;
    left: 280px;
}


.category-a::after {
    content: '';
    width: 0;
    height: 3px;
    background: rgb(224,100,92);
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
/* .category-item.active .category-a::after, */
.category-item:hover .category-a::after {
    width: 10000%;
}

.category-item.active .category-a, .category-item:hover .category-a {
    color: rgb(224,100,92);
}

.dropdown-menu.single {
    width: 710px;
    position: absolute;
    top: 100%;
    left: 0;
    -webkit-transform: translate(-40%,0);
    -ms-transform: translate(-40%,0);
    transform: translate(-40%,0);
    z-index: 1100;
    background: rgba(255,255,255,1);
    margin-top: 0;
    max-height: 0px;
    opacity: 0;
    overflow: hidden;
    -webkit-transition: max-height .8s;
    -o-transition: max-height .8s;
    transition: max-height .8s;
    border: none;
    color: #303233;
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
    height: auto;
    display: block;
}

    .dropdown-menu.single ul {
        margin: 30px 0;
        width: 50%;
        float: left;
        border-right: 1px solid rgb(202,202,202);
        position: relative;
    }

.xl_rig {
    width: 50%;
    height: 100%;
    float: right;
    padding: 30px 35px;
}

    .xl_rig .p1 {
        font-size: 24px;
        color: #333;
        margin-bottom: 14px;
    }

    .xl_rig .p2 {
        font-size: 14px;
        color: #666;
        line-height: 22px;
    }

.more-btn {
    float: left;
    width: 40px;
    height: 40px;
    background: transparent;
    transition: all 0.4s;
    position: relative;
    margin-top: 20px;
    overflow: hidden;
}

    .more-btn span {
        display: none;
        font-size: 14px;
        color: #ff6200;
        line-height: 40px;
    }

    .more-btn i {
        display: inline-block;
        width: 31px;
        height: 31px;
        background: url(../images/img2.png) no-repeat center;
        background-size: cover;
        position: absolute;
        left: 5px;
        top: 50%;
        margin-top: -16px;
    }

    .more-btn:hover {
        width: 168px;
        border-radius: 40px;
        background: #fff;
        text-align: center;
        box-shadow: 1px 1px 13px rgba(51,51,51,0.08);
    }

        .more-btn:hover > span {
            display: block;
        }

.header .wb {
    float: right;
    margin-top: 70px;
}

    .header .wb img {
        float: right;
    }

.header .yy {
    width: 320px;
    height: 44px;
    background: #fff;
    position: absolute;
    top: 0;
    right: 105px;
    /* box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.24) */
}

    .header .yy span {
        color: #e0641d;
        font-size: 20px;
        margin-right: 38px;
        line-height: 44px;
        margin-left: 20px;
        cursor: pointer;
    }

    .header .yy a {
        font-size: 24px;
        color: #333;
        /* line-height: 44px; */
    }

    .header .yy .yc {
        color: #e0641d;
        font-size: 20px;
        position: absolute;
        left: 22px;
        top: 40px;
        display: none;
        /* opacity: 0; */
        cursor: pointer;
    }

.dropdown-menu.single li {
    display: block;
    width: 50%;
    float: left;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

    .dropdown-menu.single li .tp {
        width: 348px;
        height: 227px;
        position: absolute;
        left: 100%;
        top: 0;
        display: none;
    }

        .dropdown-menu.single li .tp a {
            display: block;
            width: 100%;
            height: 100%;
            position: relative;
        }

            .dropdown-menu.single li .tp a img {
                position: absolute;
                top: 45%;
                left: 50%;
                transform: translate(-50%,-50%);
            }

.dropdown-menu.single .kj a {
    color: #e0641d;
}

.dropdown-menu.single .kj .tp {
    display: block;
}

.dropdown-menu.single li:last-child {
    border-bottom: 0;
}

.dropdown-menu.single li > a {
    /* padding: 0 66px;  */
    padding-left: 40px;
    display: block;
    font-size: 16px;
    color: #666;
    line-height: 40px;
    text-align: left;
    white-space: nowrap;
    width: 100%;
    height: auto;
    background: 0 0;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.dropdown-menu.single li:hover a {
    color: #e0641d;
}

.category-item:hover .dropdown-menu.single {
    max-height: 450px;
    opacity: 1;
}

.nav-language {
    width: 118px;
    height: 34px;
    border-radius: 17px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    border: 1px solid rgba(119,119,119,0.6);
    float: right;
    margin-top: 34px;
    padding: 0 22px;
}

    .nav-language span {
        display: block;
        position: relative;
    }

.icon-down {
    color: #333;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.nav-language a {
    font-size: 14px;
    color: #333;
    display: inline-block;
    line-height: 32px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.lan-box {
    display: none;
}

    .lan-box a {
        display: block;
        border-bottom: 1px solid #fff;
    }

.nav-language span:hover a, .nav-language span:hover .icon-down {
    color: rgb(224,100,92);
}

.lan-box a:hover {
    color: rgb(224,100,92);
}

/*app-头部*/
.header-app {
    background: #fff;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 500;
    -webkit-transition: background .44s .2s cubic-bezier(0.52, 0.16, 0.24, 1),height .56s cubic-bezier(0.52, 0.16, 0.24, 1);
    -o-transition: background .44s .2s cubic-bezier(0.52, 0.16, 0.24, 1),height .56s cubic-bezier(0.52, 0.16, 0.24, 1);
    transition: background .44s .2s cubic-bezier(0.52, 0.16, 0.24, 1),height .56s cubic-bezier(0.52, 0.16, 0.24, 1);
}

    .header-app.open-menu {
        height: 100%;
        background: #000;
        -webkit-transition: background .36s cubic-bezier(0.32, 0.08, 0.24, 1),height .56s cubic-bezier(0.52, 0.16, 0.24, 1);
        -o-transition: background .36s cubic-bezier(0.32, 0.08, 0.24, 1),height .56s cubic-bezier(0.52, 0.16, 0.24, 1);
        transition: background .36s cubic-bezier(0.32, 0.08, 0.24, 1),height .56s cubic-bezier(0.52, 0.16, 0.24, 1);
    }

.navbar-app {
    position: relative;
    -webkit-box-shadow: 3px 0 7px 0 rgba(0,0,0,.1);
    box-shadow: 3px 0 7px 0 rgba(0,0,0,.1);
    height: 60px;
    text-align: center;
}

.header-app .logo {
    float: left;
    height: 60px;
    vertical-align: middle;
    padding: 10px 15px;
}

    .header-app .logo img {
        height: 100%;
    }

.navbar-togger {
    float: right;
    background: transparent;
    border: none;
    padding: 22px 15px;
    display: inline-block;
    visibility: visible;
    transition: transform 0.44s 0.2s cubic-bezier(0.04, 0.04, 0.12, 0.96),opacity 0.28s 0.36s cubic-bezier(0.52, 0.16, 0.24, 1),-webkit-transform 0.44s 0.2s cubic-bezier(0.04, 0.04, 0.12, 0.96);
}

    .navbar-togger .icon_bar {
        width: 24px;
        height: 2px;
        background-color: rgb(224,100,92);
        opacity: 1;
        -webkit-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s;
    }

        .navbar-togger .icon_bar:nth-of-type(2) {
            margin: 5px 0;
        }

.open-menu .navbar-togger .icon_bar:nth-of-type(2) {
    opacity: 0;
}

.open-menu .navbar-togger .icon_bar:first-child {
    -webkit-transform: translate(0,7px) rotate(45deg);
    -ms-transform: translate(0,7px) rotate(45deg);
    transform: translate(0,7px) rotate(45deg);
}

.open-menu .navbar-togger .icon_bar:last-child {
    -webkit-transform: translate(0,-7px) rotate(-45deg);
    -ms-transform: translate(0,-7px) rotate(-45deg);
    transform: translate(0,-7px) rotate(-45deg);
}

.nav-menu {
    position: absolute;
    top: 60px;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    z-index: 620;
    padding: 20px 15px;
    overflow-x: hidden;
    overflow-y: auto;
    visibility: hidden;
    -webkit-transition: visibility 0s linear 1s;
    -o-transition: visibility 0s linear 1s;
    transition: visibility 0s linear 1s;
}

.header-app.open-menu .nav-menu {
    visibility: visible;
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
}

.nav-list li {
    border-bottom: 1px solid #424242;
    opacity: 0;
    pointer-events: none;
}

    .nav-list li.open {
        border-bottom: none;
    }

.header-app.open-menu .nav-list li {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}

.nav-list li:nth-child(1) {
    -webkit-transform: translateY(-44px);
    -ms-transform: translateY(-44px);
    transform: translateY(-44px);
    transition: opacity .3345s cubic-bezier(0.52, 0.16, 0.52, 0.84) .15s,transform .4669s cubic-bezier(0.52, 0.16, 0.52, 0.84) .108s,-webkit-transform .4669s cubic-bezier(0.52, 0.16, 0.52, 0.84) .108s;
}

.header-app.open-menu .nav-list li:nth-child(1) {
    transition: opacity .3091s cubic-bezier(0.32, 0.08, 0.24, 1) .03s,transform .3455s cubic-bezier(0.32, 0.08, 0.24, 1) .02s,-webkit-transform .3455s cubic-bezier(0.32, 0.08, 0.24, 1) .02s;
}

.nav-list li:nth-child(2) {
    -webkit-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    transform: translateY(-40px);
    transition: opacity .29294s cubic-bezier(0.52, 0.16, 0.52, 0.84) .13s,transform .45043s cubic-bezier(0.52, 0.16, 0.52, 0.84) .095s,-webkit-transform .45043s cubic-bezier(0.52, 0.16, 0.52, 0.84) .095s;
}

.header-app.open-menu .nav-list li:nth-child(2) {
    transition: opacity .32244s cubic-bezier(0.32, 0.08, 0.24, 1) .05s,transform .35825s cubic-bezier(0.32, 0.08, 0.24, 1) .04s,-webkit-transform .35825s cubic-bezier(0.32, 0.08, 0.24, 1) .04s;
}

.nav-list li:nth-child(3) {
    -webkit-transform: translateY(-36px);
    -ms-transform: translateY(-36px);
    transform: translateY(-36px);
    transition: opacity .26098s cubic-bezier(0.52, 0.16, 0.52, 0.84) .11s,transform .43756s cubic-bezier(0.52, 0.16, 0.52, 0.84) .082s,-webkit-transform .43756s cubic-bezier(0.52, 0.16, 0.52, 0.84) .082s;
}

.header-app.open-menu .nav-list li:nth-child(3) {
    transition: opacity .33467s cubic-bezier(0.32, 0.08, 0.24, 1) .07s,transform .37539s cubic-bezier(0.32, 0.08, 0.24, 1) .06s,-webkit-transform .37539s cubic-bezier(0.32, 0.08, 0.24, 1) .06s;
}

.nav-list li:nth-child(4) {
    -webkit-transform: translateY(-32px);
    -ms-transform: translateY(-32px);
    transform: translateY(-32px);
    transition: opacity .2386s cubic-bezier(0.52, 0.16, 0.52, 0.84) .09s,transform .42827s cubic-bezier(0.52, 0.16, 0.52, 0.84) .069s,-webkit-transform .42827s cubic-bezier(0.52, 0.16, 0.52, 0.84) .069s;
}

.header-app.open-menu .nav-list li:nth-child(4) {
    transition: opacity .34577s cubic-bezier(0.32, 0.08, 0.24, 1) .09s,transform .39692s cubic-bezier(0.32, 0.08, 0.24, 1) .08s,-webkit-transform .39692s cubic-bezier(0.32, 0.08, 0.24, 1) .08s;
}

.nav-list li:nth-child(5) {
    -webkit-transform: translateY(-28px);
    -ms-transform: translateY(-28px);
    transform: translateY(-28px);
    transition: opacity .22581s cubic-bezier(0.52, 0.16, 0.52, 0.84) .07s,transform .42259s cubic-bezier(0.52, 0.16, 0.52, 0.84) .056s,-webkit-transform .42259s cubic-bezier(0.52, 0.16, 0.52, 0.84) .056s;
}

.header-app.open-menu .nav-list li:nth-child(5) {
    transition: opacity .35577s cubic-bezier(0.32, 0.08, 0.24, 1) .11s,transform .42286s cubic-bezier(0.32, 0.08, 0.24, 1) .1s,-webkit-transform .42286s cubic-bezier(0.32, 0.08, 0.24, 1) .1s;
}

.nav-list li:nth-child(6) {
    -webkit-transform: translateY(-24px);
    -ms-transform: translateY(-24px);
    transform: translateY(-24px);
    transition: opacity .20343s cubic-bezier(0.52, 0.16, 0.52, 0.84) .05s,transform .41691s cubic-bezier(0.52, 0.16, 0.52, 0.84) .043s,-webkit-transform .41691s cubic-bezier(0.52, 0.16, 0.52, 0.84) .043s;
}

.header-app.open-menu .nav-list li:nth-child(6) {
    transition: opacity .36577s cubic-bezier(0.32, 0.08, 0.24, 1) .13s,transform .41718s cubic-bezier(0.32, 0.08, 0.24, 1) .12s,-webkit-transform .41718s cubic-bezier(0.32, 0.08, 0.24, 1) .12s;
}

.nav-list li:nth-child(7) {
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
    transition: opacity .18105s cubic-bezier(0.52, 0.16, 0.52, 0.84) .03s,transform .41123s cubic-bezier(0.52, 0.16, 0.52, 0.84) .03s,-webkit-transform .41123s cubic-bezier(0.52, 0.16, 0.52, 0.84) .03s;
}

.header-app.open-menu .nav-list li:nth-child(7) {
    transition: opacity .37577s cubic-bezier(0.32, 0.08, 0.24, 1) .15s,transform .4115s cubic-bezier(0.32, 0.08, 0.24, 1) .14s,-webkit-transform .4115s cubic-bezier(0.32, 0.08, 0.24, 1) .14s;
}

.nav-list li:nth-child(8) {
    -webkit-transform: translateY(-16px);
    -ms-transform: translateY(-16px);
    transform: translateY(-16px);
    transition: opacity .15867s cubic-bezier(0.52, 0.16, 0.52, 0.84) .01s,transform .40555s cubic-bezier(0.52, 0.16, 0.52, 0.84) .17s,-webkit-transform .40555s cubic-bezier(0.52, 0.16, 0.52, 0.84) .17s;
}

.header-app.open-menu .nav-list li:nth-child(8) {
    transition: opacity .38577s cubic-bezier(0.32, 0.08, 0.24, 1) .17s,transform .40582s cubic-bezier(0.32, 0.08, 0.24, 1) .16s,-webkit-transform .42286s cubic-bezier(0.32, 0.08, 0.24, 1) .16s;
}

.cate-item {
    position: relative;
}

    .cate-item a {
        font-size: 16px;
        line-height: 48px;
        margin-right: 60px;
        display: block;
        color: #fff;
    }

.nav-list li.active .cate-item a, .nav-list li.open .cate-item a {
    color: rgb(224,100,92);
}

.category-cont a:last-child {
    border: none;
}

.category-cont a.active {
    color: rgb(224,100,92);
}

.category-tig {
    font-size: 14px;
    color: #888;
    text-align: right;
    line-height: 48px;
    width: 50px;
    height: 48px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
}

    .category-tig::before, .category-tig::after {
        content: '';
        background: #888;
        position: absolute;
        top: 50%;
        -webkit-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s;
    }

    .category-tig::before {
        width: 16px;
        height: 2px;
        right: 0;
        margin-top: -1px;
    }

    .category-tig::after {
        width: 2px;
        height: 16px;
        margin-top: -8px;
        right: 7px;
    }

.nav-list li.open .category-tig::after {
    opacity: 0;
}

.nav-list li.open .category-tig::before {
    background: rgb(224,100,92);
}

.category-cont {
    display: none;
}

.nav-list li.open .category-cont {
    display: block;
    border-top: solid 1px #424242;
    border-bottom: solid 1px #424242;
}

.category-pad {
    padding: 0 15px;
}

.category-cont a {
    line-height: 40px;
    border-bottom: 1px solid #424242;
    display: block;
    color: #fff;
}

.category-pad a.on {
    color: rgb(224,100,92);
}

.lan-box-app {
    padding: 20px 0;
    text-align: center;
}

    .lan-box-app a {
        font-size: 14px;
        color: #fff;
        display: inline-block;
        padding: 0 10px;
        position: relative;
    }

        .lan-box-app a:after {
            content: '';
            width: 1px;
            height: 10px;
            background: #fff;
            position: absolute;
            right: 0;
            top: 50%;
            margin-top: -5px;
        }

        .lan-box-app a:hover, .lan-box-app a.on {
            color: rgb(224,100,92);
        }

        .lan-box-app a:last-child:after {
            display: none;
        }




/**/
.foot {
    background: #111;
}

    .foot a {
        transition: all 0.3s;
    }

.foot-top {
    padding: 0px 0 43px;
}

.dblef {
    width: 454px;
    display: inline-block;
    margin-right: 220px;
}

    .dblef .dblog {
        margin-bottom: 30px;
    }

    .dblef p {
        font-size: 16px;
        color: #999;
        margin-bottom: 15px;
    }

        .dblef p img {
            margin-right: 10px;
        }

    .dblef .ewm {
        margin-top: 25px;
    }

    .dblef .ewm1 {
        margin-right: 15px;
    }

    .dblef .ewm1, .dblef .ewm2 {
        float: left;
    }

    .dblef .ewm p {
        font-size: 16px;
        color: #999;
        text-align: center;
        margin-top: 8px;
    }

.ss {
    float: right;
    width: 420px;
    height: 48px;
    border: 2px solid rgb(190, 188, 186);
    border-radius: 48px;
    margin-top: 36px;
    padding: 0 25px;
}

    .ss:hover {
        border: 2px solid rgb(227,115,15);
    }

    .ss input {
        width: 90%;
        height: 100%;
        border: none;
        background: none;
        font-size: 14px;
        color: #999;
    }

    .ss button {
        float: right;
        width: 10%;
        height: 100%;
        border: none;
        background: none;
    }
/* 立即沟通 */
.fixleft {
    display:none;
    width: 180px;
    height: 60px;
    background: #e0641d;
    position: fixed;
    left: 0;
    bottom: 60px;
    z-index: 80;
    text-align: left;
    padding-left: 40px;
    box-sizing: border-box;
    display: none;
    background-size: contain;
    background-size: cover;
}

.mfsl_pop {
    font-size: 20px;
    color: #fff;
    line-height: 60px;
    font-weight: bold;
}

.hshq {
    font-size: 24px;
    line-height: 30px;
    font-weight: lighter;
    color: #fff;
}

.click_pop_show {
    position: absolute;
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: .5s;
    background: url(../images/popshow.png) no-repeat center;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    background-size: cover;
}

.communication {
    width: 100%;
    height: 110px;
    background: rgb(36,36,36);
    position: fixed;
    bottom: 0;
    z-index: 10;
}

    .communication .communicationjz {
        width: 1600px;
        margin: 0 auto;
        position: relative;
    }

.communicationjz .sp1 {
    font-size: 30px;
    color: #fff;
    line-height: 110px;
    margin-right: 10px;
}

.communicationjz .sp2 {
    font-size: 16px;
    color: #fff;
    line-height: 110px;
    opacity: 0.66;
    margin-right: 25px;
}

.communicationjz input {
    width: 330px;
    height: 40px;
    background: #fff;
    border: none;
    font-size: 12px;
    color: #999;
    text-indent: 20px;
    margin-left: 18px;
}

.communicationjz button {
    width: 100px;
    height: 40px;
    border-radius: 40px;
    background: rgb(255,98,0);
    font-size: 16px;
    color: #fff;
    margin-left: 50px;
}

.communicationjz .qx {
    width: 15px;
    height: 15px;
    position: absolute;
    right: 0;
    top: 15px;
}




.foot-ttop {
    border-bottom: solid 1px #333;
    color: #fff;
    font-size: 14px;
    padding-bottom: 30px;
}

    .foot-ttop a {
        color: #777;
        display: inline-block;
        margin-right: 20px;
    }

.foot-tbot {
    position: relative;
    padding-top: 57px;
}

    .foot-tbot dl dt a {
        font-size: 18px;
        color: #fff;
        display: inline-block;
        margin-bottom: 20px;
    }

    .foot-tbot dl dd a {
        display: inline-block;
        font-size: 14px;
        color: #777;
        line-height: 28px;
    }

    .foot-tbot dl {
        display: inline-block;
        vertical-align: top;
        margin-left: 2%;
    }

        .foot-tbot dl.last-dl {
            float: right;
            margin-right: 0;
        }

            .foot-tbot dl.last-dl dt {
                color: #777;
                font-size: 18px;
                margin-bottom: 20px;
            }

            .foot-tbot dl.last-dl dd {
                color: #fff;
                font-size: 36px;
                font-family: DINM;
            }

.dl-box {
    padding-right: 15px;
}

    .dl-box.scrollbar::-webkit-scrollbar {
        width: 2px;
        background: url(../images/line.png) no-repeat center;
        background-size: cover;
    }

    .dl-box.scrollbar::-webkit-scrollbar-thumb {
        background: url(../images/line1.png) no-repeat center;
    }

.foot_db {
    width: 100%;
    border-top: 1px solid #333;
    position: relative;
}

.foot-bot {
    padding: 20px 0;
}

    .foot-bot p, .foot-bot p a, .foot-bot p span {
        font-size: 14px;
        color: #777;
        line-height: 24px;
        cursor: pointer;
    }

    .foot-bot p {
        display: inline-block;
    }

        .foot-bot p.p2 {
            float: right;
        }

        .foot-bot a, .foot-bot p span {
            padding-right: 40px;
        }

.foot a:hover {
    color: #fff;
}

.foot-bot .foot-bleft {
    position: relative;
}

.foot_db .ylj {
    position: absolute;
    right: 7%;
    bottom: 33px;
    width: 120px;
    background: #fff;
    height: auto;
    display: none;
}

    .foot_db .ylj p {
        width: 100%;
        line-height: 40px;
    }

        .foot_db .ylj p a {
            display: block;
            width: 100%;
            height: 100%;
            line-height: 40px;
            text-align: center;
            font-size: 14px;
            color: #333;
            padding: 0;
            margin: 0;
        }
/*app-底部*/
.foot-app {
    width: 100%;
    display: none;
    background: #111;
    padding: 20px 0 0px;
}

.footer-menu {
    padding: 0 15px;
}

.footer-link {
    padding: 15px 0;
    color: #777;
    font-size: 14px
}

    .footer-link a {
        margin: 0 2px;
        font-size: 14px;
        color: #777;
        line-height: 24px;
    }

.footer-tit {
    position: relative;
    border-bottom: 1px solid #333;
}

    .footer-tit.on > a {
        color: rgb(224,100,92);
    }

    .footer-tit a {
        font-size: 16px;
        color: #777;
        line-height: 48px;
        margin-right: 48px;
        display: block;
        transition: all 0.4s;
    }

.footer-tig {
    font-size: 14px;
    color: #777;
    text-align: right;
    line-height: 48px;
    width: 20px;
    height: 48px;
    position: absolute;
    right: 0px;
    top: 0;
    z-index: 2;
}

    .footer-tig::before, .footer-tig::after {
        content: '';
        background: rgba(255,255,255,0.6);
        position: absolute;
        top: 50%;
        transition: all .3s;
        left: 50%;
    }

    .footer-tig::before {
        width: 18px;
        height: 2px;
        margin-left: -8px;
    }

    .footer-tig::after {
        width: 2px;
        height: 18px;
        margin-top: -8px;
    }

.footer-tit.on .footer-tig::after {
    opacity: 0;
}

.footer-tit.on .footer-tig::before {
    background: rgb(224,100,92);
}

.footer-cont {
    display: none;
    padding: 0 15px 15px;
}

    .footer-cont a {
        font-size: 14px;
        line-height: 24px;
    }

.footer-tit.on .footer-cont a.on {
    color: rgb(224,100,92);
}

.footer-bot {
    padding: 20px 15px;
}

    .footer-bot p a {
        margin-right: 20px;
    }

    .footer-bot p.p2 {
        margin-top: 10px;
    }

    .footer-bot p, .footer-bot p a {
        color: #777;
        font-size: 14px;
    }

    .footer-bot .tel {
        color: #777;
        font-size: 14px;
        margin-bottom: 10px;
    }

        .footer-bot .tel span {
            color: #777;
            display: inline-block;
            font-size: 18px;
            font-family: DINM;
            margin-left: 10px;
        }

/* 导航 */

@media (max-width: 1680px) {
  .index-container {
    width: 95%;
    ;
    position: relative;
}

.logowz {
    font-size: 22px;
    left: 260px;
}

.category-item {
    float: left;
    padding: 0 17px;
}

.navbar {
    margin-left: 24%;
}

.dblef {
    margin-right: 90px;
}
}

@media(max-width:1670px) {
    .category-item {
        float: left;
        padding: 0 12px;
    }
    .navbar {
      margin-left: 28%;
  }
}

@media(max-width:1620px) {
    .communication .communicationjz {
        width: 95%;
    }

    .communicationjz .sp2 {
        margin-right: 5px;
    }

    .communicationjz input {
        margin-left: 3px;
    }
}

@media(max-width:1590px) {

    .communicationjz input {
        width: 285px;
    }

    .header .logo img {
        width: 190px;
    }

    .logowz {
        padding: 38px 0;
        font-size: 22px;
        left: 220px;
    }

    .category-item {
        float: left;
        padding: 0 8px;
    }
}

@media (max-width: 1519px) {
    .navbar {
        margin-left: 70px;
    }
    .navbar {
      margin-left: 27%;
  }
}

@media(max-width:1460px) {
    .dblef {
        margin-left: 26px;
        margin-right: 0;
    }

    .communicationjz .sp1 {
        font-size: 22px;
    }

    .communicationjz button {
        margin-left: 6px;
    }

    .header .logo {
        padding: 28.5px 0;
        float: left;
    }

        .header .logo img {
            width: 163px;
        }

    .logowz {
        font-size: 22px;
        left: 14%;
    }

    .category-item {
        float: left;
        padding: 0 10px;
    }

    .navbar {
      margin-left: 20%;
  }
  .communication{
    height: 70px;
  }
  .communicationjz .sp1,
  .communicationjz .sp2{
    line-height: 70px;
  }
  .communicationjz input{
    margin-bottom: 15px;
  }
  .header .yy{
    margin-right: 0;
  }
}

@media (max-width: 1459px) {
    .category-a {
        padding: 0;
    }
    /* .category-item{padding: 0 20px;} */
}

@media(max-width:1370px) {
    .dblef {
        margin-right: 0px;
    }

    .communicationjz input {
        width: 20%;
    }
}

@media(max-width:1330px) {
    .dblef p {
        font-size: 13px;
    }
}

@media(max-width:1320px) {
    .banner {
        margin-top: 6px;
    }

    .category-a {
        font-size: 17px;
    }

    .dblef {
        width: 380px;
    }
}

@media(max-width:1305px) {
  .logowz {
    font-size: 17px;
    padding: 45px 0;
    left: 13%;
}

    .header .logo img {
        width: 120px;
    }

    .category-a {
        font-size: 16px;
    }
}

@media (max-width: 1259px) {
  .navbar {
    margin-left: 24%;
}
    .category-item {
        padding: 0 8px;
    }

    .foot-nav a {
        margin-right: 33px;
    }

    .foot-tbot dl dd a {
        font-size: 13px;
    }

    .foot-tbot dl dt a {
        font-size: 15px;
    }
}

@media (max-width: 1250px) {
    .communicationjz .sp1 {
        font-size: 16px;
    }
}

@media (max-width: 1180px) {
    .header, .foot, .kf {
        display: none !important;
    }

    .header-app, .foot-app, .kefu {
        display: block;
    }
}

@media (max-width: 1160px) {
    .communicationjz .sp2 {
        font-size: 12px;
    }
}

@media(max-width:980px) {
    .communication {
        display: none !important;
    }

    .fixleft {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .banner {
        margin-top: 60px;
    }

        .banner img.app-banner {
            display: block;
        }

        .banner img.pc-banner {
            display: none;
        }

    .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }

    .swiper-pagination {
        bottom: 15px !important;
        width: 100%;
        text-align: center;
    }

    .swiper-num {
        display: none;
    }

    .inner-banner img {
        min-height: auto;
    }

        .inner-banner img.inner-app {
            display: block;
        }

        .inner-banner img.inner-pc {
            display: none;
        }
}

@media (max-width: 767px) {

    .banner-font h3 {
        font-size: 26px;
        line-height: 36px;
        margin-bottom: 10px;
    }

    .banner-font h4 {
        font-size: 16px;
        line-height: 1.5;
    }

    .banner-font {
        top: 45% !important;
        transform: translateY(-50%);
        left: 0;
    }
}


