<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

.container, .main {
    padding-right: 15px;
    padding-left: 15px;
    margin: 0 auto;
}
/*@media (min-width: 768px) {
  .main,.container{
    width: 750px;
  }
}
@media (min-width: 992px) {
  .main,.container{
    width: 970px;
  }
}*/
@media (min-width: 1170px) {
    .main, .container {
        width: 1025px;
        padding: 0;
    }
}

@media (min-width: 1200px) {
    .main, .container {
        width: 1170px;
        padding: 0;
    }
}

@media (min-width: 1260px) {
    .main {
        width: 1230px;
        padding: 0 15px;
    }

    .container {
        width: 1230px;
        padding: 0 15px;
    }
}

@media (min-width: 1460px) {
    .main {
        width: 1430px;
        padding: 0 15px;
    }
}


/*pc-头部*/
.header {
    height: 100px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 33;
    background: rgba(0,0,0,0.4);
}

    .header .main {
        height: 100%;
    }

    .header.on, .header.hny {
        background: #333333;
        opacity: 0.8;
    }

.pc-head {
    float: left;
    margin-top: 16px;
}

.navbar {
    float: left;
    margin-left: 240px;
}

    .navbar * {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

.category-item {
    float: left;
    margin-right: 48px;
    position: relative;
}

.category-a {
    display: block;
    font-size: 16px;
    line-height: 100px;
    color: rgba(255,255,255,0.8);
    letter-spacing: 1px;
    -webkit-transition: all .6s;
    -o-transition: all .6s;
    transition: all .6s;
    position: relative;
    padding: 0 10px;
}

    .category-a.on, .category-a:hover {
        color: #e06136;
    }

    .category-a::after {
        content: '';
        width: 0;
        height: 3px;
        background: #e06136;
        position: absolute;
        bottom: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        -webkit-transition: all .8s;
        -o-transition: all .8s;
        transition: all .8s;
    }

.category-item.active .category-a::after, .category-item:hover .category-a::after {
    width: 100%;
}

.category-item.active .category-a, .category-item:hover .category-a {
    color: #e06136;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translate(-50%,0);
    -ms-transform: translate(-50%,0);
    transform: translate(-50%,0);
    z-index: 32;
    background: rgba(255,255,255,1);
    margin-top: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    -webkit-transition: max-height .5s;
    -o-transition: max-height .5s;
    transition: max-height .5s;
    border: none;
    color: #303233;
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
    height: auto;
    padding: 0;
    display: block;
}

    .dropdown-menu ul {
        padding: 0px 0;
    }

    .dropdown-menu li {
        display: block;
        font-size: 16px;
        width: 100%;
        -webkit-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s;
        position: relative;
    }

        .dropdown-menu li:last-child {
            border-bottom: 0;
        }

        .dropdown-menu li a {
            padding: 22px 50px;
            padding-left: 50px;
            white-space: nowrap;
            display: inline-block;
            width: 100%;
            color: #333;
            line-height: 1;
            height: auto;
            background: 0 0;
            -webkit-transition: all .3s;
            -o-transition: all .3s;
            transition: all .3s;
        }

        .dropdown-menu li:hover a {
            color: #fff;
            background: #69c133;
        }
/*.category-item:hover .dropdown-menu{ max-height: 450px; opacity: 1;}*/
.pc-search {
    border-radius: 30px;
    border: solid 1px transparent;
    transition: all .5s;
    overflow: hidden;
    float: right;
    height: 40px;
    margin-top: 30px;
    width: 40px;
    position: relative;
}

    .pc-search .text {
        transition: all .5s;
        position: absolute;
        left: 100%;
        top: 0;
        width: 70%;
        color: white;
        padding: 0 10px;
        height: 38px;
        line-height: 38px;
        border: none;
        background: none;
    }

    .pc-search:hover {
        border: solid 1px rgba(255,255,255,0.5);
        width: 13%;
    }

        .pc-search:hover .text {
            left: 0;
        }

    .pc-search .submit {
        cursor: pointer;
        width: 38px;
        float: right;
        height: 38px;
        background: url(../images/search.png) no-repeat center;
        margin-top: 1px;
    }


/*app-头部*/
.header-app.on .navbar-app {
    background: #333;
}

.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;
    -webkit-box-shadow: 3px 0 7px 0 rgba(0,0,0,.1);
    box-shadow: 3px 0 7px 0 rgba(0,0,0,.1);
    -webkit-transition: background .44s .2s cubic-bezier(0.52, 0.16, 0.24, 1),height .56s cubic-bezier(0.52, 0.16, 0.24, 1);
    -o-transition: background .44s .2s cubic-bezier(0.52, 0.16, 0.24, 1),height .56s cubic-bezier(0.52, 0.16, 0.24, 1);
    transition: background .44s .2s cubic-bezier(0.52, 0.16, 0.24, 1),height .56s cubic-bezier(0.52, 0.16, 0.24, 1);
}

    .header-app.open-menu {
        height: 100%;
        background: #fff;
        -webkit-transition: background .36s cubic-bezier(0.32, 0.08, 0.24, 1),height .56s cubic-bezier(0.52, 0.16, 0.24, 1);
        -o-transition: background .36s cubic-bezier(0.32, 0.08, 0.24, 1),height .56s cubic-bezier(0.52, 0.16, 0.24, 1);
        transition: background .36s cubic-bezier(0.32, 0.08, 0.24, 1),height .56s cubic-bezier(0.52, 0.16, 0.24, 1);
    }

.navbar-app {
    position: relative;
    background: rgba(0,0,0,0.4);
    height: 60px;
    text-align: center;
}

.header-app .logo {
    float: left;
    height: 60px;
    vertical-align: middle;
    padding: 10px 15px;
}

    .header-app .logo img {
        height: 100%;
    }

.app-sousuo {
    line-height: 22px;
    border-right: solid 1px #fff;
    padding-right: 15px;
    color: #fff;
    float: right;
    font-size: 22px !important;
    margin-top: 19px;
}

.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: #000;
    padding: 0 15px;
}

    .alert-top .text {
        height: 30px;
        margin-top: 15px;
        background: none;
        border-bottom: solid 1px #ccc;
        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: 20px;
    }

    .alert-top span {
        color: #fff;
        float: right;
        font-size: 20px !important;
        margin-top: 16px;
    }

.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: #fff;
        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: 50px;
    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: #f66c01
}

.category-cont a:last-child {
    border: none;
}

.category-cont a.active {
    color: #ab1302;
}

.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: #f66c01;
}

.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;
}

.category-pad a.active {
    color: #F66C01;
}

.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;
}

/*pc底部*/
.foot {
    background: #15191d url(../images/foot1.png) no-repeat center;
    background-size: cover;
}

.foot-top {
    padding: 60px 0;
}

.foot-left {
    width: 305px;
    float: left;
}

    .foot-left a {
        display: block;
        margin-bottom: 30px;
    }

    .foot-left p {
        line-height: 26px;
        font-size: 14px;
        color: rgba(255,255,255,0.5);
    }

.foot-right {
    float: right;
}

    .foot-right dl {
        float: left;
        margin-left: 130px;
    }

    .foot-right dt {
        margin-bottom: 30px;
    }

        .foot-right dt a {
            display: block;
            font-size: 18px;
            color: white;
            line-height: 18px;
            position: relative;
        }

            .foot-right dt a:after {
                position: absolute;
                content: '';
                width: 2px;
                height: 16px;
                background: rgba(255,255,255,0.3);
                left: -10px;
                top: 1px;
            }

    .foot-right dd a {
        display: block;
        font-size: 14px;
        color: rgba(255,255,255,0.5);
        line-height: 26px;
    }

        .foot-right dt a:hover, .foot-right dd a:hover, .foot-bot p a:hover {
            color: #e06136;
        }

.foot-bot {
    padding: 27px 0;
    border-top: solid 1px rgba(255,255,255,0.1);
}

    .foot-bot p {
        float: left;
        margin-right: 30px;
        font-size: 16px;
        color: rgba(255,255,255,0.6);
        line-height: 30px;
    }

        .foot-bot p a {
            font-size: 16px;
            color: rgba(255,255,255,0.6);
        }

.foot-share {
    float: right;
    height: 30px;
}

    .foot-share a {
        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-share a:hover {
            color: rgba(255,255,255,1) !important;
        }

.bd_weixin_popup {
    height: 315px !important;
}

.foot-link, .foot-link a {
    line-height: 26px;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

.foot-link {
    padding: 20px 0;
    overflow: hidden;
}

    .foot-link a {
        display: block;
        float: left;
        margin-right: 20px;
    }

    .foot-link span {
        float: left;
    }

    .foot-link a:hover {
        color: #e06136;
    }


/*app-底部*/
.foot-app {
    width: 100%;
    background: #15191d;
    padding: 0 15px;
    display: none;
}

.footer-tit {
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.5);
}

.open .footer-tit a {
    color: #e06136;
}

.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: #888;
    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: #e06136;
}

.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-item.open .footer-cont a.active {
    color: #e06136;
}

.footer-top {
    padding: 30px 0;
}

.footer-left {
    width: 30%;
    float: right;
}

    .footer-left img {
        display: block;
        width: 100%;
    }

.footer-right {
    width: 65%;
    float: left;
}

    .footer-right p {
        font-size: 14px;
        color: rgba(255,255,255,0.5);
        line-height: 22px;
    }

.footer-bot {
    padding: 20px 0;
    border-top: solid 1px rgba(255,255,255,0.5);
}

.footer-share {
    text-align: center;
}

    .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;
    }

        .footer-share a:hover {
            color: rgba(255,255,255,1) !important;
        }

.footer-bot p, .footer-bot p a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 22px;
}

.footer-link, .footer-link a {
    line-height: 26px;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

.footer-link {
    padding: 20px 0;
    overflow: hidden;
}

    .footer-link a {
        display: block;
        float: left;
        margin-right: 15px;
    }

    .footer-link span {
        float: left;
    }

    .footer-link a:hover {
        color: #e06136;
    }





/*pc-banner*/
.pc-banner {
    position: relative;
}

    .pc-banner img {
        display: block;
        width: 100%;
    }

.banner-crumb {
    -webkit-animation: kuosan-2 2s linear infinite;
    animation: kuosan-2 2s linear infinite;
    position: absolute;
    z-index: 3;
    background: url(../images/banner-crumb.png) no-repeat center;
    width: 20px;
    height: 32px;
    left: 50%;
    margin-left: -10px;
    bottom: 13.3%;
}

.banner-app {
    display: none;
}

@media (max-width: 1025px) {
    .header-app, .foot-app, .banner-app {
        display: block;
    }

    .header, .foot, .banner-pc {
        display: none !important;
    }
}


@-webkit-keyframes kuosan-2 {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }

    25% {
        -webkit-transform: translateY(5px);
        transform: translateY(5px);
    }

    50% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }

    75% {
        -webkit-transform: translateY(5px);
        transform: translateY(5px);
    }

    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@keyframes kuosan-2 {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }

    25% {
        -webkit-transform: translateY(5px);
        transform: translateY(5px);
    }

    50% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }

    75% {
        -webkit-transform: translateY(5px);
        transform: translateY(5px);
    }

    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}




/*=========内容===========*/
.ino {
    padding: 85px;
    background: white;
    /* margin-top: -80px; */
    position: relative;
    z-index: 4;
}

    .ino ul {
        padding-bottom: 25px;
    }

    .ino li {
        width: 33.33%;
        float: left;
        height: 82px;
        margin-bottom: 75px;
        border-right: solid 1px #e2e2e2;
        padding-left: 95px;
    }

        .ino li h3 {
            font-size: 16px;
            color: #999;
            line-height: 16px;
            margin-bottom: 20px;
        }

        .ino li h4 {
            font-family: 'ssi';
            font-size: 60px;
            color: #e06136;
            line-height: 46px;
        }

        .ino li:nth-child(3n) {
            border-right: none;
        }

        .ino li h4 em {
            font-size: 16px;
            color: #999;
            font-style: normal;
        }

        .ino li h4 strong {
            /*margin-top: -5px;*/
            float: left;
            font-size: 40px;
            color: #e06136;
            font-family: 'ssi';
            line-height: 20px;
        }

        .ino li h4 span.span {
            float: left;
        }

.ino-more {
    display: block;
    width: 170px;
    padding: 0 40px;
    height: 46px;
    margin: 0 auto;
    color: white;
    font-size: 16px;
    line-height: 46px;
    background: #424c58;
}

    .ino-more em {
        font-size: 16px;
        padding-left: 10px;
    }

/**/
.index-two {
    padding: 63px 0 93px 0;
    background: url(../images/int-bg.png) no-repeat center;
    background-size: cover;
}

.index-tit {
    text-align: center;
    font-size: 36px;
    color: #333;
    line-height: 36px;
}

    .index-tit span {
        position: relative;
    }

        .index-tit span:after {
            position: absolute;
            content: '';
            width: 32px;
            height: 2px;
            background: #e06136;
            left: -50px;
            top: 50%;
            margin-top: -1px;
        }

.index-dec {
    font-size: 20px;
    color: #666;
    line-height: 20px;
    text-align: center;
    margin: 30px 0 55px 0;
}

.int {
    display: none;
    height: 590px;
    overflow: hidden;
}

.int-left {
    width: 70%;
    float: left;
    height: 100%;
}

.int-pic {
    width: 100%;
    position: relative;
    height: 100%;
    display: none;
    overflow: hidden;
}

    .int-pic.on {
        display: block;
    }

    .int-pic img {
        display: block;
        width: 100%;
        height: 100%;
        transition: all .5s;
    }

    .int-pic:hover img {
        transform: scale(1.05);
    }

.int-font {
    overflow: hidden;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    padding: 34px 40px;
}

    .int-font p {
        width: 68%;
        float: left;
        font-size: 16px;
        color: white;
        line-height: 26px;
        height: 52px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }

    .int-font span {
        transition: all .5s;
        float: right;
        color: white;
        font-size: 30px;
        line-height: 52px;
    }

.int-pic:hover .int-font span {
    transform: translateX(10px);
}

.int-right {
    width: 30%;
    float: right;
    background: #ffffff;
    height: 100%;
}

    .int-right li {
        transition: all .5s;
        cursor: pointer;
        position: relative;
        height: 118px;
        border-bottom: solid 1px #e0e0e0;
        line-height: 117px;
        text-align: center;
    }

        .int-right li a {
            transition: all .5s;
            display: block;
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 3;
            color: #333333;
            font-size: 20px;
        }

        .int-right li:after {
            position: absolute;
            z-index: -1;
            content: '';
            width: 0;
            height: 0;
            border-right: solid 20px #e06136;
            border-top: solid 12px transparent;
            border-bottom: solid 12px transparent;
            left: 0px;
            top: 50%;
            margin-top: -12px;
            opacity: 0;
            transition: all .5s;
        }

        .int-right li:hover a, .int-right li.active a {
            color: white;
            background: #e06136;
        }

        .int-right li:hover:after, .int-right li.active:after {
            left: -20px;
            opacity: 1;
            z-index: 2;
        }

/**/
.index-three {
    padding: 85px 0 65px 0;
}

.ine-swiper {
    margin-top: 50px;
    position: relative;
}

.gallery-thumbs {
    height: 150px;
    background: white;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    overflow: visible !important;
}

    .gallery-thumbs .swiper-slide {
        width: 13.33%;
        text-align: center;
        padding-top: 40px;
        cursor: pointer;
    }

        .gallery-thumbs .swiper-slide:after {
            position: absolute;
            content: '';
            background: url(../images/ine-san.png) no-repeat center;
            width: 22px;
            height: 12px;
            background-size: cover;
            bottom: 0px;
            left: 50%;
            margin-left: -11px;
            transition: all .5s;
        }

    .gallery-thumbs h3 {
        font-size: 16px;
        color: #444;
        line-height: 26px;
    }

    .gallery-thumbs .ine-icon {
        overflow: hidden;
        height: 40px;
        font-size: 35px;
        line-height: 30px;
        color: #444444;
    }

    .gallery-thumbs .swiper-slide.swiper-slide-thumb-active .ine-icon, .gallery-thumbs .swiper-slide.swiper-slide-thumb-active h3 {
        color: #e06136;
    }

    .gallery-thumbs .swiper-slide.swiper-slide-thumb-active:after {
        bottom: -12px;
    }
    /*.gallery-thumbs .swiper-slide.swiper-slide-active .ine-icon,.gallery-thumbs .swiper-slide.swiper-slide-active h3{color: #e06136;}*/
    .gallery-thumbs .swiper-slide.swiper-slide-active:after {
        bottom: -12px;
    }

.index-three .gallery-thumbs .swiper-slide.swiper-slide-active:after {
    bottom: 0;
}

.index-three .gallery-thumbs .swiper-slide.swiper-slide-thumb-active:after {
    bottom: -12px;
}

.gallery-top {
    margin-top: 53px !important;
}

.ine-left {
    width: 450px;
    float: left;
}

.ine-list {
    float: left;
    display: block;
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
    margin-bottom: 25px;
}

    .ine-list img {
        display: block;
        width: 100%;
        height: 100%;
        transition: all .5s;
    }

.ine-font {
    position: absolute;
    width: 100%;
    height: 66px;
    left: 0;
    bottom: -66px;
    background: rgba(0,0,0,0.6);
    transition: all .5s;
}

    .ine-font p {
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
        position: relative;
        width: 70%;
        float: left;
        font-size: 26px;
        color: white;
        padding-left: 36px;
        line-height: 66px;
    }

        .ine-font p:after {
            position: absolute;
            content: '';
            width: 3px;
            height: 26px;
            background: #e06136;
            top: 50%;
            margin-top: -13px;
            left: 20px;
        }

    .ine-font span {
        width: 66px;
        height: 66px;
        float: right;
        background: #e06136;
        text-align: center;
        line-height: 66px;
        font-size: 30px;
        color: white;
    }

.ine-list:hover img {
    transform: scale(1.05);
}

.ine-list:hover .ine-font {
    bottom: 0;
}

.ine-right {
    width: 925px;
    float: right;
}

.ine-bot {
    margin-left: -25px;
}

    .ine-bot .ine-list {
        width: 450px;
        margin-left: 25px;
    }

.ine-swiper .ine-next, .ine-swiper .ine-prev {
    display: none;
    top: 62px;
    margin-top: 0;
    background: none;
    font-size: 12px;
    font-weight: bold;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: solid 1px #c2c2c2;
    text-align: center;
    line-height: 24px;
    color: #a4a4a4;
}

    .ine-swiper .ine-next:hover, .ine-swiper .ine-prev:hover {
        color: white;
        border-color: #e06136;
        background: #e06136;
    }


/**/
.appli-ine {
    margin-top: 0;
    margin-bottom: 90px;
}

.index-four {
    padding: 75px 0 97px 0;
    background: #f5f5f5;
}

.inf-top {
    height: 42px;
}

.inf-tit {
    float: left;
    font-size: 36px;
    line-height: 42px;
    color: #333;
}

    .inf-tit span {
        position: relative;
    }

        .inf-tit span:after {
            position: absolute;
            content: '';
            width: 32px;
            height: 2px;
            background: #e06136;
            left: -45px;
            top: 50%;
            margin-top: -1px;
        }

.inf-more {
    float: right;
    display: block;
    width: 170px;
    padding: 0 40px;
    height: 42px;
    color: white;
    font-size: 16px;
    line-height: 42px;
    background: #e06136;
}

    .inf-more i {
        font-size: 16px;
        padding-left: 10px;
    }

.inf-bot {
    margin-top: 53px;
}

.inf-left {
    float: left;
    width: 614px;
    border-right: dashed 1px #b8b8b8;
    padding-right: 63px;
}

.inl-list {
    width: 550px;
    display: block;
}

    .inl-list .inf-pic {
        width: 100%;
        height: 320px;
        overflow: hidden;
    }

        .inl-list .inf-pic img {
            display: block;
            width: 100%;
            height: 100%;
            transition: all .5s;
        }

    .inl-list h3 {
        margin-top: 30px;
        font-size: 18px;
        color: #333;
        line-height: 18px;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }

    .inl-list h4 {
        font-family: 'Open Sans';
        font-size: 16px;
        color: #666;
        line-height: 12px;
        margin: 15px 0 25px 0;
    }

    .inl-list p {
        font-size: 14px;
        color: #666;
        line-height: 26px;
        height: 52px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }

    .inl-list:hover img {
        transform: scale(1.05);
    }

    .inl-list:hover h3 {
        color: #e06136;
    }

.inf-right {
    width: 725px;
    float: right;
}

.inf-a {
    height: 53px;
    border-bottom: dashed 1px #b5b5bc;
}

    .inf-a a {
        color: #333;
        display: block;
        float: left;
        padding: 0 15px;
        font-size: 22px;
        line-height: 20px;
        border-right: solid 1px #bebebe;
    }

        .inf-a a:last-child {
            border-right: none;
        }

        .inf-a a.active {
            color: #e06136;
        }

.inf-list {
    display: block;
    padding: 30px 0;
    border-bottom: dashed 1px #b5b5bc;
    overflow: hidden;
}

.ins-pic {
    width: 180px;
    height: 130px;
    overflow: hidden;
    float: left;
}

    .ins-pic img {
        display: block;
        width: 100%;
        height: 100%;
        transition: all .5s;
    }

.ins-font {
    margin-left: 20px;
    width: 490px;
    float: left;
}

    .ins-font h3 {
        font-size: 18px;
        color: #333;
        line-height: 40px;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }

    .ins-font h4 {
        font-family: 'Open Sans';
        font-size: 16px;
        color: #666;
        line-height: 12px;
        margin: 5px 0 20px 0;
    }

    .ins-font p {
        font-size: 14px;
        color: #666;
        line-height: 22px;
        height: 44px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }

.inf-list:hover img {
    transform: scale(1.05);
}

.inf-list:hover .ins-font h3 {
    color: #e06136;
}

.inf-big {
    display: none;
}

    .inf-big.on {
        display: block;
    }


/**/
.index-five {
    padding: 80px 0 60px 0;
}

.inv-tit {
    font-size: 26px;
    line-height: 26px;
    color: #333;
    margin-bottom: 25px;
}

.inv-swiper {
    position: relative;
}

    .inv-swiper .swiper-container {
        padding: 25px 10px;
    }
    /*.inv-swiper ul{overflow: hidden;}
.inv-swiper li{width: 14.25%;float: left;}*/
    .inv-swiper .swiper-slide img {
        display: block;
        width: 100%;
    }

    .inv-swiper .swiper-slide:hover {
        box-shadow: 0px 0 25px 3px rgba(0,0,0,0.08);
        position: relative;
        z-index: 2;
    }

    .inv-swiper .inv-next, .inv-swiper .inv-prev {
        top: -50px;
        margin-top: 0;
        background: none;
        font-size: 12px;
        font-weight: bold;
        width: 26px;
        height: 26px;
        border-radius: 50%;
        border: solid 1px #c2c2c2;
        text-align: center;
        line-height: 24px;
        color: #a4a4a4;
    }

    .inv-swiper .inv-next {
        right: 40px;
    }

    .inv-swiper .inv-prev {
        left: auto;
        right: 75px;
    }

        .inv-swiper .inv-next:hover, .inv-swiper .inv-prev:hover {
            color: white;
            border-color: #e06136;
            background: #e06136;
        }


@media (max-width: 1460px) {
    .navbar {
        margin-left: 100px;
    }

    .category-item {
        margin-right: 35px;
    }

    .int {
        height: 505px;
    }

    .int-right li {
        height: 101px;
        line-height: 101px;
    }

    .ine-left {
        width: 385px;
    }

    .ine-list {
        height: 342px;
    }

    .ine-right {
        width: 793px;
    }

    .ine-bot .ine-list {
        width: 384px;
    }

    .inf-left {
        width: 525px;
        padding-right: 50px;
    }

    .inf-right {
        width: 620px;
    }

    .inl-list {
        width: 475px;
    }

        .inl-list .inf-pic {
            height: 276px;
        }

    .ins-font {
        width: 420px;
    }

    .inf-list {
        padding: 28px 0;
    }

    .foot-right dl {
        margin-left: 90px;
    }

    .ino {
        /* margin-top: -60px; */
    }
}

@media (max-width: 1260px) {
    .ino li {
        padding-left: 65px;
    }

    .int {
        height: 495px;
    }

    .int-right li {
        height: 99px;
        line-height: 99px;
    }

    .ine-left {
        width: 376px;
    }

    .ine-list {
        height: 334px;
    }

    .ine-right {
        width: 770px;
    }

    .ine-bot .ine-list {
        width: 372px;
    }

    .inf-left {
        width: 513px;
    }

    .inf-right {
        width: 605px;
    }

    .inl-list {
        width: 462px;
    }

        .inl-list .inf-pic {
            height: 270px;
        }

    .ins-pic {
        width: 175px;
        height: 127px;
    }

    .ins-font {
        width: 410px;
    }

    .foot-right dl {
        margin-left: 85px;
    }
}

@media (max-width: 1200px) {
    .main {
        width: 1000px;
        padding: 0;
    }

    .navbar {
        margin-left: 70px;
    }

    .category-item {
        margin-right: 20px;
    }

    .ino {
        padding: 85px 50px;
    }

        .ino li {
            padding-left: 50px;
        }

    .int {
        height: 420px;
    }

    .int-right li {
        height: 84px;
        line-height: 84px;
    }

    .ine-left {
        width: 330px;
    }

    .ine-list {
        height: 293px;
    }

    .ine-right {
        width: 640px;
    }

    .ine-bot .ine-list {
        width: 307px;
    }

    .inf-left {
        width: 440px;
        padding-right: 34px;
    }

    .inf-right {
        width: 520px;
    }

    .inl-list {
        width: 405px;
    }

        .inl-list .inf-pic {
            height: 235px;
        }

    .ins-pic {
        width: 150px;
        height: 110px;
    }

    .ins-font {
        width: 350px;
    }

        .ins-font h4 {
            margin-bottom: 10px;
        }

    .foot-left {
        width: 250px;
    }

    .foot-right dl {
        margin-left: 60px;
    }
}

@media (max-width: 1025px) {
    .main {
        width: 768px;
    }

    .ino {
        /* margin-top: -40px; */
        padding-right: 0;
        padding-left: 70px;
    }

        .ino li {
            padding-left: 30px;
            margin-bottom: 50px;
        }

        .ino ul {
            padding-bottom: 0;
        }

        .ino li h4 {
            font-size: 40px;
        }

            .ino li h4 b {
                font-size: 20px;
            }

    .int {
        height: 325px;
    }

    .int-right li {
        height: 65px;
        line-height: 65px;
    }

    .ine-left {
        width: 246px;
    }

    .ine-list {
        height: 219px;
    }

    .ine-right {
        width: 497px;
    }

    .ine-bot .ine-list {
        width: 236px;
    }

    .ine-font {
        height: 40px;
    }

        .ine-font p {
            line-height: 40px;
            font-size: 20px;
        }

            .ine-font p:after {
                height: 20px;
                margin-top: -10px;
            }

        .ine-font span {
            width: 40px;
            height: 40px;
            line-height: 40px;
            font-size: 20px;
        }

    .inf-left {
        width: 336px;
    }

    .inl-list {
        width: 302px;
    }

        .inl-list .inf-pic {
            height: 176px;
        }

    .inf-right {
        width: 400px;
    }

    .ins-pic {
        width: 112px;
        height: 80px;
    }

    .ins-font {
        width: 265px;
    }

        .ins-font h3 {
            line-height: 30px;
        }

        .ins-font p {
            height: 22px;
            -webkit-line-clamp: 1;
        }

    .gallery-thumbs {
        overflow: hidden !important;
    }

    .ine-swiper .ine-next, .ine-swiper .ine-prev {
        display: block;
    }
}

@media (max-width: 768px) {
    .main {
        width: auto;
        padding: 0 15px;
    }

    .int-font {
        padding: 15px 40px;
    }

    .ine-right {
        width: 477px;
    }

    .ine-list {
        margin-bottom: 15px;
    }

    .ine-bot {
        margin-left: -15px;
    }

        .ine-bot .ine-list {
            width: 231px;
            margin-left: 15px;
        }

    .inf-left {
        width: 300px;
    }

    .inl-list {
        width: 266px;
    }
}

@media (max-width: 640px) {
    .main {
        width: auto;
        padding: 0 10px;
    }

    .index-one {
        padding: 0 5px;
    }

    .banner-crumb {
        display: none;
    }

    .ino {
        padding: 40px 20px;
    }

        .ino li {
            width: 50%;
            padding: 0 15px;
            margin-bottom: 30px;
        }

            .ino li:nth-child(3n) {
                border-right: solid 1px #e2e2e2;
                ;
            }

            .ino li:nth-child(2n) {
                border-right: none;
            }

            .ino li:nth-child(3) h3 {
                height: 32px;
            }

            .ino li h3 {
                font-size: 14px;
                margin-bottom: 15px;
            }

            .ino li h4 {
                font-size: 30px;
            }

    .ino-more {
        width: 111px;
        padding: 0 20px;
        height: 35px;
        line-height: 35px;
        font-size: 12px;
    }

        .ino-more i {
            font-size: 12px;
        }

    .index-two {
        padding: 40px 0;
    }

    .index-tit {
        font-size: 26px;
        line-height: 26px;
    }

        .index-tit span:after {
            width: 25px;
            left: -35px;
        }

    .index-dec {
        font-size: 15px;
        line-height: 16px;
        margin-top: 20px;
        margin-bottom: 30px;
    }

    .int {
        height: auto;
    }

    .int-right {
        overflow: hidden;
        width: 100%;
        float: none;
        background: none;
        padding-bottom: 20px;
    }

        .int-right li {
            height: 35px;
            line-height: 35px;
            width: 50%;
            float: left;
            padding: 0 5px;
            border-bottom: none;
            margin-bottom: 10px;
        }

            .int-right li a {
                position: static;
                font-size: 14px;
                background: white;
            }

            .int-right li:after {
                display: none;
            }

    .int-left {
        width: 100%;
        padding: 0 5px;
    }

    .int-font {
        padding: 15px 20px;
    }

        .int-font p {
            font-size: 14px;
            line-height: 22px;
            height: 44px;
        }

        .int-font span {
            font-size: 20px;
            line-height: 44px;
        }

    .index-three {
        padding: 40px 0;
    }

    .ine-left, .ine-right {
        width: 50%;
        padding: 0 5px;
    }

    .ine-list {
        margin-bottom: 10px;
        height: auto;
    }

    .ine-bot .ine-list {
        width: 100%;
    }

    .ine-top {
        display: none;
    }

    .ine-bot, .ine-bot .ine-list {
        margin-left: 0;
    }

    .ine-font p {
        font-size: 16px;
        padding-left: 25px;
    }

        .ine-font p:after {
            height: 16px;
            margin-top: -8px;
            left: 10px;
        }

    .ine-font {
        bottom: 0;
    }

    .ine-swiper, .gallery-top {
        margin-top: 30px !important;
    }

    .gallery-thumbs {
        height: 100px;
        padding: 0 25px !important;
    }

        .gallery-thumbs .swiper-slide {
            padding-top: 20px;
        }

        .gallery-thumbs .ine-icon {
            font-size: 30px;
        }

        .gallery-thumbs h3 {
            font-size: 14px;
        }

    .ine-swiper .ine-next, .ine-swiper .ine-prev {
        top: 37px;
    }

    .index-four {
        padding: 40px 5px;
    }

    .inf-top {
        height: 35px;
    }

    .inf-tit {
        font-size: 26px;
        line-height: 35px;
    }

    .inf-more {
        height: 35px;
        line-height: 35px;
        width: 111px;
        padding: 0 20px;
        font-size: 12px;
    }

        .inf-more i {
            font-size: 12px;
        }

    .inf-tit span {
        padding-left: 35px;
    }

        .inf-tit span:after {
            width: 25px;
            left: 0;
        }

    .inf-left {
        display: none;
    }

    .inf-right {
        width: 100%;
    }

    .inf-bot {
        margin-top: 30px;
    }

    .inf-a a {
        font-size: 18px;
    }

    .inf-a {
        height: 45px;
    }

    .ins-pic {
        width: 35%;
        height: auto;
    }

    .ins-font {
        width: 60%;
        float: right;
        margin-left: 0;
    }

        .ins-font h3 {
            font-size: 16px;
        }

        .ins-font h4 {
            font-size: 14px;
        }

    .index-five {
        padding: 40px 5px;
        padding-bottom: 25px;
    }

    .inv-swiper .inv-next {
        right: 0;
        top: -36px;
    }

    .inv-swiper .inv-prev {
        right: 35px;
        top: -36px;
    }

    .inv-tit {
        margin-bottom: 10px;
        font-size: 20px;
    }

    .inv-swiper .swiper-container {
        padding: 0px;
    }
}

@media (max-width: 640px) {
    .abo-right {
        width: 100%;
        margin-top: 50px;
        padding: 0 30px;
    }

        .abo-right li {
            padding-left: 0;
            padding-right: 20px;
        }

            .abo-right li:nth-child(2n) {
                padding-right: 0;
                padding-left: 20px;
            }
}



/*=================================================*/
.appli {
    background: #f5f5f5;
    margin-top: 100px;
    padding: 80px 0;
}

.appli-thumbs img, .appli-top img {
    display: block;
    width: 100%;
}

.appli-bot {
    padding: 68px 50px;
    background: white;
}

.appli-thumbs .swiper-slide {
    border: solid 2px transparent;
}

.appli-thumbs .swiper-slide-thumb-active {
    border: solid 2px #e16b43;
}

.appli-top .appli-tit {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(225,107,67,0.8);
    height: 100px;
    padding: 35px 30px;
    color: white;
    font-size: 26px;
}

    .appli-top .appli-tit p {
        width: 100%;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
        padding-left: 15px;
        line-height: 30px;
        border-left: solid 2px #fff;
    }

.appli-top .appli-next, .appli-top .appli-prev {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: white;
    color: #f08411;
    text-align: center;
    line-height: 46px;
    box-shadow: 0 6px 15px rgba(204,204,204,0.5);
}

    .appli-top .appli-next:hover, .appli-top .appli-prev:hover {
        background: #f08411;
        color: #fff;
    }

.appli-top .appli-next {
    right: 30px;
}

.appli-top .appli-prev {
    left: 30px;
}

.appli-swiper {
    display: none;
}

    .appli-swiper.on {
        display: block;
    }

.appli-ine .gallery-thumbs {
    height: 120px;
}

    .appli-ine .gallery-thumbs .swiper-slide {
        padding-top: 30px;
    }

.ine-swiper.appli-ine .ine-next, .ine-swiper.appli-ine .ine-prev {
    top: 47px;
}
/*.appli-ine .gallery-thumbs .swiper-slide.swiper-slide-active .ine-icon,.appli-ine .gallery-thumbs .swiper-slide.swiper-slide-active h3{color: #444;}*/
.appli-ine .gallery-thumbs .swiper-slide.slide-active .ine-icon, .appli-ine .gallery-thumbs .swiper-slide.slide-active h3 {
    color: #e16b43;
}

.appli-ine .gallery-thumbs .swiper-slide.swiper-slide-active:after {
    bottom: 0;
}

.appli-ine .gallery-thumbs .swiper-slide.slide-active:after {
    bottom: -12px;
}


@media (max-width: 1025px) {
    .appli {
        margin-top: 60px;
    }
}

@media (max-width: 640px) {
    .appli {
        padding: 40px 0;
    }

    .appli-ine {
        margin-top: 0 !important;
        margin-bottom: 50px;
    }

    .appli-top .appli-tit {
        height: 40px;
        font-size: 16px;
        padding: 10px 30px;
    }

        .appli-top .appli-tit p {
            line-height: 20px;
        }

    .appli-top .appli-next, .appli-top .appli-prev {
        width: 26px;
        height: 26px;
        line-height: 26px;
        font-size: 12px;
    }

    .appli-bot {
        padding: 30px;
    }

    .appli-top .appli-next {
        right: 10px;
    }

    .appli-top .appli-prev {
        left: 10px;
    }
}


/*注塑字*/
.font {
    padding: 80px 0;
    margin-top: 100px;
}

    .font ul {
        margin: 0 -15px;
    }

    .font li {
        width: 50%;
        float: left;
        padding: 0 15px;
        margin-bottom: 30px;
    }

        .font li a {
            overflow: hidden;
            display: block;
            width: 100%;
            position: relative;
        }

        .font li img {
            transition: all .5s;
            display: block;
            width: 100%;
        }

.font-tit {
    position: absolute;
    width: 100%;
    padding: 17px 30px;
    background: rgba(0,0,0,0.8);
    bottom: 0;
    left: 0;
}

    .font-tit p {
        padding-left: 20px;
        border-left: solid 2px #e16b43;
        line-height: 26px;
        color: rgba(255,255,255,0.8);
        font-size: 20px;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }

.font li:hover img {
    transform: scale(1.05);
}

@media (max-width: 1170px) {
    .font li {
        padding: 0 7.5px;
        margin-bottom: 15px;
    }

    .font ul {
        margin: 0 -7.5px;
    }
}

@media (max-width: 1025px) {
    .font {
        margin-top: 60px;
    }
}

@media (max-width:640px) {
    .font ul {
        margin: 0;
    }

    .font li {
        padding: 0;
        width: 100%;
    }

    .font {
        padding: 40px 0;
    }

    .font-tit {
        padding: 15px 20px;
    }

        .font-tit p {
            font-size: 16px;
            line-height: 20px;
            padding-left: 10px;
        }
}


/*font详情*/
.font-swiper {
    position: relative;
}

    .font-swiper .gallery-thumbs {
        height: 120px;
    }

        .font-swiper .gallery-thumbs .swiper-slide {
            padding-top: 47px;
        }

    .font-swiper .ine-next, .font-swiper .ine-prev {
        display: none;
        top: 47px;
        margin-top: 0;
        background: none;
        font-size: 12px;
        font-weight: bold;
        width: 26px;
        height: 26px;
        border-radius: 50%;
        border: solid 1px #c2c2c2;
        text-align: center;
        line-height: 24px;
        color: #a4a4a4;
    }

        .font-swiper .ine-next:hover, .font-swiper .ine-prev:hover {
            color: white;
            border-color: #e06136;
            background: #e06136;
        }

.font-dec {
    position: absolute;
    width: 100%;
    padding: 35px 30px;
    background: rgba(225,107,67,0.8);
    bottom: 0;
    left: 0;
}

    .font-dec p {
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
        line-height: 30px;
        font-size: 26px;
        color: white;
        padding-left: 15px;
        border-left: solid 2px #fff;
    }

.font-slide .swiper-slide img {
    display: block;
    width: 100%;
}

.font-slide .font-next, .font-slide .font-prev {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: white;
    color: #f08411;
    text-align: center;
    line-height: 46px;
}

    .font-slide .font-next:hover, .font-slide .font-prev:hover {
        background: #f08411;
        color: #fff;
    }

.font-slide .font-next {
    right: 30px;
}

.font-slide .font-prev {
    left: 30px;
}

.font-swiper .gallery-top {
    margin-top: 90px !important;
}

.font-font {
    padding: 0 30px;
    padding-top: 33px;
}

    .font-font h3 {
        margin-bottom: 5px;
        margin-top: 32px;
        padding-left: 13px;
        border-left: solid 2px #e16b43;
        font-size: 20px;
        color: #333;
        line-height: 20px;
    }

    .font-font p {
        padding-left: 13px;
        font-size: 16px;
        color: #666;
        line-height: 30px;
    }

.font-swiper .gallery-thumbs h3 {
    font-size: 20px;
    color: #333;
}

.font-swiper .gallery-thumbs .swiper-slide.swiper-slide-active h3 {
    color: #333;
}

.font-swiper .gallery-thumbs .swiper-slide.swiper-slide-thumb-active h3 {
    color: #f08411;
}

.font-swiper .gallery-thumbs .swiper-slide.swiper-slide-active:after {
    bottom: 0;
}

.font-swiper .gallery-thumbs .swiper-slide.swiper-slide-thumb-active:after {
    bottom: -12px;
}

@media (max-width: 1025px) {
    .font-swiper .ine-next, .font-swiper .ine-prev {
        display: block;
    }
}

@media (max-width: 640px) {
    .font-dec {
        padding: 15px 20px;
    }

        .font-dec p {
            font-size: 16px;
            line-height: 20px;
        }

    .font-slide .font-next {
        right: 10px;
    }

    .font-slide .font-prev {
        left: 10px;
    }

    .font-swiper .gallery-top {
        margin-top: 40px !important;
    }

    .font-slide .font-next, .font-slide .font-prev {
        width: 26px;
        height: 26px;
        line-height: 26px;
        font-size: 12px;
    }

    .font-font {
        padding: 0;
    }

    .font-swiper .gallery-thumbs h3 {
        font-size: 15px;
    }
}




.ny-banner {
    position: relative;
}

    .ny-banner img {
        display: block;
        width: 100%;
    }

.ny-app {
    position: relative;
    display: none;
    height: 250px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

    .ny-app::after {
        position: absolute;
        content: '';
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.3);
        top: 0;
        left: 0;
    }

.ny-font {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}

    .ny-font h3 {
        font-size: 36px;
        color: white;
        text-align: center;
        line-height: 36px;
    }

.ny-line {
    width: 26px;
    height: 2px;
    background: #f66c01;
    margin: 15px auto;
}

.ny-font h4 {
    text-align: center;
    font-size: 16px;
    font-family: 'Open Sans';
    color: rgba(255,255,255,0.8);
    line-height: 12px;
    text-transform: uppercase;
}
/*pc-二级*/
.second-nav {
    height: 60px;
    background: #f5f5f5;
}

    .second-nav a {
        float: left;
        display: block;
        height: 60px;
        width: 140px;
        color: #444444;
        font-size: 16px;
        line-height: 60px;
        text-align: center;
    }

        .second-nav a.active {
            color: white;
            background: #e06136;
        }

/*appsecond-nav*/
.appsecond-nav {
    position: relative;
    display: none;
}

.bot {
    position: absolute;
    top: 48px;
    background: #fff;
    z-index: 10;
}

.se-top1 {
    background: #f5f5f5;
    border-bottom: none !important;
}

.se-top {
    height: 48px;
    line-height: 48px;
    border-bottom: solid 1px #d8d8d8;
    position: relative;
}

    .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-tig.P_tig.open {
        transform: rotateZ(90deg);
        opacity: 1;
    }

.se-bot {
    width: 100%;
    display: none;
}

.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: #e06136;
        border-bottom: solid 1px #d8d8d8;
    }

.se-tig1 {
    width: 48px;
    height: 48px;
    line-height: 48px;
    float: right;
    position: relative;
    margin-top: -48px;
}

.se-tig2 {
    width: 48px;
    height: 48px;
    line-height: 48px;
    float: right;
    position: relative;
}

.se-tig1.P_tig.open::before { /*background-image: url(../images/pp-more-white.png);*/
}

.se-bbbot a {
    display: block;
    line-height: 30px;
}

.se-bbot {
    padding: 0 20px;
}

.se-a2.active {
    color: #F66C01;
}

/*锚点*/
.nei_anchor {
    text-align: center;
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    font-size: 0;
    width: 100%;
    z-index: 1001;
    background: #fff;
    box-shadow: 0px 0px 8px 0px #d6d6d6;
}

    .nei_anchor span {
        display: inline-block;
        *display: inline;
        *zoom: 1;
    }

        .nei_anchor span a {
            font-family: arial;
            height: 60px;
            font-size: 16px;
            color: #666;
            line-height: 60px;
            padding: 0 40px;
            display: inline-block;
            -webkit-transition: .5s;
            -moz-transition: .5s;
            -ms-transition: .5s;
            -o-transition: .5s;
            transition: .5s;
            position: relative;
        }

            .nei_anchor span a:after {
                content: '';
                width: 1px;
                height: 17px;
                background: #dadada;
                position: absolute;
                right: 0;
                top: 50%;
                transform: translateY(-50%);
            }

        .nei_anchor span:last-child a:after {
            display: none;
        }

        .nei_anchor span.on a:after, .nei_anchor span a:hover:after {
            display: none;
        }

        .nei_anchor span:hover a,
        .nei_anchor span.on a {
            color: #fff;
            background: #F66C01;
        }

        .nei_anchor span.span1 a {
            background: transparent;
            color: #666;
        }


/*新闻*/
.news-one {
    padding: 80px 0;
}

.news-left {
    width: 45.8%;
    float: left;
}

.nl-pic {
    width: 100%;
    overflow: hidden;
}

    .nl-pic img {
        display: block;
        width: 100%;
        transition: all .5s;
    }

.news-left:hover img {
    transform: scale(1.05);
}

.news-left:hover h3 {
    color: #f66c01;
}

.news-left h3 {
    font-size: 18px;
    color: #333;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    margin: 30px 0 10px 0;
}

.news-left span {
    display: block;
    font-size: 16px;
    color: #666;
    font-family: 'Open Sans';
}

.news-left p {
    height: 52px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: 14px;
    color: #666;
    line-height: 26px;
    margin-top: 20px;
}

.news-right {
    border-left: dashed 1px #d3d3d3;
    float: right;
    width: 50%;
    padding-left: 3.75%;
}

.nr-list {
    overflow: hidden;
    display: block;
    width: 100%;
    padding: 20px 0;
    border-bottom: dashed 1px #e8e8e8;
}

.nr-pic {
    width: 30%;
    height: auto;
    overflow: hidden;
    float: left;
}

    .nr-pic img {
        display: block;
        width: 100%;
        height: 100%;
        transition: all .5s;
    }

.nr-list:hover img {
    transform: scale(1.05);
}

.nr-list:hover h3 {
    color: #f66c01;
}

.nr-font {
    float: left;
    width: 65%;
    float: right;
}

    .nr-font h3 {
        font-size: 18px;
        color: #333;
        line-height: 26px;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }

    .nr-font span {
        display: block;
        font-size: 14px;
        color: #666;
        font-family: 'Open Sans';
        margin: 8px 0 15px 0;
    }

    .nr-font p {
        height: 44px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        font-size: 14px;
        color: #666;
        line-height: 22px;
    }

.nr-list:first-child {
    padding-top: 0;
}

.news-two {
    padding: 85px 0;
    background: #f5f5f5;
}

.news-big {
    margin: 0 -11px;
    padding-bottom: 85px;
}

.news-list {
    display: block;
    width: 33.33%;
    padding: 0 11px;
    margin-bottom: 15px;
    float: left;
}

.news-box {
    width: 100%;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.news-pic {
    width: 100%;
    overflow: hidden;
}

    .news-pic img {
        display: block;
        width: 100%;
        transition: all .5s;
    }

.news-font {
    padding: 30px 25px 40px;
}

    .news-font h3 {
        font-size: 18px;
        color: #333;
        line-height: 18px;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }

    .news-font h4 {
        font-size: 15px;
        color: #777;
        line-height: 18px;
        font-family: arial;
        margin: 10px 0 15px;
    }

    .news-font p {
        height: 52px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        font-size: 14px;
        color: #777777;
        line-height: 26px;
    }

    .news-font span {
        transition: all .5s;
        font-size: 14px;
        color: #666;
        display: block;
        margin-top: 28px;
        max-width: 130px;
        height: 40px;
        padding: 0 18px;
        border: solid 1px #e6e6e6;
        line-height: 38px;
        border-radius: 5px;
    }

    .news-font i {
        font-size: 26px;
        padding-right: 5px;
        float: left;
    }

.news-list:hover img {
    transform: scale(1.05);
}

.news-list:hover span {
    background: #f66c01;
    border-color: #f66c01;
    color: white;
}
/*分页*/
.page {
    width: 100%;
    height: 60px;
    border: 1px solid #e0e0e0;
    position: relative;
}

.page_inner {
    font-size: 0;
}

.page a {
    width: 58px;
    height: 58px;
    color: #666;
    font-size: 20px;
    display: inline-block;
    line-height: 58px;
    border-right: 1px solid #e0e0e0;
    text-align: center;
    border-spacing: 0;
    border-collapse: collapse;
}

    .page a.on, .page a:hover {
        color: #f66c01;
    }

.page .page_prev {
    position: absolute;
    top: 0;
    right: 58px;
    font-weight: bold;
    border-right: none;
    font-size: 16px;
    border-left: 1px solid #e0e0e0;
    color: #999999;
}

.page .page_next {
    position: absolute;
    top: 0;
    right: 0px;
    border-left: 1px solid #e0e0e0;
    font-weight: bold;
    border-right: none;
    font-size: 16px;
    color: #999999;
}



@media (max-width: 1025px) {
    .second-nav {
        display: none;
    }

    .ny-pc {
        display: none;
    }

    .ny-app {
        display: block;
    }

    .appsecond-nav {
        display: block;
    }

    .news-one, .news-two {
        padding: 80px;
    }

    .nr-pic {
        width: 35%;
    }

    .nr-font {
        width: 60%;
    }

        .nr-font span {
            margin-bottom: 0;
        }

    .nei_anchor {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .news-left {
        width: 100%;
        margin-bottom: 20px;
    }

    .news-right {
        width: 100%;
        padding-left: 0;
        border-left: none;
        border-top: dashed 1px #d3d3d3;
    }

    .nr-list:first-child {
        padding-top: 20px;
    }

    .nr-pic {
        width: 30%;
    }

    .nr-font {
        width: 65%;
    }

        .nr-font span {
            margin-bottom: 15px;
        }

    .news-list {
        width: 50%;
    }
}

@media (max-width: 640px) {
    .news-one, .news-two {
        padding: 0;
        padding-top: 40px;
    }

    .news-two {
        padding-bottom: 40px;
    }

    .nr-pic {
        width: 35%;
    }

    .nr-font {
        width: 60%;
    }

        .nr-font span {
            margin-bottom: 3px;
        }

        .nr-font p {
            height: 22px;
            -webkit-line-clamp: 1;
        }

    .news-big {
        margin: 0;
    }

    .news-list {
        width: 100%;
        padding: 0;
    }

    .news-big {
        padding-bottom: 15px;
    }

    .page {
        height: 40px;
    }

        .page a {
            width: 38px;
            height: 38px;
            line-height: 38px;
            font-size: 16px;
        }

        .page .page_next, .page .page_prev {
            font-size: 12px;
        }

        .page .page_prev {
            right: 38px;
        }
}



/*新闻详情*/
.newsinfo {
    padding: 80px 0;
    background: white;
}

.ni-left {
    float: left;
    width: 66.66%;
    border: solid 1px #ebebeb;
    padding: 35px 50px 60px;
    background: #fafafa;
}

    .ni-left h1 {
        font-size: 26px;
        color: #444;
        line-height: 28px; /*font-family: 'st';*/
    }

.ninfo {
    margin-top: 23px;
    margin-bottom: 43px;
}

.ninfo-left {
    font-family: "微软雅黑";
    float: left;
    font-size: 14px;
    color: #999;
    line-height: 32px;
}

    .ninfo-left i {
        color: #e1653b;
        font-size: 20px;
        float: left;
        margin-right: 7px;
    }

.news-share {
    float: right;
}

    .news-share span {
        float: left;
        display: block;
        font-size: 14px;
        color: #666;
        line-height: 32px;
    }

        .news-share span i {
            float: right;
            color: #a1a1a1;
            font-size: 16px;
        }

    .news-share a {
        float: left;
        text-align: center;
        line-height: 32px !important;
        font-size: 18px !important;
        width: 32px;
        height: 32px !important;
        padding: 0 !important;
        margin: 0 !important;
        margin-left: 9px !important;
        border-radius: 50%;
        opacity: 0.9;
        color: #fff !important;
    }

        .news-share a.bds_tsina {
            background: #da3c3c;
        }

        .news-share a.bds_weixin {
            background: #21ba41;
        }

        .news-share a.bds_sqq {
            background: #3e91ee;
        }

        .news-share a.bds_qzone {
            background: #f4c50b;
        }

        .news-share a:hover {
            opacity: 1 !important;
        }

.back {
    height: 40px;
    margin-top: 37px;
}

.news-prev {
    display: block;
    float: left;
    margin-right: 10px;
    max-width: 150px;
    height: 40px;
    font-size: 16px;
    padding: 0 40px;
    line-height: 36px;
    color: #e06136;
    text-align: center;
    border-radius: 30px;
    border: solid 1px #e06136;
}

.news-next {
    display: block;
    float: left;
    max-width: 150px;
    height: 40px;
    font-size: 16px;
    line-height: 36px;
    padding: 0 40px;
    color: #e06136;
    text-align: center;
    border-radius: 30px;
    border: solid 1px #e06136;
}

.news-prev i {
    float: left;
    font-weight: bold;
    margin-right: 3px;
    line-height: 38px;
}

.news-next i {
    float: right;
    font-weight: bold;
    margin-left: 3px;
    line-height: 38px;
}

.news-prev:hover, .news-next:hover {
    background-image: url(../images/more-right.png);
    color: white;
    background-color: #f66c01;
    border-color: #f66c01;
}

.news-prev:hover {
    background-image: url(../images/news-rightH.png);
}

.ni-right {
    float: right;
    width: 30.8%;
    background: #fafafa;
    border: solid 1px #ebebeb;
    padding: 30px 25px 42px 25px;
}

    .ni-right h3 {
        font-size: 20px;
        color: #333;
        padding-bottom: 20px;
        border-bottom: solid 1px #e7e7e7;
        line-height: 20px;
    }

        .ni-right h3 i {
            color: #e06338;
            font-size: 26px;
            float: left;
            margin-right: 5px;
        }

.news-tj {
    display: block;
    margin-top: 25px;
}

    .news-tj h4 {
        padding-left: 19px; /*font-family: 'st';*/
        font-size: 16px;
        color: #444;
        line-height: 20px;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
        margin-bottom: 7px;
        position: relative;
    }

        .news-tj h4 i {
            position: absolute;
            left: 0;
            top: 0;
        }

    .news-tj h5 {
        padding-left: 19px;
        font-size: 14px;
        color: #999;
        font-family: "微软雅黑";
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }

    .news-tj:hover h4 {
        color: #F66C01;
    }

.news-content p, .news-content span {
    font-size: 14px;
    color: #777;
    line-height: 26px;
}

.bd_weixin_popup {
    width: 250px !important;
    height: 310px !important;
}

@media (max-width: 1260px) {
    .newsinfo img {
        display: block;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .newsinfo {
        padding: 80px;
    }

    .ni-left {
        width: 100%;
        padding: 35px 30px 50px 30px;
        margin-bottom: 30px;
    }

    .ni-right {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .newsinfo {
        padding: 30px 0;
    }

    .ni-left {
        width: 100%;
        padding: 25px 15px 40px 15px;
        margin-bottom: 30px;
    }

        .ni-left h1 {
            font-size: 22px;
        }

    .news-share {
        float: left;
    }

    .news-prev, .news-next {
        padding: 0 20px;
        line-height: 28px;
        height: 30px;
        font-size: 14px;
    }

        .news-next i, .news-prev i {
            line-height: 28px;
            font-size: 14px;
        }

    .ni-right {
        padding: 20px 15px 32px 15px;
        ;
    }
}



/*联系我们*/
.con-one {
    padding: 80px 0 54px;
}

.con-tit {
    font-size: 33px;
    color: #333;
    text-align: center;
    line-height: 33px;
}

.con-line {
    width: 30px;
    height: 2px;
    background: #e06136;
    margin: 23px auto;
}

.con-dec {
    font-size: 18px;
    color: #666;
    line-height: 18px;
    text-align: center;
}

.con-one ul {
    margin: 70px -13px 0;
}

.con-one li {
    margin-bottom: 26px;
    height: 200px;
    width: 25%;
    padding: 0 13px;
    float: left;
}

.con-li {
    transition: all .5s;
    cursor: default;
    border-radius: 5px;
    padding-top: 38px;
    text-align: center;
    width: 100%;
    height: 100%;
    background: white;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.con-icon {
    font-size: 32px !important;
    height: 32px;
    overflow: hidden;
    line-height: 32px;
    color: #e06136;
}

.con-li h3 {
    font-size: 20px;
    color: #333;
    line-height: 20px;
    margin: 20px 0 12px;
}

.con-li p {
    font-size: 14px;
    color: #666;
    line-height: 22px;
    padding: 0 40px
}

.con-one li:hover .con-li {
    background: #e06136;
    box-shadow: 0 10px 25px rgba(224,97,54,0.3);
}

.con-one li:hover .con-icon, .con-one li:hover h3, .con-one li:hover p {
    color: white;
}

.con-two {
    padding: 60px 0;
    background: url(../images/con-bg.png) no-repeat center;
    background-size: cover;
}

.con-tit1 {
    font-size: 33px;
    color: #fff;
    text-align: center;
    line-height: 33px;
}

.con-line1 {
    width: 30px;
    height: 2px;
    background: #fff;
    margin: 23px auto;
}

.form {
    padding: 19px 45px 0 45px;
}

.con-input {
    overflow: hidden;
    margin: 0 -19px;
}

    .con-input .con-text {
        margin-bottom: 30px;
        width: 33.33%;
        height: 50px;
        float: left;
        padding: 0 19px;
    }

        .con-input .con-text .text {
            width: 100%;
            height: 100%;
            background: white;
            border: none;
            padding: 0 13px;
            font-size: 14px;
            color: #666;
            line-height: 50px;
        }

.con-area {
    height: 260px;
    width: 100%;
    margin-bottom: 45px;
}

    .con-area textarea {
        width: 100%;
        height: 100%;
        resize: none;
        background: white;
        padding: 13px;
    }

.con-sub {
    width: 150px;
    height: 42px;
    margin: 0 auto;
}

    .con-sub .submit {
        width: 100%;
        height: 100%;
        border-radius: 30px;
        background: #e06136;
        color: white;
        font-size: 16px;
        cursor: pointer;
    }

.con-three img {
    display: block;
    width: 100%;
}

@media (max-width: 1025px) {
    .con-li p {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .con-one {
        padding: 80px 80px 65px;
    }

        .con-one li {
            width: 50%;
        }
}

@media (max-width: 640px) {
    .con-one {
        padding: 40px 0px 25px;
    }

        .con-one li {
            width: 100%;
            padding: 0;
            margin-bottom: 15px;
            height: 150px;
        }

        .con-one ul {
            margin: 0;
            margin-top: 30px;
        }

    .con-tit, .con-tit1 {
        font-size: 24px;
        line-height: 24px;
    }

    .con-line, .con-line1 {
        margin: 10px auto;
    }

    .con-li p {
        padding: 0 40px;
    }

    .con-li {
        padding-top: 25px;
    }

    .con-two {
        padding: 40px 0;
    }

    .form {
        padding: 0;
        padding-top: 10px;
    }

    .con-input {
        margin: 0;
    }

        .con-input .con-text {
            width: 100%;
            padding: 0;
            margin-bottom: 15px;
        }

    .con-area {
        height: 200px;
        margin-bottom: 20px;
    }

    .con-dec {
        font-size: 16px;
    }

    .con-li h3 {
        font-size: 18px;
        margin: 10px 0 5px;
    }

    .ny-font h3 {
        font-size: 28px;
        line-height: 28px;
    }

    .ny-line {
        margin: 10px auto;
    }
}



/*关于我们*/
.about-one {
    padding: 200px 0 100px 0;
    background: url(../images/about1-bg.png) no-repeat center;
    background-size: cover;
}

.abo-left {
    width: 50%;
    padding-left: 10px;
    float: left;
}

.abo-tit {
    margin-left: 10px;
    margin-bottom: 24px;
    letter-spacing: 2px;
    font-size: 33px;
    color: white;
    line-height: 33px;
    position: relative;
    padding-bottom: 24px;
}

    .abo-tit:after {
        position: absolute;
        content: '';
        width: 30px;
        height: 2px;
        background: #e06136;
        bottom: 0;
        left: 0;
    }

.abo-p {
    height: 380px;
    overflow-y: auto;
    padding-right: 50px;
}

    .abo-p p {
        font-size: 14px;
        color: rgba(255,255,255,0.9);
        line-height: 28px;
    }

    .abo-p::-webkit-scrollbar {
        width: 3px;
        background-color: rgba(255,255,255,0.32);
    }

    .abo-p::-webkit-scrollbar-thumb {
        background-color: #e16b43;
        border-radius: 10px;
    }

.abo-right {
    width: 50%;
    float: left;
}

    .abo-right li {
        width: 50%;
        float: left;
        height: 82px;
        margin-bottom: 75px;
        padding-left: 95px;
    }

        .abo-right li h3 {
            font-size: 16px;
            color: rgba(255,255,255,0.8);
            line-height: 16px;
            margin-bottom: 20px;
        }

        .abo-right li h4 {
            font-family: 'ssi';
            font-size: 46px;
            color: #fff;
            line-height: 46px;
        }

            .abo-right li h4 em {
                font-size: 16px;
                color: rgba(255,255,255,0.8);
                font-style: normal;
            }

            .abo-right li h4 strong {
                font-weight: normal;
                margin-left: 3px;
                margin-top: -5px;
                float: left;
                font-size: 30px;
                color: #fff;
                font-family: 'ssi';
                line-height: 20px;
            }

            .abo-right li h4 span.span {
                float: left;
            }

.about-two {
    padding: 80px 0;
    background: #f5f5f5;
}

.about-tit {
    font-size: 33px;
    color: #333;
    line-height: 33px;
    text-align: center;
    position: relative;
    padding-bottom: 30px;
}

    .about-tit:after {
        position: absolute;
        content: '';
        width: 26px;
        height: 2px;
        background: #f66c01;
        bottom: 0;
        left: 50%;
        margin-left: -13px;
    }

.abt-top .swiper-slide {
    padding: 100px 100px 85px 240px;
}

.abt-year {
    font-size: 80px;
    color: #e06136;
    font-family: 'ak';
    float: left;
    line-height: 58px;
    border-right: solid 1px #f68732;
    padding-right: 60px;
}

.abt-dec {
    float: left;
    margin-left: 60px;
}

    .abt-dec p {
        font-size: 16px;
        color: #666;
        line-height: 30px;
    }

.abt-top .abt-prev {
    left: 0;
    top: 100px;
    margin-top: 0;
    width: 55px;
    height: 55px;
    background: none;
    border: solid 1px #c7c7c7;
    text-align: center;
    line-height: 53px;
    color: #999999;
    border-radius: 50%;
}

.abt-top .abt-next {
    right: 0;
    top: 100px;
    margin-top: 0;
    width: 55px;
    height: 55px;
    background: none;
    border: solid 1px #c7c7c7;
    text-align: center;
    line-height: 53px;
    color: #999999;
    border-radius: 50%;
}

    .abt-top .abt-prev:hover, .abt-top .abt-next:hover {
        border-color: #e06136;
        color: white;
        background: #e06136;
    }

.abt-thumbs {
    padding: 0 20px !important;
}

    .abt-thumbs .time-line {
        height: 60px;
        position: relative;
    }

    .abt-thumbs .dot {
        padding: 3px;
        width: 14px;
        height: 14px;
        border: 1px solid #f66c01;
        border-radius: 50%;
        position: absolute;
        top: 23px;
        left: -7px;
        opacity: 0;
        -webkit-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s;
    }

        .abt-thumbs .dot i {
            display: block;
            background: #f66c01;
            width: 100%;
            height: 100%;
            border-radius: 50%;
        }

    .abt-thumbs .swiper-slide.swiper-slide-thumb-active .dot {
        opacity: 1;
    }

    .abt-thumbs .daty {
        font-size: 16px;
        line-height: 32px;
        position: absolute;
        top: 37px;
        left: 0;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        z-index: 10;
    }

    .abt-thumbs .swiper-slide.swiper-slide-thumb-active .daty {
        color: #e06136;
    }

    .abt-thumbs .swiper-slide {
        float: left;
        background: url(../images/time-line.png) no-repeat top left;
        cursor: pointer;
    }

.about-three {
    padding: 80px 0 145px;
    background: url(../images/about3-bg.png) no-repeat center;
    background-size: cover;
}

    .about-three .about-tit {
        color: white;
    }

        .about-three .about-tit:after {
            background: rgba(255,255,255,0.6);
        }

    .about-three ul {
        margin-top: 100px;
    }

    .about-three li {
        width: 20%;
        float: left;
        text-align: center;
    }

.abe-icon {
    transition: all .5s;
    text-align: center;
    background: url(../images/abe-icon.png) no-repeat center;
    height: 103px;
}

.about-three li h3 {
    font-size: 20px;
    color: white;
    line-height: 20px;
    margin: 25px 0 15px;
}

.about-three li p {
    padding: 0 22px;
    line-height: 30px;
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    height: 40px;
}

.abe-icon .icon-hide {
    display: none;
}

.about-three li:hover .abe-icon .icon-hide {
    display: inline-block;
}

.about-three li:hover .abe-icon .icon-show {
    display: none;
}

.about-three li:hover .abe-icon {
    transform: translateY(-10px);
    background: url(../images/abe-iconH.png) no-repeat center;
}

.about-four {
    padding: 80px 0;
}

.abf-pic {
    width: 100%;
    overflow: hidden;
    display: block;
}

    .abf-pic img {
        display: block;
        width: 100%;
    }

.abf-dec {
    padding: 0 17px;
    height: 70px;
}

    .abf-dec p {
        text-align: center;
        border-top: solid 1px #e2e2e2;
        line-height: 70px;
        font-size: 16px;
        color: #666666;
    }

.abf-swiper {
    position: relative;
    margin-top: 60px;
}

.about-four .swiper-slide {
    padding: 10px;
    cursor: pointer;
}

.about-four .abf-list {
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    position: relative;
}

    .about-four .abf-list:hover .abf-dec p {
        color: #e16b43;
        border-top: solid 1px #e78969;
    }

.abf-swiper .abf-next {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: white;
    color: #e16b43;
    text-align: center;
    line-height: 46px;
    box-shadow: 0px 6px 15px rgba(204,204,204,0.5);
    right: -76px;
}

.abf-swiper .abf-prev {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: white;
    color: #e16b43;
    text-align: center;
    line-height: 46px;
    box-shadow: 0px 6px 15px rgba(204,204,204,0.5);
    left: -76px;
}

    .abf-swiper .abf-next:hover, .abf-swiper .abf-prev:hover {
        color: white;
        background: #e16b43;
        box-shadow: 0 6px 15px rgba(225,107,67,0.3);
    }

.about-five {
    padding: 80px 0;
    background: #f5f5f5;
}

.abv-pic {
    width: 100%;
    overflow: hidden;
}

    .abv-pic img {
        display: block;
        width: 100%;
        transition: all .5s;
    }

.abv-dec {
    background: white;
    height: 80px;
    padding: 0 30px;
    position: relative;
}

    .abv-dec:after {
        position: absolute;
        content: '';
        width: 100%;
        height: 2px;
        background: #e16b43;
        transition: all .5s;
        left: 0;
        bottom: 0;
    }

    .abv-dec p {
        line-height: 78px;
        position: relative;
        z-index: 2;
        font-size: 18px;
        color: #666;
    }

.abv-list:hover img {
    transform: scale(1.05);
}

.abv-list:hover .abv-dec:after {
    height: 100%;
}

.abv-list:hover .abv-dec p {
    color: white;
}

.abv-swiper {
    position: relative;
    margin-top: 46px;
}

    .abv-swiper .abv-next {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        background: white;
        color: #e16b43;
        text-align: center;
        line-height: 46px;
        box-shadow: 0px 6px 15px rgba(204,204,204,0.5);
        right: -76px;
    }

    .abv-swiper .abv-prev {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        background: white;
        color: #e16b43;
        text-align: center;
        line-height: 46px;
        box-shadow: 0px 6px 15px rgba(204,204,204,0.5);
        left: -76px;
    }

        .abv-swiper .abv-next:hover, .abv-swiper .abv-prev:hover {
            color: white;
            background: #e16b43;
            box-shadow: 0 6px 15px rgba(225,107,67,0.3);
        }

.about-six {
    padding: 80px 0;
}

.abx-swiper ul {
    padding: 45px 5px 25px;
}

.abx-swiper li {
    transition: all 1s;
    margin-bottom: 40px;
    text-align: center;
    width: 16.6667%;
    float: left;
}

    .abx-swiper li a {
        display: block;
        width: 100%;
        height: 100%;
    }

    .abx-swiper li:hover {
        box-shadow: 0 3px 25px rgba(0,0,0,0.1);
        position: relative;
        z-index: 3;
    }

    .abx-swiper li img {
        display: block;
        width: 100%;
    }

.abx-swiper .swiper-pagination-bullet, .abv-pag .swiper-pagination-bullet, .abf-pag .swiper-pagination-bullet {
    margin: 0 8px !important;
    width: 10px;
    height: 10px;
    opacity: 1;
    background: #ccc;
}

.abx-swiper .swiper-pagination-bullet-active, .abv-pag .swiper-pagination-bullet-active, .abf-pag .swiper-pagination-bullet-active {
    background: #e16b43;
}

.abv-pag, .abf-pag {
    display: none;
    width: 100%;
    bottom: -30px;
}

@media (max-width: 1440px) {
    .abf-swiper .abf-next, .abv-swiper .abv-next {
        right: 10px;
    }

    .abf-swiper .abf-prev, .abv-swiper .abv-prev {
        left: 10px;
    }
}

@media (max-width: 1025px) {
    .abo-right li:last-child h3 {
        height: 32px;
    }

    .abx-swiper li {
        width: 20%;
    }
}

@media (max-width: 768px) {
    .abo-right li {
        padding-left: 50px;
        margin-bottom: 50px;
    }

        .abo-right li h4 {
            font-size: 36px;
        }

    .abt-top .swiper-slide {
        padding-left: 140px;
    }

    .abx-swiper li {
        width: 25%;
    }
}

@media (max-width:640px) {
    .about-one {
        padding-top: 100px;
        padding-bottom: 50px;
    }

    .abo-tit {
        margin-left: 0;
        font-size: 24px;
    }

    .abo-left {
        padding-left: 0;
        width: 100%;
    }

    .abo-p {
        height: 250px;
        padding-right: 10px;
    }

    .abo-right {
        width: 100%;
        margin-top: 50px;
    }

        .abo-right li {
            padding-left: 0;
            padding-right: 30px;
        }

    .about-two {
        padding: 40px 0;
    }

    .about-tit {
        font-size: 24px;
        padding-bottom: 20px;
    }

    .abt-top .swiper-slide {
        padding: 40px 0;
        padding-left: 10px;
    }

    .abt-year {
        font-size: 50px;
        line-height: 40px;
        padding-right: 20px;
    }

    .abt-dec {
        margin-left: 20px;
        width: 60%;
    }

        .abt-dec p {
            font-size: 14px;
            line-height: 24px;
        }

    .abt-top .abt-next, .abt-top .abt-prev {
        width: 30px;
        height: 30px;
        line-height: 28px;
        font-size: 12px;
    }

    .about-three, .about-six {
        padding: 40px 0;
    }

        .about-three ul {
            margin-top: 40px;
        }

        .about-three li {
            width: 50%;
            margin-bottom: 30px;
        }

    .abv-pag, .abf-pag {
        display: block;
    }

    .abf-swiper .abf-prev, .abv-swiper .abv-prev, .abf-swiper .abf-next, .abv-swiper .abv-next {
        display: none;
    }

    .abf-swiper {
        margin-top: 20px;
    }

    .about-four, .about-five {
        padding: 40px 0 70px;
    }

    .abx-swiper ul {
        padding: 20px 0;
    }

    .abx-swiper li {
        width: 50%;
        margin-bottom: 10px;
    }

    .abv-swiper {
        margin-top: 30px;
    }

    .abe-icon {
        height: 80px;
        background-size: contain;
    }

        .abe-icon img {
            width: 25%;
        }

    .about-three li h3 {
        margin: 10px 0 5px;
        font-size: 18px;
    }

    .about-three li p {
        font-size: 14px;
        line-height: 20px;
        padding: 0 10px;
    }
}



.wrap2 {
    display: none;
    width: 57px;
    height: 57px;
    position: fixed;
    right: 10px;
    bottom: 20px;
    z-index: 1111;
}

.icon_menu {
    width: 57px;
    height: 57px;
    position: absolute;
    bottom: 0px;
    right: 4px;
    z-index: 10;
    cursor: pointer;
}

    .icon_menu span {
        diplay: none;
    }

.btnss {
    border-radius: 50%;
    width: 54px;
    height: 54px;
    border: solid 1px #9d9d9d;
    z-index: 1;
    position: absolute;
    bottom: 0;
    right: 0;
    margin: 0 5px 2px 0;
    cursor: pointer;
}

    .btnss span {
        display: block;
        width: 22px;
        height: 24px;
        font-size: 0;
        position: absolute;
        top: 50%;
        left: 50%;
        margin-top: -12px;
        margin-left: -11px;
        overflow: hidden;
    }

.btn4 {
    background: white url(../images/email.png) no-repeat center;
    background-size: 20px 15px;
}

.btn2 {
    background: white url(../images/add.png) no-repeat center;
    background-size: 20px 25px;
}

.btn3 {
    background: white url(../images/phone.png) no-repeat center;
    background-size: 20px 22px;
}

.btn1 {
    background: white url(../images/k-qq.png) no-repeat center;
    background-size: 20px 25px;
}

.btnss {
    -webkit-transition: bottom .2s,right .2s;
    -moz-transition: bottom .2s,right .2s;
    -o-transition: bottom .2s,right .2s;
    -ms-transition: bottom .2s,right .2s;
    transition: bottom .2s,right .2s;
}

.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;
}

.icon_menu2 {
    /* css3 animation */
    -webkit-animation: anim4 5s linear infinite;
    -moz-animation: anim4 5s linear infinite;
    -ms-animation: anim4 5s linear infinite;
    -o-animation: anim4 5s linear infinite;
    animation: anim4 5s linear infinite;
}


/* 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);
    }
}


/*pc-客服*/
.kf {
    transition: .8s;
    -o-transition: .8s;
    -moz-transition: .8s;
    -webkit-transition: .8s;
    z-index: 999999;
    background-color: #fff;
    position: fixed;
    bottom: 140px;
    right: 20px;
    width: 62px;
    border-radius: 5px;
    display: none;
}

    .kf span {
        z-index: 1000001;
        -webkit-transition: .5s;
        -o-transition: .5s;
        transition: .5s;
        cursor: pointer;
        position: relative;
        display: block;
        width: 62px;
        height: 62px;
        border-bottom: 1px solid #e3e3e3;
        background: url(../images/kefu_j.png) no-repeat center #fff;
    }

        .kf span:hover {
            background-color: #F66C01;
        }

    .kf .zx {
        border-radius: 5px 5px 0 0;
        background-position: 0 -62px;
    }

        .kf .zx:hover {
            background-position: 0 -124px;
        }

    .kf .freetel {
        background-position: -62px -62px;
    }

        .kf .freetel:hover {
            background-position: -62px -124px;
        }

    .kf .act {
        background-position: -186px -62px;
    }

        .kf .act:hover {
            background-position: -186px -124px;
        }

    .kf .zxlya {
        background-position: -124px -62px;
    }

        .kf .zxlya:hover {
            background-position: -124px -124px;
        }

    .kf .back_top {
        border-radius: 0 0 5px 5px;
        border: none;
        background-position: -248px -62px;
    }

        .kf .back_top:hover {
            background-position: -248px -124px;
        }

    .kf span div {
        display: none;
        background-color: #fff;
        border-radius: 5px;
        position: absolute;
        right: 75px;
        padding: 20px;
        font-size: 14px;
        text-align: center;
        /*    color: #FC5204;*/
        bottom: 2px;
    }

.kfimgr {
    position: absolute;
    bottom: 23px;
    right: -9px;
}

.kf span div i {
    display: block;
    position: absolute;
    width: 15px;
    height: 200px;
    right: -15px;
    top: 0;
}

.kf .zx div,
.kf .freetel div,
.kf .zxlya div,
.kf span:nth-child(4) div {
    text-align: center;
    min-width: 148px;
    font-size: 14px;
    color: #666;
}

.kf span:nth-child(4) div {
    white-space: nowrap;
}

.kf a {
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%
}

.kf span div, .kf {
    -webkit-box-shadow: 0 2px 13px rgba(0, 0, 0, 0.25);
    box-shadow: 0 2px 13px rgba(0, 0, 0, 0.25);
}

.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);
}

.shou {
    z-index: 1000000;
    cursor: pointer;
    width: 30px;
    height: 40px;
    top: 50%;
    margin-top: -15px;
    border-radius: 5px 0 0 5px;
    right: 62px;
    background: url("../images/kefu_j.png") no-repeat -310px -62px #fff;
    position: absolute;
}

    .shou.on {
        background-position: -310px -102px;
    }

.kf .freetel input {
    text-indent: .5em;
    display: block;
    margin: 15px 0;
    line-height: 28px;
    color: #666;
    font-size: 12px;
    width: 140px;
    border: 1px solid #d1d1d1;
    border-radius: 2px;
    height: 28px;
}

.kf .btn-call {
    transition: all .5s;
    -webkit-transition: all .5s;
    display: block;
    background: #FC5204;
    border-radius: 2px;
    color: #fff;
    line-height: 26px;
    font-size: 12px;
    text-align: center;
    width: 79px;
    height: 26px;
    position: relative;
}

    .kf .btn-call:hover {
        background: #f33e61;
    }

@media (max-width: 1025px) {
    .wrap2 {
        display: block;
    }

    .kf {
        display: none !important;
    }
}


.slide {
    width: 50% !important;
    height: auto !important;
    left: 25% !important;
    margin: 0 !important;
    top: 50% !important;
    transform: translateY(-50%);
}

@media (max-width: 640px) {
    .slide {
        width: 80% !important;
        left: 10% !important;
    }
}

.ine-show, .ine-hide {
    height: 40px;
    overflow: hidden;
    position: relative;
}

    .ine-show img, .ine-hide img {
        display: block;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%);
    }

.gallery-thumbs .swiper-slide.swiper-slide-thumb-active .ine-show {
    display: none;
}

@media (max-width: 640px) {

    .ino li h4 strong {
        font-size: 20px;
    }
}

.ino.pass {
    margin-top: 0;
}

.pc-int {
    height: 590px;
    overflow: hidden;
}

    .pc-int .gallery-thumbs {
        width: 30%;
        float: right;
        background: #ffffff;
        height: 100%;
        overflow: visible !important;
    }

    .pc-int .gallery-top {
        margin-top: 0 !important;
        width: 70%;
        float: left;
        height: 100%;
    }

        .pc-int .gallery-top img {
            display: block;
            width: 100%;
        }

    .pc-int .gallery-thumbs .swiper-slide {
        border-bottom: solid 1px #e0e0e0;
        width: 100% !important;
        color: #333333;
        font-size: 20px;
        padding-top: 0;
    }

        .pc-int .gallery-thumbs .swiper-slide.swiper-slide-thumb-active {
            color: white;
            background: #e06136;
        }

        .pc-int .gallery-thumbs .swiper-slide::after {
            position: absolute;
            z-index: -1;
            content: '';
            width: 0;
            height: 0;
            border-right: solid 20px #e06136;
            border-top: solid 12px transparent;
            border-bottom: solid 12px transparent;
            left: 0px;
            top: 50%;
            margin-top: -12px;
            opacity: 0;
            transition: all .5s;
            background: none;
        }

        .pc-int .gallery-thumbs .swiper-slide.swiper-slide-thumb-active::after {
            left: -9px;
            opacity: 1;
            z-index: 2;
        }

.pcint-font {
    overflow: hidden;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    padding: 34px 40px;
}

    .pcint-font p {
        width: 68%;
        float: left;
        font-size: 16px;
        color: white;
        line-height: 26px;
        height: 52px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }

    .pcint-font span {
        transition: all .5s;
        float: right;
        color: white;
        font-size: 30px;
        line-height: 52px;
    }

@media (max-width: 1460px) {
    .pc-int {
        height: 505px;
    }
}

@media (max-width: 1260px) {
    .pc-int {
        height: 495px;
    }
}

@media (max-width: 1200px) {
    .pc-int {
        height: 420px;
    }
}

@media (max-width: 1025px) {
    .pc-int {
        height: 325px;
    }

    .pcint-font {
        padding: 25px 30px;
    }

        .pcint-font p {
            font-size: 14px;
        }

    .pc-int .gallery-thumbs .swiper-slide {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .pcint-font {
        padding: 15px 20px;
    }
}

@media (max-width: 640px) {
    .pc-int {
        display: none;
    }

    .int {
        display: block;
    }
}

.swiper-container-pcbanner {
    position: absolute !important;
    left: 0;
    text-align: center;
    bottom: 13%;
    width: 100%;
    z-index: 32;
}

.pc-banner {
}

    .pc-banner .swiper-pagination-bullet {
        width: 13px;
        height: 13px;
        border-radius: 50%;
        opacity: 1;
        margin: 0 4px;
    }



/*2019.7.30*/
.nav-search {
    cursor: pointer;
    margin-right: 12px;
    float: right;
    height: 100px;
    width: 40px;
    position: relative;
    background: url(../images/search.png) no-repeat center;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.search-box {
    position: absolute;
    right: -8px;
    top: 100px;
    font-size: 0;
    width: 320px;
    height: 0;
    z-index: 100;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    opacity: 0;
    overflow: hidden;
}

.nav-search:hover .search-box {
    opacity: 1;
    height: 52px;
    padding-top: 6px;
}

.search-box .search {
    width: 260px;
    height: 46px;
    background: #fff;
    display: inline-block;
    vertical-align: top;
    font-size: 14px;
    padding: 0 15px;
    color: #666;
}

.search-box .butt {
    width: 60px;
    height: 46px;
    background: #e06136 url(../images/search.png) no-repeat center;
    display: inline-block;
    vertical-align: top;
    font-size: 14px;
    color: #fff;
    text-align: center;
    line-height: 46px;
    cursor: pointer;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

    .search-box .butt:hover {
        background-color: #ff622d;
    }

.pc-lanu {
    float: right;
    padding: 38px 0;
    display: none;
}

    .pc-lanu a {
        font-size: 16px;
        display: block;
        padding: 0 10px;
        height: 24px;
        color: #fff;
        float: left;
    }

        .pc-lanu a.active {
            background: #ff622d;
            border-radius: 30px;
        }


.app-lanu a.active {
    background: #ff622d;
    border-radius: 30px;
    color: #fff;
}

.app-lanu a {
    font-size: 16px;
    /* display: block; */
    padding: 0 10px;
    height: 24px;
    color: #333;
    width: 45px;
    /* float: left; */
}

.app-lanu {
    padding: 25px 0;
    text-align: center;
    display: none;
}


.appdet {
}

.font-swiper .gallery-top .swiper-slide img {
    height: 724px;
}

@media (max-width: 1023px) {
    .font-swiper .gallery-top .swiper-slide img {
        height: 500px;
    }
}

@media (max-width: 767px) {
    .font-swiper .gallery-top .swiper-slide img {
        height: 250px;
    }
}

/*2019.11.22*/
.cpzxdiv {
    height: 100px;
    box-shadow: 0 5px 30px #9e9e9ed4;
    margin-bottom: 60px;
}

    .cpzxdiv ul li {
        float: left;
        /* width: 15%; */
        font-size: 18px;
        line-height: 100px;
        text-align: center;
        width: 200px;
    }

        .cpzxdiv ul li :hover {
            color: #e06136;
        }

.onpro {
    color: #e06136;
}

/*2019.11.22*/
.font-container {
    padding-right: 15px;
    padding-left: 15px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .font-container {
        width: 750px;
    }
}

@media (min-width: 992px) {
    .font-container {
        width: 970px;
    }
}

@media (min-width: 1260px) {
    .font-container {
        width: 1230px;
    }
}

.proi-left {
    width: 50%;
    float: left;
    padding-right: 50px;
}

.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%;
    }

.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%;
    height: 335px;
}

.spec-scroll {
    width: 100%;
    position: relative;
    margin-top: 20px;
}

    .spec-scroll .prev {
        left: -30px;
        text-align: left;
    }

    .spec-scroll .next {
        right: -30px;
        text-align: right;
    }

    .spec-scroll .prev, .spec-scroll .next {
        z-index: 3;
        font-weight: bold;
        position: absolute;
        top: 0;
        width: 28px;
        height: 74px;
        cursor: pointer;
        line-height: 74px;
        font-size: 20px;
        color: #999;
    }

        .spec-scroll .prev:hover, .spec-scroll .next:hover {
            color: #e06136;
        }

    .spec-scroll .items {
        padding-right: 15px;
        width: 100%;
        height: 90px;
        overflow: hidden;
        position: relative;
    }

        .spec-scroll .items ul {
            margin: 0;
            overflow: hidden;
            width: 200%;
            position: absolute;
        }

            .spec-scroll .items ul li {
                width: 122px;
                height: 74px;
                padding: 0;
                margin-right: 20px;
                float: left;
                border: solid 1px white;
            }

                .spec-scroll .items ul li.hover {
                    border-color: #e06136;
                }

                .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;
}

.pir-pic img {
    display: block;
    width: 100%;
}

.pir-swiper .swiper-pagination {
    bottom: 10px;
    width: 100%;
}

.pir-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #fff;
    opacity: 1;
    margin: 0 5px !important;
}

.pir-swiper .swiper-pagination-bullet-active {
    background: #e06136;
}

.proi-right {
    width: 50%;
    float: left;
    padding: 0px 0px 0;
}

    .proi-right h3 {
        font-size: 30px;
        color: #2d3740;
        line-height: 50px;
    }

    .proi-right h4 {
        width: 40px;
        height: 2px;
        background: #e06136;
        margin: 16px 0 24px;
    }

.proi-dec {
    overflow-y: auto;
    padding-right: 10px;
    height: 250px;
}

    .proi-dec::-webkit-scrollbar {
        width: 3px;
        background-color: #dcdbdb;
    }

    .proi-dec::-webkit-scrollbar-thumb {
        background-color: #e06136;
        border-radius: 10px;
    }

    .proi-dec p {
        font-size: 16px;
        line-height: 24px;
        color: #666;
    }

.proi-more {
    margin-top: 20px;
    transition: all .5s;
    display: block;
    width: 200px;
    height: 50px;
    border: solid 1px #e06136;
    text-align: center;
    border-radius: 30px;
    line-height: 48px;
    font-size: 20px;
    color: #fff;
    display: block;
    background: #e06136;
}

    .proi-more:hover {
        color: white;
        border-color: #f5a100;
        background: #f5a100;
    }

.proi-four {
    padding: 74px 0 0;
}

.proi-tit {
    font-size: 30px;
    color: #2d3740;
    font-family: 'semi';
    line-height: 50px;
    text-align: center;
}

.proi-four ul {
    margin: 46px -15px 50px;
}

.proi-four li {
    width: 50%;
    float: left;
    padding: 0 15px;
}

.font-nav {
    margin-bottom: 60px;
    background: white;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.35);
    padding: 30px 0;
}

    .font-nav a {
        word-break: keep-all;
        font-size: 18px;
        color: #333;
        line-height: 36px;
        padding: 0 20px;
        line-height: 48px;
    }

        .font-nav a:hover, .font-nav a.on {
            color: #e06136;
        }

@media (max-width: 1259px) {
    .spec-preview {
        height: 253px;
    }

    .spec-scroll .items ul li {
        width: 126px;
        height: 77px;
    }

    .spec-scroll .items {
        padding-right: 0;
        height: 77px;
    }

    .proi-dec {
        height: 175px;
    }

    .proi-right {
        padding-top: 0;
    }

    .prot-left p {
        line-height: 28px;
        background-position: left top 11px;
    }
}

@media (max-width: 991px) {
    .proi-left {
        display: none;
    }

    .pir-swiper {
        display: block;
    }

    .proi-right {
        float: none;
        width: 100%;
        padding-top: 20px;
    }

    .proi-dec {
        height: auto;
        padding-right: 0;
    }

    .font-font p img {
        width: 100%;
    }
}

@media (max-width:767px) {
    .font-font p {
        font-size: 14px;
        line-height: 22px;
    }

    .proi-right h3 {
        font-size: 24px;
        line-height: 30px;
    }

    .proi-dec p {
        font-size: 14px;
        line-height: 22px;
        padding-right: 0;
        height: auto;
    }

    .proi-right h4 {
        margin-bottom: 15px;
    }

    .proi-more {
        width: 130px;
        height: 35px;
        line-height: 33px;
        font-size: 14px;
        margin-top: 20px;
    }

    .proi-four {
        padding-top: 35px;
    }

        .proi-four ul {
            margin: 25px 0px 15px;
        }

        .proi-four li {
            width: 100%;
            padding: 0px;
            margin-bottom: 15px;
        }

    .font-nav {
        padding: 20px 0;
        margin-bottom: 30px;
    }

        .font-nav a {
            width: 50%;
            font-size: 16px;
            line-height: 30px;
            padding: 0 0 0 20px;
            float: left;
        }
}
</pre></body></html>