﻿@charset "UTF-8";

.bd_weixin_popup {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}
/*header*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 500;
    background: rgba(0,0,0,.4);
    -webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,0.1);
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.1);
}

    .header .logo {
        float: left;
        width: 169px;
        height: 65px;
        margin-top: 16px;
    }

        .header .logo img {
        
            height: 100%;
            display: block;
        }

.language {
    float: right;
    position: relative;
    margin-top: 35px;
    display: none;
}

.language-text {
    display: block;
    color: #fff;
    line-height: 30px;
    cursor: pointer;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

    .language-text i {
        display: inline-block;
        vertical-align: middle;
        font-size: 12px;
        margin-left: 8px;
        -webkit-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s;
    }

.language-list {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 10;
    background: #fff;
    padding: 10px 0;
    -webkit-box-shadow: 0 2px 4px 2px rgba(0,0,0,.05);
    box-shadow: 0 2px 4px 2px rgba(0,0,0,.05);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .6s;
    -o-transition: all .6s;
    transition: all .6s;
}

    .language-list a {
        display: block;
        padding: 10px 30px;
        -webkit-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s;
        word-break: keep-all;
    }

        .language-list a:hover {
            color: #f8c300
        }

.language:hover .language-text {
    color: #f8c300;
}

    .language:hover .language-text i {
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg);
    }

.language:hover .language-list {
    opacity: 1;
    visibility: visible;
}

.search-btn {
    float: right;
    width: 30px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    font-size: 18px;
    color: #fff;
    margin: 0 20px;
    cursor: pointer;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

    .search-btn:hover {
        color: #e5821c
    }

.navbar {
    float: right;
    margin-right: 0px;
}

.navitem {
    float: left;
    position: relative;
    padding: 0px 35px;
    cursor: pointer;
    transition: all .5s;
}

    .navitem > a {
        display: block;
        position: relative;
        height: 100px;
        overflow: hidden;
        font-size: 16px;
        line-height: 100px;
        color: #fff;
        -webkit-transition: all .3s ease-out;
        -o-transition: all .3s ease-out;
        transition: all .3s ease-out;
    }

    .navitem:hover > a,
    .navitem.active > a {
        color: #f8c300
    }

    .navitem .subnav {
        min-width: 180px;
        background-color: #fff;
        -webkit-box-shadow: 0 3px 10px rgba(0,0,0,.08);
        box-shadow: 0 3px 10px rgba(0,0,0,.08);
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 200;
        visibility: hidden;
        overflow: hidden;
        opacity: 0;
        -webkit-transition: all .36s ease;
        -o-transition: all .36s ease;
        transition: all .36s ease;
        padding: 13px 0 15px;
    }

        .navitem .subnav.subnav-box {
            width: 360px;
            padding: 10px 20px;
            transform: translateX(-50%);
            left: 50%;
        }

            .navitem .subnav.subnav-box li {
                padding: 10px;
                float: left;
                width: 50%;
            }

    .navitem:hover .subnav {
        visibility: visible;
        opacity: 1;
    }

    .navitem .subnav li {
        padding: 10px 25px 10px 35px;
        border-bottom: 1px solid rgba(0,0,0,.07);
    }

        .navitem .subnav li:last-child, .navitem .subnav.subnav-box li:nth-child(9) {
            border-bottom: none;
        }

        .navitem .subnav li a {
            display: block;
            padding: 7px 0;
            color: #9d9d9d;
            font-size: 14px;
            line-height: 18px;
            transition: all .3s ease-in-out;
            position: relative;
            left: 0;
            white-space: nowrap;
        }

        .navitem .subnav li:hover a {
            transform: translateX(5px);
            color: #f8c300
        }

.search-wrap {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100px;
    background: #fff;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: all .2s;
}

.searchopen .search-wrap {
    z-index: 10;
    opacity: 1;
    visibility: visible;
}
/*.search-container{width: 1200px;margin: 0 auto;}*/
.search-frame {
    position: relative;
    height: 44px;
    margin-top: 28px;
}

@-webkit-keyframes searchform-fade {
    0% {
        opacity: 0;
        -webkit-animation-timing-function: cubic-bezier(0.67, 0, 0.33, 1);
        animation-timing-function: cubic-bezier(0.67, 0, 0.33, 1)
    }

    100% {
        opacity: 1
    }
}

@keyframes searchform-fade {
    0% {
        opacity: 0;
        -webkit-animation-timing-function: cubic-bezier(0.67, 0, 0.33, 1);
        animation-timing-function: cubic-bezier(0.67, 0, 0.33, 1)
    }

    100% {
        opacity: 1
    }
}

@-webkit-keyframes searchform-slide {
    0% {
        -webkit-transform: translate3d(100px, 0, 0);
        transform: translate3d(100px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.11393, 0.8644, 0.14684, 1);
        animation-timing-function: cubic-bezier(0.11393, 0.8644, 0.14684, 1)
    }

    100% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes searchform-slide {
    0% {
        -webkit-transform: translate3d(100px, 0, 0);
        transform: translate3d(100px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.11393, 0.8644, 0.14684, 1);
        animation-timing-function: cubic-bezier(0.11393, 0.8644, 0.14684, 1)
    }

    100% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@-webkit-keyframes item-searchshow {
    0% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
        -webkit-animation-timing-function: cubic-bezier(0.2727, 0.0986, 0.8333, 1);
        animation-timing-function: cubic-bezier(0.2727, 0.0986, 0.8333, 1)
    }

    40% {
        opacity: 1
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(0.7);
        transform: scale(0.7)
    }
}

@keyframes item-searchshow {
    0% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
        -webkit-animation-timing-function: cubic-bezier(0.2727, 0.0986, 0.8333, 1);
        animation-timing-function: cubic-bezier(0.2727, 0.0986, 0.8333, 1)
    }

    40% {
        opacity: 1
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(0.3);
        transform: scale(0.3)
    }
}

.searchopen .search-frame {
    -webkit-animation: searchform-fade 400ms both;
    animation: searchform-fade 400ms both;
}

    .searchopen .search-frame form {
        -webkit-animation: searchform-slide 1s both;
        animation: searchform-slide 1s both;
    }

.searchtext-btn {
    color: #000;
    font-size: 18px;
    line-height: 44px;
    width: 44px;
    text-align: center;
    cursor: pointer;
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

    .searchtext-btn:hover {
        color: #ffba00;
    }

.search-input {
    margin-left: 44px;
    margin-right: 80px;
    -webkit-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
}

.search-wrap input {
    font-size: 16px;
    line-height: 44px;
    color: #333;
    width: 100%;
    border-radius: 5px;
}

.search-close {
    width: 44px;
    height: 44px;
    font-size: 18px;
    color: #232323;
    line-height: 44px;
    text-align: center;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0;
}

.searchopen .search-close {
    opacity: 1;
    -webkit-transition: all .2s ease-out 0s;
    -o-transition: all .2s ease-out 0s;
    transition: all .2s ease-out 0s;
}

    .searchopen .search-close:hover {
        color: #ffba00;
    }

.searchshow .navitem {
    -webkit-animation: item-searchshow .4s both;
    animation: item-searchshow .4s both;
}

.searchopen .navitem {
    visibility: hidden;
}

.mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.48) no-repeat;
    display: none;
    z-index: 400;
}

.wrapper {
    padding-top: 80px;
}

@media (max-width: 1460px) {
    .navbar {
        margin-right: 40px;
    }

    .navitem {
        padding: 0 19px;
    }
}
/*header-end*/
/*banner-start*/
.section-home {
    background: url(../images/bg_01.jpg) repeat left top;
}

.home-banner {
    overflow: visible;
}

    .home-banner img {
        display: block;
        width: 100%;
    }

.banner-item {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding-top: 100px;
}

    .banner-item .container-middle {
        height: 100%;
        position: relative;
    }

.banner-title {
    font-size: 40px;
    color: #fff;
    text-align: center;
    padding: 5% 0 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all .6s .4s;
    font-family: '微软雅黑';
    letter-spacing: 10px;
}

.banner-dec {
    font-size: 26px;
    color: rgba(255,255,255,0.8);
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all .6s .6s;
    font-family: arial;
    letter-spacing: 4px;
}

.banner-content {
    position: absolute;
    bottom: -70px;
    right: 0;
    z-index: 10;
    background: rgba(0,69,142,.8);
    width: 700px;
    padding: 70px 55px 16px 55px;
    opacity: 0;
    transform: translateY(30px);
    transition: all .6s .4s;
}

.banner-sol {
    font-size: 36px;
    color: #fff;
    /* height: 108px; */
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.banner-sol2 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.banner-more {
    display: inline-block;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    font-size: 40px;
    color: #fff;
    background: url(../images/icon_01.png) no-repeat center;
    transition: all .5s;
}

.banner-bottom {
    position: absolute;
    bottom: 60px;
    left: 0;
    width: 100%;
    z-index: 100;
}

.banner-pagination .swiper-pagination-bullet {
    width: 60px;
    height: 3px;
    background: rgba(245,245,245,.8);
    margin-right: 10px;
    opacity: 1;
    border-radius: 0;
}

.banner-pagination .swiper-pagination-bullet-active {
    background: #f8c300;
}

.home-banner .swiper-slide-active .banner-title,
.home-banner .swiper-slide-active .banner-dec,
.home-banner .swiper-slide-active .banner-content {
    opacity: 1;
    transform: translateY(0);
}

.banner-content .line-anim {
    position: absolute;
    right: 37px;
    top: 0;
    transition: all .5s;
}

.banner-content:hover .line-anim {
    right: 0;
    top: 38px;
}

.banner-content:hover .banner-more {
    transform: translateX(20px);
}

.home-hotnews {
    margin-top: 50px;
    height: 30px;
}

    .home-hotnews a {
        display: block;
        font-size: 20px;
        color: #444;
        max-width: 470px;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
        transition: all .3s;
    }

        .home-hotnews a span {
            display: inline-block;
        }

    .home-hotnews .m-time {
        width: 150px;
    }

    .home-hotnews a:hover {
        color: #00458e
    }

@media (max-width: 1680px) {
    .banner-title {
        padding: 3% 0 0;
    }
}

@media (max-width: 1460px) {
    .banner-title {
        padding: 3% 0 0;
        font-size: 34px;
    }

    .banner-dec {
        font-size: 24px;
        line-height: 26px;
    }

    .banner-sol {
        font-size: 30px;
    }
}
/*banner-end*/
/*home-about-start*/
.home-about {
    background: url(../images/bg_01.jpg) repeat left top;
    padding: 80px 0 120px;
}

.home-about-list {
    text-align: center;
    font-size: 0;
    margin: 0 -13px;
    margin-top: 70px;
    
}

    .home-about-list li {
        width: 25%;
        height: 400px;
        padding: 0 13px;
        float: left;
        /*display: inline-block;
	vertical-align: middle;		*/
        transition: all .6s;
        margin-bottom: 25px;
    }

.home-about-li {
    width: 100%;
    height: 100%;
    padding: 30px 30px 30px 30px;
    box-shadow: 0 5px 25px 0 rgba(0,0,0,.05);
    background: #fff;
    text-align: center;
    position: relative;
    transition: all .6s;
}

.home-about-list li:hover .home-about-li {
    transform: translateY(-50px);
}

.home-about-li::after {
    content: '';
    width: 0;
    height: 4px;
    background: #336aa5;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    transition: all .6s;
}

.home-about-list li:hover .home-about-li::after {
    width: 100%;
}

.home-about-list .line-anim {
    position: absolute;
    top: 0;
    right: 30px;
    transition: all .6s;
}

.home-about-list li:hover .line-anim {
    right: 0;
    top: 33px;
}

.home-about-list .m-icon {
    width: 100%;
    height: auto;
    text-align: center;
    margin: 0 auto;
}

    .home-about-list .m-icon img {
        display: block;
        width: 100%;
    }

.home-about-list .m-tit {
    font-size: 23px;
    color: #00458e;
    margin: 50px 0 7px;
    line-height: 36px;
    text-align: center;
}

.home-about-list .m-des {
    font-size: 17px;
    line-height: 28px;
    color: #666;
    text-align: center;
}

.home-about-list .scrollbar {
    height: 346px;
}

@media (max-width: 1460px) {
    .home-about-list {
        margin: 0 -10px;
        margin-top: 50px;
    }

        .home-about-list li {
            padding: 0 10px;
        }

    .home-about-li {
        padding: 84px 15px 20px 15px;
    }

    .home-about-list .m-tit {
        margin: 48px 0 7px;
    }
}
/*home-about-end*/
/*home-introduction*/
.home-introduction {
    background: #fff;
    padding: 65px 0 90px;
}

.home-title {
    text-align: center;
}

    .home-title h3 {
        font-size: 33px;
        color: #00458e;
    }

    .home-title p {
        font-size: 20px;
        color: #666;
        margin-top: 10px;
    }

.home-intr-box {
    margin-top: 70px;
    position: relative;
}

    .home-intr-box .gallery-top {
        float: left;
        width: 700px;
        height: 440px;
    }

        .home-intr-box .gallery-top .swiper-slide {
            overflow: hidden;
            position: relative;
        }

        .home-intr-box .gallery-top img {
            width: 100%;
            display: block;
            transition: all .8s;
        }

        .home-intr-box .gallery-top .swiper-slide:hover img {
            transform: scale(1.05);
        }

    .home-intr-box .gallery-thumbs {
        float: right;
        width: 680px;
        position: absolute;
        right: 0;
        height: 100%;
        top: 0;
        
    }

        .home-intr-box .gallery-thumbs .swiper-slide {
            height: 90px;
            background: #f2f2f2;
            padding: 10px 68px;
            font-size: 20px;
            color: #666;
            line-height: 50px;
            cursor: pointer;
            transition: all .4s;
        }

        .home-intr-box .gallery-thumbs .m-index {
            width: 50px;
            height: 50px;
            border: 1px solid #999;
            border-radius: 50%;
            font-size: 22px;
            color: #666;
            text-align: center;
            line-height: 48px;
            float: left;
            vertical-align: middle;
            margin-right: 35px;
            transition: all .4s;
            margin-top: 2%;
        }

        .home-intr-box .gallery-thumbs .m-tit {
            line-height: 65px;
        }

        .home-intr-box .gallery-thumbs .swiper-slide:hover,
        .home-intr-box .gallery-thumbs .swiper-slide-thumb-active {
            background: #00458e;
            color: #fff;
        }

            .home-intr-box .gallery-thumbs .swiper-slide:hover .m-index,
            .home-intr-box .gallery-thumbs .swiper-slide-thumb-active .m-index {
                border-color: #fff;
                color: #fff;
            }

@media (max-width: 1460px) {
    .home-intr-box .gallery-top {
        width: 600px;
        height: 470px;
    }

    .home-intr-box .gallery-thumbs {
        width: 580px;
    }

        .home-intr-box .gallery-thumbs .swiper-slide {
            padding: 13px 55px;
        }

        .home-intr-box .gallery-thumbs .m-index {
            margin-right: 30px;
        }
}
/*home-introduction -end*/
/*home-partner*/
.home-partner {
    position: relative;
    background: #00458e;
}

    .home-partner .home-title {
        position: absolute;
        top: 68px;
        left: 50%;
        margin-left: -600px;
        z-index: 10;
        width: 1200px;
        text-align: center;
    }

.home-title h3 .white {
    color: #fff;
}

.home-partner-box {
    position: relative;
    z-index: 6;
}
/*.home-partner::before,
.home-partner::after{
	content: '';
	width: 50%;
	height: 100%;
	position: absolute;
	top:0;
	z-index: 2;
}
.home-partner::before{
	left: 0;
	background: #00458e;
}
.home-partner::after{
	right: 0;
	background: #f5f5f5;
}*/
.home-partner-left {
    float: left;
    width: 50%;
    color: #fff;
    padding: 12px 0 45px;
    background: #00458e;
}

.home-partner-right {
    float: right;
    width: 50%;
    color: #666;
    padding: 12px 0 45px;
    background: #f5f5f5;
}

.home-partner-warp {
}

.home-partner-left .home-partner-warp {
    float: right;
}

.home-partner-right .home-partner-warp {
    float: left;
}

.home-partner-fig {
    overflow: hidden;
    margin-bottom: 12px;
}

    .home-partner-fig img {
        max-width: 100%;
    }

.home-partner-list {
    font-size: 20px;
}

.home-partner-left .home-partner-list {
    padding-right: 120px;
    padding-left: 160px;
}

.home-partner-right .home-partner-list {
    padding-left: 350px;
}


@keyframes anim-out {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

@keyframes anim-out-pseudo {
    0% {
        background: rgba(0, 0, 0, 0.25);
    }

    100% {
        background: transparent;
    }
}

.btn-more {
    display: inline-block;
    font-size: 20px;
    line-height: 50px;
    text-align: center;
    background: #00458e;
    padding: 0 55px;
    color: #fff;
    cursor: pointer;
    position: relative;
    z-index: 10;
    overflow: hidden;
    transition: all .4s;
}

.bgimg {
    color: #fff0;
    background-image: url(../images/bgimg.jpg);
}

.anim {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    transform: translateY(-50%) translateX(-50%);
}

    .anim:before {
        position: relative;
        content: '';
        display: block;
        margin-top: 100%;
    }

    .anim:after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 50%;
    }

.btn-more:hover > .anim {
    animation: anim-out 0.75s;
}

    .btn-more:hover > .anim:after {
        animation: anim-out-pseudo 0.75s;
    }

.home-partner .text-align {
    position: absolute;
    bottom: 50px;
    left: 0;
    z-index: 10;
    width: 100%;
    text-align: center;
}

@media (max-width: 1460px) {

    .home-partner-left, {
        padding-left: 20px;
    }
}
/*home-partner -end*/
/*home-reason*/
.home-reason {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    padding: 80px 0 100px;
    margin-top: -1px;
}

    .home-reason .home-title p {
        color: #444;
    }

    .home-reason .m-hr {
        width: 50px;
        height: 2px;
        background: rgba(0,69,142,.8);
        margin: 30px auto 25px auto;
    }

.home-reason-sec {
    font-size: 18px;
    line-height: 32px;
    color: #444;
    text-align: center;
}

.home-reason-list {
    width: 92%;
    text-align: center;
    font-size: 0;
    margin: 65px auto 88px auto;
}

    .home-reason-list li {
        float: left;
        width: 25%;
        text-align: center;
        font-size: 20px;
        color: #444;
        padding-bottom: 10px;
        position: relative;
        transition: all .5s;
    }

        .home-reason-list li:first-child {
            margin-left: -1px;
        }

        .home-reason-list li::after {
            content: '';
            width: 1px;
            height: 70px;
            background: rgba(68,68,68,.3);
            position: absolute;
            left: 0;
            top: 50px;
        }

        .home-reason-list li:first-child::after {
            display: none;
            margin-left: -1px;
        }

    .home-reason-list .m-icon {
        width: 75px;
        height: 75px;
        overflow: hidden;
        position: relative;
        margin: 0 auto;
    }

        .home-reason-list .m-icon img {
            width: 100%;
            height: 100%;
            display: block;
            transition: all .5s;
        }

        .home-reason-list .m-icon .aft {
            position: absolute;
            top: 0;
            left: 0;
            opacity: 0;
        }

    .home-reason-list p {
        margin-top: 7px;
    }

    .home-reason-list li:hover {
        color: #00458e;
    }

        .home-reason-list li:hover .bef {
            opacity: 0;
        }

        .home-reason-list li:hover .aft {
            opacity: 1;
        }

    .home-reason-list li:hover {
        transform: translateY(-10px);
    }
/*home-reason -end*/
/*home-news*/
.home-news {
    background: url(../images/bg_01.jpg) repeat left top;
    padding: 70px 0;
}

.home-news-box {
    position: relative;
    margin-top: 46px;
}

    .home-news-box .swiper-slide {
        padding: 30px 0;
    }

.home-news-item {
    display: block;
    background: #fff;
    width: 100%;
    box-shadow: 0 5px 25px 0 rgba(0,0,0,0.05);
}

    .home-news-item .m-pic {
        height: 260px;
        overflow: hidden;
    }

        .home-news-item .m-pic img {
            display: block;
            width: 100%;
            height: 100%;
            transition: all .8s;
        }

.home-goods-item .m-pic {
    text-align: center;
    height: auto;
}

    .home-goods-item .m-pic img {
        display: block;
        max-width: 90%;
        height: auto;
        transition: all .8s;
        margin: 0 5%;
        width: auto;
        margin: auto;
    }

.home-news-item .m-cont {
    padding: 25px 30px;
    height: 140px;
}

.home-news-item .m-time {
    font-size: 20px;
    color: #444;
}

.home-news-item .m-tit {
  
    font-size: 19px;
    color: #444;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    margin-top: 8px;
    transition: all .4s;
}

.home-news-item .m-tit2 {
    font-size: 14px;
    margin-top: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.home-news-item:hover .m-pic img {
    transform: scale(1.04);
}

.home-news-item:hover .m-tit {
    color: #00458e
}

.home-prev, .home-next {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    margin-top: -25px;
    font-size: 40px;
    text-align: center;
    line-height: 50px;
    color: #999;
    cursor: pointer;
    z-index: 10;
    transition: all .4s;
}

    .home-prev i, .home-next i {
        font-size: 40px;
    }

.home-news-box .home-prev {
    left: -85px;
}

.home-news-box .home-next {
    right: -85px;
}

.home-news-box .home-pagi {
    display: none;
    width: 100%;
    bottom: -10px;
}

.home-news-box .swiper-pagination-bullet {
    margin: 0 5px;
    opacity: 1;
    background: #666;
}

.home-news-box .swiper-pagination-bullet-active {
    background: #00458e;
}

.home-prev:hover, .home-next:hover {
    color: #00458e;
}

.home-prev.swiper-button-disabled,
.home-next.swiper-button-disabled {
    opacity: .35;
    cursor: auto;
    pointer-events: none;
}

@media (max-width: 1560px) {
    .home-news-box .home-prev, .home-news-box .home-next {
        display: none;
    }

    .home-news-box .home-pagi {
        display: block;
    }
}

@media (max-width: 1460px) {
    .home-news-item .m-pic {
        height: 220px;
    }


    .home-goods-item .m-pic {
        text-align: center;
        height: auto;
    }
}
/*home-news -end*/
/*home-map*/
.home-map {
    background: url(../images/home_05.jpg) no-repeat center #fff;
    text-align: center;
    padding: 80px 0 90px;
}

.home-map-des {
    font-size: 20px;
    line-height: 32px;
    color: #666;
    text-align: center;
    margin-bottom: 30px;
}

.btn-map {
    display: inline-block;
    cursor: pointer;
}
/*home-map -end*/
/*footer*/
.footer {
    background: #00458e;
    border-top: 4px solid #f7c200;
}

.footer-top {
    padding: 88px 0 50px;
}

.foot-menu {
    float: left;
    width: 1100px;
}

.foot-itme {
    float: left;
    width: 30%;
    padding-right: 10px;
}

    .foot-itme dt {
        width: 100%;
        padding-bottom: 23px;
        border-bottom: 1px solid rgba(255,255,255,.2);
        margin-bottom: 20px;
    }

        .foot-itme dt a {
            font-size: 20px;
            color: #fff;
        }

    .foot-itme dd {
        margin: 6px 0;
    }

        .foot-itme dd a {
            font-size: 16px;
            color: rgba(255,255,255,.66);
        }

.footer-contact {
    float: right;
    text-align: right;
    width: 240px;
}

.btn-way {
    display: inline-block;
    font-size: 18px;
    line-height: 46px;
    text-align: center;
    background: #fff;
    padding: 0 20px;
    color: #00458e;
    cursor: pointer;
    position: relative;
    z-index: 10;
    overflow: hidden;
    transition: all .4s;
}

.footer .btn-way:hover {
    color: #00458e
}

.btn-way:hover > .anim {
    animation: anim-out 0.75s;
}

    .btn-way:hover > .anim:after {
        animation: anim-out-pseudo 0.75s;
    }

.share .bdsharebuttonbox a {
    float: right;
    display: inline-block;
    width: 50px;
    height: 50px;
    background: 0;
    padding: 0;
    margin: 0;
    border: 1px solid rgba(255,255,255,.5);
    border-radius: 50%;
    font-size: 22px;
    color: rgba(255,255,255,.6);
    text-align: center;
    line-height: 48px;
    margin-left: 7px;
    opacity: 1;
    transition: all .3s;
}

    .share .bdsharebuttonbox a:hover {
        color: #fff;
    }

.footer-contact .share {
    margin: 106px 0 12px;
}

.footer-tel {
    font-size: 28px;
    color: #fff;
}

.foot-copyright {
    color: rgba(255,255,255,.6);
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,.2);
}

.copyright {
    float: left;
    width: 80%;
}

.foot-ri {
    float: right;
}

.ctmon {
    margin-left: 50px;
}

.footer-friends {
    color: rgba(255,255,255,.6);
    padding-bottom: 20px;
}

    .footer-friends a {
        margin-right: 30px;
    }

.footer a {
    transition: all .3s;
}

    .footer a:hover {
        color: #f8c300
    }

@media (max-width: 1460px) {
    .foot-menu {
        width: 820px;
    }

    .footer-contact {
        width: 220px;
    }
}
/*footer-end*/
/*客服*/
.kf {
    z-index: 600;
    background-color: #fff;
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 62px;
    border-radius: 5px;
    display: none;
    -webkit-transition: all .8s;
    -o-transition: all .8s;
    transition: all .8s;
}

    .kf span {
        z-index: 602;
        -webkit-transition: all .5s;
        -o-transition: all .5s;
        transition: all .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: #00458e;
        }

    .kf .zx {
        border-radius: 5px 5px 0 0;
        background-position: 0 0;
    }

        .kf .zx:hover {
            background-position: 0 -62px;
        }

    .kf .freetel {
        background-position: -62px 0;
    }

        .kf .freetel:hover {
            background-position: -62px -62px;
        }

    .kf .act {
        background-position: -186px 0;
    }

        .kf .act:hover {
            background-position: -186px -62px;
        }

    .kf .zxlya {
        background-position: -124px 0;
    }

        .kf .zxlya:hover {
            background-position: -124px -62px;
        }

    .kf .back_top {
        border-radius: 0 0 5px 5px;
        border: none;
        background-position: -248px 0;
    }

        .kf .back_top:hover {
            background-position: -248px -62px;
        }

    .kf span div {
        display: none;
        background-color: #fff;
        border-radius: 5px;
        position: absolute;
        right: 75px;
        padding: 20px;
        font-size: 14px;
        color: #f4474c;
        bottom: 2px;
    }

        .kf span div input {
            text-indent: .5em;
            display: block;
            margin: 15px 0;
            line-height: 28px;
            color: #696969;
            font-size: 12px;
            width: 140px;
            border: 1px solid #d1d1d1;
            border-radius: 2px;
            height: 28px;
        }

        .kf span div a {
            -o-transition: .5s;
            transition: .5s;
            -webkit-transition: .5s;
            display: block;
            background: #f4474c;
            border-radius: 2px;
            color: #fff;
            line-height: 26px;
            font-size: 12px;
            text-align: center;
            width: 79px;
            height: 26px;
        }

            .kf span div a:hover {
                background: #f4474c;
            }

.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 .zxlya div {
    padding: 20px 10px;
    font-size: 12px;
}

.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: 601;
    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 0 #fff;
    position: absolute;
}

    .shou.on {
        background-position: -310px -40px;
    }
/*手机客服*/
.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 #dcdcdc;
    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 {
    text-align: center;
    color: #f3c21b;
    font-size: 22px !important;
    line-height: 52px;
    background: white; /*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);
    }
}


/*手机头部*/
.header-app.on .navbar-app {
    background: #111;
}

.header-app.hny .navbar-app {
    background: #111;
}

.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);
    }

        .header-app.open-menu .navbar-app {
            background: white;
        }

.navbar-app {
    position: relative;
    background: rgba(0,0,0,0.4);
    height: 60px;
    text-align: center;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,0.1);
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.1);
}

.header-app .logo {
    float: left;
    height: 60px;
    vertical-align: middle;
    padding: 10px;
    margin-top: 0;
}

    .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: #fff;
    top: 0;
    left: 0;
    z-index: 9999;
}

.alert-top {
    height: 60px;
    background: #fff;
    padding: 10px 15px;
    border-bottom: solid 1px #dbdbdb;
}

    .alert-top .text {
        height: 40px;
        background: none;
        border: solid 1px #e5e5e5;
        width: 80%;
        float: left;
        color: #666;
        padding: 0 10px;
    }

    .alert-top .search {
        background: url(../images/search.png) no-repeat center;
        width: 10%;
        height: 40px;
        background-size: 20px;
        float: left;
    }

    .alert-top span {
        opacity: 1;
        position: static;
        color: #666;
        float: right;
        font-size: 20px !important;
        width: 10%;
        height: 40px;
    }

.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: #f8c300;
        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 #dbdbdb;
    opacity: 0;
    pointer-events: none;
}

    .nav-list li.open {
        /* border-bottom: none; */
    }

.header-app.open-menu .nav-list li {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}

.nav-list li:nth-child(1) {
    -webkit-transform: translateY(-44px);
    -ms-transform: translateY(-44px);
    transform: translateY(-44px);
    transition: opacity .3345s cubic-bezier(0.52, 0.16, 0.52, 0.84) .15s,transform .4669s cubic-bezier(0.52, 0.16, 0.52, 0.84) .108s,-webkit-transform .4669s cubic-bezier(0.52, 0.16, 0.52, 0.84) .108s;
}

.header-app.open-menu .nav-list li:nth-child(1) {
    transition: opacity .3091s cubic-bezier(0.32, 0.08, 0.24, 1) .03s,transform .3455s cubic-bezier(0.32, 0.08, 0.24, 1) .02s,-webkit-transform .3455s cubic-bezier(0.32, 0.08, 0.24, 1) .02s;
}

.nav-list li:nth-child(2) {
    -webkit-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    transform: translateY(-40px);
    transition: opacity .29294s cubic-bezier(0.52, 0.16, 0.52, 0.84) .13s,transform .45043s cubic-bezier(0.52, 0.16, 0.52, 0.84) .095s,-webkit-transform .45043s cubic-bezier(0.52, 0.16, 0.52, 0.84) .095s;
}

.header-app.open-menu .nav-list li:nth-child(2) {
    transition: opacity .32244s cubic-bezier(0.32, 0.08, 0.24, 1) .05s,transform .35825s cubic-bezier(0.32, 0.08, 0.24, 1) .04s,-webkit-transform .35825s cubic-bezier(0.32, 0.08, 0.24, 1) .04s;
}

.nav-list li:nth-child(3) {
    -webkit-transform: translateY(-36px);
    -ms-transform: translateY(-36px);
    transform: translateY(-36px);
    transition: opacity .26098s cubic-bezier(0.52, 0.16, 0.52, 0.84) .11s,transform .43756s cubic-bezier(0.52, 0.16, 0.52, 0.84) .082s,-webkit-transform .43756s cubic-bezier(0.52, 0.16, 0.52, 0.84) .082s;
}

.header-app.open-menu .nav-list li:nth-child(3) {
    transition: opacity .33467s cubic-bezier(0.32, 0.08, 0.24, 1) .07s,transform .37539s cubic-bezier(0.32, 0.08, 0.24, 1) .06s,-webkit-transform .37539s cubic-bezier(0.32, 0.08, 0.24, 1) .06s;
}

.nav-list li:nth-child(4) {
    -webkit-transform: translateY(-32px);
    -ms-transform: translateY(-32px);
    transform: translateY(-32px);
    transition: opacity .2386s cubic-bezier(0.52, 0.16, 0.52, 0.84) .09s,transform .42827s cubic-bezier(0.52, 0.16, 0.52, 0.84) .069s,-webkit-transform .42827s cubic-bezier(0.52, 0.16, 0.52, 0.84) .069s;
}

.header-app.open-menu .nav-list li:nth-child(4) {
    transition: opacity .34577s cubic-bezier(0.32, 0.08, 0.24, 1) .09s,transform .39692s cubic-bezier(0.32, 0.08, 0.24, 1) .08s,-webkit-transform .39692s cubic-bezier(0.32, 0.08, 0.24, 1) .08s;
}

.nav-list li:nth-child(5) {
    -webkit-transform: translateY(-28px);
    -ms-transform: translateY(-28px);
    transform: translateY(-28px);
    transition: opacity .22581s cubic-bezier(0.52, 0.16, 0.52, 0.84) .07s,transform .42259s cubic-bezier(0.52, 0.16, 0.52, 0.84) .056s,-webkit-transform .42259s cubic-bezier(0.52, 0.16, 0.52, 0.84) .056s;
}

.header-app.open-menu .nav-list li:nth-child(5) {
    transition: opacity .35577s cubic-bezier(0.32, 0.08, 0.24, 1) .11s,transform .42286s cubic-bezier(0.32, 0.08, 0.24, 1) .1s,-webkit-transform .42286s cubic-bezier(0.32, 0.08, 0.24, 1) .1s;
}

.nav-list li:nth-child(6) {
    -webkit-transform: translateY(-24px);
    -ms-transform: translateY(-24px);
    transform: translateY(-24px);
    transition: opacity .20343s cubic-bezier(0.52, 0.16, 0.52, 0.84) .05s,transform .41691s cubic-bezier(0.52, 0.16, 0.52, 0.84) .043s,-webkit-transform .41691s cubic-bezier(0.52, 0.16, 0.52, 0.84) .043s;
}

.header-app.open-menu .nav-list li:nth-child(6) {
    transition: opacity .36577s cubic-bezier(0.32, 0.08, 0.24, 1) .13s,transform .41718s cubic-bezier(0.32, 0.08, 0.24, 1) .12s,-webkit-transform .41718s cubic-bezier(0.32, 0.08, 0.24, 1) .12s;
}

.nav-list li:nth-child(7) {
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
    transition: opacity .18105s cubic-bezier(0.52, 0.16, 0.52, 0.84) .03s,transform .41123s cubic-bezier(0.52, 0.16, 0.52, 0.84) .03s,-webkit-transform .41123s cubic-bezier(0.52, 0.16, 0.52, 0.84) .03s;
}

.header-app.open-menu .nav-list li:nth-child(7) {
    transition: opacity .37577s cubic-bezier(0.32, 0.08, 0.24, 1) .15s,transform .4115s cubic-bezier(0.32, 0.08, 0.24, 1) .14s,-webkit-transform .4115s cubic-bezier(0.32, 0.08, 0.24, 1) .14s;
}

.nav-list li:nth-child(8) {
    -webkit-transform: translateY(-16px);
    -ms-transform: translateY(-16px);
    transform: translateY(-16px);
    transition: opacity .15867s cubic-bezier(0.52, 0.16, 0.52, 0.84) .01s,transform .40555s cubic-bezier(0.52, 0.16, 0.52, 0.84) .17s,-webkit-transform .40555s cubic-bezier(0.52, 0.16, 0.52, 0.84) .17s;
}

.header-app.open-menu .nav-list li:nth-child(8) {
    transition: opacity .38577s cubic-bezier(0.32, 0.08, 0.24, 1) .17s,transform .40582s cubic-bezier(0.32, 0.08, 0.24, 1) .16s,-webkit-transform .42286s cubic-bezier(0.32, 0.08, 0.24, 1) .16s;
}

.cate-item {
    position: relative;
}

    .cate-item a {
        font-size: 16px;
        line-height: 48px;
        margin-right: 60px;
        display: block;
        color: #333;
    }

.nav-list li.active .cate-item a, .nav-list li.open .cate-item a {
    color: #f8c300
}

.category-cont a:last-child {
    border: none;
}

.category-cont a.active {
    color: #f8c300;
}

.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: #dbdbdb;
        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: #f8c300;
}

.category-cont {
    display: none;
}

.nav-list li.open .category-cont {
    display: block;
    border: solid 1px #dbdbdb;
}

.category-pad {
    padding: 0 15px;
}

.category-cont a {
    line-height: 40px;
    border-bottom: 1px dashed #dbdbdb;
    display: block;
    color: #666;
}

.category-pad a.active {
    color: #f8c300;
}

.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;
}

.home-banner img.banner-app {
    display: none;
}
/*app-底部*/
.foot-app {
    width: 100%;
    background: #00458e;
    padding: 0 15px;
    display: none;
}

.footer-tit {
    position: relative;
    border-bottom: 1px solid #ddd;
}

.open .footer-tit a {
    color: #f8c300;
}

.footer-tit a {
    font-size: 16px;
    color: #fff;
    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: #fff;
        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: #f8c300;
}

.footer-cont {
    display: none;
    border: solid 1px #ddd;
    border-top: 0;
    padding: 0 15px;
}

    .footer-cont a {
        line-height: 40px;
        color: rgba(255,255,255,.66);
        ;
        display: block;
        font-size: 14px;
        border-bottom: dashed 1px #ddd
    }

        .footer-cont a:last-child {
            border: none;
        }

.footer-item.open .footer-cont a.active {
    color: #f8c300;
}

.footer-top {
    padding: 30px 0 20px;
}

.footer-left {
    width: 25%;
    float: right;
    text-align: right;
}

    .footer-left img {
        display: block;
        width: 100%;
    }

    .footer-left p {
        font-size: 14px;
        color: #666;
        margin-top: 10px;
    }

.footer-right {
    width: 50%;
    float: left;
    margin-top: 20px;
}

    .footer-right .share a {
        float: left;
        width: 30px;
        height: 30px;
        line-height: 28px;
        font-size: 16px;
    }

.footer-bot {
    padding: 20px 0 30px;
    border-top: solid 1px #ddd;
}

.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: #f8c300 !important;
        }

.footer-bot p, .footer-bot p a {
    font-size: 14px;
    color: rgba(255,255,255,0.66);
    line-height: 22px;
}

.footer-link, .footer-link a {
    line-height: 26px;
    font-size: 14px;
    color: rgba(255,255,255,0.66);
}

.footer-link {
    padding: 0px 0 20px;
    overflow: hidden;
}

    .footer-link a {
        display: block;
        float: left;
        margin-right: 15px;
    }

    .footer-link span {
        float: left;
    }

    .footer-link a:hover {
        color: #f8c300;
    }

.foot-a {
    float: right;
}

.footer-left .btn-way {
    line-height: 40px;
    font-size: 16px;
    padding: 0 12px;
}

@media (max-width: 1440px) {
    .home-partner-left .home-partner-list {
        padding-right: 120px;
        padding-left: 190px;
    }

    .home-partner-right .home-partner-list {
        padding-left: 310px;
    }
}

@media (max-width: 1260px) {
    .home-partner-left .home-partner-list {
        padding-right: 120px;
        padding-left: 152px;
    }

    .home-partner-right .home-partner-list {
        padding-left: 240px;
    }

    .navitem {
        padding: 0 7px;
    }

    .navbar {
        margin-right: 10px;
    }

    .banner-content {
        width: 470px;
    }

    .home-about-list .m-icon {
        width: 100%;
        height: auto;
    }

    .home-about-list .m-tit {
        margin-top: 25px;
        line-height: 30px;
        font-size: 17px;
    }

    .home-about-list .m-des {
        font-size: 16px;
        line-height: 24px;
    }

    .home-about-list li {
        height: 360px;
    }

    .home-about-li {
        padding-top: 60px;
    }

    .home-intr-box .gallery-top {
        width: 50%;
        height: 370px;
    }

    .home-intr-box .gallery-thumbs {
        width: 48.5%;
    }

        .home-intr-box .gallery-thumbs .swiper-slide {
            padding: 10px 45px;
        }

        .home-intr-box .gallery-thumbs .m-index {
            width: 40px;
            height: 40px;
            line-height: 40px;
        }

        .home-intr-box .gallery-thumbs .swiper-slide {
            line-height: 40px;
        }

    .home-news-item .m-pic {
        height: 176px;
    }

    .home-news-item .m-cont {
        height: 195px;
        padding: 23px;
    }

    .home-news-item .m-tit {
        margin-top: 10px;
    }

    .foot-menu {
        width: 750px;
    }

    .footer-contact {
        width: 185px;
    }

    .share .bdsharebuttonbox a {
        margin-left: 10px;
    }

    .footer-tel {
        font-size: 24px;
    }

    .foot-itme dd a {
        font-size: 14px;
    }

    .banner-sol {
        height: auto;
        line-height: 40px;
        margin-bottom: 0;
    }

    .home-partner-left {
        padding-left: 20px;
    }

    .banner-content {
        padding: 40px 40px 15px;
    }
}

@media (max-width: 991px) {
    .home-partner-left .home-partner-list {
        padding-right: 28px;
        padding-left: 30px;
    }

    .home-partner-right .home-partner-list {
        padding-left: 136px;
    }

    .banner-title {
        padding: 3% 0;
    }

    .header-app, .foot-app {
        display: block;
    }

    .header, .footer, .kf {
        display: none !important;
    }

    .wrap2 {
        display: block;
    }
}

@media (max-width: 991px) {

    .banner-item {
        padding-top: 60px;
    }

    .banner-title {
        padding: 2% 0 0;
        font-size: 30px;
    }

    .banner-sol {
        font-size: 28px;
    }

    .banner-dec {
        font-size: 20px;
        line-height: 22px;
    }

    .banner-content .line-anim {
        width: 50px;
    }

    .banner-content {
        width: 410px;
        bottom: -30px;
        padding: 20px 20px 5px;
    }

    .banner-sol {
        height: auto;
        line-height: 40px;
        margin-bottom: 0;
    }

    .home-about {
        padding: 60px 0;
    }

    .home-about-list li {
        width: 50%;
        margin-bottom: 20px;
        height: 300px;
    }

    .home-about-li {
        padding-top: 50px;
    }

    .home-intr-box .gallery-top {
        height: auto;
    }

    .home-intr-box .gallery-thumbs .m-index {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }

    .home-intr-box .gallery-thumbs .swiper-slide {
        line-height: 30px;
    }

    .home-intr-box .gallery-thumbs .swiper-slide {
        padding: 7.75px 30px;
    }

    .home-partner .home-title {
        top: 40px;
    }

    .home-reason-list {
        width: 100%;
    }

        .home-reason-list p {
            padding: 0 20px;
            min-height: 48px;
        }

    .home-news-item .m-pic {
        height: auto;
    }

    .home-reason-list li::after {
        top: 30px;
    }
}

@media (max-width: 640px) {
    .home-partner-left .home-partner-list {
        padding-right: 0;
        padding-left: 97px;
    }

    .home-partner-right .home-partner-list {
        padding-left: 90px;
    }

    .home-banner img.banner-app {
        display: block;
    }

    .home-banner img.banner-pc {
        display: none;
    }

    .banner-title {
        padding: 5% 0 0;
        font-size: 22px;
        letter-spacing: 0px;
    }

    .banner-dec {
        letter-spacing: 1px;
        font-size: 14px;
    }

    .home-title h3 {
        font-size: 24px;
    }

    .home-about, .home-introduction, .home-reason, .home-news, .home-map {
        padding: 40px 0;
    }

    .home-introduction, .home-reason {
        padding-bottom: 60px;
    }

    .home-about-list {
        margin: 0 -7.5px;
        margin-top: 30px;
    }

    .home-intr-box {
        margin-top: 35px;
    }

    .home-about-list li {
        padding: 0 6.5px;
        height: 250px;
    }

    .home-about-li {
        padding-top: 20px;
    }

    .home-intr-box .gallery-top, .home-intr-box .gallery-thumbs {
        width: 100%;
    }

    .home-intr-box .gallery-thumbs {
        position: static;
    }

        .home-intr-box .gallery-thumbs .swiper-slide {
            height: 50px;
            font-size: 16px;
        }

        .home-intr-box .gallery-thumbs .m-index {
            margin-right: 20px;
        }

    .home-partner-left, .home-partner-right {
        width: 100%;
        padding: 35px 15px 45px 25px;
    }

    .home-partner .home-title {
        width: 100%;
        margin: 0;
        left: 0;
    }

        .home-partner .home-title h3 {
            color: #fff;
        }

    .home-partner .text-align {
        bottom: 40px;
    }

    .btn-more {
        line-height: 40px;
        padding: 0 20px;
        font-size: 16px;
    }

    .bgimg {
        color: #fff;
        background-image: none;
    }

    .home-partner-right {
        padding-bottom: 110px;
        padding-top: 0;
    }

    .home-reason-list li {
        width: 50%;
        margin-bottom: 20px;
        font-size: 16px;
    }

    .home-reason-list {
        margin: 30px 0 0px;
    }

        .home-reason-list li:nth-child(odd)::after {
            display: none;
        }

        .home-reason-list .m-icon {
            width: 50px;
            height: 50px;
        }

        .home-reason-list li::after {
            top: 10px;
        }

    .home-reason .m-hr {
        margin: 20px auto 15px auto;
        ;
    }

    .home-news-box {
        margin-top: 0px;
    }

    .home-news-item .m-pic {
        height: auto;
    }

    .home-news-item .m-cont {
        height: 175px;
        padding: 20px 15px;
    }

    .home-news-item .m-time, .home-news-item .m-tit {
        font-size: 16px;
    }

    .home-news-item .m-tit {
        margin-top: 0;
    }

    .home-news {
        padding-bottom: 50px;
    }

    .footer-left {
        width: 50%;
    }

    .home-about-list .m-icon {
        width: 100%;
        height: auto;
    }

    .home-about-list .line-anim {
        width: 50px;
        right: 10px;
    }

        .home-about-list .line-anim img {
            width: 100%;
        }

    .footer-tel {
        font-size: 18px;
        display: block;
    }

    .home-hotnews a {
        font-size: 16px;
    }

    .home-about-list .m-tit {
        font-size: 17px;
        line-height: 24px;
        margin: 10px;
    }

    .home-about-list .m-des {
        font-size: 12px;
        line-height: 18px;
        text-align: left;
    }

    .home-title p {
        font-size: 16px;
    }

    .home-partner-list {
        font-size: 16px;
    }

    .home-reason-sec {
        font-size: 14px;
        line-height: 24px;
    }

    .home-map-des {
        font-size: 16px;
        line-height: 24px;
    }

    .banner-content {
        width: 92%;
        left: 4%;
        padding: 10px 20px 5px;
    }

    .banner-sol {
        font-size: 18px;
    }

    .banner-sol2 {
        font-size: 14px;
    }

    .banner-more {
        height: 30px;
        line-height: 30px;
        background-size: 30px 10.5px;
    }
}

@media (max-width: 320px) {
    .home-about-list li {
        width: 100%;
        height: 200px;
    }

    .home-title h3 {
        font-size: 18px;
    }

    .home-title p {
        font-size: 12px;
    }

    .home-partner-left .home-partner-list, .home-partner-list {
        padding-right: 50px;
        font-size: 12px;
    }

    .btn-more, .home-reason-list li, .home-news-item .m-time, .home-news-item .m-tit, .home-map-des, .footer-left .btn-way {
        font-size: 12px;
    }

    .home-reason-sec {
        font-size: 12px;
        line-height: 20px;
    }
}

/*===================================================*/
.pc-banner, .app-banner {
    display: block;
    width: 100%;
}

.app-banner {
    display: none;
}

.ny-banner {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
}

.ny-font {
    height: 77px;
    padding-left: 15px;
    border-left: solid 3px #e3bb2a;
}

    .ny-font h3 {
        font-family: '微软雅黑';
        font-size: 50px;
        color: white;
        line-height: 45px;
        margin-bottom: 10px;
    }

    .ny-font h4 {
        font-weight: lighter;
        letter-spacing: 5px;
        font-size: 20px;
        color: rgba(255,255,255,0.66);
        line-height: 22px;
        font-family: 'Open Sans';
    }

.ny-crumb {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.crumb {
    background: white;
    height: 80px;
    padding: 29px 35px;
}

    .crumb a {
        font-family: '微软雅黑';
        float: left;
        height: 22px;
        line-height: 22px;
        font-size: 16px;
        color: #666;
    }

        .crumb a img {
            display: block;
            margin-top: 1px;
            margin-right: 15px;
        }

    .crumb i {
        float: left;
        height: 22px;
        line-height: 22px;
        color: #999999;
        margin: 0 13px;
    }

    .crumb a.on {
        color: #2053a2;
    }

.ny-posi {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
/**/
.busy-nav {
    padding: 63px 0 50px;
    background: white;
}

    .busy-nav a {
        text-align: center;
        width: 19.7%;
        float: left;
        font-size: 18px;
        color: #444;
        font-family: '微软雅黑';
        line-height: 70px;
        margin-bottom: 13px;
    }

        .busy-nav a.on, .busy-nav a:hover {
            color: white;
            background: #2053a3;
        }

.begin {
    padding: 75px 0 105px;
    background: #f5f5f5;
}

.begin-box {
    padding: 0 35px;
}

    .begin-box h3 {
        font-family: '微软雅黑';
        font-size: 26px;
        line-height: 28px;
        color: #2053a3;
        margin-bottom: 47px;
    }

    .begin-box li {
        margin-bottom: 60px;
    }

.begin-li {
    height: 125px;
    position: relative;
    margin-bottom: 30px;
}

.begin-num {
    font-family: 'ttm';
    font-size: 70px;
    width: 125px;
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    background: #2053a3;
    text-align: center;
    line-height: 125px;
    color: white;
}

.begin-dec {
    padding-left: 180px;
    background: #f4d35a;
    height: 100%;
    font-size: 28px;
    color: #333;
    font-family: '微软雅黑';
}

.begin-p {
    padding-left: 180px;
}

    .begin-p p {
        font-family: '微软雅黑';
        font-size: 18px;
        color: #666;
        line-height: 30px;
    }

.begin-box ul {
    padding-bottom: 34px;
}

.text-right {
    text-align: right;
}

    .text-right .btn-more {
        background: none;
        border: solid 1px rgba(0,69,142,.6);
        padding: 0 30px;
        color: #00458e;
        font-size: 16px;
    }

@media (max-width: 1260px) {
    .pc-banner {
        /* height: 400px; */
    }
}

@media (max-width:991px) {
    .ny-font {
        height: 52px;
    }

        .ny-font h3 {
            font-size: 26px;
            line-height: 26px;
            margin-bottom: 4px;
        }

        .ny-font h4 {
            font-size: 16px;
        }

    .crumb {
        height: 60px;
        padding: 19px 20px;
    }

    .busy-nav a {
        width: 32.4%;
        line-height: 50px;
    }

    .busy-nav {
        padding: 30px 0 10px;
    }

    .begin-box {
        padding: 0;
    }

        .begin-box li {
            margin-bottom: 40px;
        }

    .begin-li {
        margin-bottom: 20px;
        height: 100px;
    }

    .begin-num {
        font-size: 60px;
        width: 100px;
        line-height: 100px;
    }

    .begin-dec {
        padding-left: 130px;
    }

    .begin-p {
        padding-left: 130px;
    }

    .begin-box ul {
        padding-bottom: 0;
    }
}

@media (max-width:640px) {
    .pc-banner {
        display: none;
    }

    .app-banner {
        display: block;
    }

    .begin-box li {
        margin-bottom: 30px;
    }

    .busy-nav a {
        width: 47.8%;
        line-height: 40px;
        font-size: 14px;
    }

    .crumb a {
        font-size: 14px;
    }

        .crumb a img {
            margin-right: 0;
        }

    .crumb i {
        margin: 0 2px;
    }

    .crumb {
        height: 50px;
        padding: 14px 20px;
    }

    .begin {
        padding: 40px 0;
    }

    .begin-box h3 {
        font-size: 18px;
    }

    .begin-li {
        height: 70px;
    }

    .begin-num {
        font-size: 50px;
        width: 70px;
        line-height: 70px;
    }

    .begin-dec {
        padding-left: 80px;
        font-size: 16px;
        padding-right: 10px;
    }

    .begin-p {
        padding-left: 0px;
    }

        .begin-p p {
            font-size: 14px;
            line-height: 22px;
        }

    .text-right .btn-more {
        font-size: 14px;
        padding: 0 15px;
    }
}

/**/
.pack-one {
    padding: 95px 0;
    background: #f5f5f5;
}

    .pack-one ul {
        margin: 0 -15px;
    }

    .pack-one li {
        cursor: pointer;
        width: 33.3333%;
        float: left;
        padding: 0 15px;
    }

.pack-li {
    width: 100%;
}

.pack-pic {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.pack-hide {
    transition: all .5s;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: -100%;
}

.pack-pic img {
    display: block;
    width: 100%;
    transition: all .5s;
}

.pack-font {
    background: white;
    line-height: 80px;
    font-size: 20px;
    text-align: center;
    color: #444;
    font-family: '微软雅黑';
}

.pack-one li:hover .pack-hide, .pack-two li:hover .pack-hide {
    top: 0;
}

.pack-two h3 {
    font-size: 20px;
    color: #444;
    line-height: 28px;
    margin-bottom: 40px;
    font-family: '微软雅黑';
}

.pack-two {
    padding: 85px 0 140px;
}

    .pack-two ul {
        margin: 0 -15px;
    }

    .pack-two li {
        cursor: pointer;
        width: 33.3333%;
        float: left;
        padding: 0 15px;
    }

/*图片放大*/
#darkbox {
    position: fixed;
    z-index: 9999;
    background: rgba(0,0,0,0.8) no-repeat none 50%;
    background-size: contain;
    -webkit-box-shadow: 0 0 0 3000px rgba(0,0,0,0.8);
    box-shadow: 0 0 0 3000px rgba(0,0,0,0.8);
    opacity: 0;
    visibility: hidden;
}

    #darkbox.on {
        opacity: 1;
        visibility: visible;
        height: 90% !important;
        width: 90% !important;
        left: 5% !important;
        top: 5% !important;
    }

#darkbox_prev, #darkbox_next {
    cursor: pointer;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-select: none;
    position: absolute;
    top: 50%;
    margin-top: -15px;
    height: 30px;
    width: 30px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

#darkbox_prev {
    left: -2px;
    -ms-transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

#darkbox_next {
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    right: -2px;
}

    #darkbox_prev:hover, #darkbox_next:hover {
        border-color: #f07a11;
    }

#darkbox-description {
    position: absolute;
    width: 100%;
    color: #fff;
    font-size: 18px;
    bottom: 25px;
    text-align: center;
    text-shadow: 0 1px 1px #000;
}

#darkbox:after {
    position: absolute;
    right: 0;
    top: 0;
    width: 24px;
    height: 24px;
    content: "";
    color: #fff;
    cursor: pointer;
    background: url(../images/close.png) no-repeat center transparent;
}

@media (max-width:991px) {
    .pack-one ul {
        margin: 0 -5px;
    }

    .pack-one li {
        padding: 0 5px;
    }

    .pack-font {
        line-height: 50px;
        font-size: 16px;
    }

    .pack-two h3 {
        font-size: 16px;
    }
}

@media (max-width:640px) {
    .pack-one {
        padding: 40px 0 15px;
    }

        .pack-one ul, .pack-two ul {
            margin: 0;
        }

        .pack-one li, .pack-two li {
            padding: 0;
            width: 100%;
            margin-bottom: 25px;
        }

    .pack-two {
        padding: 40px 0 25px;
    }

        .pack-two h3 {
            margin-bottom: 20px;
        }

    #darkbox.on {
        width: 80% !important;
        left: 10% !important;
    }

    #darkbox_prev {
        left: -25px;
    }

    #darkbox_next {
        right: -25px;
    }
}

/**/
.quota {
    padding: 100px 0 120px;
    background: #f5f5f5 url(../images/quota-bg.png) no-repeat center;
    background-size: cover;
}

.quota-box {
    padding: 45px 113.5px 23px;
    background: white;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
}

    .quota-box h3 {
        font-size: 26px;
        line-height: 28px;
        font-family: '微软雅黑';
        color: #2053a3;
    }

    .quota-box p {
        margin: 29px 0 19px;
        font-size: 16px;
        line-height: 28px;
        font-family: '微软雅黑';
        color: #444;
    }

.quota-pic img {
    display: block;
    width: 100%;
}

@media (max-width:991px) {
    .quota-box {
        padding: 45px 50px 23px;
    }
}

@media (max-width:640px) {
    .quota {
        padding: 40px 0;
    }

    .quota-box {
        padding: 30px 20px;
    }

        .quota-box h3 {
            font-size: 18px;
        }

        .quota-box p {
            font-size: 14px;
            line-height: 22px;
            margin: 10px 0 10px;
        }
}

/**/
.sam-box {
    min-height: 730px;
    padding: 73px 100px 0;
    background: white;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
}

    .sam-box h3 {
        padding-left: 18px;
        margin-bottom: 40px;
        font-size: 26px;
        line-height: 28px;
        font-family: '微软雅黑';
        color: #2053a3;
    }

    .sam-box p {
        padding-left: 18px;
        font-size: 18px;
        line-height: 30px;
        font-family: '微软雅黑';
        color: #444;
    }

.sam-big {
    margin: 40px 0;
    width: 76%;
    border: solid 1px #c2c2c2;
    padding: 28px 20px 28px 2px;
}

    .sam-big .p {
        padding-left: 178px;
    }

@media (max-width:1260px) {
    .sam-big {
        width: 100%;
    }
}

@media (max-width:991px) {
    .sam-box {
        padding: 45px 50px 23px;
    }
}

@media (max-width:640px) {
    .sam-box {
        padding: 30px 20px;
        min-height: 600px;
    }

        .sam-box h3 {
            font-size: 18px;
            margin-bottom: 10px;
            padding-left: 0;
        }

        .sam-box p {
            font-size: 14px;
            line-height: 22px;
            padding-left: 0;
        }

    .sam-big {
        margin: 20px 0;
        padding: 15px;
    }

        .sam-big .p {
            padding: 0;
        }
}

/**/
.ship-box {
    padding: 55px 65px;
    background: white;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
}

    .ship-box h3 {
        margin-bottom: 26px;
        font-size: 26px;
        line-height: 28px;
        font-family: '微软雅黑';
        color: #2053a3;
    }

    .ship-box p {
        font-size: 16px;
        line-height: 28px;
        font-family: '微软雅黑';
        color: #444;
    }

.ship-pic {
    margin-top: 80px;
    margin-bottom: 55px;
}

    .ship-pic img {
        display: block;
        width: 100%;
    }

@media (max-width:991px) {
    .ship-box {
        padding: 40px;
    }

    .ship-pic {
        margin: 40px 0;
    }
}

@media (max-width:640px) {
    .ship-box {
        padding: 30px 20px;
    }

        .ship-box h3 {
            font-size: 18px;
            margin-bottom: 10px;
        }

        .ship-box p {
            font-size: 14px;
            line-height: 22px;
        }

    .ship-pic {
        margin: 20px 0 10px;
    }
}

/**/
.deliv {
    padding: 100px 0;
    background: #f5f5f5;
}

    .deliv ul {
        padding-bottom: 20px;
    }

    .deliv li {
        margin-bottom: 20px;
        background: white;
        box-shadow: 0 5px 30px rgba(0,0,0,0.05);
    }

.deliv-top {
    position: relative;
    padding: 60px 60px 55px;
    overflow: hidden;
}

    .deliv-top h3 {
        position: relative;
        font-size: 26px;
        line-height: 28px;
        color: #2053a3;
        float: left;
    }

.pack-one h3 {
    position: relative;
    padding-left: 25px;
}

    .pack-one h3::after, .deliv-top h3::after {
        position: absolute;
        content: '';
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: #f8c300;
        left: -28px;
        top: 5px;
    }

    .pack-one h3::after {
        left: 0;
    }

.deliv-mid {
    float: left;
    margin-left: 160px;
}

    .deliv-mid p {
        font-size: 16px;
        color: #666;
        line-height: 28px;
    }

.deliv-right {
    position: absolute;
    right: 60px;
    top: 50%;
    margin-top: -30px;
    transition: all .5s;
    font-size: 20px;
    width: 60px;
    height: 60px;
    border: solid 2px #4d75b5;
    border-radius: 50%;
    text-align: center;
    line-height: 58px;
    color: #4d75b5;
}

.deliv-bot {
    border-top: solid 1px #dfdfdf;
    display: block;
}

.deliv-pad {
    padding: 60px;
}

    .deliv-pad p {
        font-size: 16px;
        color: #666;
        line-height: 28px;
    }

.deliv li.on .deliv-right {
    transform: rotate(180deg);
}
/*fenye*/
.pagee {
    text-align: center;
    position: relative;
}

    .pagee a {
        margin: 0 3px;
        display: inline-block;
        width: 39px;
        height: 39px;
        font-size: 14px;
        color: #666;
        font-family: 'cond';
        text-align: center;
        line-height: 39px;
        background: white;
    }

        .pagee a.prev, .pagee a.next {
            font-size: 14px;
            color: #333333;
            font-weight: bold;
        }

        .pagee a:hover, .pagee a.on {
            color: #fff;
            background: #00458e;
        }

@media (max-width: 1260px) {
    .deliv-mid {
        margin-left: 110px;
    }
}

@media (max-width: 991px) {
    .deliv-top {
        padding: 40px;
    }

    .deliv-mid {
        margin-left: 20px;
    }

    .deliv-pad {
        padding: 30px;
    }

    .deliv-right {
        right: 40px;
    }
}

@media (max-width: 640px) {
    .deliv {
        padding: 40px 0;
    }

        .deliv li {
            margin-bottom: 15px;
        }

    .deliv-top {
        padding: 20px 15px;
    }

        .deliv-top h3 {
            float: none;
            margin-bottom: 5px;
            font-size: 20px;
        }

    .deliv-mid p {
        font-size: 14px;
        line-height: 22px;
    }

    .deliv-mid {
        margin-left: 0;
    }

    .deliv-right {
        right: 20px;
        width: 35px;
        height: 35px;
        line-height: 31px;
        font-size: 14px;
        margin-top: -17.5px;
    }

    .deliv-pad {
        padding: 20px;
    }

        .deliv-pad p {
            font-size: 14px;
            line-height: 22px;
        }

    .deliv ul {
        padding-bottom: 10px;
    }
}

/**/
.techn-one {
    padding: 100px 0;
    background: #f5f5f5;
}

.techn-tit {
    text-align: center;
    font-size: 36px;
    line-height: 33px;
    font-family: '微软雅黑';
    color: #00458e;
    letter-spacing: 2px;
}

.techn-line {
    width: 35px;
    height: 2px;
    background: #2053a3;
    margin: 20px auto 0;
}

.techn-one ul {
    padding-bottom: 10px;
    margin: 45px -6.5px 0;
}

.techn-one li {
    float: left;
    width: 25%;
    padding: 0 6.5px;
}

.teo-li {
    width: 100%;
}

    .teo-li h3 {
        line-height: 28px;
        color: white;
        font-size: 18px;
        text-align: center;
        padding: 10px 0px;
        background: #2053a3;
    }

    .teo-li p {
        font-size: 16px;
        color: #444;
        background: white;
        padding: 5px 30px;
        line-height: 32px;
        margin-bottom: 2px;
    }

.techn-down {
    background: white;
    display: block;
    height: 42px;
    padding: 0 95px 0 35px;
}

.techn-litl {
    font-family: 'Open Sans';
    float: left;
    font-size: 14px;
    color: #666;
    line-height: 42px;
    padding-left: 44px;
    background: url(../images/pdf.png) no-repeat left center;
}

.down {
    float: right;
    padding-left: 33px;
    font-family: 'Open Sans';
    font-size: 14px;
    color: #666;
    line-height: 42px;
    background: url(../images/down.png) no-repeat left center;
}

.techn-down:hover .down {
    color: #2053a3;
}

.teo-p1 {
    margin: 58px 0 22px;
}

    .teo-p1 p {
        font-size: 16px;
        color: #2256a5;
        line-height: 28px;
    }

.teo-p2 p {
    font-size: 16px;
    color: #444;
    line-height: 28px;
}

.techn-two {
    padding: 95px 0 90px;
    background: #fad54c;
}

.tet {
    margin-top: 60px;
    margin-bottom: 30px;
}

.tet-left {
    float: left;
    width: 50%;
    overflow: hidden;
}

    .tet-left img {
        display: block;
        max-width: 100%;
        height: auto;
        transition: all .5s;
        margin: auto;
    }

    .tet-left:hover img {
        transform: scale(1.05);
    }

.tet-right {
    width: 50%;
    float: right;
}

    .tet-right h3 {
        font-size: 16px;
        color: #222222;
        line-height: 30px;
    }

    .tet-right p {
        text-indent: 2em;
        font-size: 16px;
        color: #444;
        line-height: 30px;
    }

    .tet-right h4 {
        margin-top: 15px;
        font-size: 16px;
        color: #444;
        line-height: 30px;
    }

.techn-three {
    padding: 87px 0 110px;
    background: #f5f5f5;
}

.tee {
    margin-top: 50px;
}

.tee-left {
    width: 50%;
    float: left;
    padding-right: 22px;
}

    .tee-left h3 {
        font-size: 18px;
        color: #222;
        line-height: 28px;
    }

    .tee-left p {
        font-size: 16px;
        color: #444;
        line-height: 28px;
        text-indent: 2em;
    }

    .tee-left h4 {
        font-size: 16px;
        color: #444;
        line-height: 28px;
        text-indent: 1em;
    }

.techn-three ul {
    margin: 65px -6.5px 0;
}

.techn-three li {
    width: 25%;
    float: left;
    padding: 0 6.5px;
}

.tee-li {
    width: 100%;
}

.tee-pic {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

    .tee-pic img {
        display: block;
        width: 100%;
        transition: all .5s;
    }

.techn-three li:hover .tee-pic img {
    transform: scale(1.05);
}

.tee-font {
    font-family: '微软雅黑';
    line-height: 40px;
    text-align: center;
    font-size: 20px;
    color: #444;
    margin-top: 17px;
}

@media (max-width: 991px) {
    .techn-one li, .techn-three li {
        width: 100%;
        margin-bottom: 15px;
    }

    .techn-one ul {
        padding-bottom: 0;
    }

    .tet-left {
        max-height: 300px;
        width: 100%;
    }

    .tet-right {
        width: 100%;
        margin-top: 15px;
    }
}

@media (max-width: 768px) {
    .techn-one {
        padding: 40px 0;
    }

    .techn-tit {
        font-size: 24px;
    }

    .techn-line {
        margin-top: 10px;
    }

    .techn-one ul {
        margin-top: 25px;
    }

    .teo-li h3 {
        font-size: 16px;
        line-height: 40px;
    }

    .teo-li p {
        font-size: 14px;
        line-height: 35px;
        padding-left: 15px;
    }

    .techn-down {
        padding: 10px 20px;
        height: 95px;
    }

    .techn-litl, .down {
        line-height: 35px;
    }

    .techn-litl {
        background-size: 16px;
        padding-left: 26px;
        line-height: 24px;
        min-height: 48px;
    }

    .down {
        background-size: 16px;
        padding-left: 23px;
        display: block;
        width: 100%;
    }

    .teo-p1 {
        margin: 30px 0 18px;
    }

    .techn-two {
        padding: 40px 0;
    }

    .tet {
        margin-top: 25px;
        margin-bottom: 15px;
    }

    .tet-left {
        max-height: inherit;
    }

    .tet-right p, .tet-right h3, .tet-right h4 {
        font-size: 14px;
        line-height: 24px;
    }

    .techn-three {
        padding: 40px 0;
    }

    .tee {
        margin-top: 25px;
    }

    .tee-left {
        width: 100%;
        padding-right: 0;
    }

    .techn-three ul {
        margin-top: 25px;
    }

    .tee-font {
        margin-top: 5px;
    }

    .tee-left h3, .tee-font {
        font-size: 16px;
    }

    .tee-left p, .tee-left h4 {
        font-size: 14px;
        line-height: 22px;
    }
}

/**/
.por-one {
    padding: 135px 0 65px;
    background: #f5f5f5;
}

.por-top {
    position: relative;
}

.poro-pic {
    width: 50%;
    overflow: hidden;
}

    .poro-pic img {
        display: block;
        width: 100%;
    }

.poro-right {
    width: 50%;
    height: 100%;
    background: #1f53a2;
    position: absolute;
    right: 0;
    top: -20px;
    padding: 35px 45px;
}

    .poro-right h3 {
        font-size: 26px;
        color: white;
        line-height: 28px;
        margin-bottom: 22px;
        padding-bottom: 19px;
        border-bottom: solid 1px rgba(255,255,255,0.4);
    }

    .poro-right p {
        font-size: 16px;
        color: rgba(255,255,255,0.8);
        line-height: 28px;
        margin-bottom: 25px;
    }

.poro-p {
    height: 85%;
    overflow-y: auto;
}

    .poro-p::-webkit-scrollbar {
        width: 2px;
        background-color: rgba(255,255,255,0.3);
    }

    .poro-p::-webkit-scrollbar-thumb {
        background-color: #fff;
        border-radius: 10px;
    }

.por-bot {
    margin-top: 80px;
}

    .por-bot h3 {
        font-size: 26px;
        line-height: 28px;
        color: #333333;
        margin-bottom: 50px;
    }

    .por-bot ul {
        margin: 0 -11px;
    }

    .por-bot li {
        width: 50%;
        float: left;
        margin-bottom: 30px;
        padding: 0 11px;
    }

.por-li {
    transition: all .5s;
    padding: 40px 30px;
    width: 100%;
    background: white;
    border-left: solid 3px #f5ce49;
 
    position: relative;
}

    .por-li h5 {
        font-size: 16px;
        color: #333;
        line-height: 26px;
    }

    .por-li h4 {
        margin-bottom: 11px;
        font-size: 16px;
        color: #333;
        line-height: 26px;
        font-family: "微软雅黑";
    }

    .por-li p {
        font-size: 14px;
        color: #666;
        line-height: 24px;
        font-family: '微软雅黑';
    }

.por-bot li:hover .por-li {
    transform: translateY(-10px);
}

.por-two {
    padding: 100px 0;
    background: white;
}

.port {
    position: relative;
}

.port-pic {
    float: right;
    width: 76.6666%;
}

    .port-pic img {
        display: block;
        width: 100%;
    }

.port-font {
    padding: 40px 35px;
    position: absolute;
    width: 38.3333%;
    background: white;
    box-shadow: 0 0px 25px rgba(0,0,0,0.1);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.port-pic {
    float: right;
    width: 40%;
}

    .port-pic img {
        display: block;
        width: 100%;
    }

.port-font {
    padding: 40px 35px;
    height: 100%;
    position: absolute;
    width: 60%;
    background: white;
    box-shadow: 0 0px 25px rgba(0,0,0,0.1);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.port-tit {
    overflow-y: auto;
    height: 100%;
}

    .port-tit::-webkit-scrollbar {
        width: 3px;
        background-color: #dbdbdb;
    }

    .port-tit::-webkit-scrollbar-thumb {
        background-color: #099cf1;
        border-radius: 10px;
    }

.port-font h3 {
    line-height: 28px;
    font-size: 26px;
    color: #333;
}

.port-font p {
    font-size: 14px;
    color: #666;
    line-height: 26px;
}

.prot-line {
    width: 35px;
    height: 2px;
    background: #4d75b5;
    margin: 15px 0;
}

.por-three {
    padding: 65px 0 105px;
    background: #f5f5f5;
}

    .por-three h3 {
        font-size: 26px;
        color: #2053a3;
        line-height: 28px;
        text-align: center;
    }

.pore-line {
    width: 35px;
    height: 2px;
    margin: 17px auto 15px;
    background: #4b73b3;
}

.por-three h4 {
    font-size: 18px;
    color: #666;
    line-height: 28px;
    text-align: center;
}

.por-swiper {
    margin-top: 63px;
    position: relative;
}

.por-slide {
    position: relative;
    overflow: hidden;
}

.pore-pic {
    width: 100%;
    overflow: hidden;
}

    .pore-pic img {
        display: block;
        width: 100%;
        transition: all .5s;
    }

.pore-tit {
    transition: all .5s;
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    color: white;
    font-size: 16px;
    background: rgba(32,83,163,0.8);
    line-height: 60px;
    padding: 0 25px;
}

.por-slide:hover img {
    transform: scale(1.05);
}

.por-slide:hover .pore-tit, .pore-tit {
    bottom: 0;
}

.por-swiper .swiper-pagination {
    display: none;
    width: 100%;
    bottom: -35px;
}

.por-swiper .swiper-pagination-bullet {
    margin: 0 5px;
}

.por-swiper .swiper-pagination-bullet-active {
    background: #2053a3;
}

.por-swiper .swiper-button-next {
    background: none;
    line-height: 44px;
    text-align: center;
    font-size: 30px;
    color: #666666;
    font-weight: bold;
    right: -60px;
}

.por-swiper .swiper-button-prev {
    background: none;
    line-height: 44px;
    text-align: center;
    font-size: 30px;
    color: #666666;
    font-weight: bold;
    left: -60px;
}

    .por-swiper .swiper-button-next:hover, .por-swiper .swiper-button-prev:hover {
        color: #2657a5;
    }

.por-four {
    padding: 77px 0 96px;
    background: white;
}

    .por-four h3 {
        font-size: 26px;
        line-height: 28px;
        text-align: center;
        color: #2053a3;
    }

    .por-four ul {
        margin-top: 47px;
        padding: 0 10px;
        margin-bottom: 70px;
    }

    .por-four li {
        padding: 12px 50px 13px;
        border-bottom: solid 1px #cccccc;
    }

.porf-li {
    overflow: hidden;
    width: 100%;
}

.porf-left {
    width: 16.2%;
    float: left;
    line-height: 24px;
    font-size: 16px;
    color: #999;
}

.porf-right {
    width: 83.8%;
    float: left;
    line-height: 24px;
    font-size: 16px;
    color: #666;
}

.porf-href {
    width: 180px;
    height: 50px;
    position: relative;
    margin: 0 auto;
}

.porf-more, .porf-more1 {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #333333;
    color: white;
    line-height: 50px;
    text-align: center;
    display: block;
    font-size: 16px;
}

.porf-more1 {
    display: none;
}

.porf-hide {
    display: none;
}

@media (max-width: 1260px) {
    .poro-p {
        height: 75%;
    }

    .por-li {
        padding: 30px 20px;
    }

    .por-swiper .swiper-pagination {
        display: block;
    }

    .por-swiper .swiper-button-next, .por-swiper .swiper-button-prev {
        display: none;
    }

    .pore-tit {
        line-height: 50px;
    }
}

@media (max-width: 991px) {
    .poro-right {
        padding: 20px 25px;
    }

    .poro-p {
        height: 67%;
    }

    .por-bot li {
        width: 50%;
    }

    .por-li {
        min-height: 440px;
    }

    .port-font {
        padding: 25px 20px;
    }

        .port-font p {
            line-height: 22px;
        }

    .por-four li {
        padding: 12px 30px 13px;
    }

    .porf-left {
        width: 20%;
    }

    .porf-right {
        width: 80%;
    }
}

@media (max-width: 640px) {
    .por-one {
        padding: 40px 0 25px;
    }

    .poro-pic {
        width: 100%;
    }

    .poro-right {
        position: static;
        width: 100%;
        padding: 15px;
    }

    .poro-p {
        height: auto;
    }

    .poro-right h3 {
        font-size: 18px;
        padding-bottom: 15px;
        margin-bottom: 12px;
    }

    .poro-right p {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 10px;
    }

    .por-bot {
        margin-top: 25px;
    }

        .por-bot h3 {
            font-size: 18px;
            margin-bottom: 20px;
        }

        .por-bot ul {
            margin: 0;
        }

        .por-bot li {
            padding: 0;
            width: 100%;
            margin-bottom: 15px;
        }

    .por-li {
        min-height: inherit;
        padding: 20px 20px 60px;
    }

    .por-two {
        padding: 40px 0;
    }

    .port-pic {
        width: 100%;
        float: none;
    }

    .port-font {
        position: static;
        width: 100%;
        transform: translateY(0);
        padding: 20px 15px;
    }

    .prot-line {
        margin: 10px 0;
    }

    .por-three {
        padding: 30px 0 60px;
    }

        .por-three h3 {
            font-size: 18px;
        }

    .pore-line {
        margin: 12px auto 10px;
    }

    .por-three h4 {
        font-size: 14px;
        line-height: 22px;
    }

    .por-swiper {
        margin-top: 20px;
    }

    .pore-tit {
        font-size: 12px;
        padding: 0 7px;
        line-height: 40px;
    }

    .por-four {
        padding: 30px 0 50px;
    }

        .por-four h3 {
            font-size: 18px;
        }

        .por-four ul {
            margin-top: 20px;
            padding: 0;
            margin-bottom: 30px;
        }

        .por-four li {
            padding: 7px 15px 8px;
        }

    .porf-left {
        width: 35%;
        font-size: 14px;
    }

    .porf-right {
        width: 65%;
        font-size: 14px;
        line-height: 22px;
    }

    .port-font h3 {
        font-size: 18px;
    }

    .porf-href {
        width: 130px;
        height: 40px;
    }

    .porf-more, .porf-more1 {
        line-height: 40px;
        font-size: 14px;
    }

    .por-swiper .swiper-pagination {
        bottom: -25px;
    }
}


/**/
.house-one {
    padding: 90px 0 50px;
    background: #f5f5f5;
}

.house-tit {
    margin-bottom: 18px;
    font-size: 36px;
    text-align: center;
    line-height: 33px;
    color: #00458e;
    font-family: '微软雅黑';
}

.house-dec {
    font-size: 20px;
    text-align: center;
    line-height: 28px;
    color: #666666;
    font-family: '微软雅黑';
}

.house-one ul {
    margin: 63px -20px 0;
}

.house-one li {
    width: 50%;
    float: left;
    padding: 0 20px;
    margin-bottom: 40px;
}

.hoo-li {
    width: 100%;
    background: white;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    padding: 40px 45px 30px;
}

.hoo-pic {
    width: 100%;
    overflow: hidden;
}

    .hoo-pic img {
        display: block;
        width: 100%;
        transition: all .5s;
    }

.hoo-font {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-size: 20px;
    color: #444;
    line-height: 28px;
    text-align: center;
    font-family: '微软雅黑';
    margin-top: 32px;
    padding: 0 10px;
}

.house-one li:hover img {
    transform: scale(1.05);
}

.house-two {
    padding: 90px 0 70px;
    background: url(../images/hot-bg.jpg) no-repeat center;
    background-size: cover;
}

    .house-two ul {
        margin: 60px -15px 0;
    }

    .house-two li {
        width: 33.3333%;
        float: left;
        margin-bottom: 30px;
        padding: 0 15px;
    }

.hot-li {
    width: 100%;
}

.hot-pic {
    width: 100%;
    overflow: hidden;
}

    .hot-pic img {
        width: 100%;
        display: block;
        transition: all .5s;
    }

.hot-tit {
    font-size: 20px;
    color: #444;
    line-height: 28px;
    font-family: '微软雅黑';
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    padding: 26px 10px;
    background: white;
}

.house-two li:hover img {
    transform: scale(1.05);
}

.house-three {
    padding: 90px 0 100px;
    background: #f5f5f5;
}

.hoe-swiper {
    margin-top: 60px;
    position: relative;
    padding-bottom: 132px;
}

.hoe-slide {
    position: relative;
    overflow: hidden;
}

.hoe-pic {
    width: 100%;
    overflow: hidden;
}

    .hoe-pic img {
        display: block;
        width: 100%;
        transition: all .5s;
    }

.hoe-tit {
    line-height: 60px;
    padding: 0 25px;
    font-size: 16px;
    color: #444;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    background: #f4d35a;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -100%;
    transition: all .5s;
}

.hoe-slide:hover img {
    transform: scale(1.05);
}

.hoe-slide:hover .hoe-tit {
    bottom: 0;
}

.hoe-swiper .swiper-pagination {
    position: absolute;
    width: 100%;
    bottom: 0px;
    height: 60px;
    padding: 18px 0;
}

.hoe-swiper .swiper-pagination-bullet {
    margin: 0 5px;
}

.hoe-swiper .swiper-pagination-bullet-active {
    background: #2053a3;
}

.hoe-swiper .swiper-button-next {
    height: 60px;
    top: auto;
    margin-top: 0;
    bottom: 0;
    background: none;
    line-height: 60px;
    text-align: center;
    font-size: 20px;
    color: #666666;
    font-weight: bold;
    right: 40%;
}

.hoe-swiper .swiper-button-prev {
    height: 60px;
    top: auto;
    margin-top: 0;
    bottom: 0;
    background: none;
    line-height: 60px;
    text-align: center;
    font-size: 20px;
    color: #666666;
    font-weight: bold;
    left: 40%;
}

    .hoe-swiper .swiper-button-next:hover, .hoe-swiper .swiper-button-prev:hover {
        color: #2657a5;
    }

@media (max-width: 991px) {
    .house-one ul {
        margin: 30px -10px 0;
    }

    .hoo-li {
        padding: 25px 25px 15px;
    }

    .house-one li {
        margin-bottom: 20px;
        padding: 0 10px;
    }

    .house-one {
        padding: 40px 0;
    }

    .hoo-font {
        margin-top: 13px;
        font-size: 16px;
    }

    .house-two {
        padding: 40px 0;
    }

        .house-two ul {
            margin: 30px -7.5px 0;
        }

        .house-two li {
            padding: 0 7.5px;
            margin-bottom: 15px;
        }

    .hot-tit {
        font-size: 16px;
        padding: 16px 10px;
    }

    .house-three {
        padding: 40px 0;
    }

    .hoe-swiper {
        margin-top: 30px;
        padding-bottom: 60px;
    }

    .hoe-tit {
        line-height: 45px;
        padding: 0 10px;
    }

    .hoe-swiper .swiper-pagination {
        height: 40px;
        padding: 8px 0;
    }

    .hoe-swiper .swiper-button-next, .hoe-swiper .swiper-button-prev {
        height: 40px;
        line-height: 40px;
    }
}

@media (max-width:640px) {
    .house-tit {
        font-size: 24px;
        margin-bottom: 3px;
    }

    .house-dec {
        font-size: 15px;
    }

    .house-one ul {
        margin: 20px -5px 0;
    }

    .house-one li {
        padding: 0 5px;
        margin-bottom: 10px;
    }

    .hoo-li {
        padding: 0;
    }

    .hoo-font {
        padding: 0 5px;
        font-size: 12px;
        margin-top: 0;
        line-height: 40px;
    }

    .house-two ul {
        margin: 20px -5px 0;
    }

    .house-two li {
        padding: 0 5px;
        margin-bottom: 10px;
        width: 50%;
    }

    .hoe-swiper {
        margin-top: 20px;
    }

    .hot-tit {
        font-size: 12px;
        padding: 6px 10px;
    }

    .hoe-tit {
        line-height: 40px;
        font-size: 12px;
    }

    .hoe-swiper .swiper-button-next, .hoe-swiper .swiper-button-prev {
        display: none;
    }

    .hoe-swiper .swiper-pagination {
        height: 20px;
        padding: 0;
    }

    .hoe-swiper {
        padding-bottom: 40px;
    }
}

/**/
.ment-one {
    padding: 120px 0 90px;
    background: #f5f5f5;
}

.ment-tit {
    font-size: 30px;
    line-height: 28px;
    text-align: center;
    font-family: '微软雅黑';
    color: #2053a3;
}

.ment-p p {
    font-size: 16px;
    color: #666;
    line-height: 28px;
    font-family: '微软雅黑';
    padding-left: 20px;
}

.ment-p {
    padding: 0 22%;
    margin-top: 40px;
}

.ment-two {
    padding: 60px 0 60px;
    background: url(../images/ment-bg.jpg) no-repeat center;
    background-size: cover;
}

    .ment-two ul {
        margin: 0 -10px;
    }

    .ment-two li {
        width: 50%;
        float: left;
        padding: 0 10px;
        margin-bottom: 20px;
    }

.ment-li {
    width: 100%;
    padding: 40px 50px 35px;
    background: white;
}

.ment-pic {
   
    width: 100%;
    overflow: hidden;
}

    .ment-pic img {
        display: block;
        width: 100%;
        transition: all .5s;
    }

.ment-li h3, .ment-li h4 {
    height: 30px;
    font-size: 20px;
    line-height: 30px;
    color: #444;
    text-align: center;
    font-family: '微软雅黑';
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.ment-two li:hover img {
    transform: scale(1.05)
}

.ment-three {
    padding: 115px 0 100px;
    background: #f5f5f5;
}

.ment {
    margin-top: 75px;
    padding: 0 35px;
}

.ment-top {
    width: 100%;
}

    .ment-top img {
        display: block;
        width: 100%;
    }

.ment-bot {
    margin-top: 60px;
}

    .ment-bot h3 {
        margin-bottom: 35px;
        font-size: 26px;
        color: #333;
        line-height: 32px;
    }

    .ment-bot h4 {
        font-size: 20px;
        color: #444;
        line-height: 32px;
        font-family: '微软雅黑';
    }

    .ment-bot p {
        padding-left: 20px;
        font-size: 20px;
        color: #444;
        line-height: 32px;
        font-family: '微软雅黑';
    }

    .ment-bot h5 {
        padding-left: 120px;
        font-size: 20px;
        color: #444;
        line-height: 32px;
        font-family: '微软雅黑';
    }

    .ment-bot h6 {
        float: right;
        font-size: 20px;
        color: #444;
        line-height: 32px;
        font-family: '微软雅黑';
    }

@media (max-width: 1260px) {
    .ment-p {
        padding: 0 15%;
    }
}

@media (max-width:991px) {
    .ment-p {
        padding: 0 5%;
    }

    .ment-li {
        padding: 30px 35px 25px;
    }

    .ment-pic {
        margin-bottom: 20px;
    }

    .ment {
        padding: 0;
    }
}

@media (max-width:767px) {
    .ment-one {
        padding: 40px 0;
    }

    .ment-tit {
        font-size: 22px;
    }

    .ment-p {
        padding: 0;
        margin-top: 10px;
    }

        .ment-p p {
            font-size: 14px;
            line-height: 22px;
        }

    .ment-two {
        padding: 40px 0;
    }

        .ment-two ul {
            margin: 0 -5px;
        }

        .ment-two li {
            padding: 0 5px;
            margin-bottom: 10px;
        }

    .ment-li {
        padding: 0 0 10px;
    }

        .ment-li h3, .ment-li h4 {
            font-size: 14px;
            height: 22px;
            line-height: 22px;
        }

    .ment-pic {
        margin-bottom: 10px;
    }

    .ment-three {
        padding: 40px 0;
    }

    .ment {
        margin-top: 20px;
    }

    .ment-bot {
        margin-top: 25px;
    }

        .ment-bot h3 {
            font-size: 18px;
            margin-bottom: 5px;
        }

        .ment-bot h4, .ment-bot p, .ment-bot h6, .ment-bot h5 {
            font-size: 14px;
            line-height: 26px;
        }

        .ment-bot h5 {
            padding-left: 88px;
        }
}

/**/
.summ-top {
    background: #f5f5f5;
    padding-top: 115px;
}

.summ-pic {
    width: 100%;
    overflow: hidden;
}

    .summ-pic img {
        display: block;
        width: 100%;
    }

.summ-list {
    margin-bottom: 80px;
}

.summ-font {
    position: relative;
    width: 90%;
    background: white;
    margin: -70px auto 0;
    padding: 35px 55px 50px;
}

.summ-font1 {
    position: relative;
    width: 90%;
    background: white;
    margin: -70px auto 0;
    padding: 40px 48px 30px;
}

    .summ-font h3, .summ-font1 h3 {
        font-size: 18px;
        color: #333;
        line-height: 28px;
        font-weight: bold;
    }

.summ-font p {
    padding-left: 13px;
    font-size: 16px;
    color: #666;
    line-height: 28px;
}

.summ-font img {
    display: block;
    width: 100%;
}

.summ-swiper {
    position: relative;
    overflow: hidden;
    margin-top: 35px;
}

    .summ-swiper .gallery-top {
        float: left;
        width: 57%;
    }

        .summ-swiper .gallery-top img {
            display: block;
            width: 100%;
        }

    .summ-swiper .gallery-thumbs {
        position: absolute;
        height: 100%;
        width: 41%;
        right: 0;
        top: 0;
    }

        .summ-swiper .gallery-thumbs .swiper-slide {
            height: 90px;
            background: #f2f2f2;
            padding: 15px 55px;
            font-size: 20px;
            color: #666;
            line-height: 40px;
            cursor: pointer;
            transition: all .4s;
        }

        .summ-swiper .gallery-thumbs .m-index {
            width: 40px;
            height: 40px;
            border: 1px solid #999;
            border-radius: 50%;
            font-size: 22px;
            color: #666;
            text-align: center;
            line-height: 38px;
            float: left;
            vertical-align: middle;
            margin-right: 35px;
            transition: all .4s;
        }

        .summ-swiper .gallery-thumbs .swiper-slide:hover,
        .summ-swiper .gallery-thumbs .swiper-slide-thumb-active {
            background: #00458e;
            color: #fff;
        }

            .summ-swiper .gallery-thumbs .swiper-slide:hover .m-index,
            .summ-swiper .gallery-thumbs .swiper-slide-thumb-active .m-index {
                border-color: #fff;
                color: #fff;
            }

.summ-bot {
    padding-top: 85px;
}

.summ-tit {
    font-size: 26px;
    line-height: 28px;
    color: #333;
    text-align: center;
    margin-bottom: 25px;
}

.summ-dec {
    width: 60%;
    margin: 0 auto;
    font-size: 16px;
    line-height: 28px;
    color: #666666;
    text-align: center;
}

.summ-pic1 {
    width: 100%;
    overflow: hidden;
    margin-top: 45px;
}

    .summ-pic1 img {
        display: block;
        width: 100%;
    }

@media (max-width: 1260px) {
    .summ-swiper .gallery-thumbs .m-index {
        width: 32px;
        height: 32px;
        line-height: 30px;
    }

    .summ-swiper .gallery-thumbs .swiper-slide {
        line-height: 32px;
        padding: 11px 40px;
    }
}

@media (max-width: 991px) {
    .summ-font {
        padding-left: 25px;
        padding-right: 25px;
    }

    .summ-swiper {
        margin-top: 20px;
    }

    .summ-font1 {
        padding: 20px 25px 40px;
    }

    .summ-swiper .gallery-thumbs .m-index {
        width: 25px;
        height: 25px;
        line-height: 23px;
        font-size: 18px;
        margin-right: 15px;
    }

    .summ-swiper .gallery-thumbs .swiper-slide {
        font-size: 16px;
        line-height: 25px;
        padding: 9px 25px;
    }

    .summ-dec {
        width: 80%;
    }
}

@media (max-width: 640px) {
    .summ-top {
        padding-top: 40px;
    }

    .summ-pic {
        height: 260px;
    }

        .summ-pic img {
            width: auto;
            height: 100%;
        }

    .summ-font {
        width: 100%;
        padding: 25px 15px 35px;
        margin-top: 0;
    }

    .summ-list {
        margin-bottom: 40px;
    }

    .summ-font1 {
        padding: 25px 15px 35px;
        margin-top: 0;
        width: 100%;
    }

    .summ-swiper .gallery-top {
        width: 100%;
    }

    .summ-swiper .gallery-thumbs {
        position: static;
        width: 100%;
    }

        .summ-swiper .gallery-thumbs .swiper-slide {
            font-size: 14px;
            height: 50px;
            padding: 12.5px 30px;
        }

    .summ-bot {
        padding-top: 30px;
    }

    .summ-tit {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .summ-dec {
        width: 100%;
        font-size: 14px;
        line-height: 22px;
    }

    .summ-pic1 {
        margin-top: 25px;
    }

    .summ-font p {
        font-size: 14px;
        line-height: 22px;
    }

    .summ-font h3, .summ-font1 h3 {
        font-size: 16px;
    }

    .summ-swiper {
        margin-top: 15px;
    }
}
/**/
.news {
    padding: 110px 0;
    background: #f5f5f5;
}

.goods {
    padding: 60px 0;
    background: #f5f5f5;
}

.goodscat {
    margin-bottom: 50px;
    text-align: center;
}

    .goodscat a {
    }

    .goodscat p {
        display: inline-block;
        padding: 5px 20px;
        border: 1px solid #00458e;
        margin: 10px 5px 0px;
        font-size: 18px;
        min-width: 120px;
        color: #00458e;
        min-width: 16%;
    }

        .goodscat p:hover {
            color: white;
            border: 1px solid #00458e;
            background-color: #00458e;
        }


    .goodscat .p-on {
        color: white;
        border: 1px solid #00458e;
        background-color: #00458e;
    }

.news ul {
    padding-bottom: 60px;
    overflow: hidden;
    margin: 0 -15px;
}

.news li {
    width: 33.3333%;
    float: left;
    padding: 0 15px;
    margin-bottom: 40px;
}

.goods li {
    width: 25%;
    float: left;
    padding: 0 15px;
    margin-bottom: 40px;
}

    .goods li:hover .m-tit {
        color: #00458e;
    }

.news .home-news-item .m-pic {
    /* height: 400px; */
}

.news .home-news-item .m-cont {
    height: 205px;
    padding: 30px;
}

.news .home-goods-item .m-cont {
    height: auto;
    padding: 30px;
    text-align: center;
}

.news .home-news-item .m-time {
    font-size: 17px;
    color: #444;
    line-height: 30px;
}

.news .home-news-item .m-tit {
    font-size: 18px;
    color: #444;
    line-height: 30px;
    margin-top: 15px;
}

.news .home-goods-item .m-tit {
    font-size: 20px;
    color: #444;
    line-height: 30px;
    margin-top: 15px;
}
/*分页*/
.pagee {
    text-align: center;
    position: relative;
    height: 60px;
}

.page {
    position: absolute;
    width: auto;
    overflow: hidden;
    left: 50%;
    transform: translateX(-50%);
}

.pagee a {
    margin: 0 0 0 -1px;
    float: left;
    display: block;
    width: 60px;
    height: 60px;
    font-size: 20px;
    color: #666666;
    font-family: arial;
    text-align: center;
    line-height: 58px;
    border: solid 1px #e0e0e0;
}

    .pagee a:first-child {
        margin-left: 0;
    }

    .pagee a.prev, .pagee a.next {
        font-size: 16px;
        color: #333333;
    }

    .pagee a:hover, .pagee a.on {
        color: #fff;
        border-color: #2053a3;
        background: #2053a3;
    }


@media (max-width: 1260px) {
    .news .home-news-item .m-pic {
        height: 173px;
    }

    .home-goods-item .m-pic {
        height: auto !important;
    }

    .news .home-news-item .m-cont {
        height: 206px;
    }

    .news .home-goods-item .m-cont {
        height: auto;
        padding: 15px;
        text-align: center;
    }

    .news .home-news-item .m-tit {
        margin-top: 5px;
    }

    .news .home-goods-item .m-tit {
        margin-top: 5px;
        font-size: 16px;
    }
}

@media (max-width: 991px) {
    .news .home-news-item .m-pic {
        height: 130px;
    }

    .news .home-news-item .m-cont {
        height: 171px;
        padding: 15px 20px;
    }

    .news .home-goods-item .m-cont {
        height: auto;
        padding: 15px 20px;
        text-align: center;
    }

    .news .home-news-item .m-tit {
        margin-top: 0px;
    }
}

@media (max-width: 767px) {
    .news {
        padding: 40px 0;
    }

        .news ul {
            margin: 0 -5px;
            padding-bottom: 10px;
        }

        .news li {
            padding: 0 5px;
            width: 50%;
            margin-bottom: 15px;
        }

        .news .home-news-item .m-pic {
            height: auto;
        }

        .news .home-news-item .m-cont {
            height: 150px;
            padding: 15px 20px;
        }

        .news .home-goods-item .m-cont {
            height: auto;
            padding: 15px 20px;
            text-align: center;
        }

        .news .home-news-item .m-tit {
            margin-top: 0px;
        }

    .pagee {
        height: 35px;
    }

        .pagee a {
            width: 32px;
            height: 32px;
            line-height: 30px;
            font-size: 14px;
        }

            .pagee a.prev, .pagee a.next {
                font-size: 12px;
            }

    .news .home-news-item .m-tit {
        font-size: 16px;
    }

    .news .home-news-item .m-time {
        font-size: 14px;
    }

    .goodscat p {
        width: 46%;
        /* margin: 1%; */
        min-width: auto;
        font-size: 16px;
        padding: 5px 10px;
    }
}

/**/
.news-left {
    width: 66.6666%;
    float: left;
    background: white;
    border: solid 1px #ebebeb;
    padding: 35px 45px 135px;
}

    .news-left h1 {
        font-size: 26px;
        color: #444444;
    }

.news-time {
    margin-bottom: 25px;
    font-size: 16px;
    color: #444;
    line-height: 20px;
    padding-left: 30px;
    margin-top: 20px;
    background: url(../images/news-time.jpg) no-repeat left center;
}

.news-left p, .news-left span {
    font-size: 14px;
    color: #666;
    line-height: 28px;
}

.news-left img {
    display: inline-block;
    width: 100%;
}

.back {
    height: 40px;
    margin-top: 60px;
}

.news-prev {
    display: block;
    float: left;
    margin-right: 10px;
    max-width: 150px;
    height: 40px;
    font-size: 16px;
    padding: 0 40px;
    line-height: 36px;
    color: #006fc1;
    text-align: center;
    border-radius: 30px;
    border: solid 1px #006fc1;
}

.news-next {
    display: block;
    float: left;
    max-width: 150px;
    height: 40px;
    font-size: 16px;
    line-height: 36px;
    padding: 0 40px;
    color: #006fc1;
    text-align: center;
    border-radius: 30px;
    border: solid 1px #006fc1;
}

.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 {
    color: white;
    background-color: #006fc1;
    border-color: #006fc1;
}

.news-right {
    width: 30.8%;
    float: right;
    background: white;
    border: solid 1px #ebebeb;
    padding: 35px 25px;
}

    .news-right h3 {
        font-size: 20px;
        color: #333;
        padding-bottom: 20px;
        border-bottom: solid 1px #e7e7e7;
        line-height: 20px;
    }

        .news-right h3 i {
            color: #0371c2;
            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: arial;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }

    .news-tj:hover h4 {
        color: #0371c2;
    }

@media (max-width: 991px) {
    .news-left, .news-right {
        width: 100%;
    }

    .news-right {
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .news-left {
        padding: 20px 15px 40px;
    }

        .news-left h1 {
            font-size: 20px;
        }

    .news-time {
        font-size: 14px;
        margin: 15px 0 20px;
    }

    .news-left p, .news-left span {
        line-height: 22px;
    }

    .back {
        margin-top: 30px;
    }

    .news-prev, .news-next {
        padding: 0 25px;
        height: 35px;
        line-height: 33px;
        font-size: 14px;
    }

        .news-prev i, .news-next i {
            line-height: 34px;
        }
}

a.zz {
    display: none
}

.crumb a:last-child {
    color: #2053a2;
}
/**/
.message {
    padding: 110px 0 115px;
    background: #f5f5f5;
}

.mess {
    padding: 0 60px;
}

.mess-top {
    height: 52px;
    position: relative;
    width: 100%;
}

    .mess-top::after {
        position: absolute;
        content: '';
        z-index: 0;
        width: 100%;
        height: 2px;
        background: #e0e0e0;
        left: 0;
        bottom: 7px;
    }

    .mess-top h3 {
        font-size: 16px;
        color: #444;
        font-family: '微软雅黑';
        position: relative;
        line-height: 16px;
    }

.met-left {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
}

.met-center {
    position: absolute;
    left: 50%;
    top: 0;
    height: 100%;
    transform: translateX(-50%);
}

.met-right {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
}

.met-list::after {
    position: absolute;
    content: '';
    z-index: 3;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    bottom: 0;
    left: 50%;
    margin-left: -8px;
    background: #e0e0e0;
    border: solid 2px transparent;
}

.met-left::before {
    position: absolute;
    content: '';
    z-index: 2;
    margin-left: -8px;
    width: 50%;
    height: 2px;
    background: #f5f5f5;
    left: 0;
    bottom: 7px;
}

.met-right::before {
    position: absolute;
    content: '';
    z-index: 1;
    margin-right: -8px;
    width: 50%;
    height: 2px;
    background: #f5f5f5;
    right: 0;
    bottom: 7px;
}

.met-list.on::after {
    background: #f3c21b;
    border-color: #00458e;
}

.mess-dec {
    margin-bottom: 25px;
    font-size: 14px;
    color: #666;
    font-family: '微软雅黑';
    margin-top: 45px;
}

.mess-h3 {
    overflow: hidden;
    margin-bottom: 15px;
}

.mess-span {
    border-radius: 3px;
    width: 69px;
    height: 22px;
    color: white;
    font-size: 14px;
    text-align: center;
    line-height: 22px;
    float: left;
    background: #00458e;
}

.mess-h3 p {
    font-size: 22px;
    color: #444;
    font-family: '微软雅黑';
    margin-left: 50px;
    line-height: 25px;
}

.mess-p {
    overflow: hidden;
    padding-left: 50px;
    margin-bottom: 15px;
}

    .mess-p .check {
        background: #f5f5f5;
        appearance: checkbox;
        -moz-appearance: checkbox;
        -webkit-appearance: checkbox;
        width: 15px;
        height: 15px;
        border: solid 1px #bebebe;
        border-radius: 2px;
        float: left;
    }

    .mess-p label {
        width: 90%;
        font-size: 14px;
        color: #666;
        float: left;
        line-height: 15px;
        margin-left: 8px;
    }

.mess-h4 {
    overflow: hidden;
    margin-bottom: 35px;
    margin-top: 40px;
}

.mess-span1 {
    border-radius: 3px;
    width: 42px;
    height: 22px;
    color: black;
    font-size: 14px;
    text-align: center;
    line-height: 22px;
    float: left;
    background: #e7a619;
}

.mess-h4 p {
    font-size: 18px;
    color: #444;
    font-family: '微软雅黑';
    margin-left: 50px;
    line-height: 25px;
}

.mess-p1 input {
    width: 100%;
    height: 50px;
    border: solid 1px #ccc;
    background: white;
    padding: 0 15px;
}

.mess-p1 {
    margin-bottom: 50px;
    padding: 0 10px 10px;
}

    .mess-p1 .text2 {
        width: 100% !important;
        min-height: 107px !important;
        border: solid 1px #ccc;
        background: white;
        padding: 10px 15px;
    }

.mess-p2 {
    /* height: 50px; */
    /* margin-bottom: 20px; */
}

    .mess-p2 label {
        width: 34%;
        float: left;
        padding: 14px 0 14px 10px;
    }

.mess-span2 {
    float: left;
    font-size: 14px;
    color: #666;
    line-height: 22px;
    margin-left: 10px;
}

.mess-p2 .text {
    width: 100%;
    float: left;
    height: 50px;
    border: solid 1px #ccc;
    background: white;
    padding: 0 15px;
}

.mess-p2 select {
    width: 34%;
    height: 50px;
    border: solid 1px #ccc;
    background: white url(../images/select.png) no-repeat right 15px center;
    padding: 0 15px
}

.mess-p2 .text1 {
    width: 34%;
    float: left;
    height: 50px;
    border: solid 1px #ccc;
    background: white;
    padding: 0 15px
}

.mess-bot {
    margin: 50px 0;
    padding: 18px 24px 18px 10px;
    background: white;
}

.mess-left {
    width: 29%;
    float: left;
    padding: 25px 0;
    border-right: solid 1px #cccccc;
}

    .mess-left p {
        float: left;
        line-height: 22px;
        font-size: 14px;
        color: #666666;
        margin-left: 10px;
    }

.mess-right {
    width: 68%;
    float: left;
    padding-left: 18px;
}

.mess-p3 {
    overflow: hidden;
}

    .mess-p3 .check {
        background: #f5f5f5;
        appearance: checkbox;
        -moz-appearance: checkbox;
        -webkit-appearance: checkbox;
        width: 15px;
        height: 15px;
        border: solid 1px #bebebe;
        border-radius: 2px;
        float: left;
    }

    .mess-p3 label {
        font-size: 14px;
        color: #666;
        float: left;
        line-height: 15px;
        margin-left: 5px;
    }

.mess-right h4 {
    margin-top: 6px;
    line-height: 26px;
    font-family: '微软雅黑';
    font-size: 14px;
    color: #666;
}

.mess-right h5 {
    line-height: 26px;
    font-family: '微软雅黑';
    font-size: 14px;
    color: #00458e;
}

.mess-more {
    font-size: 14px;
    line-height: 50px;
    margin: 0 auto;
    color: white;
    font-family: '微软雅黑';
    display: block;
    width: 200px;
    height: 50px;
    background: #00458e;
}

.mess-p2 {
    margin-bottom: 20px;
    padding: 6px 10px 10px 0;
}

.worry {
    background: #ff00002e;
    border-radius: 6px;
}

.mess-p2 .mistake {
    display: none;
    margin-left: 26%;
    padding-top: 0;
    margin-bottom: 10px;
    color: #f44336;
    margin-top: 0;
    font-size: 13px;
    line-height: 18px;
    padding-left: 20px;
    background: url(../images/mistake.png) no-repeat left center;
}

.mess-p1 .mistake {
    display: none;
    padding-top: 5px;
    margin-bottom: 10px;
    color: #f44336;
    margin-top: 0;
    font-size: 13px;
    line-height: 18px;
    padding-left: 20px;
    background: url(../images/mistake.png) no-repeat left center;
}

.worry .mistake {
    display: block;
}

@media (max-width: 1260px) {
    .mess {
        padding: 0;
    }
}

@media (max-width: 991px) {
    .mess-p2 label {
        padding-left: 0;
    }
}

@media (max-width: 767px) {
    .message {
        padding: 40px 0;
    }

    .met-list {
        max-width: 100px;
    }

    .mess-top h3 {
        text-align: center;
        font-size: 14px;
    }

    .mess-dec {
        margin-top: 25px;
        margin-bottom: 15px;
    }

    .mess-h3 p, .mess-h4 p {
        font-size: 16px;
        line-height: 18px;
    }

    .mess-span, .mess-span1 {
        font-size: 12px;
        width: 35px;
        height: 18px;
        line-height: 17px;
    }

    .mess-h3 p {
        margin-left: 42px;
    }

    .mess-h3 {
        margin-bottom: 10px;
    }

    .mess-p {
        margin-bottom: 10px;
        padding-left: 42px;
    }

    .mess-h4 {
        margin: 25px 0 15px;
    }

    .mess-p1 input {
        height: 40px;
    }

    .mess-p2 {
        /* height: 40px; */
        margin-bottom: 15px;
    }

        .mess-p2 label {
            width: 30%;
            padding: 9px 0;
        }

    .mess-p1 {
        margin-bottom: 30px;
    }

    .mess-span2 {
        width: 50%;
        font-size: 12px;
        line-height: 16px;
        margin-left: 5px;
    }

    .mess-p2 .text, .mess-p2 select, .mess-p2 .text1 {
        width: 70%;
        height: 40px;
        padding: 0 10px;
    }

    .mess-left {
        width: 100%;
        border: none;
        padding-top: 5px;
        margin-bottom: 10px;
        padding-bottom: 10px;
        border-bottom: solid 1px #ccc;
    }

    .mess-right {
        width: 100%;
        padding-left: 0;
    }

    .mess-bot {
        padding: 15px 15px 10px;
        margin: 30px 0;
    }

    .mess-right h4, .mess-right h5 {
        line-height: 22px;
    }

    .mess-more {
        font-size: 12px;
        line-height: 40px;
        height: 40px;
        width: 170px;
    }
}

.mess-top.on1::before {
    position: absolute;
    content: '';
    width: 50%;
    height: 2px;
    background: #f3c21b;
    left: 0;
    bottom: 7px;
    z-index: 2;
}

.mess-top.on2::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 2px;
    background: #f3c21b;
    left: 0;
    bottom: 7px;
    z-index: 2;
}

.hdg-lv2 {
    font-size: 28px;
    margin: 50px 0 20px;
    font-weight: normal;
}

.tbl-base {
    width: 100%;
    border: 0;
    border-collapse: collapse;
    margin-bottom: 30px;
    text-align: left;
}

    .tbl-base tbody tr {
        border-top: 1px solid #ddd;
    }

        .tbl-base tbody tr:last-child {
            border-bottom: 1px solid #ddd;
        }

.frm-contact .tbl-base th {
    width: 30%;
}

.tbl-base tbody th {
    padding: 7px 10px;
    vertical-align: middle;
}

.tbl-base tbody td {
    padding: 7px 10px;
}

.tbl-base th, .tbl-base td {
    vertical-align: top;
    line-height: 1.8em;
}

.tbl-base th {
    background-color: #f9f9f9;
    font-weight: normal;
}

.frm-contact__btn {
    text-align: center;
    position: relative;
}

.nav-historyback {
    position: absolute;
    top: 0;
    overflow: hidden;
    z-index: 100;
    left: 0;
    background: url(../images/message1.png) no-repeat left 19px center;
    background-size: 10px;
    width: 48px;
    height: 48px;
    border: solid 1px #ddd;
    padding-left: 0;
    color: #333;
    transition: width 0.3s;
}

    .nav-historyback span {
        line-height: 50px;
        opacity: 0;
    }

    .nav-historyback:hover {
        width: 180px;
        padding-left: 54px;
        opacity: 0.7;
    }

        .nav-historyback:hover span {
            opacity: 1;
        }

.btn {
    cursor: pointer;
    display: inline-block;
    color: #fff;
    text-align: center;
    min-width: 180px;
    font-size: 14px;
    background-color: #37474f;
    margin: 0 0 10px;
    width: 300px;
    padding: 10px 20px;
}

.btn--large {
    padding: 9px 15px;
    font-weight: bold;
    font-size: 14px;
    width: auto;
    min-width: 180px;
}

.hdg-lv4 {
    font-size: 16px;
    margin: 30px 0 10px;
    font-weight: 800;
    text-align: center;
}

.wrp-block {
    text-align: center;
}

.center {
    text-align: center !important;
    margin-top: 20px;
}

.btn--darkblue {
    padding: 10px 20px;
}

@media (max-width: 767px) {
    .hdg-lv2 {
        font-size: 22px;
    }

    .btn {
        width: 100px;
        min-width: auto;
        float: right;
        margin-top: 5px;
        margin-bottom: 0;
    }

    .frm-contact .tbl-base th {
        width: 40%;
    }

    .btn--large {
        /* width: 100%; */
        font-weight: normal;
        padding: 10px 0;
    }

    .btn--darkblue {
        padding: 10px 20px;
    }

    .div3 {
        text-align: center;
    }

    .btn .fa {
        margin-left: 5px;
    }
}

.deliv-li .deliv-pad table td {
    border: solid 1px #dbdbdb;
}

.share .bdsharebuttonbox a:last-child {
    margin-left: 0;
}

.footer-contact {
    float: right;
    text-align: right;
    width: auto;
}

.foot-ewm {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: 333;
}

.p::after {
    position: absolute;
    content: '';
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #f8c300;
    left: 0;
    top: 5px;
}

p.p {
    position: relative;
}




/*首页新增地图*/

.map {
}

.map-1 {
}

    .map-1 h5 {
        font-size: 18px;
        color: #333333;
        margin-bottom: 15px;
    }

    .map-1 .map-1-p {
        font-size: 16px;
        color: #666;
        line-height: 28px;
        padding-left: 20px;
    }

    .map-1 .map-1-p2 {
        text-align: right;
        font-size: 16px;
        color: #666;
        line-height: 28px;
        padding-left: 20px;
        margin-top: 20px;
    }


.map-2 {
    margin-top: 30px;
    text-align: center;
    position: relative;
}

    .map-2 .map-2-p {
        text-align: right;
        font-size: 16px;
        color: #666;
        line-height: 28px;
        padding-left: 20px;
        margin-top: 20px;
    }


    .map-2 .map-2-span1 {
        position: absolute;
        left: 46%;
        top: 20%;
    }

    .map-2 .map-img {
        max-width: 100%;
    }

.map-pc {
}

.map-app {
    display: none;
}

.into-div {
    position: absolute;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.46);
    padding: 20px;
}

    .into-div p {
        color: white;
        font-size: 16px;
        line-height: 24px;
    }


@media (max-width: 1260px) {
    .share .bdsharebuttonbox a {
        margin-left: 6px;
        width: 35px;
        height: 35px;
        line-height: 35px;
    }
}

@media (max-width: 991px) {
    .share .bdsharebuttonbox a:last-child {
        margin-left: 6px;
    }
}

@media (max-width: 767px) {
    .map-pc {
        display: none;
    }

    .map-app {
        display: block;
    }

        .map-app img {
            max-width: 100%;
        }

    .home-intr-box .gallery-thumbs .m-tit {
        line-height: 42px;
    }

    .map-1 .map-1-p2 {
        text-align: left;
    }

    .map-2 .map-2-p {
        text-align: left;
    }

    .into-div {
        padding: 10px;
    }

        .into-div p {
            font-size: 14px;
            line-height: 18px;
        }
}


/*联系我们*/
/* ==========contact============= */
.lxwm {
    margin: 50px 0px;
}

.contact {
    padding: 66px 0 71px;
}

.contact-one {
    /* padding-bottom: 40px; */
}

.contact-one-p {
    font-size: 16px;
    line-height: 30px;
    color: #666;
    width: 100%;
}

.contact-one ul {
    margin-top: 80px;
}

.contact-one li {
    float: left;
    width: 20%;
    text-align: center;
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    position: relative;
    border-radius: 4%;
    border: 1px solid #666666;
    text-align: center;
    line-height: 106px;
    overflow: hidden;
    transition: ease .5s;
    margin-bottom: 20px;
}

    .contact-icon img {
        width: 36px;
        height: 36px;
        margin: 0 auto;
        line-height: 106px;
        display: inline-block;
    }

.contact-icon1 {
    transition: ease .5s;
    top: 28%;
    left: 27%;
    position: absolute;
}

.contact-icon2 {
    position: absolute;
    top: 100%;
    transition: ease .5s;
    left: 29%;
}

.contact-one li:hover .contact-icon2 {
    top: 30%;
    left: 29%;
}

.contact-one li:hover .contact-icon1 {
    top: -100%;
}

.contact-one li:hover .contact-icon {
    background: #00458e;
    border-color: #00458e;
}

.contact1-txt {
}

    .contact1-txt span,.contact1-txt span {
        font-size: 16px;
        line-height: 24px;
        color: #333;
    }

.contact-one li:last-child .contact1-txt span {
    font-size: 16px;
}

.contact1-txt p {
    font-size: 16px;
    line-height: 24px;
    color: #666;
}

.contact-two {
}

.contact2-left {
    float: left;
    width: 50%;
}

    .contact2-left img {
        width: 100%;
    }

.contact2-right {
    float: right;
    width: 50%;
}

    .contact2-right img {
        width: 100%;
    }

.contact2-left .swiper-slide img {
    width: 100%;
}

.contact-swip-con {
    font-size: 20px;
    color: #fff;
    text-align: center;
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
}

.contact2-left .swiper-button-next, .contact2-left .swiper-button-prev {
    width: 18px;
    height: 34px;
}

.contact2-left .swiper-button-next {
    background: url(../images/down-right.png)no-repeat center right;
}

.contact2-left .swiper-button-prev {
    background: url(../images/down-left.png)no-repeat center left;
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    opacity: .5 !important;
}


.contact-three {
    padding-top: 76px;
}

.contact-tit {
    font-size: 42px;
    color: #333;
    text-align: center;
}

.contact-input {
    margin-top: 25px;
}

.contact-input1 {
    margin: 0 -10px;
}

    .contact-input1 > div {
        float: left;
        width: 50%;
        padding: 0 10px;
    }

.contact-input input {
    font-size: 16px;
    color: #666;
    background: #f5f5f5;
    padding: 12px 20px;
    width: 100%;
    margin-bottom: 20px;
}

.contact-input textarea {
    font-size: 16px;
    color: #666;
    background: #f5f5f5;
    padding: 18px 20px;
    width: 100%;
    min-height: 115px;
}

.contact-submit {
    position: relative;
    width: 166px;
    height: auto;
    transition: ease .5s;
    margin: 0 auto;
    margin-top: 29px;
    transition: ease .5s;
}

.message-submit {
    position: relative;
    font-size: 16px;
    color: #fff;
    background: #00458e;
    margin: 0 auto;
    display: block;
    padding: 15px 67px;
    cursor: pointer;
    transition: ease .5s;
}
/* .contact-submit::before{position: absolute; content: "";  width: 0;height: 100%; background: #e62129; top: 0; left: 50%; transform: translateX(-50%); transition: ease .5s;} */
/* .contact-submit:hover::before{width: 100%;} */
.contact-submit:hover .message-submit {
    background: rgba(0, 69, 142, 0.75);
}

@media (max-width: 992px) {
    .contact-one-p {
        width: 100%;
    }

    .contact-one li {
        width: 50%;
        margin-top: 20px;
        min-height: 180px;
    }
}

@media (max-width: 767px) {
    .contact {
        padding: 40px 0 35px;
    }

    .contact-one-p {
        font-size: 14px;
        line-height: 22px;
    }

    .contact-one ul {
        margin-top: 0;
    }

    .contact-icon {
        width: 80px;
        height: 80px;
    }

        .contact-icon img {
            width: 35px;
            height: 35px;
        }

    .contact1-txt span {
        font-size: 14px;
        line-height: 20px;
    }

    .contact1-txt p {
        font-size: 15px;
        line-height: 24px;
    }

    .contact-one li:last-child .contact1-txt span {
        font-size: 14px;
        line-height: 22px;
    }

    .contact-tit {
        font-size: 26px;
    }

    .contact2-left, .contact2-right {
        float: none;
        width: 100%;
    }

    .contact-three {
        padding-top: 40px;
    }

    .contact-input1 > div {
        float: none;
        width: 100%;
    }

    .contact-input input {
        padding: 12px 20px;
        font-size: 15px;
        margin-bottom: 10px;
    }

    .contact-input {
        margin-top: 20px;
    }

        .contact-input textarea {
            font-size: 15px;
        }

    .message-submit {
        padding: 10px 50px;
        font-size: 15px;
    }

    .contact-submit {
        width: auto;
        margin-top: 20px;
    }

    .contact2-left .swiper-button-next, .contact2-left .swiper-button-prev {
        width: 12px;
        height: 28px;
    }

    .contact-swip-con {
        font-size: 17px;
    }
}


.home-reason-list .index-sum {
    font-size: 42px;
    width: 220px;
    position: relative; /* font-weight: bold; */
}

.index-sum span {
    font-size: 18px;
    position: absolute;
    padding-left: 5px;
    font-weight: 100;
}


@media (max-width: 767px) {

    .home-reason-list .index-sum {
        font-size: 26px;
        width: 150px;
    }

    .index-sum span {
        font-size: 12px;
    }
}
.crumb i:last-of-type{
    display: none;
}