﻿@charset "UTF-8";

.container, .container-middle, .wrap {
    padding-right: 15px;
    padding-left: 15px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .wrap, .container, .container-middle {
        width: 750px;
    }
}

@media (min-width: 992px) {
    .wrap, .container, .container-middle {
        width: 970px;
    }
}

@media (min-width: 1260px) {
    .wrap, .container, .container-middle {
        width: 1230px;
    }
}

@media (min-width: 1460px) {
    .container-middle, .container {
        width: 1430px;
    }
}

@media (min-width: 1920px) {
    .container-middle {
        width: 1830px;
    }

    .container {
        width: 1430px;
    }
}

@keyframes myfirst {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes myfirst {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes opacity {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes opacity {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes width {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

@-webkit-keyframes width {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

@keyframes scle2 {
    from {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    to {
        transform: scale(1.1);
    }
}
/* css3 keyframes - animation 4 */
@-webkit-keyframes anim4 {
    from {
        -webkit-transform: rotateZ(0deg);
    }

    50% {
        -webkit-transform: rotateZ(180deg);
    }

    to {
        -webkit-transform: rotateZ(360deg);
    }
}

@-moz-keyframes anim4 {
    from {
        -moz-transform: rotateZ(0deg);
    }

    50% {
        -moz-transform: rotateZ(180deg);
    }

    to {
        -moz-transform: rotateZ(360deg);
    }
}

@-ms-keyframes anim4 {
    from {
        -ms-transform: rotateZ(0deg);
    }

    50% {
        -ms-transform: rotateZ(180deg);
    }

    to {
        -ms-transform: rotateZ(360deg);
    }
}

@-o-keyframes anim4 {
    from {
        -o-transform: rotateZ(0deg);
    }

    50% {
        -o-transform: rotateZ(180deg);
    }

    to {
        -o-transform: rotateZ(360deg);
    }
}

@keyframes anim4 {
    from {
        transform: rotateZ(0deg);
    }

    50% {
        transform: rotateZ(180deg);
    }

    to {
        transform: rotateZ(360deg);
    }
}

@-webkit-keyframes kuosan-1 {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1;
        filter: alpha(opacity=100)\9
    }

    100% {
        -webkit-transform: scale(5);
        transform: scale(5);
        opacity: 0;
        filter: alpha(opacity=0)\9
    }
}

@keyframes kuosan-1 {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1;
        filter: alpha(opacity=100)\9
    }

    100% {
        -webkit-transform: scale(5);
        transform: scale(5);
        opacity: 0;
        filter: alpha(opacity=0)\9
    }
}

@-webkit-keyframes kuosan-2 {
    0% {
        -webkit-transform: rotateZ(0deg);
        transform: rotateZ(0deg);
    }

    25% {
        -webkit-transform: rotateZ(90deg);
        transform: rotateZ(90deg);
    }

    50% {
        -webkit-transform: rotateZ(180deg);
        transform: rotateZ(180deg);
    }

    75% {
        -webkit-transform: rotateZ(270deg);
        transform: rotateZ(270deg);
    }

    100% {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}

@keyframes kuosan-2 {
    0% {
        -webkit-transform: rotateZ(0deg);
        transform: rotateZ(0deg);
    }

    25% {
        -webkit-transform: rotateZ(90deg);
        transform: rotateZ(90deg);
    }

    50% {
        -webkit-transform: rotateZ(180deg);
        transform: rotateZ(180deg);
    }

    75% {
        -webkit-transform: rotateZ(270deg);
        transform: rotateZ(270deg);
    }

    100% {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}
/*header*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 110px;
    z-index: 5000;
    background: #fff;
    transition: ease .5s;
}

    .header.on {
        box-shadow: 0 0 13px rgba(0,0,0,.1);
        height: 69px;
    }

        .header.on .header-top {
            height: 0;
            opacity: 0;
            padding: 0;
            width: 0;
        }

            .header.on .header-top * {
                height: 0;
                width: 0;
            }

        .header.on .header-bot {
            border-top: none;
        }

.header-top {
    transition: ease .5s;
    padding: 0;
    position: relative;
    padding: 5px 0;
}

.header-bot {
    border-top: 1px solid #eee;
}

.header-span {
    float: right;
}

    .header-span span {
        display: inline-block;
        margin: 0 15px;
        font-size: 16px;
        line-height: 30px;
        color: #666;
        position: relative;
    }

.header-left {
    float: left;
}

    .header-left h6 {
        font-size: 16px;
        line-height: 30px;
        color: #a9a9a9;
    }

.head-call {
    padding-left: 26px;
}

    .head-call::before {
        position: absolute;
        content: "";
        width: 16px;
        height: 16px;
        background: url(../images/head-call.png)no-repeat center;
        background-size: 100% 100%;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }

.head-email {
    padding-left: 31px;
}

    .head-email::before {
        position: absolute;
        content: "";
        width: 21px;
        height: 16px;
        background: url(../images/head-email.png)no-repeat center;
        background-size: 100% 100%;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }

.header-share {
    float: right;
}

    .header-share a {
    }

    .header-share a {
        display: inline-block !important;
        background: none !important;
        font-size: 18px !important;
        text-align: center;
        color: #ccc !important;
        transition: ease .5s !important;
        padding-left: 0 !important;
        text-decoration: none !important;
        margin: 0 10px !important;
        background: transparent !important;
    }

.header-language {
    padding: 4px 0;
    margin-right: 0px;
    float: right;
    transition: ease .5s;
    position: relative;
    color: #333;
    font-size: 0;
    font-family: "Arial";
}

    .header-language a, .header-language em {
        display: inline-block;
        font-size: 14px;
        line-height: 22px;
        padding: 0 10px;
    }

        .header-language a:hover {
            color: #fda50b;
        }

        .header-language a.on:hover {
            color: #fff;
        }

    .header-language a {
        border-radius: 30px;
        /* display: block; */
    }

        .header-language a.on {
            background: #fda50b;
            color: #fff;
        }

    .header-language::before {
        position: absolute;
        content: "";
        width: 23px;
        height: 13px;
        /* background: url(../images/language-en.png)no-repeat center; */
        left: 0;
        top: 5px;
        display: none;
    }

.language {
    float: right;
    position: relative;
    padding: 0 8px;
    font-size: 14px;
    line-height: 26px;
    font-family: 'GT-Walsheim-Pro-Regular';
}

.language-text {
    display: block;
    color: #ccc;
    line-height: 26px;
    padding: 0 4px;
    cursor: pointer;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

    .language-text .icon-down {
        display: block;
        float: right;
        vertical-align: middle;
        font-size: 12px;
        margin-left: 10px;
        -webkit-transition: -webkit-transform .3s;
        transition: -webkit-transform .3s;
        -o-transition: transform .3s;
        transition: transform .3s;
        transition: transform .3s, -webkit-transform .3s;
    }

.language-list {
    position: absolute;
    top: 100%;
    width: 100%;
    right: 0px;
    z-index: 10;
    background: #fff;
    padding: 0px 0;
    -webkit-box-shadow: 0 2px 4px 2px rgba(0,0,0,.05);
    box-shadow: 0 2px 4px 2px rgba(0,0,0,.05);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .6s;
    -o-transition: all .6s;
    transition: all .6s;
}

    .language-list a {
        display: block;
        padding: 10px 20px;
        text-align: center;
        -webkit-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s;
    }

        .language-list a:hover {
            color: #fda50b
        }

.language:hover .language-text {
    font-weight: bold;
}

.lang-down {
    width: 9px;
    height: 5px;
    position: relative;
    display: inline-block;
    margin-left: 12px;
}

    .lang-down::before {
        position: absolute;
        content: "";
        width: 0;
        height: 0;
        transition: ease .5s;
        top: 0px;
        left: 0px;
        border-top: 5px solid #888;
        border-left: 4.5px solid transparent;
        border-right: 4.5px solid transparent;
        border-bottom: 0px solid transparent;
    }

.language:hover .language-text .lang-down::before {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.language:hover .language-list {
    opacity: 1;
    visibility: visible;
}

.header-logo {
    float: left;
}

.headertop-right {
    float: right;
    position: relative;
    padding: 31px 0 32px;
    padding-left: 76px;
}

    .headertop-right::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        background: #0f51be;
        transform: skewX(-10deg);
    }

.header .logo {
    padding: 13px 0;
    display: block;
    float: left;
    position: relative;
    z-index: 1200;
}

    .header .logo img {
        width: 200px;
        height: 43px;
    }

.header-slogan {
    float: left;
    margin-left: 20px;
}

    .header-slogan h3 {
        font-family: 'GT-Walsheim-Pro-Medium';
        font-size: 41px;
        line-height: 42px;
        color: #fff;
    }

    .header-slogan p {
        font-family: 'GT-Walsheim-Pro-Regular';
        font-size: 16px;
        line-height: 24px;
        color: #fff;
    }

.header-right {
    float: right;
}

.header-sub {
    float: right;
    margin-left: 40px;
}

.header_search {
    position: relative;
    float: left;
    width: 300px;
    height: 42px;
    border-bottom: 1px solid rgba(255,255,255,.3);
}

    .header_search .text {
        width: 255px;
        float: left;
        font-size: 16px;
        color: rgba(255,255,255,.2);
        font-family: 'HelveticaLTStd-Light';
        opacity: 1;
        padding: 0 30px;
        line-height: 42px;
    }

    .header_search .submit {
        cursor: pointer;
        width: 45px;
        float: right;
        height: 42px;
        background: url(../images/icon_search.png) no-repeat center;
    }

.header-bottom {
    background: #d20008;
    transition: ease .5s;
}

.header-btn {
    font-size: 0;
    text-align: center;
    float: left;
}

.header-btn1 {
    display: inline-block;
    margin: 0 1px;
    transform: skewX(-10deg);
    width: 117px;
    transition: ease .5s;
}

    .header-btn1.header-lang {
        background: #fff;
    }

    .header-btn1.header-login {
        background: #d20008;
    }

    .header-btn1 span {
        display: inline-block;
        font-size: 18px;
        line-height: 30px;
        color: #333;
    }

    .header-btn1 a {
        display: block;
        transform: skewX(10deg);
        padding: 6px 0;
    }

    .header-btn1 img {
        max-width: 100%;
        display: inline-block;
    }

    .header-btn1.header-lang:hover {
        background-color: #d20008;
    }

    .header-btn1.header-login:hover {
        background-color: #a50b11;
    }

    .header-btn1.header-lang:hover span {
        color: #fff;
    }

.header-search {
    float: right;
}

.bt-search {
    position: relative;
    border: none;
    background: none;
    float: left;
    width: 30px;
    height: 30px;
    text-align: right;
    line-height: 30px;
    padding: 5px 0;
    cursor: pointer;
    transition: .5s;
    z-index: 10;
}

    .bt-search .sub-bot {
        display: inline-block;
        width: 21px;
        height: 20px;
        line-height: 34px;
        background: transparent;
        border: none;
        z-index: 3;
        cursor: pointer;
        background: url(../images/icon-search.png) no-repeat center transparent;
        padding-right: 0px;
    }

.searchop .search-all {
    z-index: 10;
    opacity: 1;
    visibility: visible;
}

.search-all {
    position: absolute;
    right: 50px;
    top: 50%;
    width: 300px;
    height: auto;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: all .2s;
}

    .search-all .search-box {
        position: relative;
        height: 36px;
        margin-top: 38px;
        background: #fff;
    }

.searchop .search-all .search-box {
    animation: searchform-fade 400ms both;
}

.searchop .search-all form {
    animation: searchform-slide 1s both;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.search-all .search-box .search-txt {
    color: #333;
    line-height: 34px;
    width: 44px;
    text-align: center;
    cursor: pointer;
    transition: all .3s ease-out;
}

    .search-all .search-box .search-txt i {
        font-size: 20px !important;
    }

    .search-all .search-box .search-txt.left {
        float: left;
    }

.search-all .search-box .search-inp {
    margin-left: 44px;
    transition: all .3s ease-out 0s;
    margin-right: 44px;
}

    .search-all .search-box .search-inp input {
        font-size: 16px;
        line-height: 36px;
        color: #333;
        width: 100%;
        border-radius: 5px;
    }

.searchop .search-close {
    opacity: 1;
    transition: all .2s ease-out 0s;
}

.search-all .search-box .search-close {
    width: 44px;
    height: 36px;
    font-size: 16px;
    color: #333;
    line-height: 36px;
    text-align: center;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    opacity: 1;
}

.searchop .search-close:hover {
}

.searchshow .top2-bu a {
    -webkit-animation: item-searchshow .4s both;
    animation: item-searchshow .4s both;
}

.header-navbar {
}

.navbar {
    float: right;
    transition: ease .5s;
}

.navitem {
    float: left;
}

    .navitem > a {
        display: inline-block;
        font-size: 18px;
        color: #333;
        line-height: 30px;
        -webkit-transition: all .4s;
        -o-transition: all .4s;
        transition: all .4s;
        background: transparent;
        padding: 19px 28px 20px;
        position: relative;
        font-family: 'HelveticaLTStd-Roman';
        text-transform: uppercase;
    }

    .navitem.active > a,
    .navitem:hover > a {
        color: #fff;
    }
/* .header:hover .navitem>a:hover, */
.ny-header .navitem.active > a,
.ny-header .navitem > a:hover {
    color: #fff;
}

.navitem {
    position: relative;
}

    .navitem::before {
        position: absolute;
        content: "";
        width: 0px;
        height: 100%;
        background: #fda50b;
        left: 50%;
        top: 0;
        transform: translateX(-50%) skewX(-30deg);
        transition: ease .5s;
    }

    .navitem:hover::before,
    .navitem.active::before {
        width: 100%;
    }

.ny-header .navitem > a {
    color: #fff;
}

/*header -end*/
/* ========== header-app  ========= */
.header-app.hny .navbar-app {
    background: #333;
}

.header-app {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 500;
    overflow: hidden;
    box-shadow: 3px 0 7px 0 rgba(0, 0, 0, .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: #fff;
        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;
    background: #fff !important;
    height: 60px;
}

.header-app .logo {
    display: inline-block;
    height: 60px;
    vertical-align: middle;
    padding: 15px 15px;
}

    .header-app .logo img {
        height: 100%;
        display: inline-block;
    }

.app-lanu {
    text-align: center;
    padding: 20px 0;
}

    .app-lanu a {
        display: inline-block;
        padding: 2px 16px;
        line-height: 32px;
        color: #666;
        height: 36px;
    }

        .app-lanu a.on {
            width: 64px;
            color: white;
            background: #fda50b;
            transform: skewX(-10deg);
        }

        .app-lanu a span, .app-lanu a img {
            display: inline-block;
            transform: skewX(10deg);
        }

        .app-lanu a img {
            max-height: 100%;
        }

.app-sousuo {
    line-height: 22px;
    border-right: solid 1px #fff;
    padding-right: 0px;
    color: #000;
    float: left;
    font-size: 22px !important;
    margin-top: 19px;
    margin-left: 15px;
}

.alert-search {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    top: 0;
    left: 0;
    z-index: 9999;
}

.alert-top {
    height: 60px;
    background: rgba(57,36,30,1);
    padding: 0 15px;
}

    .alert-top .text {
        height: 30px;
        margin-top: 15px;
        background: none;
        border-bottom: solid 1px #fff;
        width: 80%;
        float: left;
        color: white;
    }

    .alert-top .search {
        margin-left: 10px;
        background: url(../images/search.png) no-repeat center;
        width: 20px;
        height: 20px;
        background-size: cover;
        float: left;
        margin-top: 25px;
    }

    .alert-top span {
        color: #fff;
        float: right;
        font-size: 20px !important;
        margin-top: 21px;
    }

.navapp-user {
    float: right;
    width: 60px;
    height: 60px;
    color: rgba(255, 255, 255, .82);
    line-height: 60px;
    font-size: 16px;
}

.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: #fda50b;
        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;
    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 #e5e5e5;
    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;
    }

.nav-list li.active .cate-item a,
.nav-list li.open .cate-item a {
    color: #1355b3;
}

.category-cont a:last-child {
    border: none;
}

.category-cont a.active {
    color: #1355b3;
}

.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: #1355b3;
}

.category-cont {
    display: none;
}

.nav-list li.open .category-cont {
    display: block;
    border: solid 1px #e5e5e5;
}

.category-pad {
    padding: 0 15px;
}

.category-cont a {
    line-height: 40px;
    border-bottom: 1px dashed #e5e5e5;
    display: block;
    font-size: 14px;
    color: #333;
}

.category-pad a.active {
    color: #1355b3;
}

.cate-item1 {
    position: relative;
    border-bottom: solid 1px #cfcfcf;
}

.category-li:last-child .cate-item1 {
    border-bottom: none;
}

.cate-item1 a {
    border-bottom: none;
    font-size: 16px;
    line-height: 48px;
    margin-right: 60px;
    display: block;
    color: #444;
}

.category-li.open .cate-item1 a {
    color: #1355b3
}

.category-cont1 a:last-child {
    border: none;
}

.category-cont1 a.active {
    color: #1355b3;
}

.category-tig1 {
    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-tig1::before, .category-tig1::after {
        content: '';
        background: #888;
        position: absolute;
        top: 50%;
        -webkit-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s;
    }

    .category-tig1::before {
        width: 16px;
        height: 2px;
        right: 0;
        margin-top: -1px;
    }

    .category-tig1::after {
        width: 2px;
        height: 16px;
        margin-top: -8px;
        right: 7px;
    }

.category-li.open .category-tig1::after {
    opacity: 0;
}

.category-li.open .category-tig1::before {
    background: #1355b3;
}

.category-cont1 {
    display: none;
}

.category-li.open .category-cont1 {
    display: block;
    border-bottom: solid 1px #cfcfcf;
}

.category-li:last-child.open .category-cont1 {
    border-bottom: none;
    border-top: solid 1px #cfcfcf;
}

.category-pad1 {
    padding: 0 15px;
}

.category-cont1 a {
    line-height: 40px;
    border-bottom: 1px solid #cfcfcf;
    display: block;
    color: #666;
}

.category-pad1 a.active {
    color: #1355b3;
}

.app-search {
    position: relative;
}

.app-search-text {
    width: 76%;
    height: 48px;
    font-size: 14px;
    text-align: left;
    display: inline-block;
    vertical-align: middle;
}

.app-search-btn {
    width: 48px;
    height: 48px;
    display: inline-block;
    background: transparent;
    vertical-align: middle;
    font-size: 16px;
    line-height: 48px;
    text-align: right;
    position: absolute;
    right: 0;
    top: 0;
}

.btn1.close1, .btn2.close1, .btn3.close1, .btn4.close1 {
    bottom: 0;
    right: 0;
}

.btn1.open1 {
    bottom: 125px;
    right: 0;
}

.btn2.open1 {
    bottom: 100px;
    right: 55px;
}

.btn3.open1 {
    bottom: 58px;
    right: 98px;
}

.btn4.open1 {
    bottom: 0px;
    right: 117px;
}

.header-app .headtop-left {
    float: none;
    width: 100%;
    margin-left: 0;
}

.header-app .top-search {
    width: 100%;
    margin-top: 25px;
}

.header-app .top-search {
    border-radius: 30px;
    border: 1px solid #777;
    position: relative;
    margin-top: 0;
    padding: 5px 25px;
    width: 100%;
}

    .header-app .top-search input:nth-child(2) {
        width: 17px;
        height: 30px;
        position: absolute;
        right: 20px;
        top: 50%;
        margin-top: -15px;
        background: url(../images/top-search.png)no-repeat center;
        background-size: 100%;
        cursor: pointer;
    }

    .header-app .top-search input:nth-child(1) {
        font-size: 14px;
        line-height: 30px;
        color: #777;
        width: 100%;
        padding-right: 25px;
    }

.header-app .headtop-right {
    position: static;
    margin-right: 0;
    float: none;
    width: 100%;
    text-align: center;
    margin: 25px 0 0;
}

.header-app .logo p {
    font-size: 12px;
    line-height: 16px;
    color: #333;
    font-weight: bold;
}

.nav-list {
    margin-top: 20px;
}

/*footer*/
.footer {
    background: #111;
}

.bottom1 {
    padding: 57px 0 20px;
}

.bottom2 {
    padding: 24px 0;
    border-top: 1px solid rgba(53,52,59,.3);
}

    .bottom2 a {
        display: inline-block;
        font-size: 14px;
        line-height: 26px;
        color: rgba(255,255,255,.2);
        font-family: 'HelveticaLTStd-Light';
        transition: .5s;
        position: relative;
    }

        .bottom2 a i {
            font-style: normal;
            margin: 0 10px;
        }

    .bottom2 .bottom2-con {
    }

    .bottom2 a.link-ctm {
        position: relative;
    }

    .bottom2 a:hover {
        color: #fff;
    }

    .bottom2 .left {
        float: left;
    }

    .bottom2 .right {
        float: right;
        font-size: 0;
    }

        .bottom2 .right a {
        }

            .bottom2 .right a:hover {
                color: #fff;
            }

    .bottom2 .left p {
        font-size: 14px;
        line-height: 26px;
        color: rgba(255,255,255,.2);
        font-family: 'HelveticaLTStd-Light';
    }

    .bottom2 .left span {
        display: inline-block;
        margin: 0px;
        font-size: 14px;
        line-height: 28px;
        color: rgba(255,255,255,.3);
    }

    .bottom2 .right a {
        float: left;
    }

    .bottom2 .right span {
        display: inline-block;
        position: relative;
        padding-left: 10px;
        margin-left: 10px;
    }

        .bottom2 .right span::before {
            position: absolute;
            content: "";
            width: 1px;
            height: 14px;
            background: rgba(255,255,255,.1);
            left: 0;
            top: 50%;
            transform: translateY(-50%);
        }

        .bottom2 .right span:first-child {
            margin-left: 0;
            padding-left: 0;
        }

            .bottom2 .right span:first-child::before {
                display: none;
            }

.bottom2-img {
    display: inline-block;
    float: right;
}

.bottom-lx {
    float: left;
}

.bottomlx-txt {
    text-align: left;
}

    .bottomlx-txt h4 {
        font-size: 20px;
        line-height: 30px;
        color: #fff;
    }

.bottom-ewm {
    text-align: left;
    width: 100%;
    font-size: 0;
    margin: 34px -10px 0;
}

.bottom-ewm1 {
    display: inline-block;
    width: 112px;
    text-align: center;
    margin: 0 10px;
}

.bottom-ewm img {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 6px;
}

.bottom-ewm p {
    font-size: 14px;
    line-height: 28px;
    color: rgba(255,255,255,.3);
}

.bottom-contact {
    float: right;
}

    .bottom-contact h4 {
        font-size: 20px;
        line-height: 30px;
        color: #fff;
    }

    .bottom-contact p {
        font-size: 14px;
        line-height: 26px;
        color: #999;
    }

        .bottom-contact p i {
            font-style: normal;
            display: block;
        }

.bottom-lx ul {
    float: right;
}

.bottom-lx li {
    font-size: 16px;
    line-height: 30px;
    color: rgba(230,197,156,0.5);
}

.bottom-ulfont {
    float: left;
    position: relative;
    padding-right: 0px;
}

.bottom-ul {
}

    .bottom-ul ul {
        float: left;
        position: relative;
        margin-right: 100px;
    }

        .bottom-ul ul:last-child {
            margin-right: 0;
        }

        .bottom-ul ul li {
            padding: 0px 0;
        }

            .bottom-ul ul li:first-child {
                margin-bottom: 12px;
            }

            .bottom-ul ul li span {
                display: inline !important;
            }

            .bottom-ul ul li em {
                display: inline;
                font-size: 20px;
                line-height: 30px;
                color: rgba(255,255,255,.8);
                font-family: "Arial";
            }

                .bottom-ul ul li em.botem-sma {
                    font-size: 16px;
                }

            .bottom-ul ul li a,
            .bottom1-contact li,
            .bottom-ul ul li span {
                display: block;
                font-size: 14px;
                line-height: 32px;
                color: rgba(225,225,225,.4);
                font-family: 'GT-Walsheim-Pro-Regular';
                transition: ease .5s;
            }

            .bottom-ul ul li:first-child a {
                font-size: 18px;
                color: #fff;
                position: relative;
            }

.bottom-secul li:first-child a {
    opacity: 0;
    cursor: auto;
}

.bottom1 .box1 ul {
    float: left;
    margin-right: 95px;
}

    .bottom1 .box1 ul:nth-child(1) {
        margin-right: 70px;
    }

    .bottom1 .box1 ul:nth-child(4) {
        margin-right: 60px;
    }

    .bottom1 .box1 ul:nth-child(2), .bottom1 .box1 ul:nth-child(3) {
        margin-right: 90px;
    }

    .bottom1 .box1 ul:last-child {
        margin-right: 0;
    }

    .bottom1 .box1 ul li {
        font-size: 14px;
        line-height: 24px;
        color: rgba(161,161,161,0.8);
        transition: .5s;
    }

        .bottom1 .box1 ul li:hover {
            color: #fff;
        }

        .bottom1 .box1 ul li:first-child a {
            font-size: 18px;
            color: #fff;
            line-height: 24px;
            margin-bottom: 7px;
        }

        .bottom1 .box1 ul li a {
            display: block;
            font-size: 14px;
            line-height: 32px;
            color: rgba(255, 255, 255, 0.5);
            transition: ease .5s;
        }

            .bottom1 .box1 ul li a:hover {
                color: #fda50b;
            }

.bottom-ul ul li a:hover {
    color: #fff;
}

.bottom1-ewm {
    float: right;
    padding-right: 100px;
    width: 316px;
}

.bottom-share {
    margin: 17px 0 0;
}

    .bottom-share .bshare-custom {
        font-size: 0;
        margin: 0 -5px;
    }

    .bottom-share a {
        display: inline-block !important;
        width: 31px !important;
        height: 31px !important;
        border-radius: 2px;
        background: rgba(255,255,255,.9) !important;
        font-size: 22px !important;
        text-align: center;
        color: #111 !important;
        transition: ease .5s !important;
        padding-left: 0 !important;
        text-decoration: none !important;
        margin: 0 5px !important;
    }

        .bottom-share a:hover {
            opacity: .7 !important;
        }

        .bottom-share a.btshare-wl {
            background: rgba(255,255,255,.9) url(../images/btshare-wl.png)no-repeat center !important;
            background-size: 22px 22px !important;
        }

            .bottom-share a.btshare-wl::before {
                display: none;
            }

.bsBox {
    width: 232px !important;
    height: 256px !important;
}

.bottom-share a.bshare-tx {
    background: url(../images/share1.png)no-repeat center !important;
    width: 26px !important;
    height: 24px !important;
}

.bottom-share a.bshare-dy {
    background: url(../images/share2.png)no-repeat center !important;
    width: 21px !important;
    height: 25px !important;
}

.bottom-share a.bshare-tt {
    background: url(../images/share3.png)no-repeat center !important;
    width: 24px !important;
    height: 24px !important;
}

.bottom1-top {
    padding-bottom: 0px;
}

.bottom1-input {
    float: right;
    width: 338px;
}

.bottomlx-txt {
}

    .bottomlx-txt h4 {
    }

.bottom-inp {
    margin-top: 20px;
}

    .bottom-inp input {
        margin-top: 10px;
        display: block;
        width: 100%;
        border: 1px solid rgba(255,255,255,.2);
        padding: 8px 10px;
        font-size: 14px;
        line-height: 26px;
        color: #989898;
        font-family: 'GT-Walsheim-Pro-Regular';
    }

    .bottom-inp textarea {
        margin-top: 10px;
        height: 94px;
        display: block;
        width: 100%;
        border: 1px solid rgba(255,255,255,.2);
        padding: 8px 10px;
        font-size: 14px;
        line-height: 26px;
        color: #989898;
        font-family: 'GT-Walsheim-Pro-Regular';
    }

    .bottom-inp button {
        border-color: #fda50b;
        margin-top: 20px;
        cursor: pointer;
        display: block;
        width: 135px;
        height: 49px;
        text-align: center;
        font-size: 24px;
        line-height: 49px;
        color: #fff;
        font-family: 'GT-Walsheim-Pro-Regular';
    }

.bottom1-top {
}

.bottom1-left {
    float: left;
    width: 53.49%;
}

.bot1-leul {
}

    .bot1-leul li {
        float: left;
        width: 20%;
    }

        .bot1-leul li a {
            display: block;
            font-size: 18px;
            line-height: 50px;
            color: #fff;
            font-family: 'HelveticaLTStd-Roman';
        }

.bottom1-right {
    float: right;
    width: 46.51%;
    padding-left: 80px;
    padding-top: 15px;
}

    .bottom1-right ul {
    }

    .bottom1-right li {
        float: left;
        width: 40%;
    }

        .bottom1-right li:nth-child(2) {
            width: 60%;
        }

    .bottom1-right span {
        padding-left: 30px;
        margin-bottom: 10px;
        display: block;
        position: relative;
        font-size: 16px;
        line-height: 30px;
        color: rgba(255,255,255,.6);
        font-family: 'HelveticaLTStd-Light';
    }

.span-email::before {
    background: url(../images/span-email.png)no-repeat center;
}

.span-fax::before {
    background: url(../images/span-fax.png)no-repeat center;
}

.span-address::before {
    background: url(../images/span-address.png)no-repeat center;
}

.bottom1-right span::before {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    background-size: 100% 100%;
    left: 0;
    top: 6px;
}

.bottom1-right span:last-child {
    margin-bottom: 0;
}

.bot-link {
    margin-top: 20px;
    padding: 20px 0 0;
    border-top: 1px solid rgba(255,255,255,.1);
}

    .bot-link span {
        display: inline-block;
        font-size: 16px;
        line-height: 26px;
        color: rgba(255,255,255,.5);
    }

        .bot-link span:first-child {
            font-size: 20px;
            color: #fff;
        }

    .bot-link a {
        display: block;
        margin-right: 15px;
    }

    .bot-link span:last-child a {
        margin-right: 0;
    }

    .bot-link a:hover {
        color: #fda50b;
    }
/*footer -end*/
/*app-底部*/
.foot-app {
    width: 100%;
    background: #111;
    padding: 0;
    padding-bottom: 0px;
    display: none;
    background-size: cover;
}

.footer-menu {
    padding: 0 15px;
}

.footer-top {
    padding: 20px 0px 0;
}

.appfoot-ul {
    float: left;
    width: 50%;
    padding-right: 20px;
}

.footer-top .bottom1-input {
    float: right;
    width: 50%;
    padding-left: 20px;
}

.footer-top .bottom-share {
    margin: 30px 0 0;
}

.appfoot-ul ul {
    font-size: 0;
}

.appfoot-ul li {
    display: block;
    margin: 5px 0;
}

    .appfoot-ul li:first-child {
        margin-top: 0;
    }

    .appfoot-ul li a {
        display: block;
        font-size: 16px;
        color: rgba(255,255,255,0.5);
        line-height: 30px;
    }

    .appfoot-ul li:first-child a {
        font-size: 20px;
        line-height: 30px;
        color: #fff;
    }

/* .footer-bot{padding: 20px 20px 40px;} */
.footer-tit {
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.5);
}

.open .footer-tit a {
    color: rgba(255,255,255,1);
}

.footer-tit a {
    font-size: 16px;
    color: rgba(255,255,255,0.5);
    line-height: 48px;
    margin-right: 48px;
    display: block;
}

.footer-tig {
    font-size: 14px;
    color: #333;
    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.5);
        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-item.open .footer-tig::after {
    opacity: 0;
}

.footer-item.open .footer-tig::before {
    background: rgba(255,255,255,1);
}

.footer-cont {
    display: none;
    border: solid 1px rgba(255,255,255,0.5);
    border-top: 0;
    padding: 0 15px;
}

    .footer-cont a {
        line-height: 40px;
        color: rgba(255,255,255,0.5);
        display: block;
        font-size: 14px;
        border-bottom: dashed 1px rgba(255,255,255,0.5);
    }

        .footer-cont a:last-child {
            border: none;
        }

.footer-left {
    width: 30%;
    float: right;
}

    .footer-left img {
        display: block;
        width: 100%;
    }

.footer-right {
    width: 100%;
}

    .footer-right p {
        font-size: 14px;
        color: rgba(119,119,119,0.5);
        line-height: 26px;
    }

        .footer-right p a {
            display: inline-block;
            margin-right: 20px;
            transition: ease .5s;
        }

            .footer-right p a:hover {
                color: rgba(244, 222, 193, 1);
            }

.footer-share {
    text-align: right;
}

.footer-right .img {
    float: right;
    width: 16%;
    text-align: center;
    background: #373737;
    padding: 7px;
    padding-bottom: 5px;
}

.footer-right .imgg {
    margin-bottom: 10px;
}

    .footer-right .imgg img {
        width: 100%;
    }

.footer-right .fr2 {
    float: right;
}

.footer-share a {
    display: inline-block !important;
    float: none !important;
    background: none !important;
    font-size: 20px !important;
    height: 30px !important;
    line-height: 30px !important;
    margin: 0 7px !important;
    padding: 0 !important;
    opacity: 1 !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

.foot-lx {
    width: 50%;
}

.footer-bot .bottom2 {
    background: transparent;
    border: none;
    padding: 16px 0;
}

.footer-bot {
    border-top: 1px solid rgba(53,52,59,.3);
}

    .footer-bot .left a:last-child {
        margin-right: 0;
    }

    .footer-bot .bottom2 .left p {
        float: none;
    }

    .footer-bot .left {
        float: left;
    }

    .footer-bot .right {
        float: right;
    }

    .footer-bot .bottom2-img {
        float: right;
    }

.foot-app .bot-link {
    padding: 15px 0;
}

    .foot-app .bot-link span:first-child {
        font-size: 18px;
    }

.footer-link,
.footer-link a {
    line-height: 26px;
    font-size: 14px;
    color: rgba(244, 222, 193, .6);
}

.footer-link {
    padding-bottom: 20px;
    overflow: hidden;
}

    .footer-link a {
        display: block;
        float: left;
        margin-right: 15px;
    }

    .footer-link span {
        float: left;
    }

.footer-top .bottom-lx, .footer-top .bottom-lx ul {
    float: none;
}

.footertop-img {
    margin-top: 10px;
}

.footer-top .bottom-ewm, .footer-top .bott-share {
    text-align: left;
}
/* .footer-right .img{width: 100%;margin: 0 auto;text-align: center;float: none;} */
.footer-right .img .image {
    float: left;
    width: 25%;
}

.footer-right .con1 {
    float: none;
    width: 100%;
    text-align: center;
}

    .footer-right .con1 .bdshare-button-style2-16 .bds_sqq, .footer-right .con1 .bdshare-button-style2-16 .bds_tsina, .footer-right .con1 .bdshare-button-style2-16 .bds_weixin {
        background: none !important;
        font-size: 20px !important;
        float: none !important;
    }

.footer-bot p:nth-child(2) {
    margin-right: 0;
}

.footer-top .bottom1-ewm {
    float: none;
}

.bottomlx-txt {
}

.footer-top .bottom-ewm, .footer-top .bott-share, .footer-top .bott-share .bshare-custom {
    float: none;
    text-align: center;
}

.footer-top .bottom1-font {
    float: none;
    text-align: center;
    margin-right: 0;
    margin-top: 15px;
}

.footer-top .bottom1-phone {
    margin-top: 10px;
}

.foot-app .bottom-logo {
    margin: 30px 0;
}


.footer-top .bott-share, .footer-top .bott-share .bshare-custom {
    text-align: left;
}

.footer-top .bottom1-ewm {
    float: none;
}

/*==================================home-banner==============================*/
.home-banner {
    position: relative;
}

.pc-banner {
    position: relative;
}

.banner-slide {
    display: block;
    position: relative;
}

    .banner-slide img {
        width: 100%;
    }

.banner-font {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    z-index: 4;
    transform: translateY(-50%);
}

.banner-cont {
    filter: alpha(opacity=0);
    position: relative;
}

    .banner-cont h3 {
        font-size: 0px;
        color: #fff;
        position: relative;
    }

        .banner-cont h3 em {
            display: inline-block;
            color: #fda50b;
            font-weight: bold;
            font-size: 60px;
            line-height: 72px;
        }

        .banner-cont h3 span {
            display: inline-block;
            font-size: 60px;
            line-height: 72px;
        }

    .banner-cont h4 {
        margin-top: 17px;
        font-size: 0;
        color: #fff;
    }

        .banner-cont h4 span {
            display: inline-block;
            font-size: 36px;
            line-height: 52px;
            transform: translateY(-5px);
        }

        .banner-cont h4 d {
            display: inline-block;
            font-family: "DIN-REGULAR";
            font-size: 46px;
            line-height: 52px;
        }

.banner-span {
    font-size: 0;
    margin: 45px -21px 0;
}

    .banner-span span {
        position: relative;
        margin: 0 21px;
        display: inline-block;
        padding: 21px 26px;
        font-size: 36px;
        line-height: 46px;
        color: #fda50b;
        border-radius: 50%;
    }

        .banner-span span::before {
            position: absolute;
            content: "";
            transition: ease 2s;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: transparent url(../images/banner-bf.png)no-repeat center;
            background-size: 100% 100%;
            left: 0;
            top: 0;
        }

        .banner-span span:hover::before {
            transform: rotate(360deg);
        }

.banner-more {
    margin-top: 86px;
}

.home-banner .swiper-slide-active .banner-cont {
    opacity: 1;
    filter: alpha(opacity=100);
    transition: all .8s linear;
    transition-delay: .1s;
}

.home-banner.app {
    display: none;
}

    .home-banner.app img {
        width: 100%;
    }

.home-appbanner {
    width: 100%;
    display: none;
}

.banner-nav {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    z-index: 5;
    font-size: 0;
    padding-top: 135px;
    transform: translateY(-50%);
}

.pc-banner .swiper-pagination {
    bottom: 50px;
    width: 100%;
}

.pc-banner .swiper-pagination-bullet {
    border-radius: 0;
    width: 44px;
    height: 3px;
    background: #999;
    margin: 0 9px;
    opacity: 1;
}

.pc-banner .swiper-pagination-bullet-active {
    position: relative;
}

    .pc-banner .swiper-pagination-bullet-active::before {
        position: absolute;
        content: "";
        width: 0;
        height: 100%;
        background: #fff;
        left: 0;
        top: 0;
        -webkit-animation: width 7s infinite;
        animation: width 7s infinite;
    }


.banner-bf {
    display: inline-block;
    width: 33px;
    height: 33px;
    margin: 0 12px;
    cursor: pointer;
    background: url(../images/banner-bf.png)no-repeat center;
    background-size: 100% 100%;
}

.pc-banner .swiper-button-prev,
.pc-banner .swiper-button-next {
    margin: 0 0 10px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    color: #666;
    background: #fff;
    font-size: 22px;
    font-weight: bold;
    transition: ease .5s;
}

    .pc-banner .swiper-button-prev:hover,
    .pc-banner .swiper-button-next:hover {
        background-color: #fda50b;
        color: #fff;
    }

.banner-img {
    width: 100%;
}

.appbanner-img {
    width: 100%;
    display: none;
}

.banner-right {
    float: right;
    width: 60%;
    margin-top: 27px;
    position: relative;
    margin-right: -12.86%;
    overflow: hidden;
}

    .banner-right img {
        width: 100%;
    }

    .banner-right:hover .banner-rimg {
        transform: scale(1.02);
    }

.banner-rimg2 {
    width: 100%;
    transform: translateY(-50px);
    transition: ease .8s;
}

    .banner-rimg2 img {
        max-width: 100%;
    }

.banner-rimg1 {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    transform: translatex(-50px);
    transition: ease .8s;
}

.banner-rimg .banner-rimg1:nth-child(3) {
    transform: translatex(50px);
}

.banner-rimg {
    transition: ease 1s;
    width: 100%;
    background: url(../images/bannerimg-ba_03.png)no-repeat center;
    background-size: 100% 100%;
}

.banner-left {
    float: left;
    padding-top: 105px;
    max-width: 50%;
    padding-right: 30px;
}

.pc-banner .swiper-slide-active .banner-rimg2 {
    transform: none;
}

.pc-banner .swiper-slide-active .banner-rimg1 {
    transform: none;
}

.pc-banner .swiper-slide-active .banner-rimg .banner-rimg1:nth-child(3) {
    transform: none;
}

.home-banner .swiper-slide-active .banner-slide > img {
    visibility: visible !important;
    -webkit-animation: scaleUpDown 6s;
    animation: scaleUpDown 6s;
}

@-webkit-keyframes scaleUpDown {
    from {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes scaleUpDown {
    from {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

em.fontaw {
    font-style: normal;
    font-family: 'fontaw';
    font-size: 20px;
    position: relative;
    z-index: 3;
}


.more {
    position: relative;
    z-index: 22;
    padding: 0 18px 0 16px;
    width: 154px;
    font-size: 18px;
    height: 50px;
    overflow: hidden;
    display: block;
    text-align: left;
    color: white;
    line-height: 48px;
    transition: all .5s;
    border: 1px solid transparent;
    font-family: 'OPENSANS-REGULAR';
}

    .more::before {
        position: absolute;
        content: '';
        top: 0;
        right: -30%;
        bottom: 0;
        left: -30%;
        z-index: -1;
        background: #fda50b;
        transition: opacity 0.4s linear, -webkit-transform 0.6s cubic-bezier(0.3, 0.69, 0.39, 1.04) 0.4s;
        transition: transform 0.6s cubic-bezier(0.3, 0.69, 0.39, 1.04) 0.4s, opacity 0.4s linear;
        opacity: 1;
        transition-delay: 0s,0s;
        transform: translate(0, 0) skew(-60deg, 0deg);
    }

    .more span {
        display: block;
        position: relative;
        width: 100%;
        height: 100%;
        z-index: 5;
    }

        .more span::before {
            position: absolute;
            content: "";
            width: 19px;
            height: 16px;
            background: url(../images/more.png)no-repeat center;
            background-size: 100% 100%;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
        }

    .more:hover span::before {
        background-image: url(../images/more1.png);
    }

    .more:hover::before {
        opacity: 0;
        transform: translate(400px, 0) skew(-60deg, 0deg);
    }

    .more:hover {
        color: #fda50b;
        transition: color 0s linear;
        border: 1px solid #fda50b;
    }

/*home-banner -end*/
/* index */
.index-tit {
    font-size: 50px;
    line-height: 60px;
    color: #333;
    text-align: center;
}

.index-dec {
    margin-top: 13px;
    font-size: 18px;
    line-height: 26px;
    color: #666;
    text-align: center;
}

    .index-dec em {
        display: block;
    }
/* 产品中心，以精准造就臻品 */
.index-one {
    position: relative;
    z-index: 1;
    padding: 73px 0 80px;
}

.ino-con {
    position: relative;
    margin-top: 46px;
}

.ino-left {
    float: left;
    width: 38%;
}

.ino-right {
    float: right;
    width: 62%;
    padding-left: 20px;
}

.ino-a {
    position: relative;
    display: block;
}

.ino-img {
    overflow: hidden;
}

    .ino-img img {
        width: 100%;
        transition: ease .8s;
    }

.ino-a:hover .ino-img img {
    transform: scale(1.1);
}

.ino-txt {
    position: absolute;
    width: 100%;
    left: 0;
    padding: 34px 60px;
}

.ino-left .ino-txt {
    top: 79px;
}

.ino-riul li .ino-txt {
    text-align: center;
    bottom: 0;
}

.inori-bot .ino-txt {
    top: 50%;
    transform: translateY(-50%);
    width: 59%;
    padding-left: 105px;
}

    .inori-bot .ino-txt p {
        margin-top: 8px;
        line-height: 30px;
    }

.ino-txt h3 {
    color: #333;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

    .ino-txt h3 span {
        display: inline-block;
        width: 100%;
        font-size: 30px;
        line-height: 40px;
        font-weight: lighter;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }

    .ino-txt h3 em {
        display: inline-block;
        font-size: 36px;
        line-height: 40px;
        font-family: 'DIN-Light';
        transform: translateY(3px);
    }

.ino-txt p {
    margin-top: 4px;
    font-size: 18px;
    line-height: 28px;
    color: #888;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.ino-riul {
}

    .ino-riul ul {
        margin: 0 -10px;
    }

    .ino-riul li {
        float: left;
        width: 50.577%;
        padding: 0 10px;
    }

        .ino-riul li:nth-child(2) {
            width: 49.423%;
        }

.inori-bot {
    margin-top: 20px;
    display: none;
}

.ino-mo {
    margin-top: 30px;
}

.ino-a {
    overflow: hidden;
}

.ino-hide {
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: ease .5s;
    z-index: 2;
    background: #fda50bc2;
    top: -100%;
    left: 0;
}

    .ino-hide > div {
        position: absolute;
        width: 100%;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .ino-hide h4 {
        position: relative;
        font-size: 28px;
        line-height: 32px;
        color: #fff;
        text-transform: uppercase;
        padding: 0 20px 40px;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }

.ino-a:hover .ino-hide {
    top: 0;
}

.ino-hide h4::before {
    position: absolute;
    content: "";
    width: 19px;
    height: 16px;
    background: url(../images/more.png)no-repeat center;
    background-size: 100% 100%;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

/* 应用行业 */
.index-two {
    padding: 72px 0 78px;
}

.intw-con {
    position: relative;
    margin-top: 42px;
}

.intw-top {
}

    .intw-top ul {
        font-size: 0;
        text-align: center;
    }

    .intw-top li {
        display: inline-block;
        margin: 0 15px;
    }

        .intw-top li a {
            height: 80px;
            display: block;
            position: relative;
            padding: 20px 20px 16px;
            border-radius: 30px 0 30px 0;
            overflow: hidden;
            border: 1px solid #eee;
            transition: ease .5s;
        }

            .intw-top li a::before {
                position: absolute;
                content: "";
                width: 0;
                height: 100%;
                background: #fda50b;
                left: 50%;
                top: 0;
                transform: translateX(-50%);
                transition: ease 1s;
            }

        .intw-top li.on a::before {
            width: 200%;
        }

        .intw-top li.on a {
            border-color: transparent;
        }

.intw-icon {
    display: inline-block;
    width: 38px;
    height: 35px;
    overflow: hidden;
}

    .intw-icon img {
        width: 100%;
        transition: ease .5s;
    }

.intw-top li.on .intw-icon img {
    transform: translateY(-35px);
    max-height: 35px;
}

.intw-top li span {
    margin-left: 10px;
    transform: translateY(-10px);
    display: inline-block;
    font-size: 22px;
    line-height: 30px;
    color: #666;
    font-weight: lighter;
}

.intw-top li.on span {
    color: #fff;
}

.intw-bot {
    margin-top: 46px;
    position: relative;
    overflow: hidden;
}

.intw-font1 {
    border: 1px solid #eeeeee;
    opacity: 0;
    transition: ease .8s;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

    .intw-font1.on {
        position: relative;
        z-index: 3;
        opacity: 1;
    }

.intw-img {
    float: right;
    width: 59.07%;
    text-align: right;
    margin: -1px;
}

    .intw-img img {
        max-width: 100%;
        display: inline-block;
    }

.intw-txt {
    width: 40.93%;
    float: left;
    padding: 105px 0 30px;
    padding-left: 70px;
    padding-right: 60px;
}

    .intw-txt h3 {
        font-size: 30px;
        line-height: 40px;
        color: #333;
        font-weight: lighter;
    }

.intw-p {
    margin-top: 18px;
    max-height: 90px;
    font-size: 18px;
    line-height: 30px;
    color: #888;
    font-weight: lighter;
}

.intw-mo {
    margin-top: 64px;
}

/* 欧宇—10年专注超精密五金零配件设计与加工  */

.index-three {
    transition: ease .5s;
    text-align: center;
    padding: 78px 0 83px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

    .index-three:hover {
        transform: scale(1.05);
    }

        .index-three:hover > div {
            transform: scale(0.95);
        }

    .index-three > div {
        transition: ease .5s;
    }

.int-tit {
    color: #fff;
    line-height: 60px;
    font-size: 0;
}

    .int-tit em {
        font-size: 50px;
        font-weight: bold;
        color: #fda50b;
    }

    .int-tit span {
        font-size: 50px;
    }

    .int-tit d {
        font-size: 50px;
        font-family: "DIN-REGULAR";
    }

.int-dec {
    font-size: 0;
    margin-top: 10px;
}

    .int-dec span {
        display: inline-block;
        margin: 0 20px;
        position: relative;
        font-size: 26px;
        line-height: 30px;
        color: #fff;
    }

        .int-dec span.int-pzh {
            padding-left: 40px;
        }

            .int-dec span.int-pzh::before {
                position: absolute;
                content: "";
                width: 29px;
                height: 25px;
                background: url(../images/int-span1.png)no-repeat center;
                background-size: 100% 100%;
                left: 0;
                top: 50%;
                transform: translateY(-50%);
            }

        .int-dec span.int-jqk {
            padding-left: 36px;
        }

            .int-dec span.int-jqk::before {
                position: absolute;
                content: "";
                width: 25px;
                height: 25px;
                background: url(../images/int-span2.png)no-repeat center;
                background-size: 100% 100%;
                left: 0;
                top: 50%;
                transform: translateY(-50%);
            }

        .int-dec span.int-srg {
            padding-left: 36px;
        }

            .int-dec span.int-srg::before {
                position: absolute;
                content: "";
                width: 25px;
                height: 25px;
                background: url(../images/int-span3.png)no-repeat center;
                background-size: 100% 100%;
                left: 0;
                top: 50%;
                transform: translateY(-50%);
            }

        .int-dec span.int-scb {
            padding-left: 34px;
        }

            .int-dec span.int-scb::before {
                position: absolute;
                content: "";
                width: 24px;
                height: 24px;
                background: url(../images/int-span4.png)no-repeat center;
                background-size: 100% 100%;
                left: 0;
                top: 50%;
                transform: translateY(-50%);
            }

.int-mo {
    font-size: 16px;
    margin: 49px auto 0;
}

.int-dec span::before {
    transition: ease .5s;
}

.int-dec span:hover::before {
    transform: rotatey(180deg) translateY(-50%);
}
/* 生产设备齐全，全面保障产品质量 */
.index-four {
    padding: 72px 0 79px;
}

.infou-con {
    margin-top: 51px;
}

.infou-ul {
}

    .infou-ul li {
        margin-top: 24px;
    }

        .infou-ul li:first-child {
            margin-top: 0;
        }

        .infou-ul li > div {
            position: relative;
        }

.infou-img {
    float: left;
    width: 44.75%;
}

    .infou-img img {
        width: 100%;
    }

.infou-txt {
    float: right;
    width: 55.25%;
    padding-left: 145px;
    padding-top: 29px;
}

.infou-font {
}

    .infou-font h3 {
        display: inline-block;
        transition: ease .5s;
        font-size: 90px;
        line-height: 90px;
        color: #333;
        font-family: "DIN-REGULAR";
        position: relative;
    }

        .infou-font h3::before {
            position: absolute;
            content: "";
            width: 50px;
            height: 1px;
            background: #666;
            right: -7px;
            bottom: 15px;
            transform: rotate(-30deg);
        }

    .infou-font h4 {
        margin-top: 27px;
        font-size: 0px;
        color: #333;
        line-height: 40px;
    }

        .infou-font h4 em {
            font-family: "DIN-REGULAR";
            font-size: 30px;
        }

        .infou-font h4 span {
            font-size: 30px;
            font-weight: lighter;
        }

.infou-p {
    margin-top: 12px;
    font-size: 18px;
    line-height: 26px;
    color: #666;
    padding-left: 16px;
}

    .infou-p p {
        position: relative;
        padding-bottom: 26px;
    }

        .infou-p p:last-child {
            padding-bottom: 0;
        }

        .infou-p p::before {
            position: absolute;
            content: "";
            width: 9px;
            height: 9px;
            background: url(../images/infou-bf.png)no-repeat center;
            background-size: 100% 100%;
            left: -16px;
            top: 8px;
        }

.infou-ul li:nth-child(even) .infou-txt {
    float: left;
    padding-left: 95px;
    padding-right: 80px;
}

.infou-ul li:nth-child(even) .infou-img {
    float: right;
}

.infou-ul li:nth-child(even) .infou-mf {
    left: 55.25%;
}

.infou-ul li:hover .infou-font h3 {
    color: #fda50b;
}

.infou-mf {
    margin-top: 25px;
    transform: translate(-50%, -50%);
    position: absolute;
    left: 44.75%;
    top: 50%;
}

.infou-mfcon {
    position: relative;
}

.infou-bk {
    top: 0;
    position: absolute;
    -webkit-transform: translateZ(50px);
    -webkit-transition: all .6s;
}

.infou-mid {
    display: block;
    font-size: 50px;
    line-height: 60px;
    padding: 50px 0;
    color: #fff;
    width: 162px;
    height: 162px;
    background: #fda50b;
    text-align: center;
}

.infou-mfcon {
    position: relative;
    -webkit-transform-style: preserve-3d;
    -webkit-transition: -webkit-transform .6s;
}

.infou-hd {
    /* position: absolute; */
    -webkit-transform: rotateX(-90deg) translateZ(50px);
    -webkit-transition: all .6s;
    display: block;
    top: 0;
    font-size: 50px;
    line-height: 60px;
    padding: 50px 0;
    color: #fff;
    width: 162px;
    height: 162px;
    background: #fda50b;
    text-align: center;
}

.infou-ul li:hover .infou-mfcon {
    -webkit-transform: rotateX(95deg);
}

.infou-ul li:hover .infou-bk {
}

.infou-ul li:hover .infou-hd {
}

.infou-img {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: perspective(100rem);
    transform: perspective(100rem);
    cursor: pointer;
}

.skew {
    --rX: 0;
    --rY: 0;
    --bX: 50%;
    --bY: 80%;
    position: relative;
    -webkit-transform: rotateX(calc(var(--rX) * 1deg)) rotateY(calc(var(--rY) * 1deg));
    transform: rotateX(calc(var(--rX) * 1deg)) rotateY(calc(var(--rY) * 1deg));
    transition: -webkit-transform .6s 1s;
    transition: transform .6s 1s;
    transition: transform .6s 1s, -webkit-transform .6s 1s;
}

.skew--active {
    transition: none;
}



.infou-img:hover .skew::before,
.infou-img:hover .skew::after {
    width: calc(100% - 4rem);
    height: calc(100% - 4rem);
}
/* 走进欧宇 */
.indfiv, .indfiv > div {
    height: 764px !important;
}

.index-five {
    padding: 73px 0 128px;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

    .index-five .index-dec, .index-five .index-tit {
        color: #fff;
    }

.infiv-con {
    margin-top: 46px;
}

.infiv-le {
    float: left;
    width: 50%;
}

    .infiv-le h4 {
        font-size: 26px;
        line-height: 30px;
        color: #fff;
    }

.infiv-p {
    margin-top: 27px;
    font-size: 16px;
    line-height: 30px;
    color: #fff;
}

.infiv-line {
    margin-top: 37px;
    width: 38px;
    height: 4px;
    background: #fff;
}

.infiv-ul {
    margin-top: 75px;
}

    .infiv-ul ul {
    }

    .infiv-ul li {
        float: left;
        width: 25%;
    }

        .infiv-ul li h3 {
            height: 49px;
        }

            .infiv-ul li h3 span {
                font-family: "DINMITTELSCHRIFTSTD";
                font-size: 26px;
                color: #fff;
            }

                .infiv-ul li h3 span:first-child {
                    font-size: 50px;
                    line-height: 49px;
                    display: inline-block;
                }

            .infiv-ul li h3 em {
                font-size: 20px;
                color: #fff;
            }

        .infiv-ul li p {
            font-size: 16px;
            line-height: 26px;
            color: #fff;
        }

.infiv-ri {
    float: right;
    width: 50%;
    padding-left: 128px;
}

.infiv-riu {
    border: 1px solid rgba(255,255,255,.5);
    position: relative;
}

    .infiv-riu::before {
        position: absolute;
        content: "";
        width: 1px;
        height: 100%;
        background: rgba(255,255,255,.5);
        left: 50%;
        top: 0;
        transform: translateX(-50%);
    }

    .infiv-riu::after {
        position: absolute;
        content: "";
        height: 1px;
        width: 100%;
        background: rgba(255,255,255,.5);
        top: 50%;
        left: 0;
        transform: translateY(-50%);
    }

.infiv-riul {
}

    .infiv-riul li {
        float: left;
        width: 50%;
        overflow: hidden;
    }

        .infiv-riul li a {
            display: table;
            position: relative;
            height: 208px;
            width: 100%;
        }

.infiv-bk {
    text-align: center;
    padding: 0 15px;
    display: table-cell;
    vertical-align: middle;
}

.infiv-icon {
    font-size: 0;
}

    .infiv-icon img {
        display: inline-block;
        max-width: 100%;
    }

.infiv-txt {
    margin-top: 15px;
}

    .infiv-txt h3 {
        font-size: 22px;
        line-height: 26px;
        color: #fff;
    }

.infiv-hd {
    background: #fda50b;
    padding: 0 15px;
    position: absolute;
    transition: ease .8s;
    opacity: 0;
    width: 100%;
    height: 100%;
    display: table;
}

.infiv-riul li:nth-child(1) .infiv-hd {
    top: -100%;
    left: 0;
}

.infiv-riul li:nth-child(1):hover .infiv-hd {
    top: 0;
}

.infiv-riul li:nth-child(2) .infiv-hd {
    top: -100%;
    left: 0;
}

.infiv-riul li:nth-child(2):hover .infiv-hd {
    top: 0;
}

.infiv-riul li:nth-child(3) .infiv-hd {
    top: 0;
    left: -100%;
}

.infiv-riul li:nth-child(3):hover .infiv-hd {
    left: 0;
}

.infiv-riul li:nth-child(4) .infiv-hd {
    right: -100%;
    top: 0;
}

.infiv-riul li:nth-child(4):hover .infiv-hd {
    right: 0;
}

.infiv-riul li:hover .infiv-hd {
    opacity: 1;
}

.infiv-font {
    text-align: center;
    display: table-cell;
    vertical-align: middle;
}

    .infiv-font h3 {
        font-size: 22px;
        line-height: 26px;
        color: #fff;
    }

    .infiv-font p {
        margin-top: 10px;
        font-size: 16px;
        line-height: 26px;
        color: #fff;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }

    .infiv-font span {
        margin-top: 24px;
        display: block;
        font-size: 0;
    }

        .infiv-font span img {
            max-width: 100%;
            display: inline-block;
        }


/* 新闻资讯 */
.index-six {
    padding: 71px 0 82px;
}

.insix-con {
    margin-top: 45px;
}

.insix-left {
    float: left;
    width: 48.57%;
}

.insix-a {
    display: block;
    position: relative;
}

.insix-img {
    overflow: hidden;
    float: left;
    width: 222px;
}

    .insix-img img {
        transition: ease .8s;
        max-width: 100%;
    }

.insix-a:hover .insix-img img {
    transform: scale(1.1);
}

.insix-txt {
    margin-left: 222px;
    padding-left: 20px;
}

.insix-tit {
    position: relative;
}

.insix-txt h3 {
    font-size: 22px;
    line-height: 26px;
    color: #333;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    transition: ease .5s;
}

.insix-txt span {
    margin-top: 16px;
    display: block;
    font-size: 16px;
    line-height: 26px;
    color: #666;
    font-family: "DIN-REGULAR";
}

.insix-txt p {
    margin-top: 12px;
    font-size: 16px;
    line-height: 26px;
    color: #666;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.insix-right {
    float: right;
    width: 51.43%;
    padding-left: 43px;
}

.insix-ul {
}

    .insix-ul li:first-child {
        margin-top: 0;
    }

    .insix-ul li {
        margin-top: 20px;
    }

.insix-left .insix-txt {
    margin: 0;
    padding: 25px 30px 23px;
    padding-left: 22px;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0,0,0,.6);
}

    .insix-left .insix-txt h3, .insix-left .insix-txt span, .insix-left .insix-txt p {
        color: #fff;
    }

    .insix-left .insix-txt p {
        margin-top: 9px;
        -webkit-line-clamp: 1;
    }

    .insix-left .insix-txt span {
        margin: 0;
        display: inline-block;
        width: 81px;
        position: absolute;
        right: 0;
        top: 1px;
    }

    .insix-left .insix-txt h3 {
        padding-right: 90px;
    }

.insix-left .insix-img {
    float: none;
    width: 100%;
}

.insix-ul li:hover .insix-txt h3 {
    color: #fda50b;
}

/* 底部表单 */
.footer-contact {
    background: #222;
    padding: 30px 0;
}

    .footer-contact span {
        display: inline-block;
        font-size: 22px;
        line-height: 26px;
        color: #fda50b;
        font-weight: normal;
        margin-right: 30px;
    }

    .footer-contact input {
        display: inline-block;
        background: #fff;
        font-size: 16px;
        line-height: 26px;
        color: #888;
        padding: 12px 15px;
        width: 15.71%;
        margin-right: 20px;
    }

        .footer-contact input:nth-child(3) {
            width: 15%;
        }

        .footer-contact input.lastin {
            min-width: 40%;
            margin-right: 0;
        }

    .footer-contact button {
        font-size: 15px;
        line-height: 26px;
        color: #fff;
        background: #fda50b;
        padding: 12px 0;
        cursor: pointer;
        float: right;
        width: 11.43%;
    }




/*客服*/
/*  */
/* ===kf==== */

/*  */
.kf {
    transition: .8s;
    z-index: 999999;
    background-color: transparent;
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 62px;
    border-radius: 5px;
}

    .kf span {
        z-index: 1000001;
        transition: .5s;
        cursor: pointer;
        position: relative;
        display: block;
        width: 70px;
        height: 70px;
        border-radius: 5px;
        margin-bottom: 10px;
        background: #b5b5b5;
    }

    .kf .zx {
        background-position: 0 0;
        background: #b5b5b5 url(../images/kefu-zx.png)no-repeat center top 12px;
    }

    .kf .back_top {
        border: none;
        background: #b5b5b5 url(../images/kefu-top.png)no-repeat center top 18px;
    }

    .kf span a {
        transition: .5s;
        display: block;
        color: #fff;
        line-height: 24px;
        font-size: 14px;
        text-align: center;
        padding-top: 40px;
    }

.kfimgr {
    position: absolute;
    bottom: 23px;
    right: -9px;
}

.kf span div i {
    display: block;
    position: absolute;
    width: 15px;
    height: 200px;
    right: -15px;
    top: 0;
}

.kf .freetel {
    background: #b5b5b5 url(../images/kefu-qq.png)no-repeat center top 12px;
}

.kf .inlinebj {
    background: #b5b5b5 url(../images/kf-yx.png)no-repeat center top 12px;
}

.kf .zxlya {
    background: #b5b5b5 url(../images/kefu-ewm.png)no-repeat center;
}

.kf span:nth-child(4) div {
    white-space: nowrap;
}

.kf a {
    display: block;
    height: 68px;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%
}

.nav_center div, .index_nav_center div, .shou, .zhan {
    -webkit-box-shadow: 0 2px 18px rgba(0, 0, 0, 0.25);
    box-shadow: 0 2px 18px rgba(0, 0, 0, 0.25);
}

.kf .zxlya .erweima {
    display: none;
    right: 86px;
    position: absolute;
    top: -45px;
    background: #fff;
    padding: 10px;
    text-align: center;
    box-shadow: 0 2px 13px rgba(0, 0, 0, 0.25);
    border-radius: 5px;
    width: 150px;
}

.kf .zxzx {
    display: none;
    right: 86px;
    position: absolute;
    top: 6px;
    background: #fff;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 13px rgba(0, 0, 0, 0.25);
    border-radius: 5px;
    width: 150px;
    font-size: 14px;
    color: #333;
}

.kfimgr {
    position: absolute;
    bottom: 23px;
    right: -9px;
}
/* .shou{    z-index: 1000000;cursor: pointer;   width: 70px;   height: 70px; top: 104%;  margin-top: -15px; border-radius: 5px 0 0 5px;  right: -9px; background:#b5b5b5; border-radius: 5px;cursor: pointer; position: absolute;font-size: 14px;line-height: 24px;color: #fff;transition: ease .5s;text-align: center;padding: 22px 0;} */
.shou {
    z-index: 1000000;
    cursor: pointer;
    width: 30px;
    height: 40px;
    top: 47%;
    margin-top: -15px;
    border-radius: 5px 0 0 5px;
    right: 62px;
    background: transparent url(../images/zk1.png)no-repeat center left;
    position: absolute;
    box-shadow: none;
}

    .shou:hover {
        background-image: url(../images/zk.png);
    }

.kffixed {
    position: fixed;
    display: none;
    bottom: 0;
    z-index: 20;
    width: 100%;
    height: 49px;
    overflow: hidden;
}

.kufuul {
    text-align: center;
    padding: 2px 0;
    width: 100%;
    height: 49px;
    position: absolute;
    bottom: 0;
    left: 0;
    display: inline-block;
}

.kefu {
    padding: 0;
}

    .kefu li {
        float: left;
        height: 45px;
        text-align: center;
        color: #fff;
        line-height: 45px;
        color: #fff;
        transition: all .4s;
    }

.kfzx-tigg {
    width: 49.5%;
    height: 45px;
    display: block;
    float: left;
    line-height: 45px;
    opacity: 1;
    transition: 1s opacity;
}

.kfzx-enter {
    opacity: 0
}

.kf-zx {
    display: block;
    width: 100%;
    height: 100%;
    color: #fff;
    line-height: 45px;
    text-align: center;
    background: #b5b5b5;
}

    .kf-zx img {
        display: inline-block;
        vertical-align: middle;
        margin-right: 10px;
    }

.teldb {
    width: 49.5%;
    background: rgba(0,0,0,0.6);
    background-size: contain;
    margin: 0 1px;
    position: relative;
}

    .teldb img {
        display: inline-block;
        vertical-align: middle;
        margin-right: 10px;
    }

    .teldb a {
        color: white;
    }

.kf span:hover {
    background-color: #fda50b;
}

@media (max-width:991px) {
    .kf {
        display: none;
    }

    .kffixed {
        display: block;
    }
}
/* app-kf */
.kffixed {
    position: fixed;
    bottom: 0;
    z-index: 2000;
    width: 100%;
    height: 49px;
    overflow: hidden;
    display: none;
}

.kufuul {
    text-align: center;
    padding: 2px 0;
    width: 100%;
    height: 49px;
    position: absolute;
    bottom: 0;
    left: 0;
    display: inline-block;
}

.kefu {
    padding: 0;
}

    .kefu li {
        float: left;
        height: 45px;
        text-align: center;
        color: #fff;
        line-height: 45px;
        color: #fff;
        transition: all .4s;
    }

.kfzx-tigg {
    width: 49.5%;
    height: 45px;
    display: block;
    float: left;
    line-height: 45px;
    opacity: 1;
    transition: 1s opacity;
}

.kfzx-enter {
    opacity: 0
}

.kf-zx {
    display: block;
    width: 100%;
    height: 100%;
    color: #fff;
    line-height: 45px;
    text-align: center;
    background: rgb(253,165,11,.9);
}

    .kf-zx img {
        display: inline-block;
        vertical-align: middle;
        margin-right: 10px;
    }

.teldb {
    width: 49.5%;
    background: rgba(0,0,0,0.6);
    background-size: contain;
    margin: 0 1px;
    position: relative;
}

    .teldb img {
        display: inline-block;
        vertical-align: middle;
        margin-right: 10px;
    }

    .teldb a {
        color: white;
    }

@media(max-width:1919px) {
    .index-tit, .int-tit span, .int-tit em {
        font-size: 46px;
    }

    .navitem > a {
        padding: 19px 20px 20px;
    }

    .banner-right {
        margin-right: 0;
        width: 50%;
    }

    .banner-left {
        padding-top: 50px;
    }

    .infou-font h3 {
        font-size: 80px;
        line-height: 80px;
    }

    .infou-mid {
        font-size: 42px;
    }
}

@media(max-width:1459px) {
    .index-tit, .int-tit span, .int-tit em {
        font-size: 40px;
    }

    .index-dec {
        margin-top: 5px;
    }

    .int-tit d {
        font-size: 46px;
    }

    .header .logo img {
        width: 142px;
        height: 31px;
    }

    .header .logo {
        padding: 16px 0;
    }

    .navitem > a {
        padding: 19px 16px 20px;
        font-size: 16px;
    }

    .banner-cont h3 span, .banner-cont h3 em {
        font-size: 50px;
        line-height: 60px;
    }

    .banner-cont h4 span {
        font-size: 32px;
        line-height: 50px;
    }

    .banner-cont h4 d {
        font-size: 42px;
        line-height: 50px;
    }
.banner-cont h1{font-size:30px !important;line-height: 40px !important;}
 .banner-cont h1 span{font-size:40px !important;}
  .banner-cont h1 d span{font-size:28px !important;}
 
    .banner-more {
        margin-top: 65px;
    }

    .banner-span span {
        font-size: 30px;
        line-height: 40px;
    }

    .banner-span {
        margin-top: 0;
    }

    .ino-txt h3 span {
        font-size: 26px;
    }

    .ino-txt p {
        font-size: 16px;
    }

    .ino-txt {
        padding: 25px 42px;
    }

    .inori-bot .ino-txt {
        padding-left: 60px;
    }

    .ino-left .ino-txt {
        top: 60px;
    }

    .intw-top li span {
        font-size: 20px;
    }

    .intw-top li a {
        padding: 12px 15px 8px;
        height: 65px;
    }

    .intw-txt {
        padding: 80px 60px 30px;
    }

    .infou-font h3 {
        font-size: 70px;
        line-height: 70px;
    }

    .infou-font h4 span {
        font-size: 28px;
    }

    .infou-font h4 {
        margin-top: 20px;
        line-height: 35px;
    }

    .infou-p p {
        padding-bottom: 10px;
    }

    .infou-p {
        font-size: 16px;
        max-height: 98px;
    }

    .infou-ul li:nth-child(even) .infou-txt {
        padding-left: 70px;
    }

    .infou-mid {
        margin-top: 0;
        font-size: 34px;
        line-height: 40px;
        width: 132px;
        height: 132px;
        padding: 46px 0;
    }

    .infou-txt {
        padding-left: 128px;
    }

    .infiv-ul li h3 span:first-child {
        font-size: 42px;
    }

    .infiv-ul li h3 em {
        font-size: 20px;
    }

    .infiv-le h4 {
        font-size: 24px;
    }

    .infiv-txt h3, .infiv-font h3 {
        font-size: 20px;
    }

    .infiv-font span {
        margin-top: 15px;
    }

    .infiv-font p {
        -webkit-line-clamp: 3;
    }

    .insix-txt h3 {
        font-size: 20px;
    }

    .footer-contact input.lastin {
        min-width: 38%;
    }

    .bottom1 .box1 ul, .bottom1 .box1 ul:nth-child(4), .bottom1 .box1 ul:nth-child(3), .bottom1 .box1 ul:nth-child(2), .bottom1 .box1 ul:nth-child(1) {
        margin-right: 56px;
    }

    .footer-contact input {
        margin-right: 15px;
    }

    .insix-img {
        width: 187px;
    }

    .insix-txt {
        margin-left: 187px;
    }

        .insix-txt p {
            -webkit-line-clamp: 1;
        }

    .intw-p {
        font-size: 16px;
        max-height: 150px;
    }

    .intw-mo {
        margin-top: 40px;
    }

    .ino-hide h4 {
        font-size: 24px;
    }
}

@media(max-width:1259px) {

    .header, .footer {
        display: none !important;
    }

    .foot-app, .header-app {
        display: block !important;
    }

    body {
        padding-top: 60px;
    }

    .index-tit {
        font-size: 30px;
        line-height: 40px;
    }

    .int-txt {
        padding: 10px 22px;
    }

    /* .pc-banner .swiper-button-prev, 
	.pc-banner .swiper-button-next{width: 26px;height: 46px;} */
    .banner-cont h3 span, .banner-cont h3 em {
        font-size: 38px;
        line-height: 40px;
    }

    .banner-cont h4 span {
        font-size: 24px;
        line-height: 30px;
        transform: translateY(-4px);
    }

    .banner-cont h4 d {
        font-size: 34px;
        line-height: 30px;
    }
.banner-cont h1{font-size:30px !important;line-height: 40px !important;}
 .banner-cont h1 span{font-size:40px !important;}
  .banner-cont h1 d span{font-size:28px !important;}
 
    .banner-span span {
        font-size: 24px;
        line-height: 30px;
        margin: 0 12px;
    }

    .banner-span {
        margin: 0px -12px 0;
    }

    .banner-more {
        margin-top: 30px;
    }

    .banner-left {
        padding-top: 16px;
    }

    .ino-txt {
        padding: 12px 34px;
    }

        .ino-txt h3 span {
            font-size: 22px;
        }

    .ino-left .ino-txt {
        top: 40px;
    }

    .inori-bot .ino-txt {
        padding-left: 40px;
    }

    .infou-font h4 span {
        font-size: 24px;
        line-height: 30px;
    }

    .infou-font h4 em {
        font-size: 26px;
    }

    .intw-top li span {
        font-size: 18px;
    }

    .intw-icon {
        width: 34px;
        height: 31px;
    }

    .intw-top li.on .intw-icon img {
        transform: translateY(-31px);
        max-height: 30px;
    }

    .intw-mo {
        margin-top: 30px;
    }

    .intw-p {
        font-size: 16px;
        max-height: 120px;
    }

    .intw-txt h3 {
        font-size: 24px;
    }

    .intw-txt {
        padding: 36px 32px 20px;
    }

    .index-tit, .int-tit span, .int-tit em {
        font-size: 30px;
    }

    .int-tit d {
        font-size: 40px;
    }

    .int-dec span {
        font-size: 21px;
    }

    .infou-font h3 {
        font-size: 48px;
        line-height: 48px;
    }

        .infou-font h3::before {
            width: 36px;
            bottom: 10px;
        }

    .infou-font h4 {
        margin-top: 12px;
        height: 30px;
    }

    .infou-mid {
        width: 100px;
        height: 100px;
        font-size: 24px;
        line-height: 32px;
        padding: 34px 0;
    }

    .infou-txt {
        padding-left: 90px;
    }

    .infou-ul li:nth-child(even) .infou-txt {
        padding-left: 20px;
    }

    .infiv-ri {
        padding-left: 32px;
    }

    .infiv-le h4 {
        font-size: 22px;
    }

    .infiv-ul li h3 span:first-child {
        font-size: 36px;
        line-height: 40px;
    }

    .infiv-ul li h3 em, .infiv-ul li h3 span {
        font-size: 20px;
    }

    .infiv-ul li h3 em {
        font-size: 18px;
    }

    .infiv-ul li h3 {
        height: 40px;
    }

    .infiv-ul li {
        width: 50%;
        padding: 0 15px;
        margin-top: 20px;
    }

    .infiv-ul ul {
        margin: -20px -15px 0;
    }

    .infiv-line {
        margin-top: 25px;
    }

    .infiv-ul {
        margin-top: 40px;
    }

    .index-five {
        padding-bottom: 80px;
    }

    .insix-img {
        width: 142px;
    }

    .insix-txt {
        margin-left: 142px;
    }

        .insix-txt h3 {
            font-size: 18px;
        }

        .insix-txt p, .insix-left .insix-txt p {
            margin-top: 5px;
        }

        .insix-txt span {
            margin-top: 5px;
        }

    .insix-left .insix-txt {
        padding: 15px 24px;
    }

    .insix-right {
        padding-left: 30px;
    }

    .footer-contact input {
        margin-right: 6px;
    }

    .footer-contact span {
        margin-right: 20px;
        font-size: 20px;
    }

    .ino-hide h4 {
        font-size: 20px;
        padding: 0 15px 30px;
    }

        .ino-hide h4::before {
            width: 20px;
            height: 20px;
        }
}

@media(max-width:991px) {
    .kffixed {
        display: block;
    }

    .more {
        width: 120px;
        height: 42px;
        line-height: 42px;
        font-size: 16px;
    }

    .banner-cont h3 {
    }

    .banner-cont h4 span {
        font-size: 19px;
        transform: translateY(-1px);
    }

    .banner-cont h4 d {
        font-size: 24px;
    }

    .index-tit, .index-tit, .int-tit span, .int-tit em {
        font-size: 26px;
        line-height: 30px;
    }

    .int-tit d {
        font-size: 32px;
    }

    .index-dec {
        font-size: 16px;
    }

    .footer-bot {
        padding-bottom: 40px;
    }

    .footer-contact span {
        display: block;
        margin-bottom: 15px;
    }

    .footer-contact input:nth-child(2), .footer-contact input:nth-child(3) {
        width: 48.88%;
        margin-bottom: 15px;
    }

    .footer-contact button {
        width: 18%;
    }

    .footer-contact input.lastin {
        min-width: 80%;
    }

    .bot-link span {
        font-size: 14px;
    }

    .banner-cont h3 span, .banner-cont h3 em {
        font-size: 28px;
    }

    .banner-cont h4 {
        margin-top: 12px;
    }
.banner-cont h1{font-size:20px !important;margin-bottom: 0 !important;line-height: 30px !important;}
 .banner-cont h1 span{font-size: 30px !important;}
  .banner-cont h1 d span{font-size:20px !important;}
 
    .banner-span span {
        font-size: 22px;
        line-height: 30px;
        margin: 0 10px;
        padding: 16px 20px;
    }

    .banner-span {
        margin: 0px -10px 0;
    }

    .banner-more {
        margin-top: 20px;
    }

    .banner-left {
        padding-top: 15px;
    }

    .pc-banner .swiper-pagination {
        bottom: 30px;
    }

    .ino-txt h3 span {
        font-size: 20px;
        line-height: 30px;
    }

    .ino-txt h3 {
        height: 30px;
    }

    .ino-left .ino-txt {
        top: 20px;
    }

    .ino-txt {
        padding: 12px 30px;
    }

    .ino-mo {
        margin-top: 20px;
    }

    .inori-bot .ino-txt {
        padding-left: 30px;
    }

        .inori-bot .ino-txt p {
            margin-top: 3px;
        }

    .intw-icon {
        width: 30px;
        height: 28px;
    }

    .intw-top li.on .intw-icon img {
        transform: translateY(-28px);
    }

    .intw-top li span {
        font-size: 16px;
    }

    .intw-top li {
        margin: 0 10px;
    }

        .intw-top li a {
            padding: 12px 21px 0px;
            height: 51px;
        }

    .intw-img {
        float: none;
        width: 100%;
        margin: 0;
    }

    .intw-txt {
        margin-right: 0;
        padding: 30px;
        float: none;
        width: 100%;
    }

    .intw-p {
        margin-top: 6px;
        max-height: none;
        height: auto;
    }

    .int-tit {
        line-height: 40px;
    }

    .int-dec {
        margin-top: 20px;
    }

        .int-dec span {
            font-size: 18px;
        }

    .int-mo {
        margin-top: 36px;
    }

    .index-three {
        padding: 65px 0;
    }

    .infou-font h3 {
        font-size: 38px;
        line-height: 38px;
    }

    .infou-font h4 span {
        font-size: 20px;
    }

    .infou-font h4 em {
        font-size: 24px;
    }

    .infou-font h4 {
        margin-top: 6px;
    }

    .infou-mid {
        width: 80px;
        height: 80px;
        font-size: 22px;
        padding: 24px 0;
    }

    .infou-txt {
        padding-left: 65px;
        padding-top: 0;
    }

    .infou-ul li:nth-child(even) .infou-txt {
        padding-right: 65px;
    }

    .infou-ul li {
        margin-top: 36px;
    }

    .infiv-p {
        margin-top: 16px;
    }

    .infiv-ul li h3 span:first-child {
        font-size: 30px;
    }

    .infiv-ul li h3 em, .infiv-ul li h3 span {
        font-size: 18px;
    }

    .infiv-ul {
        margin-top: 28px;
    }

    .insix-left {
        float: none;
        width: 100%;
    }

    .insix-img img {
        width: 100%;
    }

    .insix-right {
        padding: 30px 0 0;
        float: none;
        width: 100%;
    }

    .ino-con, .intw-con, .infou-con, .infiv-con, .insix-con {
        margin-top: 25px;
    }

    .intw-txt h3 {
        font-size: 22px;
    }

    .intw-bot {
        margin-top: 30px;
    }

    .infou-ul li:hover .infou-mfcon {
        transform: none;
    }

    .infou-mf {
        margin-top: 0;
    }

    .pc-banner .swiper-button-prev,
    .pc-banner .swiper-button-next {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 19px;
    }
}

@media(max-width:767px) {
    .bsBox {
        width: 163px !important;
        height: 186px !important;
        margin-left: -82px !important;
    }

    .bsTop {
        width: 151px !important;
    }

    .bsFrameDiv > div {
        width: 140px !important;
        height: 150px !important;
    }

    .bsFrameDiv img {
        width: 130px !important;
        height: 130px !important;
        margin: 10px !important;
    }

    .index-tit, .index-tit, .index-tit, .int-tit span, .int-tit em {
        font-size: 23px;
        line-height: 30px;
    }

    .index-dec {
        font-size: 16px;
        line-height: 30px;
    }

    .footer-contact input:nth-child(2), .footer-contact input:nth-child(3) {
        width: 100%;
        margin-right: 0;
    }

    .index-one, .index-two, .index-four, .index-three, .index-five, .index-six {
        padding: 40px 0;
    }

    .ino-txt h3 span {
        font-size: 16px;
    }

    .ino-txt p, .inori-bot .ino-txt p {
        font-size: 14px;
        line-height: 24px;
    }

    .ino-txt {
        padding: 12px 12px 7px;
    }

    .ino-mo {
        margin-top: 10px;
    }

    .ino-left .ino-txt {
        top: 10px;
    }

    .inori-bot .ino-txt {
        padding-left: 16px;
    }

    .intw-top li {
        margin-top: 15px;
    }

    .intw-top ul {
        margin-top: -15px;
    }

    .intw-txt h3 {
        font-size: 20px;
    }

    .intw-txt {
        padding: 25px 20px;
    }

    .int-tit d {
        font-size: 28px;
    }

    .int-dec {
        margin-top: 12px;
    }

    .banner-cont h4 span {
        font-size: 15px;
    }

    .banner-cont h4 d {
        font-size: 20px;
    }

    .banner-cont h3 span, .banner-cont h3 em {
        font-size: 23px;
        line-height: 30px;
    }

    .banner-span span {
        font-size: 18px;
        line-height: 30px;
        margin: 0 5px;
        padding: 9px 15px;
    }

    .banner-span {
        margin: 0px -5px 0;
    }
.banner-cont h1{font-size:20px !important;margin-bottom: 0 !important;line-height: 30px !important;border: none!important;}
 .banner-cont h1 span{font-size: 26px !important;}
  .banner-cont h1 d span{font-size: 18px !important;}
 .banner-more{margin-top: 10px;}

    .infiv-le {
        float: none;
        width: 100%;
    }

    .infiv-ri {
        float: none;
        width: 100%;
        padding: 0;
        margin-top: 30px;
    }

    .infiv-ul li {
        width: 25%;
    }

    .infiv-le h4 {
        font-size: 18px;
    }

    .infiv-p, .infiv-ul li p {
        font-size: 14px;
        line-height: 24px;
    }

    .infiv-line {
        margin-top: 15px;
        width: 30px;
        height: 2px;
    }

    .infiv-icon {
        width: 45px;
        margin: 0 auto;
    }

    .infou-mid {
        font-size: 20px;
    }

    .infou-font h3 {
        font-size: 32px;
        line-height: 32px;
    }

        .infou-font h3::before {
            width: 30px;
        }

    .infou-font h4 span {
        font-size: 18px;
    }

    .infou-font h4 em {
        font-size: 22px;
    }

    .infou-p {
        font-size: 14px;
        line-height: 24px;
        max-height: 84px;
    }

        .infou-p p {
            padding-bottom: 5px;
        }

    .infiv-ul li h3 span:first-child {
        font-size: 24px;
    }

    .infiv-ul li h3 {
        height: 38px;
    }

        .infiv-ul li h3 em, .infiv-ul li h3 span {
            font-size: 16px;
        }

    .infiv-txt h3, .infiv-font h3 {
        font-size: 18px;
    }

    .infiv-riul li a {
        height: 180px;
    }

    .insix-txt h3 {
        font-size: 16px;
    }

    .insix-txt p, .insix-txt span {
        font-size: 14px;
        line-height: 24px;
    }

    .footer-contact span {
        font-size: 18px;
    }

    .footer-contact input {
        font-size: 15px;
    }

    .intw-p {
        font-size: 14px;
        line-height: 24px;
    }

    .intw-txt h3 {
        font-size: 16px;
        line-height: 30px;
    }

    .intw-mo {
        margin-top: 20px;
    }

    .int-tit {
        line-height: 30px;
    }

    .int-dec span {
        margin: 0 10px;
        margin-top: 10px;
        font-size: 16px;
    }

    .int-dec {
        margin-top: 0;
    }

    .int-mo {
        margin-top: 25px;
    }

    .pc-banner .swiper-button-prev,
    .pc-banner .swiper-button-next {
        display: none;
    }

    .ino-hide h4 {
        font-size: 18px;
    }
}

@media(max-width:640px) {
    .banner-slide img.home-appbanner {
        display: block;
    }

    .banner-slide img.home-pcbanner {
        display: none;
    }

    .infou-img, .infou-ul li:nth-child(even) .infou-img {
        float: none;
        width: 100%;
    }

    .ino-left {
        float: none;
        width: 100%;
    }

        .ino-left .ino-txt {
            top: 40px;
        }

    .ino-right {
        float: none;
        width: 100%;
        padding: 0;
        margin-top: 15px;
    }

    .ino-riul li {
        padding: 0 5px;
    }

    .ino-riul ul {
        margin: 0 -5px;
    }

    .inori-bot {
        margin: 15px 0 0;
    }

    .infou-txt, .infou-ul li:nth-child(even) .infou-txt {
        padding: 30px 0px 0;
        float: none;
        width: 100%;
    }

    .infou-p {
        max-height: none;
        height: auto;
    }

    .infou-mid {
        font-size: 18px;
        width: 60px;
        line-height: 30px;
        height: 60px;
        padding: 15px 0;
        display: inline-block;
    }

    .infou-ul li:nth-child(even) .infou-mf, .infou-mf {
        position: relative;
        margin: 0 auto;
        text-align: center;
        margin-top: -60px;
        transform: none;
        left: 0;
        top: 0;
    }

    .infiv-ul li {
        padding: 0 5px;
    }

    .infiv-ul {
        margin-top: 12px;
    }

    .infiv-ri {
        margin-top: 20px;
    }

    .infiv-ul ul {
        margin: -20px -10px 0;
    }

    .infiv-ul li {
        width: 50%;
        text-align: center;
    }

    .infiv-le {
        text-align: center;
    }

    .infiv-line {
        margin: 15px auto 0;
    }

    .infiv-font p {
        font-size: 14px;
    }

    .intw-icon {
        width: 24px;
        height: 22px;
    }

    .intw-top li.on .intw-icon img {
        transform: translateY(-22px);
        max-height: 22px;
    }

    .intw-top li span {
        transform: translateY(-6px);
    }

    .intw-top li a {
        padding: 12px 16px 2px;
        height: 47px;
        border-radius: 0;
    }

    .intw-top li {
        margin: 0;
        margin-top: 15px;
        display: block;
        padding: 0 6px;
        float: left;
        width: 50%;
    }

        .intw-top li span {
            margin-left: 5px;
        }

    .intw-top ul {
        margin: -15px -6px 0;
    }

    .ino-con, .intw-con, .infou-con, .infiv-con, .insix-con {
        margin-top: 20px;
    }

    .infiv-p {
        margin-top: 10px;
    }

    .insix-txt {
        margin-left: 120px;
    }

    .insix-img {
        width: 120px;
    }

    .insix-txt span {
        margin-top: 2px;
    }

    .insix-ul li {
        margin-top: 10px;
    }

    .insix-right {
        padding: 15px 0 0;
    }

    .insix-left .insix-txt {
        padding: 15px;
    }

    .ino-riul li, .ino-riul li:nth-child(2) {
        width: 100%;
        margin-top: 15px;
    }

    .ino-riul ul {
    }

    .ino-riul li:nth-child(1) {
        margin-top: 0;
    }

    .intw-txt {
        padding: 25px 16px;
    }

    .index-five {
        background-attachment: scroll;
    }

    .int-dec {
        width: 55%;
        margin: auto;
    }

    .ino-hide {
        display: none;
    }
    .banner-right{display:none;}
    .banner-left{float:none;width:100%;padding:0;max-width: none;text-align:center !important; }
    .banner-cont h1{text-align:center !important;}
    .banner-more{margin:15px auto 0;}
    .banner-span{display:none;}

}

@media(max-width:415px) {
    .int-dec {
        width: 70%;
    }
}

@media(max-width:390px) {
    .indmenu-txt h4 {
        height: 48px;
    }

    .int-dec {
        width: 60%;
    }
}

@media(max-width:384px) {
    .int-dec {
        width: 70%;
    }
}

@media(max-width:375px) {
    .inoleft-ul li {
        width: 100%;
    }

    .int-dec {
        width: 70%;
    }
}

@media(max-width:360px) {
    .header-app .logo {
        padding: 15px;
    }

    .int-dec {
        width: 80%;
    }
}

.footer-menu {
    display: none;
}

.foot-app .bot-link {
    margin-top: 0;
}
/*视频弹窗*/
.msg-box-bg {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    display: none;
    z-index: 10001;
    background: rgba(0,0,0,0.5);
}

.msg-box {
    width: 860px;
    height: 524px;
    padding: 50px;
    background-color: #F3F3F3;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    margin-top: -262px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

    .msg-box .close-box {
        width: 38px;
        height: 38px;
        font-size: 30px;
        color: #666;
        cursor: pointer;
        position: absolute;
        right: 10px;
        top: 10px;
        -webkit-transition: .5s;
        -ms-transition: .5s;
        -moz-transition: .5s;
        -o-transition: .5s;
        transition: .5s;
    }

        .msg-box .close-box:hover {
            -webkit-transform: rotate(90deg);
            -ms-transform: rotate(90deg);
            -moz-transform: rotate(90deg);
            -o-transform: rotate(90deg);
            transform: rotate(90deg);
        }
/*视频弹窗  -end*/

/* ========================== 内页 ================== */
/* ny-banner */
.nybanner {
    position: relative;
    height: 450px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 2;
}
/* .about-banner{height: 550px;} */
.abtbanner-vedio {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

    .abtbanner-vedio::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,.5);
        left: 0;
        top: 0;
    }

.nyappbanner {
    width: 100%;
    display: none;
}

.nybanner-con {
    position: absolute;
    width: 100%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.nybanner-font {
    text-align: left;
    padding-bottom: 15px;
}

.solu-font {
    padding-top: 95px;
}

.nybanner-font h3 {
    padding-left: 0px;
    position: relative;
    font-size: 50px;
    line-height: 60px;
    color: #fff;
    font-weight: bold;
}

.nybanner-font h4 {
    margin-top: 12px;
    font-size: 22px;
    line-height: 30px;
    color: #fff;
}

.pro-bannerp {
    font-size: 0;
    margin-top: 26px;
}

    .pro-bannerp span {
        display: inline-block;
        font-size: 22px;
        line-height: 30px;
        color: #fda50b;
        position: relative;
        margin-right: 50px;
    }

        .pro-bannerp span:last-child {
            margin-right: 0;
        }

        .pro-bannerp span::before {
            position: absolute;
            content: "";
            background-size: 100% 100%;
            background-repeat: no-repeat;
            background-position: center;
            left: 0;
        }

        .pro-bannerp span.pro-dzxf {
            padding-left: 30px;
        }

            .pro-bannerp span.pro-dzxf::before {
                background-image: url(../images/dzxf.png);
                width: 22px;
                height: 30px;
                top: 0px;
            }

        .pro-bannerp span.pro-jg {
            padding-left: 35px;
        }

            .pro-bannerp span.pro-jg::before {
                background-image: url(../images/jg.png);
                width: 29px;
                height: 31px;
                top: 0;
            }

        .pro-bannerp span.pro-gdjm {
            padding-left: 37px;
        }

            .pro-bannerp span.pro-gdjm::before {
                background-image: url(../images/gdjm.png);
                width: 31px;
                height: 31px;
                top: 0;
            }

.bread {
    position: absolute;
    width: 100%;
    bottom: 0;
    right: 0;
    text-align: left;
    padding: 21px 0;
    font-size: 18px;
    line-height: 26px;
    color: #fffefe;
    z-index: 2;
}

    .bread p {
        color: #fffefe;
    }

    .bread a {
        position: relative;
        display: inline-block;
        transition: ease .5s;
        color: #fffefe;
    }

    .bread em:first-child {
        padding-left: 28px;
    }

        .bread em:first-child::before {
            position: absolute;
            content: "";
            width: 22px;
            height: 20px;
            background: url(../images/bread.png)no-repeat center;
            background-size: 100% 100%;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
        }

    .bread a:hover {
        color: #fda50b;
    }

    .bread em {
        display: inline-block;
        position: relative;
    }

/* ny-menu */
.ny-menu {
}

    .ny-menu ul {
        font-size: 0;
        text-align: center;
        margin-top: -12px;
    }

    .ny-menu li {
        display: inline-block;
        position: relative;
        margin: 0 15px;
        border: 1px solid #d8d8d8;
    }

    .ny-menu a {
        display: inline-block;
        position: relative;
        padding: 14px 20px;
        padding-left: 36px;
        font-size: 22px;
        line-height: 26px;
        color: #999;
        text-align: left;
        transition: ease .5s;
    }

    .ny-menu li.on a {
        color: #fda50b;
    }

    .ny-menu a em {
        display: inline-block;
        font-size: 30px;
        font-weight: lighter;
        margin-left: 60px;
        transition: ease .5s;
    }

    .ny-menu a::before {
        position: absolute;
        content: "";
        width: 0;
        height: 1px;
        background: #fda50b;
        left: 0;
        top: -1px;
        transition: ease .5s;
    }

    .ny-menu a::after {
        position: absolute;
        content: "";
        width: 0;
        height: 1px;
        background: #fda50b;
        right: 0;
        bottom: -1px;
        transition: ease .5s;
        transition-delay: 1s;
    }

    .ny-menu li.on a::before, .ny-menu li.on a::after, .ny-menu li:hover a::before, .ny-menu li:hover a::after {
        width: 100%;
    }

    .ny-menu li::before {
        position: absolute;
        content: "";
        width: 1px;
        height: 0;
        background: #fda50b;
        left: -1px;
        bottom: 0px;
        transition: ease .5s;
        transition-delay: 1.5s;
    }

    .ny-menu li::after {
        position: absolute;
        content: "";
        width: 1px;
        height: 0;
        background: #fda50b;
        right: -1px;
        top: 0px;
        transition: ease .5s;
        transition-delay: .5s;
    }

    .ny-menu li.on::before, .ny-menu li.on::after, .ny-menu li:hover::before, .ny-menu li:hover::after {
        height: 100%;
    }

    .ny-menu li:hover em, .ny-menu li.on em {
        transform: rotate(90deg);
    }

    .ny-menu li {
        margin-top: 12px;
    }
/* lpage 分页 */
.lpage {
    font-size: 0;
    text-align: center;
}

    .lpage a {
        display: inline-block;
        margin: 0 10px;
        padding: 9px 19px;
        font-size: 20px;
        line-height: 26px;
        color: #666;
        font-family: "DIN-REGULAR";
        border: 1px solid #e3e3e3;
        transition: ease .5s;
    }

        .lpage a:hover {
            color: #fda50b;
        }

        .lpage a.on, .lpage a.on:hover {
            color: #fff;
            background: #fda50b;
            border-color: #fda50b;
        }

        .lpage a.lpage-cn {
            font-family: "Microsoft Yahei";
            font-size: 18px;
        }

/*  */
/* ===============nav-second=========== */
.appsecond-nav {
    position: relative;
    display: none;
    z-index: 200;
}

.bot {
    position: absolute;
    top: 48px;
    background: #fff;
    z-index: 10;
}

.se-bot {
    width: 100%;
    display: none;
}

.se-top {
    height: 48px;
    line-height: 48px;
    border-bottom: solid 1px #d8d8d8;
    position: relative;
}

.se-top1 {
    background: #fff;
}

.se-top .se-a {
    color: #444;
    font-size: 16px;
    display: block;
    padding: 0px 20px;
}

.se-tig.P_tig {
    font-size: 16px;
    color: #333;
    text-align: center;
    transition: all .5s;
    line-height: 48px;
    width: 48px;
    height: 48px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
}

.se-btop {
    height: 48px;
    line-height: 48px;
}

.se-a1 {
    color: #444;
    font-size: 16px;
    padding: 0px 20px;
    display: block;
}

    .se-a1.hover {
        color: #fff;
        background: #fda50b;
        border-bottom: solid 1px #fff;
    }

.se-tig.P_tig.open {
    transform: rotateZ(90deg);
    opacity: 1;
}

.se-bottom {
    display: none;
    background: white;
}

    .se-bottom a {
        display: block;
        font-size: 14px;
        color: #888;
        border-bottom: 1px solid #eee;
        padding: 10px 30px;
    }

        .se-bottom a.on {
            font-weight: bold;
        }

.se-btop.active .se-tig.P_tig {
    color: #fff;
}

.se-btop.active .se-a1 {
    background: #fda50b;
    color: #fff;
    border-bottom: 1px solid #fff;
}

/* ==============anchor============= */
.anchor {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    z-index: 490;
    background: #fff;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.1);
    text-align: center;
    display: none;
}

    .anchor li {
        display: inline-block;
        vertical-align: middle;
        margin: 0 5px;
    }

        .anchor li a {
            display: block;
            padding: 0 26px;
            font-size: 14px;
            line-height: 34px;
            text-align: center;
            color: #333;
            transition: all .3s;
        }

        .anchor li.on a {
            color: #fff;
            background: #fda50b;
        }

        .anchor li a:hover {
            color: #fda50b;
        }

        .anchor li.on a:hover {
            color: #fff;
        }

/* ==================== contact 联系我们 ==================== */
.contact {
}

.contact-content {
}

.contact-one {
    padding: 72px 0 80px;
}

.contact-tit {
    font-size: 40px;
    line-height: 50px;
    color: #333;
    text-align: center;
}

.contact1-con {
    background: #f5f5f5;
    margin-top: 47px;
}

.contact1-img {
    float: left;
    width: 48.7%;
}

    .contact1-img img {
        width: 100%;
    }

.contact1-font {
    float: right;
    width: 51.3%;
    padding-top: 78px;
    padding-left: 85px;
    padding-right: 65px;
}

    .contact1-font h3 {
        font-size: 26px;
        line-height: 30px;
        color: #333;
    }

.contact1-ul {
    position: relative;
    padding-right: 220px;
    margin-top: 33px;
}

    .contact1-ul ul {
        max-height: 200px;
    }

    .contact1-ul li {
        position: relative;
        font-size: 0;
    }

        .contact1-ul li h4::before {
            position: absolute;
            content: "";
            left: 0;
            top: 13px;
            background-size: 100% 100%;
            background-repeat: no-repeat;
            background-position: center;
        }

        .contact1-ul li.contact-call h4::before {
            width: 18px;
            height: 18px;
            background-image: url(../images/contact1.png);
        }

        .contact1-ul li.contact-youb h4::before {
            width: 19px;
            height: 15px;
            background-image: url(../images/contact2.png);
        }

        .contact1-ul li.contact-address h4::before {
            width: 19px;
            height: 19px;
            background-image: url(../images/contact3.png);
        }

        .contact1-ul li.contact-email h4::before {
            width: 18px;
            height: 14px;
            background-image: url(../images/contact4.png);
        }

        .contact1-ul li.contact-call h4:hover::before {
            background-image: url(../images/contact1a.png);
        }

        .contact1-ul li.contact-youb h4:hover::before {
            background-image: url(../images/contact2a.png);
        }

        .contact1-ul li.contact-address h4:hover::before {
            background-image: url(../images/contact3a.png);
        }

        .contact1-ul li.contact-email h4:hover::before {
            background-image: url(../images/contact4a.png);
        }

        .contact1-ul li h4 {
            font-size: 0;
            position: relative;
            padding-left: 26px;
            display: inline-block;
        }

        .contact1-ul li em {
            display: inline-block;
            font-size: 18px;
            line-height: 40px;
            color: #666;
        }

        .contact1-ul li a {
            display: inline-block;
            font-family: "DIN-REGULAR";
            font-size: 20px;
            line-height: 40px;
            color: #666;
        }

        .contact1-ul li:hover a, .contact1-ul li:hover em {
            color: #fda50b;
        }

.contact-ewm {
    float: right;
    width: 150px;
    font-size: 0;
    text-align: center;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

    .contact-ewm img {
        max-width: 100%;
        display: inline-block;
    }

    .contact-ewm p {
        font-size: 14px;
        line-height: 24px;
        color: #999;
        margin-top: 4px;
    }


.contact-two {
}

.contact2-img {
    font-size: 0;
    text-align: center;
}

    .contact2-img img {
        max-width: 100%;
        display: inline-block;
    }

.contact-three {
    padding: 74px 0 78px;
}

.contact-input {
    margin-top: 45px;
}

.contact-input1 {
    margin: 0 -15px;
}

    .contact-input1 > div {
        float: left;
        width: 25%;
        padding: 0 15px;
    }

.contact-input input {
    font-size: 18px;
    line-height: 30px;
    color: #555;
    border: 1px solid #e3e3e3;
    padding: 9px 24px;
    width: 100%;
    margin-bottom: 30px;
}

.contact-input textarea {
    font-size: 18px;
    line-height: 30px;
    color: #555;
    border: 1px solid #e3e3e3;
    padding: 15px 24px;
    width: 100%;
    min-height: 206px;
}

.contact-submit {
    position: relative;
    width: 165px;
    height: auto;
    transition: ease .5s;
    margin: 0 auto;
    margin-top: 48px;
    transition: ease .5s;
}

.message-submit {
    position: relative;
    font-size: 16px;
    color: #fff;
    width: 160px;
    height: 52px;
    line-height: 52px;
    margin: 0 auto;
    display: block;
    padding: 0px 15px;
    cursor: pointer;
    transition: ease .5s;
}

    .message-submit span::before {
        display: none;
    }

    .message-submit span {
        padding-right: 0;
        text-align: center;
    }

.contact-input textarea.contact3-bt {
    background-position: top 22px left 10px;
}

.contact3-bt {
    position: relative;
    background: url(../images/contact3-bt.png)no-repeat top 18px left 10px;
    background-size: 9px 9px;
}

    .contact3-bt::before {
        position: absolute;
        content: "";
        width: 9px;
        height: 9px;
        background: url(../images/contact3-bt.png)no-repeat center;
        background-size: 100% 100%;
        left: 10px;
        top: 10px;
    }

@media(max-width:1459px) {
    .contact-tit {
        font-size: 36px;
    }

    .contact1-ul {
        padding-right: 160px;
        margin-top: 20px;
    }

    .contact1-font {
        padding: 38px 50px 0 50px;
    }

        .contact1-font h3 {
            font-size: 24px;
        }

    .contact-input input, .contact-input textarea {
        font-size: 16px;
    }

    .contact1-ul li em {
        font-size: 16px;
    }

    .contact1-ul li a {
        line-height: normal;
    }
}

@media(max-width:1259px) {
    .contact-tit {
        font-size: 30px;
        line-height: 40px;
    }

    .contact1-ul {
        padding-right: 120px;
    }

    .contact1-font {
        padding: 38px 40px 0 40px;
    }

        .contact1-font h3 {
            font-size: 22px;
        }

    .contact-input1 {
        margin: 0 -8px;
    }

        .contact-input1 > div {
            padding: 0 8px;
        }

    .contact-ewm {
        width: 110px;
    }

    .contact1-ul li em {
        line-height: 34px;
    }

    .contact1-ul li a {
        font-size: 18px;
    }

    .contact1-ul ul {
        max-height: 128px;
    }

    .contact1-con, .contact-input {
        margin-top: 30px;
    }

        .contact-input input {
            margin-bottom: 20px;
        }

    .contact-three, .contact-one {
        padding: 60px 0;
    }

    .contact-submit {
        margin-top: 36px;
    }

    .contact1-ul li::before {
        top: 10px;
    }
}

@media(max-width:991px) {
    .contact-tit {
        font-size: 26px;
        line-height: 30px;
    }

    .contact1-img {
        float: none;
        width: 100%;
    }

    .contact1-font {
        float: none;
        width: 100%;
        padding: 30px 40px;
    }

    .contact1-ul ul {
        max-height: none;
        height: auto;
    }

    .contact-input1 > div {
        width: 50%;
    }
}

@media(max-width:767px) {
    .contact-three, .contact-one {
        padding: 40px 0;
    }

    .contact-tit {
        font-size: 23px;
    }

    .contact1-font h3 {
        font-size: 18px;
    }

    .contact1-ul li a {
        font-size: 16px;
    }

    .contact1-ul {
        margin-top: 10px;
    }

    .contact1-font {
        padding: 30px;
    }

    .contact1-ul li h4::before {
        top: 5px;
    }

    .contact-input input, .contact-input textarea {
        font-size: 15px;
    }

    .contact-input input {
        padding: 7px 24px;
        margin-bottom: 15px;
    }

    .contact3-bt {
        background-position: top 16px left 10px;
    }

    .contact1-con, .contact-input {
        margin-top: 20px;
    }
}

@media(max-width:640px) {
    .contact-input1 > div {
        width: 100%;
    }

    .contact-ewm {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        float: none;
        margin: 0 auto;
        margin-top: 15px;
    }

    .contact1-ul li {
        text-align: center;
    }

    .contact1-ul {
        padding-right: 0;
    }

    .contact1-font {
        padding: 25px 17px;
    }

        .contact1-font h3 {
            font-size: 16px;
        }

    .contact1-ul li a, .contact1-ul li em {
        font-size: 14px;
    }

    .contact1-ul li em {
        line-height: 24px;
    }

    .contact1-ul li {
        margin-top: 6px;
    }

    .contact1-ul ul li:first-child {
        margin-top: 0;
    }

    .contact1-ul li::before {
        top: 4px;
    }

    .contact-input textarea {
        min-height: 160px;
    }

    .message-submit {
        width: 140px;
        height: 46px;
        line-height: 46px;
    }

    .contact-submit {
        margin-top: 25px;
    }
}


/* ===================== news 新闻动态 ======================= */
.news {
}

.news-content {
    padding: 52px 0 80px;
}

.news-con {
    margin-top: 42px;
}

.news-ul {
}

    .news-ul li {
        padding: 38px 0;
        border-bottom: 1px solid #e3e3e3;
    }

        .news-ul li:last-child {
            border-bottom: none;
        }

.news-a {
    display: block;
    position: relative;
}

.news-img {
    float: left;
    width: 384px;
    overflow: hidden;
}

    .news-img img {
        width: 100%;
        transition: ease .8s;
    }

.news-a:hover .news-img img {
    transform: scale(1.1);
}

.news-font {
    margin-left: 384px;
    padding: 33px 0 20px;
    padding-right: 240px;
    padding-left: 45px;
}

.news-time {
    width: 125px;
    padding-left: 59px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border-left: 1px solid #e3e3e3;
}

    .news-time span {
        display: block;
        font-size: 60px;
        line-height: 60px;
        color: #333;
        font-family: "DIN-REGULAR";
    }

    .news-time p {
        font-size: 18px;
        line-height: 26px;
        font-family: "DIN-REGULAR";
        color: #666;
    }

.news-txt {
}

    .news-txt h3 {
        font-size: 26px;
        line-height: 26px;
        color: #333;
        transition: ease .5s;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }

    .news-txt h6 {
        margin-top: 21px;
        font-size: 18px;
        line-height: 26px;
        color: #666;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }

.news-mo {
    margin-top: 34px;
    color: #666;
    border-color: #e8e8e8;
}

    .news-mo span::before {
        background-image: url(../images/more2.png);
    }

    .news-mo::before {
        opacity: 0;
        transform: translate(-400px, 0) skew(-60deg, 0deg);
    }

.news-a:hover .news-mo::before {
    opacity: 1;
    transform: translate(0, 0) skew(-60deg, 0deg);
}

.news-a:hover .news-mo {
    color: #fff;
    border-color: #fda50b;
}

    .news-a:hover .news-mo span::before {
        background-image: url(../images/more.png);
    }

.news-a:hover .news-txt h3 {
    color: #fda50b;
}

.news-page {
    margin-top: 44px;
}

@media(max-width:1459px) {
    .news-time span {
        font-size: 50px;
        line-height: 50px;
    }

    .news-txt h3 {
        font-size: 23px;
    }
}

@media(max-width:1259px) {
    .news-img {
        width: 320px;
    }

    .news-font {
        margin-left: 320px;
        padding: 9px 0;
        padding-right: 120px;
        padding-left: 32px;
    }

    .news-time span {
        font-size: 42px;
        line-height: 42px;
    }

    .news-time {
        width: 100px;
        padding-left: 34px;
    }

    .news-txt h6 {
        font-size: 16px;
    }

    .news-txt h3 {
        font-size: 21px;
    }
}

@media(max-width:991px) {
    .news-img {
        width: 240px;
    }

    .news-font {
        margin-left: 240px;
        padding-right: 110px;
        padding-left: 28px;
    }

    .news-mo {
        margin-top: 25px;
    }

    .news-txt h6 {
        -webkit-line-clamp: 1;
        margin-top: 10px;
    }

    .news-time span {
        font-size: 34px;
    }

    .news-time {
        width: 90px;
        padding-left: 23px;
    }

    .news-ul li {
        padding: 25px 0;
    }
}

@media(max-width:767px) {
    .news-content {
        padding: 25px 0 40px;
    }

    .news-con {
        margin-top: 0;
    }

    .news-txt h3 {
        font-size: 16px;
    }

    .news-txt h6 {
        margin-top: 5px;
        font-size: 14px;
        line-height: 24px;
        -webkit-line-clamp: 2;
    }

    .news-time span {
        font-size: 24px;
        line-height: 24px;
    }

    .news-time p {
        font-size: 15px;
    }

    .news-mo {
        margin-top: 20px;
    }

    .news-ul li {
        padding: 18px 0;
    }

    .news-font {
        padding: 5px 0;
        padding-right: 95px;
        padding-left: 25px;
    }

    .news-time {
        width: 78px;
    }

    .news-page {
        margin-top: 20px;
    }
}

@media(max-width:640px) {
    .news-img {
        float: none;
        width: 100%;
    }

    .news-font {
        margin-left: 0;
        position: relative;
        padding: 20px 0 5px;
    }

    .news-time {
        float: left;
        width: 67px;
        margin-top: 5px;
        position: relative;
        transform: none;
        right: auto;
        top: auto;
        padding-left: 0;
        padding-right: 12px;
        border-left: none;
        border-right: 1px solid #e3e3e3;
    }

    .news-txt {
        margin-left: 67px;
        padding-left: 15px;
    }

    .news-mo {
        display: none;
    }
}

@media(max-width:320px) {
    .news-time {
        float: none;
        margin: 0;
        border: none;
    }

    .news-txt {
        margin: 10px 0 0;
        padding: 0;
    }
}

/* =================== newsinfo 新闻详情 ===================== */
.newsinfo {
}

.newsinfo-content {
    padding: 52px 0 80px;
}

.newsinfo-con {
    margin-top: 51px;
}

.newxq-con {
}

.newxq-left {
    float: left;
    width: 70.5%;
    padding-right: 30px;
}

.newxq-leftcon {
    background: #f5f5f5;
    width: 100%;
    padding: 65px 50px 81px;
}

.newxq-right {
    float: right;
    width: 29.5%;
}

.newxq-tit {
    font-size: 30px;
    line-height: 40px;
    color: #333;
    font-weight: 600;
}

.newxq-des {
    font-size: 16px;
    color: #666;
    line-height: 28px;
}

.newxq-time {
    display: block;
    font-size: 0;
    color: #666;
    margin-top: 9px;
}

    .newxq-time span {
        display: inline-block;
        font-size: 16px;
        line-height: 26px;
    }

    .newxq-time em {
        display: inline-block;
        font-size: 16px;
        line-height: 26px;
        font-family: "DIN-REGULAR";
    }

.newxq-artic {
    margin-top: 35px;
    font-size: 16px;
    line-height: 28px;
    color: #666;
}

    .newxq-artic img {
        max-width: 100%;
        display: inline-block;
    }

.newxq-page {
    background: #f5f5f5;
    margin-bottom: 20px;
    padding: 42px 30px 37px;
}

    .newxq-page a {
        display: block;
        width: 100%;
    }

    .newxq-page h3 {
        font-size: 22px;
        line-height: 26px;
        color: #333;
        font-weight: bold;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }

    .newxq-page h5 {
        margin-top: 14px;
        font-size: 16px;
        line-height: 26px;
        color: #666;
        transition: ease .5s;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }

    .newxq-page span {
        display: block;
        font-size: 16px;
        line-height: 26px;
        color: #666;
        margin-top: 10px;
    }

    .newxq-page:hover h5 {
        color: #fda50b;
    }

.newxq-tuijian1 {
    background: #f7f7f7;
    padding: 30px 20px;
    margin-bottom: 20px;
}

.newxq-tuijian-tit {
    font-size: 20px;
    color: #111;
    font-weight: bold;
    border-left: 3px solid #fabd00;
    line-height: 20px;
    padding-left: 7px;
}

.newxq-tuijian-button {
    margin-top: 10px;
}

    .newxq-tuijian-button a {
        display: inline-block;
        font-size: 14px;
        color: #9b9b9b;
        border: 1px solid #9b9b9b;
        border-radius: 2px;
        padding: 5px 13px;
        margin-right: 10px;
        margin-top: 10px;
        background: #fff;
    }

        .newxq-tuijian-button a:hover {
            color: #fff;
            background: #fda50b;
            border-color: #fda50b;
        }

.newxq-tuijian2 {
    background: #f7f7f7;
    padding: 30px 20px 0;
    margin-bottom: 20px;
}

    .newxq-tuijian2 ul {
    }

    .newxq-tuijian2 li {
        padding: 15px 0;
        border-bottom: 1px dashed #d8d8d8;
    }

        .newxq-tuijian2 li:last-child {
            border: none;
        }

        .newxq-tuijian2 li a {
            display: block;
        }

.newxq-tj-img {
    float: right;
    width: 38%;
}

    .newxq-tj-img img {
        width: 100%;
    }

.newxq-tj-txt {
    float: left;
    width: 56%;
}

    .newxq-tj-txt h3 {
        font-size: 14px;
        line-height: 22px;
        color: #4a4a4a;
        font-weight: bold;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }

    .newxq-tj-txt span {
        display: block;
        font-size: 14px;
        color: #888;
        margin-top: 12px;
        background: url(../images/newxq-time.png)no-repeat center left;
        padding-left: 24px;
    }

.newxq-share {
    background: #f7f7f7;
    padding: 45px 30px 40px;
}

    .newxq-share span {
        display: block;
        font-size: 22px;
        line-height: 26px;
        color: #333;
        font-weight: bold;
    }

    .newxq-share a {
        display: inline-block !important;
        background: none !important;
        font-size: 24px !important;
        width: 42px !important;
        height: 42px !important;
        line-height: 41px !important;
        text-align: center;
        border-radius: 50% !important;
        border: 1px solid #a7a7a7 !important;
        color: #a5a5a5 !important;
        transition: ease .5s !important;
        padding-left: 0 !important;
        text-decoration: none !important;
        margin-right: 15px !important;
        margin-bottom: 10px !important;
    }

        .newxq-share a:last-child {
            margin-right: 0 !important;
        }
    /* .newxq-share a.icon-weibo{background: #da3c3c !important;}
.newxq-share a.icon-weixin{background: #21ba41 !important;}
.newxq-share a.icon-qq{background: #3e91ee !important;}
.newxq-share a.icon-kongjian{background: #f4c50b !important;} */
    .newxq-share .bshare-custom {
        margin-top: 18px;
    }

.nesinfo-back {
    display: block;
    margin: 80px auto 0;
    transition: ease .5s;
    font-size: 26px;
    line-height: 71px;
    width: 300px;
    text-align: center;
    color: #fff;
    background: #fda50b;
}

    .nesinfo-back span {
        display: inline-block;
    }

    .nesinfo-back em {
        font-size: 20px;
        margin-left: 12px;
    }

    .nesinfo-back:hover {
        background-color: #e29002;
    }

    .nesinfo-back.newsinfo-bot {
        display: none;
    }

@media(max-width:1459px) {
    .newxq-tit {
        font-size: 26px;
    }

    .newxq-page h3 {
        font-size: 20px;
    }

    .nesinfo-back {
        width: 220px;
        line-height: 60px;
        font-size: 22px;
        margin-top: 60px;
    }
}

@media(max-width:1259px) {
    .newxq-page, .newxq-share {
        padding: 30px 25px;
    }

    .nesinfo-back {
        margin-top: 40px;
    }

    .newxq-share a {
        width: 32px !important;
        height: 32px !important;
        line-height: 31px !important;
        font-size: 18px !important;
    }
}

@media(max-width:991px) {
    .newxq-tj-txt {
        float: none;
        width: 100%;
        margin-top: 10px;
    }

    .newxq-tj-img {
        float: none;
        width: 100%;
    }

    .newxq-share {
        padding: 20px 15px;
    }

    .newxq-left {
        float: none;
        width: 100%;
        padding: 0;
    }

    .newxq-right {
        float: none;
        width: 100%;
        margin-top: 40px;
    }

    .nesinfo-back {
        font-size: 20px;
        width: 200px;
        line-height: 52px;
    }

    .newxq-tit {
        font-size: 24px;
    }

    .newxq-page h3 {
        font-size: 18px;
    }

    .newxq-leftcon {
        padding: 40px 30px;
    }

    .nesinfo-back {
        display: none;
    }

        .nesinfo-back.newsinfo-bot {
            display: block;
        }
}

@media(max-width:767px) {
    .newsinfo-content {
        padding: 40px 0;
    }

    .newxq-leftcon {
        padding: 30px 20px;
    }

    .newxq-tit {
        font-size: 18px;
        line-height: 30px;
    }

    .newxq-des {
        font-size: 14px;
        line-height: 24px;
    }

    .newxq-time {
        font-size: 14px;
        line-height: 24px;
        margin-top: 6px;
    }

    .newxq-artic {
        font-size: 14px;
        line-height: 24px;
        margin-top: 15px;
    }

        .newxq-artic p img {
            margin: 15px 0;
        }

    .newxq-page h3 {
        font-size: 16px;
    }

    .newxq-page h5 {
        font-size: 14px;
        line-height: 22px;
    }

    .newxq-page span {
        font-size: 14px;
        line-height: 22px;
        margin-top: 5px;
    }

    .newxq-page {
        padding: 15px;
        margin-top: 20px;
    }

    .newxq-tuijian1 {
        margin: 20px 0;
        padding: 15px;
    }

    .newxq-tuijian-tit {
        font-size: 18px;
    }

    .newxq-tuijian-button a {
        padding: 5px 8px;
    }

    .newxq-tuijian-button {
        margin-top: 5px;
    }

    .newxq-tuijian2 ul {
        margin-top: 10px;
    }

    .newxq-share span {
        font-size: 18px;
    }

    .newxq-share {
        padding: 15px;
    }

        .newxq-share .bshare-custom {
            margin-top: 10px;
        }

    .nesinfo-back {
        margin-top: 20px;
        font-size: 16px;
        width: 142px;
        line-height: 42px;
    }

    .newxq-right {
        margin-top: 30px;
    }

    .newsinfo-con {
        margin: 0;
    }
}


/* ========================== quality 生产&品质 ====================== */
.quality {
}

.quality-content {
    padding: 52px 0 0;
}

.quality-con {
}

.quality-one {
    padding: 73px 0 0;
}

.quality-two {
}

.quality-three {
}

.quality1-con {
    margin-top: 46px;
}

.quality1-ul {
    margin: 0 -15px;
}

    .quality1-ul li {
        float: left;
        width: 50%;
        padding: 0 15px;
    }

        .quality1-ul li a {
            display: block;
            position: relative;
        }

.quality1-img {
    width: 100%;
    overflow: hidden;
}

    .quality1-img img {
        width: 100%;
        transition: ease .8s;
    }

.quality1-ul li:hover .quality1-img img {
    transform: scale(1.1);
}

.quality1-font {
    position: absolute;
    z-index: 2;
    width: 100%;
    left: 0;
    bottom: 0;
    padding: 9px 20px 15px;
    text-align: center;
    background: rgba(0,0,0,.6);
}

    .quality1-font span {
        display: inline-block;
        font-size: 60px;
        color: #fff;
        font-family: "DIN-BOLD";
        line-height: 60px;
    }

    .quality1-font d {
        display: inline-block;
        font-size: 26px;
        line-height: 26px;
        color: #fff;
        font-family: "DIN-REGULAR";
    }

    .quality1-font em {
        display: inline-block;
        font-size: 22px;
        line-height: 26px;
        color: #fff;
        transform: translateY(-4px);
    }

.quality-two {
    padding: 73px 0 80px;
}

.quality2-con {
    margin-top: 46px;
}

.quality2-ul {
    /* margin: -30px -15px 0; */
    position: relative;
}

    .quality2-ul li {
        float: left;
        width: 33.333%;
        padding: 0 15px;
        margin-top: 30px;
    }

        .quality2-ul li a {
            display: block;
            border: 1px solid #e5e5e5;
        }

.quality2-img {
    overflow: hidden;
    margin: -1px;
    margin-bottom: 0;
}

    .quality2-img img {
        width: 100%;
        transition: ease .8s;
    }

.quality2-ul li:hover .quality2-img img {
    transform: scale(1.1);
}

.quality2-font {
    text-align: center;
    padding: 14px 20px 13px;
}

    .quality2-font h3 {
        font-size: 18px;
        line-height: 26px;
        line-height: 26px;
        color: #333;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }

    .quality2-font p {
        margin-top: 1px;
        font-size: 16px;
        line-height: 26px;
        height: 26px;
        color: #666;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }

.quality-three {
    padding: 73px 0 53px;
}

.quality3-con {
    margin-top: 45px;
}

.quality3-ul {
    margin: -53px -40px 0;
}

    .quality3-ul li {
        float: left;
        width: 20%;
        padding: 0 40px;
        margin-top: 52px;
    }

        .quality3-ul li a {
            display: block;
        }

.quality3-img {
    position: relative;
    width: 100%;
}

    .quality3-img img {
        width: 100%;
        position: relative;
        z-index: 2;
    }

.quality3-font {
    padding: 23px 10px;
    font-size: 22px;
    line-height: 26px;
    color: #333;
    text-align: center;
}

.quality3-img::before {
    position: absolute;
    z-index: 1;
    content: "";
    width: 27px;
    height: 27px;
    /* background: url(../images/quality3-bf1.png)no-repeat center; */
    background-size: 100% 100%;
    right: -66px;
    top: 50%;
    transform: translate(-50%,-50%);
}

.quality3-img::after {
    position: absolute;
    content: "";
    width: 80px;
    height: 2px;
    /* background: url(../images/quality3-bf2.png)repeat-x center; */
    background-size: 100% 100%;
    left: 100%;
    top: 50%;
    transform: translatey(-50%);
}

.quality3-ul li:nth-child(6),
.quality3-ul li:nth-child(7),
.quality3-ul li:nth-child(8),
.quality3-ul li:nth-child(9),
.quality3-ul li:nth-child(10) {
    float: right;
}

    .quality3-ul li:nth-child(6) .quality3-img::before,
    .quality3-ul li:nth-child(6) .quality3-img::after {
        display: none;
    }

.quality3-ul li:nth-child(5) .quality3-img::before,
.quality3-ul li:nth-child(5) .quality3-img::after {
    top: 100%;
    left: 50%;
    transform: rotate(90deg) translate(50%,50%);
}

.quality3-ul li:nth-child(5) .quality3-img::after {
    top: 94%;
    margin-left: -69px;
    width: 65%;
}

.quality3-ul li:nth-child(5) .quality3-img::before {
    margin-top: 56px;
}

.quality3-ul li:nth-child(7) .quality3-img::before,
.quality3-ul li:nth-child(7) .quality3-img::after,
.quality3-ul li:nth-child(8) .quality3-img::before,
.quality3-ul li:nth-child(8) .quality3-img::after,
.quality3-ul li:nth-child(9) .quality3-img::before,
.quality3-ul li:nth-child(9) .quality3-img::after,
.quality3-ul li:nth-child(10) .quality3-img::before,
.quality3-ul li:nth-child(10) .quality3-img::after {
    transform: rotate(180deg) translate(0,50%);
}

.quality3-ul li:nth-child(7) .quality3-img::before,
.quality3-ul li:nth-child(8) .quality3-img::before,
.quality3-ul li:nth-child(9) .quality3-img::before,
.quality3-ul li:nth-child(10) .quality3-img::before {
    right: -52px;
}

@media(max-width:1459px) {
    .quality3-ul li:nth-child(5) .quality3-img::after {
        top: 92%;
        margin-left: -65px;
        width: 75%;
    }

    .quality1-font span {
        font-size: 42px;
        line-height: 42px;
    }

    .quality1-font em {
        font-size: 20px;
    }

    .quality1-font d {
        font-size: 22px;
    }

    .quality3-font {
        font-size: 21px;
        padding: 16px 10px;
    }

    .quality3-ul li {
        margin-top: 30px;
    }

    .quality3-ul {
        margin-top: -30px;
    }

        .quality3-ul li:nth-child(5) .quality3-img::before {
            margin-top: 36px;
        }
}

@media(max-width:1259px) {
    .quality-two, .quality-three {
        padding: 60px 0;
    }

    .quality-one {
        padding: 60px 0 0;
    }

    .quality1-font span {
        font-size: 36px;
        line-height: 36px;
    }

    .quality1-font em {
        font-size: 18px;
    }

    .quality1-font d {
        font-size: 20px;
    }

    .quality1-font {
        padding: 15px;
    }

    .quality3-font {
        font-size: 18px;
    }

    .quality3-ul li {
        width: 25%;
    }

        .quality3-ul li:nth-child(4) .quality3-img::before,
        .quality3-ul li:nth-child(4) .quality3-img::after {
            top: 100%;
            left: 50%;
            transform: rotate(90deg) translate(50%,50%);
        }

        .quality3-ul li:nth-child(4) .quality3-img::after {
            top: 92%;
            margin-left: -65px;
            width: 75%;
        }

        .quality3-ul li:nth-child(4) .quality3-img::before {
            margin-top: 36px;
        }

        .quality3-ul li:nth-child(5) .quality3-img::before,
        .quality3-ul li:nth-child(5) .quality3-img::after {
            top: 50%;
            left: -45%;
            transform: rotate(180deg);
        }

        .quality3-ul li:nth-child(5) .quality3-img::before {
            margin: 0;
            left: auto;
            left: -40px;
            transform: translate(-50%,-50%) rotate(180deg);
        }

        .quality3-ul li:nth-child(5) .quality3-img::after {
            top: 50%;
            margin-left: 0;
            width: 80px;
        }

        .quality3-ul li:nth-child(5) {
            float: right;
        }

        .quality3-ul li:nth-child(9), .quality3-ul li:nth-child(10) {
            float: left;
        }

            .quality3-ul li:nth-child(10) .quality3-img::after, .quality3-ul li:nth-child(10) .quality3-img::before {
                display: none;
            }

            .quality3-ul li:nth-child(9) .quality3-img::before {
                transform: translate(0,-50%) rotate(180deg);
            }
}

@media(max-width:991px) {
    .quality3-ul li .quality3-img::before,
    .quality3-ul li .quality3-img::after {
        display: none;
    }

    .quality3-font {
        font-size: 16px;
        padding: 10px;
    }

    .quality3-ul li {
        padding: 0 12px;
        margin-top: 20px;
    }

    .quality3-ul {
        margin: -20px -12px 0;
    }

    .quality3-con {
        margin-top: 25px;
    }

    .quality3-ul li:nth-child(6), .quality3-ul li:nth-child(7),
    .quality3-ul li:nth-child(8), .quality3-ul li:nth-child(9),
    .quality3-ul li:nth-child(10), .quality3-ul li:nth-child(5) {
        float: left;
    }

    .quality1-font span {
        font-size: 30px;
        line-height: 30px;
    }

    .quality1-font em {
        font-size: 16px;
    }

    .quality1-font d {
        font-size: 18px;
    }

    .quality1-ul li {
        padding: 0 10px;
    }

    .quality1-ul {
        margin: 0 -10px;
    }

    .quality2-ul li {
        padding: 0 10px;
        margin-top: 20px;
    }

    .quality2-ul {
        margin: -20px -10px 0;
    }
}

@media(max-width:767px) {
    .quality2-font h3 {
        font-size: 16px;
    }

    .quality2-font p {
        font-size: 14px;
        line-height: 24px;
    }

    .quality2-font {
        padding: 14px 14px 13px;
    }

    .quality-content {
        padding: 0;
    }

    .quality-one {
        padding: 40px 0 0;
    }

    .quality-two, .quality-three {
        padding: 40px 0;
    }

    .quality1-font span {
        font-size: 24px;
    }

    .quality1-con, .quality2-con, .quality3-con {
        /* margin-top: 25px; */
    }

    .quality3-ul li {
        width: 33.333%;
    }

    .quality3-font {
        height: 46px;
    }

    .quality1-font {
        height: 86px;
    }
}

@media(max-width:640px) {
    .quality1-ul li {
        width: 100%;
        margin-top: 15px;
    }

    .quality1-ul {
        margin-top: -15px;
    }

    .quality1-font {
        position: relative;
        height: auto;
        background: #fda50b;
    }

    .quality2-ul li, .quality3-ul li {
        width: 100%;
    }

    .quality3-ul li {
        margin-top: 12px;
    }

    .quality3-ul {
        margin-top: -12px;
    }
}

/* ========================== product 产品列表 ==================== */
.product {
}

.pro-search {
    width: 100%;
    background: #fff;
    padding: 19px 0;
}

.prosear-left {
    float: left;
    max-width: 60%;
    padding: 11px 0;
}

    .prosear-left span {
        display: inline-block;
        font-size: 18px;
        line-height: 26px;
        color: #333;
    }

        .prosear-left span a {
            display: block;
            color: #bfbfbf;
            transition: ease .5s;
        }

            .prosear-left span a:hover {
                color: #333;
            }

.pro-left.sctop {
    position: fixed;
    left: 13%;
    padding-left: 0;
    top: 140px;
    z-index: 20
}

.pro-left.scbot {
    top: 0;
    left: 0;
    position: absolute
}

.pro-left.scbot2 {
    bottom: 0;
    left: 0;
    position: absolute
}

.prosear-right {
    float: right;
    max-width: 40%;
}

.prosear-inp {
    border-radius: 10px;
    border: 1px solid #dddddd;
    position: relative;
    width: 384px;
    height: 49px;
}

    .prosear-inp input {
        width: 100%;
        padding-left: 15px;
        padding-right: 60px;
        font-size: 18px;
        line-height: 47px;
        color: #333;
    }

        .prosear-inp input::-webkit-input-placeholder {
            color: rgba(51,51,51,.4);
        }

.prosear-sub {
    position: absolute;
    cursor: pointer;
    right: 0;
    top: 0px;
    width: 54px;
    height: 47px;
    border-radius: 0 10px 10px 0;
    background: #fda50b url(../images/pro-sear.png)no-repeat center;
    background-size: 23px 22px;
}

.pro-content {
    padding: 30px 0 78px;
}

.pro-con {
}

.pro-left {
    float: left;
    width: 22.86%;
}

.pro-menu1 {
}

    .pro-menu1 h3 {
        padding: 24px 30px;
        background: #151314;
        font-size: 32px;
        line-height: 40px;
        color: #fff;
    }

        .pro-menu1 h3 span {
            display: inline-block;
            position: relative;
            padding-left: 20px;
        }

            .pro-menu1 h3 span::before {
                position: absolute;
                content: "";
                width: 4px;
                height: 30px;
                background: #fff;
                left: 0;
                top: 50%;
                transform: translateY(-50%);
            }

    .pro-menu1 a {
        padding: 20px 30px;
        display: block;
        background: #fff;
        border: 1px solid #e9e9e9;
        border-top: none;
        font-size: 22px;
        line-height: 30px;
        color: #333;
        transition: ease .5s;
    }

        .pro-menu1 a.on {
            background: #fda50b;
            color: #fff;
            border-left: none;
            border-right: none;
        }

        .pro-menu1 a:hover {
            color: #fda50b;
        }

        .pro-menu1 a.on:hover {
            color: #fff;
        }

        .pro-menu1 a span {
            display: inline-block;
        }


.pro-menu2 {
    margin-top: 20px;
    background: #fff;
    padding: 26px 28px 62px;
}

    .pro-menu2 h4 {
        font-size: 26px;
        line-height: 40px;
        color: #333;
    }

.promenu-span {
    padding-left: 25px;
    margin-top: 13px;
}

    .promenu-span span {
        position: relative;
        word-break: break-all;
        display: block;
        font-size: 18px;
        line-height: 40px;
        color: #666;
    }

        .promenu-span span em {
        }

        .promenu-span span d {
            font-family: "DIN-REGULAR";
            font-size: 20px;
        }

        .promenu-span span::before {
            position: absolute;
            content: "";
            left: -25px;
            top: 12px;
            background-size: 100% 100%;
            background-repeat: no-repeat;
            background-position: center;
        }

        .promenu-span span.prom-tel {
        }

            .promenu-span span.prom-tel::before {
                width: 18px;
                height: 18px;
                background-image: url(../images/pro-tel.png);
            }

        .promenu-span span.prom-pos::before {
            width: 19px;
            height: 15px;
            background-image: url(../images/pro-pos.png);
        }

        .promenu-span span.prom-ema::before {
            width: 18px;
            height: 14px;
            background-image: url(../images/pro-ema.png);
        }

        .promenu-span span.prom-add::before {
            width: 19px;
            height: 19px;
            background-image: url(../images/pro-add.png);
        }


.pro-right {
    float: right;
    width: 77.14%;
    padding-left: 30px;
}

.pro-ricon {
}

.pro-ul {
    margin: -20px -10px 0;
}

    .pro-ul li {
        float: left;
        width: 50%;
        padding: 0 10px;
        margin-top: 20px;
    }

.pro-a {
    display: block;
    background: #fff;
    position: relative;
}

.pro-img {
    overflow: hidden;
}

    .pro-img img {
        width: 100%;
        transition: ease .8s;
    }

.pro-font {
    padding: 26px 15px;
    position: relative;
    font-size: 24px;
    line-height: 26px;
    color: #333;
    text-align: center;
}

    .pro-font span {
        display: block;
        position: relative;
        transition: ease .8s;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }

    .pro-font::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 0;
        background: #fda50b;
        left: 0;
        bottom: 0;
        transition: ease .8s;
    }

.pro-mo {
    margin: 70px auto 0;
    font-size: 26px;
    border-color: #fda50b;
    width: 300px;
    line-height: 74px;
    height: 74px;
    text-align: center;
}

    .pro-mo.more span {
        display: inline-block;
        width: auto;
        padding-right: 35px;
    }

        .pro-mo.more span::before {
            width: 23px;
            height: 23px;
            background-image: url(../images/pro-mo.png);
        }

    .pro-mo.more:hover span::before {
        background-image: url(../images/pro-mo1.png);
    }

.pro-a:hover .pro-font::before {
    height: 100%;
}

.pro-a:hover .pro-font {
    color: #fff;
}

.pro-a:hover .pro-img img {
    transform: scale(1.1);
}

@media(max-width:1459px) {
    .pro-menu1 h3 {
        font-size: 26px;
        line-height: 30px;
        padding: 18px 25px;
    }

    .pro-menu1 a {
        padding: 16px 25px;
        font-size: 19px;
    }

    .pro-menu2 h4 {
        font-size: 21px;
    }

    .promenu-span span {
        font-size: 16px;
        line-height: 34px;
    }

        .promenu-span span d {
            font-size: 18px;
        }

        .promenu-span span em {
            display: block;
        }

        .promenu-span span::before {
            top: 10px;
        }

    .pro-font {
        font-size: 22px;
    }

    .pro-mo {
        margin-top: 40px;
        font-size: 24px;
        width: 240px;
        line-height: 60px;
        height: 60px;
    }

    .pro-menu2 {
        padding-bottom: 40px;
    }
}

@media(max-width:1259px) {
    .pro-menu1 h3 {
        font-size: 26px;
        padding: 22px 20px;
    }

    .pro-menu1 a {
        padding: 16px 20px;
        font-size: 18px;
    }

    .pro-menu2 h4 {
        font-size: 18px;
        line-height: 30px;
    }

    .pro-menu2 {
        padding: 24px 20px 40px;
    }

    .promenu-span span {
        font-size: 14px;
        line-height: 26px;
    }

        .promenu-span span d {
            font-size: 16px;
        }

        .promenu-span span::before {
            top: 5px;
        }

    .prosear-left span {
        font-size: 16px;
        line-height: 30px;
    }

    .prosear-inp input {
        font-size: 16px;
        line-height: 43px;
    }

    .prosear-inp {
        width: 352px;
        height: 45px;
    }

    .prosear-sub {
        height: 43px;
        background-size: 20px 19px;
    }
    /* .prosear-left{padding: 0;} */
    .pro-font {
        font-size: 20px;
        padding: 20px 15px;
    }

    .pro-mo {
        font-size: 22px;
    }
}

@media(max-width:991px) {
    .pro-left {
        float: none;
        width: 100%;
    }

    .pro-right {
        float: none;
        width: 100%;
        padding-left: 0;
        margin-top: 30px;
    }

    .pro-font {
        font-size: 20px;
        padding: 15px;
    }

    .prosear-left {
        float: none;
        max-width: 100%;
        width: 100%;
        padding: 0;
    }

    .prosear-right {
        float: none;
        width: 100%;
        max-width: 100%;
        margin-top: 15px;
    }
}

@media(max-width:767px) {
    .pro-menu1 {
        display: none;
    }

    .pro-content {
        padding: 40px 0;
    }

    .pro-mo {
        margin-top: 30px;
        width: 160px;
        line-height: 42px;
        height: 42px;
    }

    .pro-menu2 {
        margin-top: 0;
    }

    .pro-font {
        font-size: 16px;
    }

    .pro-mo.more span::before {
        width: 20px;
        height: 20px;
    }
}

@media(max-width:640px) {
    .pro-ul li {
        width: 100%;
    }

    .pro-menu2 {
        padding: 30px 20px;
    }

    .pro-font::before {
        height: 100%;
    }

    .pro-font {
        color: #fff;
    }

    .pro-menu2 {
        display: none;
    }

    .pro-right {
        margin-top: 0;
    }
}

/* =================== proinfo 产品详情 ==================== */
.proinfo {
}

.pri-content {
}

.pri-one {
    padding: 89px 0 75px;
}

.pri1-con {
}

.pri1-left {
    float: left;
    width: 51.8%;
    padding: 0 100px;
}

.jqzoom {
    background: white;
    position: relative;
    padding: 0px;
    cursor: pointer;
    margin: 0px;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

    .jqzoom img {
        width: 100%;
        height: 100%;
    }
/* .jqzoom::before{position: absolute;content: "";width: 19px;height: 20px;background: url(../images/pri1-bf.png)no-repeat center;background-size: 100% 100%;right: 20px;bottom: 20px;} */
.zoomdiv {
    z-index: 100;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 368px;
    height: 368px;
    background: #ffffff;
    display: none;
    text-align: center;
    overflow: hidden;
}

.jqZoomPup {
    z-index: 10;
    visibility: hidden;
    position: absolute;
    top: 0px;
    left: 0px;
    border: 1px solid #aaa;
    background: #ffffff;
    opacity: 0.5;
    -moz-opacity: 0.5;
    -khtml-opacity: 0.5;
    filter: alpha(Opacity=50);
}

.spec-preview {
    width: 100%;
}

.spec-scroll {
    width: 100%;
    position: relative;
    margin-top: 10px;
    margin-right: 0;
    padding: 0 38px;
}

    .spec-scroll .prev {
        left: 0;
        text-align: left;
    }

    .spec-scroll .next {
        right: 0;
        text-align: right;
    }

    .spec-scroll .prev,
    .spec-scroll .next {
        opacity: 1;
        z-index: 3;
        font-weight: bold;
        position: absolute;
        top: 0;
        width: 38px;
        height: 97px;
        cursor: pointer;
        line-height: 97px;
        font-size: 30px;
        color: #dcdcdc;
    }

.proi-left:hover .spec-scroll .prev,
.proi-left:hover .spec-scroll .next {
    opacity: 1;
}

.spec-scroll .prev:hover, .spec-scroll .next:hover {
    color: #fda50b;
}

.spec-scroll .items {
    width: 100%;
    height: 97px;
    overflow: hidden;
    position: relative;
}

    .spec-scroll .items ul {
        overflow: hidden;
        margin: 0 auto;
        position: relative;
        margin-right: -20px;
    }

        .spec-scroll .items ul li {
            width: 97px;
            height: 97px;
            margin-right: 20px;
            float: left;
            padding: 5px;
            border: 1px solid #ddd;
        }

            .spec-scroll .items ul li.hover {
                border-color: #fda50b;
            }

            .spec-scroll .items ul li img {
                width: 100%;
                height: 100%;
                background: white;
            }

            .spec-scroll .items ul li p {
                color: #333;
                font-size: 16px;
                text-align: center;
                margin-bottom: 0px;
            }

.pir-swiper {
    display: none;
    position: relative;
    background: white;
    padding: 0 50px 30px;
}

.pir-pic {
    text-align: center;
    font-size: 0;
}

    .pir-pic img {
        display: inline-block;
        max-width: 100%;
    }

.pir-swiper .swiper-pagination {
    bottom: 0px;
    width: 100%;
    margin-left: -50px;
}

.pir-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #cecece;
    opacity: 1;
    margin: 0 5px !important;
}

.pir-swiper .swiper-pagination-bullet-active {
    background: #fda50b;
}

.pir-swiper .swiper-button-next,
.pir-swiper .swiper-button-prev {
    background: none;
    opacity: 1;
    font-size: 40px;
    color: #dbdbdb;
    font-weight: bold;
}

.pir-swiper .swiper-button-next {
    right: 0;
}

.pir-swiper .swiper-button-prev {
    left: 0;
}

    .pir-swiper .swiper-button-next:hover,
    .pir-swiper .swiper-button-prev:hover {
        color: #fda50b;
    }

.pri1-right {
    float: right;
    width: 48.2%;
}

    .pri1-right h3 {
        font-size: 30px;
        line-height: 40px;
        color: #333;
    }

    .pri1-right h4 {
        margin: 42px 0 0;
        font-size: 22px;
        line-height: 30px;
        color: #fda50b;
    }

.pri1-line {
    margin: 13px 0 0;
    width: 100%;
    height: 1px;
    background: #e3e3e3;
}

.pri1-p {
    margin: 16px 0 0;
    max-height: 106px;
    font-size: 18px;
    line-height: 30px;
    color: #666;
}

    .pri1-p p {
        padding-bottom: 8px;
    }

.pri1-mo {
    margin: 59px 0 0;
    font-size: 18px;
    text-align: center;
}

    .pri1-mo span {
        padding: 0;
    }

        .pri1-mo span::before {
            display: none;
        }

.pri-two {
    padding: 82px 0 0;
}

.pri-tit {
    padding-left: 16px;
    font-size: 22px;
    line-height: 26px;
    color: #333;
    position: relative;
}

    .pri-tit::before {
        position: absolute;
        content: "";
        width: 6px;
        height: 26px;
        background: #fda50b;
        left: 0;
        top: 0;
    }

.pri2-con {
    margin: 26px 0 0;
    font-size: 18px;
    line-height: 30px;
    color: #666;
}

    .pri2-con ul {
    }

    .pri2-con li {
        margin-top: 14px;
    }

        .pri2-con li:first-child {
            margin-top: 0;
        }

.pri-three {
    padding: 74px 0 80px;
}

.pri3-con {
    margin-top: 46px;
}

.pri3-swiper {
    position: relative;
}

    .pri3-swiper .swiper-pagination {
        bottom: 0;
        display: none;
        width: 100%;
    }

    .pri3-swiper .swiper-pagination-bullet {
        margin: 0 5px;
    }

    .pri3-swiper .swiper-pagination-bullet-active {
        background-color: #fda50b;
    }

    .pri3-swiper .swiper-button-next,
    .pri3-swiper .swiper-button-prev {
        background: none;
        opacity: 1;
        width: 50px;
        height: 56px;
        line-height: 56px;
        font-size: 50px;
        color: #dbdbdb;
        font-weight: bold;
    }

    .pri3-swiper .swiper-button-next {
        right: -60px;
    }

    .pri3-swiper .swiper-button-prev {
        left: -60px;
    }

        .pri3-swiper .swiper-button-next:hover,
        .pri3-swiper .swiper-button-prev:hover {
            color: #fda50b;
        }

    .pri3-swiper .pro-font {
        font-size: 18px;
        color: #666;
        padding: 22px 15px;
        margin-top: -20px;
    }

@media(max-width:1679px) {
    .pri3-swiper {
        padding: 0 50px;
    }

        .pri3-swiper .swiper-button-next {
            right: 0;
        }

        .pri3-swiper .swiper-button-prev {
            left: 0;
        }

        .pri3-swiper .pro-font {
            margin-top: 0;
        }
}

@media(max-width:1459px) {
    .pri1-left {
        padding: 0 48px;
    }

    .pri1-right h3 {
        font-size: 26px;
    }
}

@media(max-width:1259px) {
    .pri3-swiper .pro-font {
        padding: 20px 15px;
    }

    .pri3-swiper .swiper-button-next,
    .pri3-swiper .swiper-button-prev {
        font-size: 34px;
        width: 34px;
        height: 38px;
    }

    .pri2-con {
        font-size: 16px;
    }

    .pri1-left {
        padding: 0 39px;
    }

    .pri1-p {
        font-size: 16px;
    }

    .pri1-right h3 {
        font-size: 24px;
    }
}

@media(max-width:991px) {
    .pri1-left {
        float: none;
        width: 100%;
        padding: 0 10%;
    }

    .spec-preview, .spec-scroll {
        display: none;
    }

    .pir-swiper {
        display: block;
    }

    .pri1-right {
        margin-top: 30px;
        float: none;
        width: 100%;
    }

    .pri-tit {
        font-size: 20px;
    }

        .pri-tit::before {
            width: 4px;
        }

    .pri1-mo {
        margin: 30px 0 0;
        font-size: 16px;
    }

    .pri-one {
        padding: 60px 0px;
    }

    .pri1-right h3 {
        font-size: 22px;
        line-height: 30px;
    }

    .pri1-right h4 {
        font-size: 20px;
        margin: 20px 0 0;
    }

    .pri1-p p {
        padding-bottom: 0;
    }

    .pri-two {
        padding: 60px 0 0;
    }

    .pri-three {
        padding: 60px 0;
    }

    .pri1-p {
        max-height: none;
        height: auto;
        padding: 0;
    }
}

@media(max-width:767px) {
    .pri-one {
        padding: 40px 0;
    }

    .pri1-right h3 {
        font-size: 20px;
        line-height: 30px;
    }

    .pri1-right h4 {
        font-size: 16px;
        line-height: 30px;
    }

    .pri1-p {
        font-size: 14px;
        line-height: 24px;
    }

    .pri1-right {
        margin-top: 20px;
    }

    .pir-swiper .swiper-button-next,
    .pir-swiper .swiper-button-prev {
        font-size: 20px;
    }

    .pri1-left {
        padding: 0 5%;
    }

    .pir-swiper {
        padding: 0 30px 30px;
    }

    .pri1-right h4 {
        margin-top: 10px;
    }

    .pri1-p {
        margin: 10px 0 0;
    }

    .pri1-mo {
        margin: 25px 0 0;
    }

    .pri-two {
        padding: 40px 0 0;
    }

    .pri-tit {
        font-size: 18px;
        padding-left: 12px;
    }

        .pri-tit::before {
            width: 3px;
            height: 20px;
            top: 3px;
        }

    .pri2-con {
        font-size: 14px;
        line-height: 24px;
        margin: 20px 0 0;
    }

        .pri2-con li {
            margin-top: 10px;
        }

    .pri-three {
        padding: 40px 0;
    }

    .pri3-swiper .pro-font {
        padding: 15px;
        font-size: 16px;
    }

    .pri3-swiper .swiper-button-next,
    .pri3-swiper .swiper-button-prev {
        font-size: 20px;
        width: 20px;
        height: 23px;
    }

    .pri3-swiper {
        padding: 0 36px;
    }

    .pri3-con {
        margin-top: 20px;
    }
}

@media(max-width:640px) {
    .pri3-swiper .pro-font {
        color: #fff;
    }

    .pri3-swiper, .pir-swiper {
        padding: 0 0 30px;
    }

        .pri3-swiper .swiper-button-next,
        .pri3-swiper .swiper-button-prev,
        .pir-swiper .swiper-button-next,
        .pir-swiper .swiper-button-prev {
            display: none;
        }

        .pri3-swiper .swiper-pagination {
            display: block;
        }

        .pir-swiper .swiper-pagination {
            margin-left: 0;
        }

    .pri1-left {
        padding: 0;
    }
}

/* ======================= appli 行业应用案例 ===================== */
.appli {
}

.appba-h4 {
    margin: 4px 0 0;
    font-size: 40px;
    line-height: 60px;
    color: #fff;
}

.appli-content {
    padding: 80px 0;
}

.appli-con {
}

.appli-ul {
}

    .appli-ul li:first-child {
        margin-top: 0;
    }

    .appli-ul li {
        margin-top: 80px;
    }

.appli-a {
    display: block;
    position: relative;
}

.appli-pic {
    float: right;
    width: 53.6%;
    position: relative;
}

.appli-bk {
    transition: ease .5s;
}

.appli-hd {
    position: absolute;
    left: 0;
    width: 100%;
    top: 0;
    opacity: 0;
    transition: ease .5s;
}

.appli-swiper {
    position: relative;
}

    .appli-swiper .swiper-pagination {
        bottom: 14px;
        width: 100%;
    }

    .appli-swiper .swiper-pagination-bullet {
        margin: 0 6px;
        background-color: #eaedef;
        width: 11px;
        height: 11px;
        opacity: 1;
    }

    .appli-swiper .swiper-pagination-bullet-active {
        background-color: #fda50b;
    }
/* .appli-swiper .swiper-pagination-bullet:first-child{display: none;} */
.appli-img {
    width: 100%;
    overflow: hidden;
}

    .appli-img img {
        width: 100%;
    }

.appli-swiper .appli-img {
    border: 1px solid #e7e7e7;
    position: relative;
}

.appli-swiper .swiper-slide.appli-pcnone {
    display: none;
}

    .appli-swiper .swiper-slide.appli-pcnone .appli-img {
        border: none;
    }

.appli-txt {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 75px;
    padding: 0 10px;
    font-size: 26px;
    line-height: 30px;
    color: #333;
    text-align: center;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.appli-font {
    float: left;
    width: 46.4%;
    padding-right: 88px;
}

    .appli-font span {
        display: block;
        font-size: 120px;
        line-height: 100px;
        color: rgba(51,51,51,.1);
        font-family: "DINMITTELSCHRIFTSTD";
    }

    .appli-font h3 {
        margin-top: -45px;
        font-size: 30px;
        line-height: 40px;
        color: #333;
    }

.appli-p {
    margin: 23px 0 0;
    font-size: 18px;
    line-height: 32px;
    color: #666;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.appli-logo {
    font-size: 0;
    margin: 40px 0 0;
}

.appli-logo1 {
    display: inline-block;
    margin-right: 23px;
}

.appli-logo1 {
    margin-right: 0;
}

    .appli-logo1:last-child {
        margin-right: 0;
    }

    .appli-logo1 img {
        display: inline-block;
        max-width: 100%;
    }

.appli-ul li:nth-child(even) .appli-pic {
    float: left;
}

.appli-ul li:nth-child(even) .appli-font {
    float: right;
    padding-right: 0;
    padding-left: 88px;
}

.appli-ul li:hover .appli-hd {
    opacity: 1;
}

.appli-ul li:hover .appli-bk {
    opacity: 0;
}

.appli-ul li:hover .appli-font span {
    color: #fda50b;
}

.appli-swiper .swiper-button-prev,
.appli-swiper .swiper-button-next {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    color: #666;
    background: #eee;
    font-size: 20px;
    font-weight: bold;
    transition: ease .5s;
}

    .appli-swiper .swiper-button-prev:hover,
    .appli-swiper .swiper-button-next:hover {
        background-color: #fda50b;
        color: #fff;
    }

.appli-logoswip {
    position: relative;
    transition: ease .5s;
    width: 443px;
}

.appli-logoswip1 {
}

.appli-logoswip .swiper-slide {
}

.appli-logoswip .swiper-pagination {
    width: 100%;
    display: none;
    bottom: 0px;
}

.appli-logoswip .swiper-pagination-bullet {
    display: inline-block;
    margin: 0 5px;
}

.appli-logoswip .swiper-pagination-bullet-active {
    background-color: #fda50b;
}

.appli-logoswip .swiper-button-next,
.appli-logoswip .swiper-button-prev {
    background: none;
    font-size: 24px;
    opacity: 0;
    color: #a7a7a7;
    font-weight: bold;
    transition: ease .5s;
}

    .appli-logoswip .swiper-button-next:hover,
    .appli-logoswip .swiper-button-prev:hover {
        color: #fda50b;
    }

.appli-logoswip .swiper-button-next {
    text-align: right;
}

.appli-logoswip .swiper-button-prev {
    text-align: left;
}

.appli-ul li:hover .appli-logoswip .swiper-button-next,
.appli-ul li:hover .appli-logoswip .swiper-button-prev {
    opacity: 1;
}

.appli-ul li:hover .appli-logoswip {
    padding: 0 55px;
    width: 553px;
}

.appli-mo {
    margin-top: 30px;
}

    .appli-mo span {
        font-size: initial;
        color: #fff;
        font-size: 18px !important;
        line-height: 50px !important;
        font-family: 'OPENSANS-REGULAR';
    }

    .appli-mo:hover span {
        color: #fda50b;
    }

.appli-ul li:hover .appli-mo span {
    color: #fff;
}

.appli-ul li:hover .appli-mo:hover span {
    color: #fda50b;
}

@media(max-width:1459px) {
    .appli-font span {
        font-size: 90px;
    }

    .appli-font h3 {
        font-size: 26px;
    }

    .appli-p {
        font-size: 16px;
        line-height: 30px;
        margin-top: 10px;
    }

    .appli-logo {
        margin: 25px 0 0;
    }

    .appli-logo1 {
        margin-right: 16px;
        width: 100%;
    }

    .appli-ul li:nth-child(even) .appli-font {
        padding-left: 60px;
    }

    .appli-font {
        padding-right: 60px;
    }

    .appli-txt {
        font-size: 24px;
    }

    .appli-logoswip {
        width: 376px;
    }

    .appli-ul li:hover .appli-logoswip {
        padding: 0 45px;
        width: 466px;
    }

    .appli-mo {
        margin-top: 18px;
    }
}

@media(max-width:1259px) {
    .appli-txt {
        font-size: 20px;
    }

    .appli-font span {
        font-size: 80px;
        line-height: 70px;
    }

    .appli-font h3 {
        font-size: 22px;
        line-height: 30px;
        margin-top: -30px;
    }

    .appli-p {
        margin-top: 5px;
    }
    /* .appli-logo1{width: 160px;} */

    .appli-ul li:nth-child(even) .appli-font {
        padding-left: 40px;
    }

    .appli-font {
        padding-right: 40px;
    }

    .appli-ul li {
        margin-top: 50px;
    }

    .appli-txt {
        bottom: 48px;
    }

    .appli-logoswip {
        width: 336px;
    }

    .appli-ul li:hover .appli-logoswip {
        padding: 0 30px;
        width: 396px;
    }

    .appli-logoswip .swiper-button-next,
    .appli-logoswip .swiper-button-prev {
        width: 16px;
        height: 24px;
    }
}

@media(max-width:991px) {
    .appli-pic, .appli-ul li:nth-child(even) .appli-pic {
        float: none;
        width: 100%;
    }

    .appli-ul li:nth-child(even) .appli-font, .appli-font {
        float: none;
        width: 100%;
        padding: 0;
        margin: 20px 0 0;
    }

        .appli-font span {
            font-size: 65px;
        }

        .appli-font h3 {
            font-size: 20px;
        }

    .appli-logo {
        margin: 15px 0 0;
    }
    /* .appli-logo1{width: 130px;} */
    .appli-bk {
        opacity: 0;
        display: none;
    }

    .appli-hd {
        opacity: 1;
        position: relative;
    }

    .appli-swiper .swiper-slide.appli-pcnone {
        display: block;
    }

    .appli-txt {
        font-size: 18px;
        bottom: 0;
        padding: 12px 10px;
    }

    .appli-swiper .swiper-pagination {
        bottom: 0;
    }

    .appli-swiper {
        padding-bottom: 30px;
    }

    .appli-font h3 {
        margin-top: 0;
    }

    .appli-logoswip .swiper-button-next, .appli-logoswip .swiper-button-prev {
        display: none;
    }

    .appli-ul li:hover .appli-logoswip {
        padding: 0;
    }

    .appli-ul li:hover .appli-logoswip, .appli-logoswip {
        width: 336px;
    }

        .appli-logoswip .swiper-pagination {
            display: block;
        }

    .appli-logoswip, .appli-ul li:hover .appli-logoswip {
        padding-bottom: 20px;
        width: auto;
    }

    .appli-font span {
        color: rgb(253 165 11);
    }
}

@media(max-width:767px) {
    .appli-font span {
        font-size: 40px;
        line-height: 40px;
    }

    .appli-font h3 {
        font-size: 16px;
        margin: 0;
    }

    .appli-p {
        font-size: 14px;
        line-height: 24px;
    }

    .appli-logo1 {
        width: 110px;
    }

    .appli-ul li {
        margin-top: 30px;
    }

    .appli-content {
        padding: 40px 0;
    }

    .appli-txt {
        font-size: 16px;
    }

    .appli-txt {
        padding: 10px;
    }

    .appli-swiper .swiper-button-prev,
    .appli-swiper .swiper-button-next {
        display: none;
    }

    .appli-logo1 {
        width: 100%;
    }

    .appli-font span {
        color: rgb(253 165 11);
    }
}

/* =================== advantage 研发优势 ================== */
.advante {
}

.advante-content {
    padding: 76px 0 0;
}

.advante-tit {
    position: relative;
    font-size: 36px;
    line-height: 40px;
    color: #333;
    text-align: center;
    padding-bottom: 17px;
}

    .advante-tit::before {
        position: absolute;
        content: "";
        width: 30px;
        height: 3px;
        background: #fda50b;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
    }

.advante-dec {
    margin-top: 12px;
    font-size: 18px;
    line-height: 26px;
    color: #666;
    text-align: center;
}

    .advante-dec em {
        display: block;
    }

.advante-con {
    margin-top: 77px;
    position: relative;
}

    .advante-con::before {
        position: absolute;
        content: "";
        width: 1px;
        height: 100%;
        background: #ccc;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
    }

.advante-ul {
}

    .advante-ul li {
        padding-bottom: 80px;
    }

.advante-a {
    display: block;
    position: relative;
    overflow: hidden;
}

    .advante-a::before {
        position: absolute;
        content: "";
        width: 22px;
        height: 22px;
        background: #fff;
        border: 1px solid #ccc;
        transition: ease .5s;
        border-radius: 50%;
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%);
    }

    .advante-a::after {
        position: absolute;
        content: "";
        width: 16px;
        height: 16px;
        background: #ccc;
        border-radius: 50%;
        transition: ease .5s;
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%);
    }

.advante-img {
    float: left;
    width: 50%;
    padding-right: 70px;
    position: relative;
}

.advante-swiper {
}

    .advante-swiper .swiper-pagination {
        bottom: 13px;
    }

    .advante-swiper .swiper-pagination-bullet {
        width: 14px;
        height: 14px;
        background: #fff;
        opacity: 1;
    }

    .advante-swiper .swiper-pagination-bullet-active {
        background-color: #fda50b;
    }

.advante-pic {
    text-align: left;
    font-size: 0;
}

    .advante-pic img {
        max-width: 100%;
        display: inline-block;
    }

.advante-txt {
    padding-top: 71px;
    float: right;
    width: 50%;
    padding-left: 70px;
}

.advante-font {
}

    .advante-font h3 {
        font-size: 26px;
        line-height: 30px;
        color: #333;
    }

.advante-ul1 {
    margin-top: 23px;
    height: 210px;
}

.advante-li:first-child {
    margin-top: 0;
}

.advante-li {
    margin-top: 15px;
    padding-left: 16px;
    position: relative;
    font-size: 18px;
    line-height: 30px;
    color: #666;
}

    .advante-li::before {
        position: absolute;
        content: "";
        width: 9px;
        height: 9px;
        background: url(../images/adv-bf.png)no-repeat center;
        background-size: 100% 100%;
        left: 0;
        top: 10px;
    }

    .advante-li p {
    }

    .advante-li em {
        font-size: 20px;
        font-family: "DIN-REGULAR";
        float: left;
        width: 194px;
        display: block;
    }

    .advante-li span {
        font-size: 20px;
        margin-left: 194px;
        display: block;
    }

.advante-ul li:nth-child(even) .advante-img {
    float: right;
    padding-left: 70px;
    padding-right: 0;
}

.advante-ul li:nth-child(even) .advante-txt {
    float: left;
    padding-left: 0;
    padding-right: 40px;
}

.advante-a:hover::after {
    background-color: #fda50b;
}

.advante-a:hover::before {
    border-color: #fda50b;
}


@media(max-width:1459px) {
    .advante-tit {
        font-size: 32px;
    }

    .advante-font h3 {
        font-size: 22px;
    }

    .advante-li {
        font-size: 16px;
    }

    .advante-dec {
        font-size: 16px;
    }

    .advante-li span {
        font-size: 16px;
        margin-left: 180px;
    }

    .advante-ul1 {
        height: 190px;
    }

    .advante-li em {
        font-size: 16px;
        width: 180px;
    }

    .advante-a::before {
        width: 20px;
        height: 20px;
    }

    .advante-a::after {
        width: 14px;
        height: 14px;
    }

    .advante-ul li {
        padding-bottom: 60px;
    }

    .advante-li {
        margin-top: 10px;
    }

    .advante-txt {
        padding-top: 38px;
        padding-left: 50px;
    }

    .advante-ul li:nth-child(even) .advante-txt {
        padding-right: 50px;
    }

    .advante-swiper .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
    }

    .advante-img {
        padding-right: 50px;
    }

    .advante-ul li:nth-child(even) .advante-img {
        padding-left: 50px;
    }

    .advante-con {
        margin-top: 60px;
    }
}

@media(max-width:1259px) {
    .advante-li::before {
        top: 11px;
    }

    .advante-txt {
        padding-top: 0;
    }

    .advante-li em {
        width: 160px;
    }

    .advante-li span {
        margin-left: 160px;
    }

    .advante-tit {
        font-size: 28px;
        line-height: 30px;
    }

    .advante-font h3 {
        font-size: 20px;
    }

    .advante-a::before {
        width: 16px;
        height: 16px;
    }

    .advante-a::after {
        width: 10px;
        height: 10px;
    }

    .advante-ul1 {
        margin-top: 12px;
    }

    .advante-img {
        padding-right: 30px;
    }

    .advante-ul li:nth-child(even) .advante-img {
        padding-left: 30px;
    }

    .advante-txt {
        padding-left: 30px;
    }

    .advante-ul li:nth-child(even) .advante-txt {
        padding-right: 30px;
    }

    .advante-ul1 {
        height: 200px;
    }
}

@media(max-width:991px) {
    .advante-con::before {
        display: none;
    }

    .advante-a::after, .advante-a::before {
        display: none;
    }

    .advante-img,
    .advante-ul li:nth-child(even) .advante-img {
        float: none;
        width: 100%;
        padding: 0;
    }

    .advante-txt,
    .advante-ul li:nth-child(even) .advante-txt {
        float: none;
        width: 100%;
        padding: 25px 0 0;
    }

    .advante-dec em {
        display: inline;
    }

    .advante-tit {
        font-size: 24px;
        padding-bottom: 10px;
    }

    .advante-con {
        margin-top: 40px;
    }

    .advante-ul1 {
        height: auto;
    }

    .advante-li {
        margin-top: 6px;
    }

    .advante-ul li {
        padding-bottom: 50px;
    }
}

@media(max-width:767px) {
    .advante-content {
        padding: 40px 0;
    }

    .advante-ul li {
        padding-bottom: 30px;
    }

        .advante-ul li:last-child {
            padding-bottom: 0;
        }

    .advante-con {
        margin-top: 20px;
    }

    .advante-tit {
        font-size: 22px;
        padding-bottom: 10px;
    }

    .advante-font h3 {
        font-size: 18px;
    }

    .advante-li {
        font-size: 14px;
        line-height: 24px;
        margin-top: 3px;
    }

        .advante-li em, .advante-li span {
            font-size: 14px;
        }

        .advante-li em {
            float: none;
            width: 100%;
        }

        .advante-li span {
            margin-left: 0;
        }

        .advante-li::before {
            top: 8px;
            width: 7px;
            height: 7px;
        }

    .advante-txt, .advante-ul li:nth-child(even) .advante-txt {
        padding: 15px 0 0;
    }

    .advante-swiper .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }

    .advante-dec {
        margin-top: 10px;
    }
}

/* ======================= about 关于欧宇 ==================== */
.about {
}

.about-content {
}

.about-dec {
    margin-top: 4px;
    font-size: 18px;
    line-height: 26px;
    color: #666;
    text-align: center;
}

.about-one {
    padding: 73px 0 78px;
}

.abt1-con {
    margin-top: 36px;
}

.abt1-img {
    float: right;
    width: 47.86%;
}

    .abt1-img img {
        width: 100%;
    }

.abt1-font {
    float: left;
    width: 52.14%;
    padding-right: 85px;
    padding-top: 52px;
}

    .abt1-font h3 {
        font-size: 26px;
        line-height: 30px;
        color: #333;
    }

.abt1-p {
    margin-top: 26px;
    font-size: 18px;
    line-height: 30px;
    color: #666;
    max-height: 120px;
}

.abt1-line {
    margin: 38px 0 0;
    width: 38px;
    height: 4px;
    background: #fda50b;
}

.abt1-ul {
}

    .abt1-ul.infiv-ul li h3 span,
    .abt1-ul.infiv-ul li h3 em,
    .abt1-ul.infiv-ul li p {
        color: #333;
    }

.about-two {
    padding: 188px 0 224px;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
}

    .about-two .about-tit {
        color: #fff;
    }

.abt2-con {
}

.abt2-h3 {
    margin-top: 13px;
    font-size: 26px;
    line-height: 30px;
    color: #fff;
    text-align: center;
}

.abt2-p {
    margin-top: 44px;
    font-size: 18px;
    line-height: 30px;
    color: #fff;
    text-align: center;
}

    .abt2-p em {
        display: block;
    }

.about-three {
    padding: 74px 0 80px;
}

.abt3-con {
    margin-top: 35px;
}

.abt3-ul {
    margin: 0 -15px;
}

    .abt3-ul li {
        float: left;
        width: 50%;
        padding: 0 15px;
    }

        .abt3-ul li > div {
            display: table;
            width: 100%;
            height: 428px;
            position: relative;
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
        }
            /* display: table; */
            .abt3-ul li > div::before {
                position: absolute;
                content: "";
                width: 100%;
                height: 100%;
                background: rgba(0,0,0,.4);
                left: 0;
                top: 0;
            }

.abt3-font {
    display: table-cell;
    transition: ease .5s;
    vertical-align: middle;
    text-align: center;
    position: relative;
}

    .abt3-font h3 {
        font-size: 30px;
        line-height: 40px;
        color: #fff;
        padding: 0 15px;
    }

    .abt3-font p {
        margin-top: 12px;
        font-size: 18px;
        line-height: 30px;
        color: #fff;
        padding: 0 15px;
    }

        .abt3-font p em {
            display: block;
        }
/* .abt3-ul li:hover>div{background: 150% 150%;} */
.abt3-ul li:hover .abt3-font {
    transform: scale(1.05);
}

.about-four {
    padding: 72px 0 136px;
    position: relative;
}

.abt4-time {
    position: absolute;
    right: -50px;
    bottom: -50px;
    z-index: 0;
    font-size: 230px;
    line-height: 200px;
    color: rgba(51,51,51,.03);
    font-family: "DIN-BOLD";
}

.abt4-con {
    position: relative;
    margin-top: 49px;
}

    .abt4-con::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 1px;
        background: #cdcdcd;
        left: 0;
        top: 13px;
    }

.abt4-swip {
    position: relative;
}

    .abt4-swip .swiper-slide-active .abt4-dot {
        border-color: #fda50b;
    }

        .abt4-swip .swiper-slide-active .abt4-dot::before {
            background-color: #fda50b;
        }

    .abt4-swip .swiper-slide-active .abt4-li h3 {
        color: #fda50b;
    }

.abt4-li {
    text-align: center;
}

.abt4-dot {
    position: relative;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f6f6f6;
    border: 1px solid #cdcdcd;
    margin: 0 auto;
}

    .abt4-dot::before {
        position: absolute;
        content: "";
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: #dcdcdc;
        left: 4px;
        top: 4px;
    }

.abt4-li h3 {
    margin-top: 24px;
    font-size: 26px;
    line-height: 30px;
    color: #333;
}

.abt4-p {
    margin-top: 15px;
    font-size: 18px;
    line-height: 32px;
    color: #666;
}

.abt4-swip .swiper-button-next,
.abt4-swip .swiper-button-prev {
    top: 0px;
    margin: -20px 0 0;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    color: #666;
    background: #fff;
    font-size: 22px;
    font-weight: bold;
    transition: ease .5s;
}

    .abt4-swip .swiper-button-prev:hover,
    .abt4-swip .swiper-button-next:hover {
        background-color: #fda50b;
        color: #fff;
    }

.abt4-swip .swiper-button-prev {
    left: -80px;
}

.abt4-swip .swiper-button-next {
    right: -80px;
}

.abt4-swip .swiper-pagination {
    display: none;
    width: 100%;
    bottom: 0;
}

.abt4-swip .swiper-pagination-bullet {
    margin: 0 5px;
}

.abt4-swip .swiper-pagination-bullet-active {
    background-color: #fda50b;
}

.about-fiv {
    padding: 73px 0 80px;
    position: relative;
    overflow: hidden;
    background: #fff;
}

.abt5-con {
    padding: 0 95px;
    margin-top: 38px;
}

.abt5-ul {
    margin: -38px -12px 0;
    font-size: 0;
    text-align: center;
}

    .abt5-ul li {
        display: inline-block;
        width: 20%;
        margin-top: 38px;
        padding: 0 12px;
    }

.abt5-img {
}

    .abt5-img img {
        max-width: 100%;
        transition: ease .5s;
    }

.abt5-ul:hover .abt5-img img {
    transform: scale(0.9);
}

.abt5-ul li:hover .abt5-img img {
    transform: scale(1.06);
}

@media(max-width:1919px) {
    .abt4-swip .swiper-button-prev {
        left: 0;
    }

    .abt4-swip .swiper-button-next {
        right: 0;
    }

    .abt4-swip {
        padding: 0 70px;
    }
}

@media(max-width:1459px) {
    .abt1-p {
        font-size: 16px;
    }

    .abt1-ul {
        margin-top: 40px;
    }

    .abt1-font h3, .abt2-h3 {
        font-size: 24px;
    }

    .abt1-font {
        padding-top: 0;
        padding-right: 60px;
    }

    .about-two {
        padding: 120px 0 145px;
    }

    .abt2-p, .abt3-font p {
        font-size: 16px;
    }

    .abt3-font h3 {
        font-size: 28px;
    }

    .abt4-li h3 {
        font-size: 21px;
    }

    .abt4-p {
        font-size: 16px;
        line-height: 30px;
    }

    .abt4-time {
        font-size: 150px;
        line-height: 150px;
        bottom: -40px;
    }

    .abt3-ul li > div {
        height: 365px;
    }

    .abt4-swip .swiper-button-next,
    .abt4-swip .swiper-button-prev {
        margin: -17px 0 0;
    }
}

@media(max-width:1259px) {
    .abt5-con {
        padding: 0;
    }

    .abt5-ul li {
        margin-top: 24px;
    }

    .abt5-ul {
        margin-top: -24px;
    }

    .about-four {
        padding: 72px 0 110px;
    }

    .abt3-ul li > div {
        height: 284px;
    }

    .abt3-font h3 {
        font-size: 24px;
        line-height: 30px;
    }

    .abt3-font p {
        line-height: 28px;
    }

    .abt1-font h3, .abt2-h3 {
        font-size: 22px;
    }

    .abt1-font {
        padding-right: 40px;
    }

    .abt1-line {
        margin: 20px 0 0;
    }

    .abt1-ul {
        margin-top: 22px;
    }

    .about-two {
        padding: 100px 0;
    }

    .abt4-time {
        font-size: 120px;
        line-height: 120px;
        bottom: -30px;
    }

    .abt4-swip .swiper-button-next,
    .abt4-swip .swiper-button-prev {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 20px;
    }

    .abt4-swip .swiper-button-prev {
        margin: -11px 0 0;
    }

    .abt4-swip {
        padding: 0 60px;
    }
}

@media(max-width:991px) {
    .abt5-ul li {
        width: 25%;
    }

    .abt4-li h3 {
        font-size: 18px;
    }

    .abt4-p {
        font-size: 15px;
        margin-top: 6px;
    }

    .abt3-font p em {
        display: inline;
    }

    .about-four {
        padding: 60px 0 100px;
    }

    .abt1-img {
        float: none;
        width: 100%;
    }

    .abt1-font {
        float: none;
        width: 100%;
        padding: 30px 0 0;
    }

    .abt1-p {
        margin-top: 10px;
        max-height: none;
        height: auto;
    }

    .abt1-font h3, .abt2-h3 {
        font-size: 20px;
    }
}

@media(max-width:767px) {
    .abt4-time {
        font-size: 50px;
        line-height: 50px;
        bottom: -10px;
        right: -15px;
    }

    .about-four {
        padding: 40px 0 50px;
    }

    .abt4-con, .abt3-con, .abt5-con {
        margin-top: 25px;
    }

    .abt4-li h3 {
        margin-top: 8px;
    }

    .abt4-dot {
        width: 22px;
        height: 22px;
    }

        .abt4-dot::before {
            width: 12px;
            height: 12px;
        }

    .abt4-con::before {
        top: 10px;
    }

    .about-three, .about-one {
        padding: 40px 0;
    }

    .abt2-p {
        margin-top: 25px;
    }

    .abt1-font h3, .abt2-h3 {
        font-size: 17px;
    }

    .abt2-p, .abt3-font p, .abt1-p {
        font-size: 14px;
        line-height: 24px;
    }

    .about-two {
        padding: 60px 0;
        background-attachment: scroll;
        background-size: cover;
    }

    .abt1-ul {
        margin-top: 12px;
    }

    .abt1-font {
        padding: 20px 0 0;
    }

    .about-dec {
        font-size: 16px;
    }

    .abt1-con {
        margin-top: 20px;
    }

    .abt3-font h3 {
        font-size: 16px;
    }

    .abt3-font p {
        margin-top: 6px;
    }

    .abt3-ul li > div {
        height: 210px;
    }

    .abt3-ul li {
        width: 100%;
        margin-top: 15px;
    }

        .abt3-ul li:nth-child(1) {
            margin-top: 0;
        }

    .about-fiv {
        padding: 40px 0;
    }

    .abt5-ul li {
        padding: 0 7px;
        margin-top: 15px;
    }

    .abt5-ul {
        margin: -15px -7px 0;
    }

    .abt4-swip .swiper-pagination {
        display: block;
    }

    .abt4-swip {
        padding-bottom: 30px;
    }

    .abt2-p em {
        display: inline;
    }

    .abt4-swip .swiper-button-next,
    .abt4-swip .swiper-button-prev {
        display: none;
    }

    .abt4-swip {
        padding: 0 0 30px;
    }
}

@media(max-width:640px) {
    .abt5-ul li {
        width: 33.33%;
    }
}

/* ==================== appinfo 应用详情 ================ */
.applinfo {
}

.appinfo-tit {
    padding-bottom: 21px;
    font-size: 36px;
    line-height: 40px;
    color: #333;
    text-align: center;
    position: relative;
}

    .appinfo-tit::before {
        position: absolute;
        content: "";
        width: 30px;
        height: 3px;
        background: #fda50b;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
    }

.appinfo-dec {
    margin-top: 11px;
    text-align: center;
    font-size: 18px;
    line-height: 30px;
    color: #666;
}

    .appinfo-dec d {
        color: #fda50b;
    }

    .appinfo-dec em {
        display: block;
    }

.applinfo-content {
    padding: 80px 0 76px;
}

.applinfo-con {
}

.appinfo-one {
    background: #f5f5f5;
}

    .appinfo-one .appinfo-tit {
        text-align: left;
    }

        .appinfo-one .appinfo-tit::before {
            left: 0;
            transform: none;
        }

.appinfo1-img {
    float: right;
    width: 53.57%;
    height: 421px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

    .appinfo1-img img {
        max-width: 100%;
        display: none;
    }

.appinfo1-font {
    float: left;
    width: 46.43%;
    padding: 78px 45px;
    padding-right: 30px;
}

.appinfo1-p {
    margin-top: 12px;
    font-size: 18px;
    line-height: 32px;
    color: #666;
    max-height: 192px;
}

.appinfo-two {
    padding: 72px 0;
}

.appinfo2-con {
    position: relative;
    margin-top: 75px;
}

.appinfo2-img {
    margin: 0 auto;
    width: 877px;
    height: 489px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
}

    .appinfo2-img img {
        display: none;
        width: 100%;
    }

.appinfo2-ul {
}

    .appinfo2-ul ul {
    }

    .appinfo2-ul li {
        position: absolute;
    }

        .appinfo2-ul li:nth-child(1) {
            left: 115px;
            top: -34px;
        }

        .appinfo2-ul li:nth-child(2) {
            right: 126px;
            top: 62px;
        }

        .appinfo2-ul li:nth-child(3) {
            left: 70px;
            top: 104px;
        }

        .appinfo2-ul li:nth-child(4) {
            left: 68px;
            top: 241px;
        }

        .appinfo2-ul li:nth-child(5) {
            right: 120px;
            top: 254px;
        }

        .appinfo2-ul li:nth-child(6) {
            right: 120px;
            top: 410px;
        }

        .appinfo2-ul li:nth-child(7) {
            left: 130px;
            top: 450px;
        }

        .appinfo2-ul li > div {
        }

.appinfo2-icon {
    float: left;
    width: 70px;
    height: 70px;
    text-align: center;
    line-height: 64px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #fda50b;
}

    .appinfo2-icon img {
        display: inline-block;
        max-width: 100%;
    }

.appinfo-p {
    margin-left: 78px;
    padding: 22px 0;
    font-size: 22px;
    line-height: 26px;
    color: #fda50b;
}

.appinfo-three {
    padding: 36px 0 74px;
}

.appinfo3-con {
    margin-top: 33px;
    position: relative;
    text-align: center;
}

.appinfo3-ba {
    width: 62.3%;
    display: inline-block;
    position: relative;
}

    .appinfo3-ba > img {
        width: 100%;
    }

.appinfo3-img {
    transition: ease 1s;
}

    .appinfo3-img img {
        position: absolute;
        height: 100%;
        width: 100%;
        left: 0;
        top: 0;
        transition: ease 1s;
    }

.appinfo3-img2 {
    z-index: 2;
    position: absolute;
    width: 53.9%;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    border-radius: 50%;
}

    .appinfo3-img2 img {
        width: 100%;
        border-radius: 50%;
    }

.appinfo3-font {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.appinfo3-ul {
}

.appinfo3-li {
    text-align: center;
    font-size: 0;
    position: absolute;
    padding: 30px;
}

    .appinfo3-li:nth-child(1) {
        top: 32%;
        left: 81%;
    }

    .appinfo3-li:nth-child(2) {
        top: 71%;
        left: 66%;
    }

    .appinfo3-li:nth-child(3) {
        top: 70%;
        left: 20.1%;
    }

    .appinfo3-li:nth-child(4) {
        top: 30.7%;
        left: 1.2%;
    }

    .appinfo3-li:nth-child(5) {
        top: 1.9%;
        left: 50%;
        transform: translateX(-50%);
    }

.appinfo3-icon {
    display: inline-block;
    width: 72px;
    height: 72px;
    overflow: hidden;
}

    .appinfo3-icon img {
        width: 100%;
        transition: ease 1s;
    }

.appinfo3-li.on .appinfo3-icon img {
    transform: translateY(-72px);
}

.appinfo3-li.on .appinfo3-p {
    color: #fff;
}

.appinfo3-p {
    margin-top: 6px;
    font-size: 26px;
    line-height: 30px;
    color: rgba(102,102,102,.6);
    transition: ease .5s;
}


.appinfo3-swip {
    display: none;
    font-size: 0;
    text-align: center;
    padding-bottom: 30px;
}

.appinfo3-pic {
    max-width: 100%;
    font-size: 0;
    text-align: center;
}

    .appinfo3-pic img {
        max-width: 100%;
        display: inline-block;
    }

.appinfo3-ico {
    margin-top: 20px;
    width: 50px;
    display: inline-block;
}

    .appinfo3-ico img {
        max-width: 100%;
        display: inline-block;
    }

.appinfo3-swip p {
    margin-top: 10px;
    font-size: 16px;
    line-height: 26px;
    color: #666;
}

.appinfo3-swip .swiper-pagination {
    bottom: 0;
    width: 100%;
}

.appinfo3-swip .swiper-pagination-bullet {
    margin: 0 5px;
}

.appinfo3-swip .swiper-pagination-bullet-active {
    background-color: #fda50b;
}


.appinfo-four {
}

.appinfo4-con {
    margin-top: 59px;
}

.appinfo4-ul {
}

    .appinfo4-ul li {
        float: left;
        width: 25%;
        padding: 0 7px;
    }

.appinfo4-icon {
    width: 101px;
    height: 101px;
    margin: 0 auto;
    transition: ease .5s;
    position: relative;
}

    .appinfo4-icon::before {
        position: absolute;
        content: "";
        width: 99px;
        height: 99px;
        border-radius: 50%;
        background: #fff6e6;
        right: -22px;
        top: -15px;
        z-index: -1;
    }

    .appinfo4-icon img {
        max-width: 100%;
    }

.appinfo4-txt {
    margin-top: 35px;
    font-size: 22px;
    line-height: 30px;
    color: #333;
    text-align: center;
}

.appinfo4-ul li:hover .appinfo4-icon {
    transform: rotatey(180deg);
}

@media(max-width:1459px) {
    .appinfo2-img {
        width: 672px;
        height: 425px;
    }

    .appinfo2-icon {
        width: 60px;
        height: 60px;
        line-height: 56px;
        padding: 0 10px;
    }

    .appinfo-p {
        padding: 16px 0;
        margin-left: 70px;
        font-size: 20px;
    }

    .appinfo2-ul li:nth-child(1) {
        top: -30px;
    }

    .appinfo2-ul li:nth-child(3) {
        top: 90px;
    }

    .appinfo2-ul li:nth-child(4) {
        top: 211px;
    }

    .appinfo2-ul li:nth-child(7) {
        top: 393px;
    }

    .appinfo2-ul li:nth-child(2) {
        top: 58px;
    }

    .appinfo2-ul li:nth-child(5) {
        top: 223px;
    }

    .appinfo2-ul li:nth-child(6) {
        top: 365px;
    }

    .appinfo-tit {
        font-size: 32px;
        padding-bottom: 16px;
    }

    .appinfo1-p {
        font-size: 16px;
        line-height: 30px;
        max-height: 180px;
    }

    .appinfo1-img {
        height: 365px;
    }

    .appinfo1-font {
        padding: 58px 30px 58px 45px;
    }

    .appinfo-dec {
        font-size: 16px;
    }

    .appinfo3-p {
        font-size: 22px;
    }

    .appinfo3-icon {
        width: 60px;
        height: 60px;
    }

    .appinfo3-li.on .appinfo3-icon img {
        transform: translateY(-60px);
    }

    .appinfo4-icon {
        width: 80px;
        height: 80px;
    }

        .appinfo4-icon::before {
            width: 79px;
            height: 79px;
            right: -12px;
            top: -12px;
        }

    .appinfo4-txt {
        font-size: 20px;
        margin-top: 18px;
    }

    .appinfo4-con {
        margin-top: 45px;
    }
}

@media(max-width:1259px) {
    .appinfo-tit {
        font-size: 28px;
        line-height: 30px;
        padding-bottom: 16px;
    }

    .appinfo3-icon {
        width: 50px;
        height: 50px;
    }

    .appinfo3-li.on .appinfo3-icon img {
        transform: translateY(-50px);
    }

    .appinfo3-p {
        font-size: 20px;
    }

    .appinfo3-li {
        padding: 16px;
    }

    .appinfo4-icon {
        width: 62px;
        height: 62px;
    }

        .appinfo4-icon::before {
            right: -22px;
            top: -22px;
        }

    .appinfo4-txt {
        font-size: 18px;
    }

    .appinfo-tit {
        font-size: 26px;
    }

    .appinfo1-font {
        padding: 46px 26px 46px 30px;
    }

    .appinfo1-img {
        height: 330px;
    }

    .appinfo2-img {
        width: 600px;
        height: 340px;
    }

    .appinfo2-ul li:nth-child(2) {
        top: 39px;
        right: 45px;
    }

    .appinfo2-ul li:nth-child(5) {
        top: 172px;
        right: 48px;
    }

    .appinfo2-ul li:nth-child(1) {
        left: 30px;
    }

    .appinfo2-ul li:nth-child(3) {
        top: 66px;
        left: 0;
    }

    .appinfo2-ul li:nth-child(4) {
        top: 163px;
        left: 0;
    }

    .appinfo2-ul li:nth-child(6) {
        top: 282px;
        right: 45px;
    }

    .appinfo2-ul li:nth-child(7) {
        top: 308px;
        left: 49px;
    }

    .appinfo-p {
        font-size: 18px;
    }
}

@media(max-width:991px) {
    .appinfo1-img {
        background: none !important;
        width: 100%;
        text-align: center;
        float: none;
        height: auto;
    }

        .appinfo1-img img {
            display: block;
            max-width: 100%;
            display: inline-block;
        }

    .appinfo1-font {
        float: none;
        width: 100%;
        padding: 30px;
    }

    .appinfo-tit {
        font-size: 24px;
        padding-bottom: 12px;
    }

    .appinfo2-icon {
        width: 50px;
        height: 50px;
        line-height: 46px;
        padding: 0 10px;
    }

    .appinfo-p {
        padding: 10px 0;
        margin-left: 60px;
        font-size: 17px;
    }

    .appinfo2-img {
        width: 420px;
        height: 234px;
    }

    .appinfo2-ul li:nth-child(1) {
        left: 24px;
        top: -24px;
    }

    .appinfo2-ul li:nth-child(2) {
        right: 42px;
        top: 24px;
    }

    .appinfo2-ul li:nth-child(3) {
        top: 43px;
    }

    .appinfo2-ul li:nth-child(4) {
        top: 108px;
    }

    .appinfo2-ul li:nth-child(5) {
        top: 116px;
    }

    .appinfo2-ul li:nth-child(6) {
        top: 190px;
    }

    .appinfo2-ul li:nth-child(7) {
        top: 208px;
    }

    .appinfo2-con {
        margin-top: 50px;
    }

    .appinfo-dec em {
        display: inline;
    }

    .appinfo3-icon {
        width: 42px;
        height: 42px;
    }

    .appinfo3-li.on .appinfo3-icon img {
        transform: translateY(-42px);
    }

    .appinfo3-p {
        font-size: 16px;
    }

    .appinfo3-li {
        padding: 8px;
    }

    .appinfo4-icon {
        width: 50px;
        height: 50px;
    }

        .appinfo4-icon::before {
            width: 50px;
            height: 50px;
            right: -9px;
            top: -9px;
        }

    .appinfo4-txt {
        font-size: 16px;
        margin-top: 12px;
    }

    .appinfo1-p {
        max-height: none;
        height: auto;
    }
}

@media(max-width:767px) {
    .appinfo3-swip {
        display: block;
    }

    .appinfo3-ba {
        display: none;
    }

    .applinfo-content {
        padding: 40px 0;
    }

    .appinfo-tit {
        font-size: 22px;
        padding-bottom: 10px;
    }

    .appinfo1-p {
        font-size: 14px;
        line-height: 24px;
    }

    .appinfo1-font {
        padding: 30px 20px;
    }

    .appinfo-two {
        padding: 40px 0;
    }

    .appinfo2-img {
        width: 100%;
        height: auto;
        font-size: 0;
        text-align: center;
        background: none !important;
    }

        .appinfo2-img img {
            display: inline-block;
            max-width: 100%;
            width: auto;
        }

    .appinfo2-ul li:nth-child(1) {
        left: 58.6%;
        top: 20px;
    }

    .appinfo2-ul li:nth-child(2) {
        left: 74%;
        top: 28.5%;
    }

    .appinfo2-ul li:nth-child(3) {
        left: 33.5%;
        top: 15.5%;
    }

    .appinfo2-ul li:nth-child(4) {
        left: 3%;
        top: 32%;
    }

    .appinfo2-ul li:nth-child(5) {
        left: 55%;
        top: auto;
        bottom: 2%;
    }

    .appinfo2-ul li:nth-child(6) {
        left: 78.8%;
        top: auto;
        bottom: 5.5%;
    }
    /* .appinfo2-ul li:nth-child(7){top: 91.77%;} */
    .appinfo2-ul li:nth-child(7) {
        left: 19.5%;
        top: auto;
        bottom: 10.5%;
    }

    .appinfo-three {
        padding: 0px 0 40px;
    }

    .appinfo4-con {
        margin-top: 30px;
    }

    .appinfo4-ul li {
        width: 50%;
        margin-top: 25px;
    }

    .appinfo4-ul {
        margin-top: -25px;
    }

    .appinfo4-txt {
        margin-top: 8px;
    }

    .appinfo-dec {
        margin-top: 8px;
    }

    .appinfo2-con {
        margin-top: 20px;
    }

    .appinfo2-ul {
        display: none;
    }
}

@media(max-width:640px) {
    .appinfo3-pic {
        padding: 0 10%;
    }
}

/* 人才招聘 */
.join {
}

.join-content {
    padding: 80px 0;
}

.job {
    padding-top: 80px;
}

.job-con {
}

.job-one {
}

.join-s {
    margin-top: -20px;
}

.job-item {
    margin-top: 20px;
}

.job-hea {
    border: 1px solid #dcdcdc;
    padding: 26px 30px;
    cursor: pointer;
    transition: ease .5s;
}

.job-le {
    float: left;
}

    .job-le h3 {
        font-size: 20px;
        line-height: 30px;
        color: #333;
        margin-bottom: 8px;
    }

    .job-le p {
        font-size: 16px;
        line-height: 30px;
        color: #666;
    }

        .job-le p span {
            display: inline-block;
            position: relative;
            margin: 0 10px;
        }

            .job-le p span:first-child {
                margin-left: 0;
            }

            .job-le p span::before {
                position: absolute;
                content: "";
                width: 1px;
                height: 17px;
                right: -10px;
                top: 7px;
                background: #dcdcdc;
            }

            .job-le p span:last-child::before {
                display: none;
            }

.job-ri {
    float: right;
    margin-top: 15px;
}

    .job-ri i {
        display: block;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 1px solid #9b9b9b;
        transition: ease .5s;
        position: relative;
    }

        .job-ri i::before, .job-ri i::after {
            position: absolute;
            content: "";
            top: 50%;
            left: 50%;
            background: #999999;
        }

        .job-ri i::before {
            width: 18px;
            height: 2px;
            margin-left: -8px;
        }

        .job-ri i::after {
            width: 2px;
            height: 18px;
            margin-top: -8px;
        }

.job-item.open .job-ri i {
    border-color: #fff;
}

    .job-item.open .job-ri i::before, .job-item.open .job-ri i::after {
        background-color: #fff;
    }

    .job-item.open .job-ri i::after {
        opacity: 0;
    }

.job-item.open .job-hea {
    border: none;
    background: #fda50b;
}

.job-item.open .job-le h3, .job-item.open .job-le p {
    color: #fff;
}

    .job-item.open .job-le p span::before {
        background: #fff;
    }

.job-cont {
    border: 1px solid #dcdcdc;
    border-top: none;
    display: none;
}

.job-item.open .job-cont {
    display: block;
}

.job-pad {
    padding: 37px 30px 73px;
}

    .job-pad h5 {
        font-size: 20px;
        line-height: 36px;
        color: #333;
        margin-bottom: 2px;
    }

    .job-pad p {
        font-size: 16px;
        line-height: 36px;
        color: #666;
    }

.job-sub {
    margin-top: 34px;
    background: transparent;
    width: 160px;
    height: 50px;
    line-height: 50px;
}

    .job-sub span {
        border-color: transparent;
    }

        .job-sub span::before {
            display: none;
        }

    .job-sub span {
        text-align: center;
    }

@media (max-width:1259px) {
}

@media (max-width:991px) {
    .job-le h3 {
        margin-bottom: 5px;
    }

    .job-hea {
        padding: 15px 30px;
    }

    .job-ri {
        margin-top: 12px;
    }

        .job-ri i {
            width: 36px;
            height: 36px;
        }

    .job-ul li {
        width: 50%;
        margin: 10px 0;
    }

    .job-ul {
        margin: -10px;
    }

        .job-ul li h3 {
            font-size: 21px;
            margin-top: 12px;
        }

        .job-ul li span {
            margin: 17px 0 10px;
        }

        .job-ul li p {
            font-size: 16px;
        }

        .job-ul li > div {
            padding: 50px 20px;
        }

    .job-font h3 {
        font-size: 22px;
    }
}

@media (max-width:767px) {
    .job-le h3 {
        font-size: 17px;
        margin-bottom: 0;
    }

    .job-le p {
        font-size: 15px;
    }

    .job-ri i {
        width: 30px;
        height: 30px;
    }

        .job-ri i::before {
            width: 14px;
            margin-left: -6px;
        }

        .job-ri i::after {
            height: 14px;
            margin-top: -6px;
        }

    .job-pad p {
        font-size: 14px;
        line-height: 28px;
    }

    .job-pad {
        padding: 30px;
    }

    .job-hea {
        padding: 10px 25px;
    }

    .job-ul li h3 {
        font-size: 18px;
    }

    .job-ul li span {
        margin: 12px 0 4px;
    }

    .job-ul li > div {
        padding: 30px 15px;
    }

    .job-sub {
        margin-top: 20px;
    }

    .job-pad h5 {
        font-size: 16px;
    }

    .job-font h3 {
        font-size: 18px;
    }

    .join-content {
        padding: 40px 0;
    }
}

@media (max-width:640px) {
    .job-pad {
        padding: 20px 16px 20px;
    }

    .job-hea {
        padding: 10px 16px;
    }

    .job-item {
        margin-top: 15px;
    }

    .job-con {
        margin-top: -15px;
    }
}




@media(max-width:1459px) {
    .nybanner-font h3 {
        font-size: 40px;
    }

    .nybanner-font h4, .pro-bannerp span {
        font-size: 20px;
    }

    .nybanner-font h3::before {
        width: 5px;
        height: 40px;
    }

    .nybanner {
        height: 400px;
    }

    .msg-box {
        width: 700px;
        height: 450px;
    }

    .banner-menu {
        padding-top: 20px;
    }

    .menu a {
        font-size: 20px;
        margin: 0 30px;
    }

    .navmenu-con a {
        font-size: 16px;
        padding: 6px 30px;
    }

    .menu-nav {
        padding-top: 30px;
    }

    .nynav-ul li a {
        font-size: 22px;
    }

    .nynav-two li a {
        font-size: 18px;
    }

    .ny-menu a {
        font-size: 20px;
    }

    .appba-h4 {
        font-size: 30px;
        line-height: 40px;
    }
}

@media(max-width:1259px) {
    .nybanner {
        margin-top: 0;
    }

    .nybanner-font h3 {
        font-size: 36px;
        line-height: 40px;
    }

    .nybanner-font h4 {
        font-size: 20px;
        line-height: 30px;
    }

    .nybanner-font h3::before {
        width: 4px;
        height: 30px;
    }

    .nybanner {
        height: 350px;
    }

    .nybanner-font {
        padding-top: 0;
    }

    .menu a {
        margin: 0 20px;
    }

    .msg-box {
        width: 650px;
        height: 400px;
    }

    .nybanner-font span {
        margin-right: 30px;
    }

    .anchor {
        display: none !important;
    }

    .bread {
        padding: 15px 0;
    }

    body {
        padding-top: 60px;
    }

    .nynav-ul li {
        margin: 0 20px;
    }

        .nynav-ul li a {
            font-size: 20px;
        }

    .nynav-two li {
        padding: 5px 25px;
    }

    .ny-menu a {
        padding: 10px 18px;
        padding-left: 28px;
    }

    .pro-bannerp span.pro-gdjm::before {
        width: 26px;
        height: 26px;
    }

    .pro-bannerp span.pro-jg::before {
        width: 26px;
        height: 28px;
    }

    .pro-bannerp span.pro-dzxf::before {
        width: 20px;
        height: 28px;
    }

    .pro-bannerp span.pro-gdjm {
        padding-left: 35px;
    }

    .pro-bannerp span.pro-jg {
        padding-left: 32px;
    }

    .pro-bannerp span.pro-dzxf {
        padding-left: 28px;
    }

    .appba-h4 {
        font-size: 28px;
    }
}

@media(max-width:991px) {
    .nybanner-font h3 {
        font-size: 34px;
    }

    .nybanner-font h4 {
        font-size: 18px;
    }

    .nybanner {
        height: 300px;
    }

    .msg-box {
        width: 600px;
        height: 350px;
    }

    .lpage a {
        font-size: 20px;
    }

        .lpage a.lpage-cn {
            font-size: 18px;
        }

    .info-page a {
    }

        .info-page a.info-cent::before {
            width: 18px;
            height: 18px;
        }

    .nybanner-font {
        padding-bottom: 0;
    }

    .nynav-ul li {
        margin: 0 10px;
    }

        .nynav-ul li a {
            font-size: 18px;
            padding: 12px 0;
        }

    .ny-menu a em {
        margin-left: 30px;
    }

    .ny-menu li {
        margin: 0 10px;
    }

    .ny-menu li {
        margin-top: 12px;
    }

    .pro-bannerp span {
        font-size: 18px;
    }

    .pro-bannerp {
        margin-top: 12px;
    }

    .bread {
        font-size: 16px;
    }

    .appba-h4 {
        font-synthesis: 24px;
        line-height: 30px;
    }
}

@media(max-width:767px) {
    .nybanner-font h3 {
        font-size: 24px;
        line-height: 30px;
        padding-left: 12px;
    }

    .nybanner-font h4 {
        font-size: 16px;
        margin: 8px 0 0;
    }

    .nybanner-font h3::before {
        width: 3px;
        height: 24px;
    }

    .appba-h4 {
        font-size: 18px;
    }

    .nybanner-font span {
        margin-top: 8px;
    }

    .nybanner-font p {
        margin-top: 5px;
        font-size: 16px;
        line-height: 26px;
    }

    .ny-padd {
        padding: 40px 0;
    }

    .bread a {
        font-size: 14px;
    }

    .bread {
        display: none;
    }

    .lpage a, .lpage a.lpage-cn {
        font-size: 15px;
        padding: 8px 16px;
        margin: 0 4px;
    }

        .lpage a.lpage-prev {
            margin-right: 40px;
        }

    .appsecond-nav {
        display: block;
    }

    .banner-menu {
        display: none;
    }

    .more {
        font-size: 14px;
    }

    .msg-box {
        width: 500px;
        height: 320px;
        padding: 40px;
    }

        .msg-box .close-box {
            width: 30px;
            height: 30px;
            font-size: 16px;
            background-size: 20px 20px;
            background-repeat: no-repeat;
            background-position: center;
        }

    .menu-nav {
        padding-top: 25px;
    }

    .navmenu-con a {
        padding: 4px 28px;
    }

    .app-menu {
        display: block;
    }

    .ny-nav {
        display: none;
    }

    .info-page a {
        padding: 4px 15px;
    }

        .info-page a i {
            margin: 0 6px;
        }

        .info-page a.info-cent {
            width: 42px;
            height: 42px;
        }

        .info-page a.info-next {
            padding-left: 16px;
            padding-right: 4px;
        }

        .info-page a.info-prev {
            padding-left: 4px;
            padding-right: 16px;
        }

    .ny-menu a {
        font-size: 16px;
        padding: 8px 18px;
    }

        .ny-menu a em {
            font-size: 22px;
        }

    .ny-menu li {
        margin: 0 6px;
        margin-top: 12px;
    }

    .ny-menu {
        display: none;
    }
}

@media(max-width:640px) {
    .bread {
        display: none;
    }

    .nybanner {
        background: none !important;
        height: auto;
    }

    .nyappbanner {
        display: block;
    }

    .menu {
        max-width: 100%;
        margin-left: 0;
    }

        .menu a {
            font-size: 15px;
            padding: 10px 20px;
        }

    .nybanner-font {
        text-align: center;
        padding: 0;
    }

    .msg-box {
        width: 95%;
    }

    .nybanner-font h3::before {
        display: none;
    }

    .nybanner-font h3 {
        padding-left: 0;
    }

    .nybanner-font p em {
        display: inline;
    }

    .ny-menu a em {
        margin-left: 10px;
        font-size: 18px;
    }

    .ny-menu a {
        padding: 6px 14px;
        font-size: 14px;
    }

    .lpage a, .lpage a.lpage-cn {
        font-size: 14px;
        padding: 4px 13px;
        margin: 0 4px;
    }

    .pro-bannerp {
        display: none;
    }
}

@media(max-width:360px) {
    .info-page a i {
        margin: 0 4px;
    }

    .info-page a {
        font-size: 14px;
    }

        .info-page a.info-next {
            padding-left: 10px;
            padding-right: 2px;
        }

        .info-page a.info-prev {
            padding-left: 2px;
            padding-right: 10px;
        }

    .lpage a, .lpage a.lpage-cn {
        padding: 2px 11px;
        margin: 0 2px;
    }
}
/* =====================下拉 ================ */
.dropdown-menu {
    padding-bottom: 20px;
    position: absolute;
    top: 100%;
    z-index: 1100;
    background: #fff;
    border-top: 1px solid #eeeeee;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    height: auto;
    display: none;
    overflow: hidden;
    width: 100%;
    left: 0;
    margin-top: 0;
    -ms-box-shadow: 0 2px 2px 0 rgba(0,0,0,.05);
    -o-box-shadow: 0 2px 2px 0 rgba(0,0,0,.05);
    -webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,.05);
    box-shadow: 0 2px 2px 0 rgba(0,0,0,.05);
}

.category-item {
    position: relative;
}

.category-item-single {
    position: static;
}

.dropdown-menu.single {
    width: 300px;
    left: 50%;
    transform: translateX(-50%);
}

.navitem:hover .dropdown-menu {
    opacity: 1;
    display: block;
    visibility: visible;
}

.dropdown-con {
    padding: 0 130px;
}
/* .category-item:hover .dropdown-menu.single{max-height: 450px;opacity: 1;} */
.dropdown-cont {
    position: relative;
    padding: 2px 0 10px;
}

    .dropdown-cont::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 1px;
        background: #d4d7d9;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }

.dropdown-ul {
    font-size: 0;
}

    .dropdown-ul li {
        float: left;
        width: 25%;
    }

        .dropdown-ul li > div {
            position: relative;
            padding: 20px 15px 21px 0;
        }

            .dropdown-ul li > div::before {
                position: absolute;
                content: "";
                width: 1px;
                height: 168px;
                background: #d4d7d9;
                right: 0;
                top: 50%;
                transform: translateY(-50%);
            }

        .dropdown-ul li:nth-child(4n) > div::before {
            display: none;
        }

.dropdown-img {
    float: left;
    width: 160px;
    text-align: center;
    line-height: 168px;
    overflow: hidden;
}

.dropdown-ul li:nth-child(5n) .dropdown-img,
.dropdown-ul li:nth-child(1) .dropdown-img {
    text-align: left;
}

.dropdown-img img {
    display: inline-block;
    max-width: 100%;
}

.dropdown-txt {
    margin-left: 160px;
    min-height: 168px;
    overflow-y: auto;
}

    .dropdown-txt h3 {
        font-size: 16px;
        line-height: 30px;
        color: #3b3e40;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }

    .dropdown-txt p {
        margin-bottom: 4px;
        font-size: 14px;
        line-height: 20px;
        color: #6c7073;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }

    .dropdown-txt a {
        padding: 6px 0;
        display: block;
        font-size: 14px;
        line-height: 20px;
        color: #3b3e40;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }

.dropdown-a {
    font-size: 0;
    margin: 0 -7px;
}

.dropdown-mo {
    margin: 8px 7px 0;
    display: inline-block;
    width: 168px;
    height: 44px;
    text-align: center;
    font-size: 18px;
    line-height: 44px;
    color: #fff;
    border-radius: 5px;
    background: linear-gradient(to right,#bb2d38,#d61819);
}

    .dropdown-mo span {
        display: inline-block;
    }

    .dropdown-mo em {
        display: inline-block;
        font-size: 22px;
        margin-left: 20px;
        margin-right: 10px;
    }

em.em-dx {
    font-family: 'Dengb';
}
/* 常规下拉 */
.navitem.single .dropdown-menu {
    border-top: 3px solid #fda50b;
    padding-bottom: 0;
    margin-top: -3px;
    display: none;
    position: absolute;
    width: 260px;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.navitem.single {
    position: relative;
}

.navitem:hover .dropdown-menu {
    display: block;
}

.navitem.single .dropdown-pad {
    text-align: center;
    background: #fff;
    padding: 8px 20px;
}

.navitem.single .dropdown-menu a {
    display: block;
    font-size: 16px;
    line-height: 28px;
    font-family: 'GT-Walsheim-Pro-Regular';
    padding: 10px 0;
    color: #333;
    transition: ease .5s;
    border-top: 1px dashed #e5e5e5;
}

    .navitem.single .dropdown-menu a:hover {
        color: #fda50b;
    }

    .navitem.single .dropdown-menu a:first-child {
        border-top: none;
    }

.navitem.single:hover::before {
    display: none;
}

.navitem.single:hover > a {
    color: #fda50b;
    font-weight: bold;
}
/* ????????????????(贞观下拉) */
.dropdown-menu li a:hover {
    color: #fda50b;
}

.max-drop {
    position: static;
}

.dropmenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 99;
    background: #fff;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height .5s;
    border: none;
    color: #303233;
    width: 120%;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.15);
    height: auto;
    padding: 0;
    display: block;
    border-top: 3px solid #fda50b;
}

.max-drop .dropmenu {
    width: 100%;
    border-top: 1px solid #dee5ed;
}

.navitem:hover .dropmenu {
    max-height: 800px;
    opacity: 1;
}

.dropmenu-right,
.dropmenu-left {
    float: left;
    width: 50%;
}

.dropmenu ul {
    width: 100%;
}

    .dropmenu ul .dropmenu-item {
        width: 100%;
        padding: 25px 0 0 0;
        border-bottom: 1px solid #dee5ed;
        margin-bottom: 0;
    }

        .dropmenu ul .dropmenu-item a {
            width: 100%;
            display: block;
            margin-bottom: 5px;
            font-weight: 200;
            border-top: solid 1px transparent;
            transition: all 0.5s;
        }

            .dropmenu ul .dropmenu-item a em {
                font-size: 12px;
                vertical-align: middle;
                margin-top: -3px;
            }

            .dropmenu ul .dropmenu-item a:hover {
                color: #fda50b;
                letter-spacing: 1px;
            }

    .dropmenu ul .dropmenu-left:hover img,
    .dropmenu ul .dropmenu-right:hover img {
        transform: scale(1.05);
    }

    .dropmenu ul .dropmenu-item .ztyw-img img {
        transition: all 1s;
    }

    .dropmenu ul .dropmenu-item .ztyw-img {
        padding: 20px 0 25px 0;
        width: 32.8%;
        margin-right: 50px;
        overflow: hidden;
    }

    .dropmenu ul .dropmenu-item .ztyw-font h4 {
        font-weight: 600;
        color: #333;
    }

    .dropmenu ul .dropmenu-left:hover .ztyw-font h4,
    .dropmenu ul .dropmenu-right:hover .ztyw-font h4 {
        color: #fda50b;
    }

    .dropmenu ul .dropmenu-item .ztyw-font p {
        margin-top: 14px;
    }

    .dropmenu ul .dropmenu-item .dropmenu-right {
        padding-left: 77px;
        position: relative;
    }

        .dropmenu ul .dropmenu-item .dropmenu-right .ztyw-img {
            width: 37.7%;
        }

        .dropmenu ul .dropmenu-item .dropmenu-right::before {
            transition: all 0.5s;
            content: "";
            display: block;
            background-color: #dee5ed;
            position: absolute;
            top: 0;
            left: 0;
            width: 1px;
            height: 156px;
        }

    .dropmenu ul .dropmenu-item:nth-child(3) .ztyw-img {
        padding-top: 0;
    }

    .dropmenu ul .dropmenu-item:nth-child(3) {
        padding: 25px 0 10px 0;
    }

.dropmenu-btn {
    margin: 33px -12px 38px;
}

    .dropmenu-btn a {
        background-color: #dee5e6;
        display: block;
        width: 164px;
        height: 44px;
        text-align: center;
        float: left;
        margin-right: 48px;
        line-height: 43px;
        position: relative;
    }

.dropmenu-btn-bar {
    display: inline-block;
    margin-left: 14px;
    vertical-align: middle;
    margin-top: -49px;
}

    .dropmenu-btn-bar .btn-bar {
        height: 2px;
        margin-bottom: 4px;
    }

        .dropmenu-btn-bar .btn-bar::before,
        .dropmenu-btn-bar .btn-bar::after {
            transition: all 0.5s;
            margin-right: 2px;
            content: "";
            display: inline-block;
            height: 2px;
            width: 12px;
            background-color: #333;
        }

        .dropmenu-btn-bar .btn-bar::before {
            width: 2px;
        }

.dropmenu-btn a:hover .btn-bar::before {
    height: 2px;
    width: 12px;
}

.dropmenu-btn a:hover .btn-bar::after {
    height: 2px;
    width: 2px;
}


.dropmenu-btn a::before {
    transition: all 0.5s;
    content: "";
    display: block;
    background-color: #fda50b;
    position: absolute;
    top: 0;
    left: 50%;
    width: 0%;
    height: 100%;
    transform: translateX(-50%);
}

.dropmenu-btn a:hover::before {
    width: 100%;
}

.dropmenu-btn a:hover .dropmenu-btn-bar .btn-bar::before,
.dropmenu-btn a:hover .dropmenu-btn-bar .btn-bar::after {
    background-color: #fff;
    position: relative;
    z-index: 33;
}

.dropmenu-btn a:hover span {
    color: #fff;
    position: relative;
    z-index: 33;
}

.dropmenu .dropmenu-item:hover a {
    background-color: transparent;
    color: #333;
    border-top: solid 1px transparent;
}
/* 下拉 */
.navitem:hover .dropmenu {
    width: 700px;
    padding: 30px 40px;
}

.drmenu-left {
    width: 50%;
    float: left;
    overflow: hidden;
}

    .drmenu-left img {
        width: 100%;
        transition: all 0.5s
    }

    .drmenu-left:hover img {
        transform: scale(1.05);
    }

.drmenu-right {
    width: 50%;
    float: left;
    padding: 12px 0 0 30px;
}

.drmenu-ul {
}

    .drmenu-ul li:hover .drmenu-item {
        color: #fda50b;
        transition: all 0.5s
    }

    .drmenu-ul li .drmenu-item {
        display: block;
        color: #333;
        font-size: 18px;
        padding: 15px 0 17px;
        border-bottom: 1px dashed transparent;
        /* 控制不会出现多的边框 */
        border-radius: 1px;
        background: linear-gradient(white, white) padding-box, repeating-linear-gradient(-45deg,#ccc 0, #ccc 0.1em,white 0,white 0.2em);
    }

        .drmenu-ul li .drmenu-item span {
            float: left;
        }

        .drmenu-ul li .drmenu-item em {
            float: right;
            margin-top: 3px;
            transition: all 0.5s;
            transform: translateX(-10px);
        }

    .drmenu-ul li:hover .drmenu-item em {
        transform: translateX(0px);
        color: #fda50b;
    }

.navitem:last-child .dropmenu {
    left: -180%;
}

.navitem:nth-child(8) .dropmenu {
    left: -150%;
}


.yzms {
    margin-top: 25px;
    display: flow-root;
}

    .yzms input {
        float: left;
    }

    .yzms .yzm-01 {
        width: 55%;
        margin-right: 5%;
        max-width: 300px;
    }

    .yzms .yzm-02 {
        width: 40%;
        border: none;
        font-size: 28px;
        color: #fda50b;
        font-weight: bold;
        max-width: 200px;
    }

@media (max-width: 1459px) {
    .navitem:nth-child(3):hover .dropmenu {
        width: 650px;
    }
}

@media (max-width: 1259px) {
    .drmenu-right {
        padding: 0px 0 0 20px;
    }

    .navitem:nth-child(3):hover .dropmenu {
        width: 500px;
        padding: 35px 30px;
    }

    .drmenu-ul li .drmenu-item {
        padding: 12px 0 10px;
    }
}


/* ???????????????? */
@media (max-width:1919px) {
    .dropdown-con {
        padding: 0;
    }
}

@media (max-width:1459px) {
    .dropdown-img {
        width: 120px;
        padding: 0 15px;
    }

    .dropdown-txt {
        margin-left: 120px;
    }
}

@media (max-width:1259px) {
    .dropdown-menu li {
        padding: 0 0 0 30px;
    }

    .dropdown-dec {
        font-size: 16px;
        padding: 12px 12px 11px 0px !important;
    }

    .dropdown-menu li.dropdown-img {
        width: 25%;
    }

    .dropdown-menu li.dropdown-title {
        width: 31%;
    }

    .dropdowntit-font h5 {
        margin-bottom: 30px;
    }
}

@media (max-width:1170px) {
    .dropdown-menu li {
    }
}

@media (max-width:1459px) {
    .msg-box {
        width: 700px;
        height: 450px;
    }
}

@media (max-width:1259px) {
    .msg-box {
        width: 650px;
        height: 400px;
    }
}

@media (max-width:991px) {
    .msg-box {
        width: 600px;
        height: 350px;
    }
}

@media (max-width:767px) {
    .msg-box {
        width: 500px;
        height: 320px;
        padding: 40px;
    }

        .msg-box .close-box {
            width: 30px;
            height: 30px;
            font-size: 26px;
        }
}

@media (max-width:640px) {
    .msg-box {
        width: 280px;
    }
}



/*20210112*/
@media (max-width: 1260px) {
    .intw-top li a {
        padding: 12px 10px 8px;
        height: 56px;
        border-radius: 8px;
    }

    .intw-top li {
        display: inline-block;
        margin: 0 5px;
    }
}

@media (max-width: 767px) {
    .intw-top li a {
        padding: 12px 16px 2px;
        height: 47px;
        border-radius: 0;
    }

    .intw-top li {
        display: inline-block;
        margin: 0 0px;
        width: 100%;
        margin-bottom: 10px;
    }
}

.container2 {
    margin-top: 60px;
}
/*20210118*/
.scsb-swip .swiper-pagination {
    width: 100%;
    bottom: -30px;
}

    .scsb-swip .swiper-pagination .swiper-pagination-bullet {
        margin: 0px 3px;
        width: 10px;
        height: 10px;
    }

    .scsb-swip .swiper-pagination .swiper-pagination-bullet-active {
        background-color: #fda50b;
    }

.navitem:nth-child(7) .dropmenu {
    left: -100%;
}

/*20210119*/
.banner-mc {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.3;
    z-index: 1;
}

.header .logo-ms {
    font-size: 16px;
    margin: 0px 8px;
    color: #333;
    float: left;
    line-height: 24px;
    margin-top: 32px;
    color: #fda50b;
}

.ino-riul2 {
    margin-top: 20px;
}

/*20210304*/
.header-language {
    border-radius: 30px;
    border: 1px solid rgba(158, 158, 158, 0.37);
    padding: 0px;
    /* box-shadow: 0 4px 35px 0 rgba(70,86,117,0.15); */
}

    .header-language .lg1 {
        line-height: 26px;
    }

    .header-language .lg2 {
    }
