
* {
    box-sizing: border-box !important;
    padding: 0;
    margin: 0;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Microsoft YaHei', 'Arial';
    padding: 0 !important;
    color: #666;
    margin: 0 auto;
    font-size: 14px;
    background: #fff;
    /*overflow-x: hidden;*/
}

input,
select {
    outline: none;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

.hidden {
    display: none;
}

body a {
    color: #666;
    text-decoration: none;
}

body a:hover {
    text-decoration: none;
}

.text-center {
    text-align: center;
}

.container {
    max-width: 1200px;
    padding: 0 15px;
    position: relative;
    margin: 0 auto;
}

.maximg img {
    width: 100%;
    height: auto;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.clearfix {
    clear: both;
}

.is-show .transX5 {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.transX5 {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition: 600ms 200ms;
    transition: 600ms 200ms;
}

.is-show .transX-5 {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.transX-5 {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    -webkit-transform-origin: right;
    transform-origin: right;
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition: 600ms 200ms;
    transition: 600ms 200ms;
}

.is-show .transy5 {
    margin-top: 20px;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.transy5 {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(80px);
    transform: translateY(80px);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition: 600ms 400ms;
    transition: 600ms 400ms;
}

.is-show .transy-5 {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.transy-5 {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-80px);
    transform: translateY(-80px);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition: 600ms 400ms;
    transition: 600ms 400ms;
}

/*顶部样式*/
.header {
    position: fixed;
    height: 100px;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0);
    transition: all .4s ease;
}

.logo {
    /*position: absolute;*/
    /*left: 15px;*/
    /*top: 28px;*/
    transition: all .4s ease;
    z-index: 1000;
}

.header.headerfull .logo {
    top: 19px;
}

.header:hover .logo {
    top: 19px;
}

.header.headerfulln .logo {
    top: 19px;
}

.logo a {
    display: block;
}

.logo a img {
    height: 42px;
    width: auto;
}

.darklogo {
    display: none;
}

.header.headerfull {
    background: rgba(255, 255, 255, 1);
    -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    height: 80px;
}

.header.headerfull .darklogo {
    display: block;
}

.header.headerfull .whitelogo {
    display: none;
}

.header:hover {
    background: rgba(255, 255, 255, 1);
    -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    height: 80px;
}

.header:hover .darklogo {
    display: block;
}

.header:hover .whitelogo {
    display: none;
}

.header.headerfulln {
    background: rgba(255, 255, 255, 1);
    -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    height: 80px;
}

.header.headerfulln .darklogo {
    display: block;
}

.header.headerfulln .whitelogo {
    display: none;
}

.headermenu {
    text-align: right;
}

.mainnav>li {
    display: inline-block;
    height: 100px;
    line-height: 100px;
    padding: 0 25px;
    position: relative;
}

.mainnav>li>a {
    color: #fff;
    display: block;
    font-size: 15px;
    position: relative;
}

.mainnav>li>a i {
    display: inline-block;
    left: 50%;
    margin-left: -8px;
    top: -10px;
    position: absolute;
    opacity: 0;
    transition: all .4s ease;
}

.mainnav>li:hover>a i {
    top: 14px;
    opacity: 1;
}

.mainnav>li>.sub-menu {
    position: absolute;
    background: #fff;
    text-align: left;
    -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    top: 80px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    display: none;
    transition: all .4s ease;
    opacity: 0;
}

.mainnav>li:hover>.sub-menu {
    display: block;
    opacity: 1;
}

.mainnav>li>.sub-menu li {
    height: 45px;
    line-height: 45px;
    padding: 0 20px;
    border-bottom: 1px dashed #e5e5e5;
    white-space: nowrap;
}

.mainnav>li>.sub-menu li a {
    white-space: nowrap;
    color: #333;
    display: block;
}

.mainnav>li>.sub-menu li:hover {
    background: #f9f9f9;
}

.mainnav>li>.sub-menu li:hover a {
    color: #2e7aff;
    font-weight: bold;
}

.mainnav>li>.sub-menu li:last-child {
    border: none;
}

.header.headerfull .mainnav>li {
    height: 80px;
    line-height: 80px;
}

.header.headerfull .mainnav>li>a {
    color: #333;
}

.header:hover .mainnav>li {
    height: 80px;
    line-height: 80px;
}

.header:hover .mainnav>li>a {
    color: #333;
}

.header.headerfulln .mainnav>li {
    height: 80px;
    line-height: 80px;
}

.header.headerfulln .mainnav>li>a {
    color: #333;
}

.mainnav>li>a:after {
    content: '';
    transition: all .4s ease;
    margin-top: 16px;
    top: 80%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.mainnav>li.current-menu-item>a,
.mainnav>li.current-menu-parent>a {
    font-weight: bold;
}

.headerfull .mainnav>li.current-menu-parent>a {
    color: #2299ee;
}

.headerfull .mainnav>li.current-menu-parent>a:after {
    background: #2299ee;
}

.header:hover .mainnav>li.current-menu-parent>a {
    color: #2299ee;
}

.header:hover .mainnav>li.current-menu-parent>a:after {
    background: #2299ee;
}

.headerfulln .mainnav>li.current-menu-parent>a {
    color: #2299ee;
}

.headerfulln .mainnav>li.current-menu-parent>a:after {
    background: #2299ee;
}

.mainnav>li.current-menu-item>a:after,
.mainnav>li.current-menu-parent>a:after {
    content: '';
    width: 20px;
    height: 5px;
    background: #fff;
    position: absolute;
    margin-top: 16px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.headerfull .mainnav>li.current-menu-item>a:after {
    background: #2e7aff;
}

.headerfull .mainnav>li.current-menu-item>a {
    color: #2e7aff;
}

.headerfull .mainnav>li:hover>a {
    color: #2e7aff;
}

.headerfull .mainnav>li:hover>a:after {
    background: #2e7aff;
}

.header:hover .mainnav>li.current-menu-item>a:after {
    background: #2e7aff;
}

.header:hover .mainnav>li.current-menu-item>a {
    color: #2e7aff;
}

.header:hover .mainnav>li:hover>a {
    color: #2e7aff;
}

.header:hover .mainnav>li:hover>a:after {
    background: #2e7aff;
}

.headerfulln .mainnav>li.current-menu-item>a:after {
    background: #2e7aff;
}

.headerfulln .mainnav>li.current-menu-item>a {
    color: #2e7aff;
}

.headerfulln .mainnav>li:hover>a {
    color: #2e7aff;
}

.headerfulln .mainnav>li:hover>a:after {
    background: #2e7aff;
}

.mainnav>li:hover>a {
    font-weight: bold;
}

.mainnav>li:hover>a:after {
    content: '';
    width: 20px;
    height: 5px;
    background: #fff;
    position: absolute;
    margin-top: 16px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.bannerpart {
    height: 600px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.mainmenubox {
    display: inline-block;
    margin-right: 25px;
}

.topsearch {
    display: inline-block;
    height: 32px;
    line-height: 32px;
}

#searchform {
    position: relative;
}

#searchform:hover .sb-search-input,
#searchform .sb-search-input:focus {
    width: 100%;

}

#searchform .sb-search-input {
    width: 32px;
    border: 1px solid #fff;
    border-radius: 16px;
    height: 32px;
    line-height: 32px;
    padding: 0 10px;
    transition-duration: 300ms;
}

.headerfull #searchform .sb-search-input {
    border: 1px solid #fff;
    background: #f9f9f9;
}

.headerfull .serchsubmit .sb-search-submit {
    border: 1px solid #2e7aff;
    background: #2e7aff url(../img/sslan.png) no-repeat center;
}

.headerfull .serchsubmit i {
    color: #fff;
}

.header:hover #searchform .sb-search-input {
    border: 1px solid #fff;
    background: #f9f9f9;
}

.header:hover .serchsubmit .sb-search-submit {
    border: 1px solid #2e7aff;
    background: #2e7aff url(../img/sslan.png) no-repeat center;
}

.header:hover .serchsubmit i {
    color: #fff;
}

.headerfulln #searchform .sb-search-input {
    border: 1px solid #fff;
    background: #f9f9f9;
}

.headerfulln .serchsubmit .sb-search-submit {
    border: 1px solid #2e7aff;
    background: #2e7aff url(../img/sslan.png) no-repeat center;
}

.headerfulln .serchsubmit i {
    color: #fff;
}

.serchsubmit {
    position: absolute;
    top: 0;
    right: 0;
}

.serchsubmit .sb-search-submit {
    width: 32px;
    height: 32px;
    background: #fff url(../img/sshei.png) no-repeat center;
    border: 1px solid #fff;
    border-radius: 50%;
    z-index: 3;
    transition: all .4s ease;
    cursor: pointer;
}

.serchsubmit i {
    display: none;
    color: #333;
    font-size: 18px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 5;
    cursor: pointer;
}

.bannerpart {
    position: relative;
}

.bannercon {
    position: absolute;
    width: 100%;
    left: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.bannercon h2 {
    font-size: 36px;
    color: #fff;
    font-weight: normal;
    margin-bottom: 20px;
}

.bannercon p {
    max-width: 50%;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    font-weight: normal;
}

.bannercon a {
    display: inline-block;
    width: 120px;
    height: 40px;
    line-height: 36px;
    text-align: center;
    color: #fff;
    font-size: 16px;
    border: 1px solid #fff;
    margin-top: 45px;
    transition: all .4s ease;
}

.bannercon a:hover {
    color: #2e7aff;
    background: #fff;
}

.banner .swiper-button-prev,
.banner .swiper-container-rtl .swiper-button-next {
    left: 2%;
}

.banner .swiper-button-next,
.banner .swiper-container-rtl .swiper-button-prev {
    right: 2%;
}

.banner .swiper-container {
    --swiper-theme-color: #fff;
    /* 设置Swiper风格 */
    --swiper-navigation-color: #fff;
    /* 单独设置按钮颜色 */
    --swiper-navigation-size: 40px;
    /* 设置按钮大小 */
}

.banner .swiper-button-next:after,
.banner .swiper-button-prev:after {
    font-weight: bold;
    outline: none;
    opacity: .8;
}

.banner .swiper-pagination-bullet {
    width: 30px;
    height: 3px;
    border-radius: 0;
}

.banner .swiper-container-horizontal>.swiper-pagination-bullets,
.banner .swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 80px;
}

/*首页优势*/
.advantage {
    margin-top: -40px;
    z-index: 99;
    position: relative;
}

.advantagebox {
    margin-right: -20px;
}

.advantageone {
    float: left;
    width: 25%;
    padding-right: 20px;
}

.advantageonebox {
    height:110px;
    position: relative;
    padding: 20px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 3px;
    -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.advantageonebox img {
    width: 48px;
    height: 48px;
    position: absolute;
    left: 20px;
    top: 20px;
}

.advantagetext {
    padding-left: 60px;
}

.advantagetext h4 {
    font-size: 18px;
    color: #e39e20;
    margin-bottom: 5px;
    font-weight: normal;
}

.advantagetext p {
    color: #666;
    font-size: 13px;
    line-height: 16px;
}

/*首页头条*/
.toutiao {
    margin-top: 45px;
}

/* 本例子css */
.txtMarquee-left {
    position: relative;
    background-color: #fafbfd;
    border-radius: 3px;
    padding-left: 140px;
    background-image: url(../img/ttbj.png);
    background-repeat: no-repeat;
    background-position: 20px center;
}

.txtMarquee-left .bd {
    padding: 15px;
    width: 100%;
    overflow: hidden;
    padding-right: 75px;
    position: relative;
}

.ttmore {
    position: absolute;
    right: 15px;
    top: 50%;
    margin-top: -10px;
    color: #2e7aff;
    display: block;
}

.ttmore i {
    padding-left: 3px;
}

.txtMarquee-left .bd ul {
    overflow: hidden;
    zoom: 1;
}

.txtMarquee-left .bd ul li {
    padding-right: 40px;
    float: left;
    height: 24px;
    line-height: 24px;
    text-align: left;
    _display: inline;
    padding-left: 20px;
    background: url(../img/lq.png) no-repeat left center;
    box-sizing: border-box;
}

.txtMarquee-left .bd ul li a {
    color: #333;
}

.tempWrap {
    width: 100% !important;
}

/*首页产品*/
.indexpart {
    padding: 50px 0;
}

.indexparttitle {
    text-align: center;
    margin-bottom: 45px;
}

.indexparttitle h2 {
    font-size: 36px;
    color: #161616;
    font-weight: 500;
    margin-bottom: 15px;
    display: inline-flex;
}

/*.indexparttitle h2:before {*/
/*    content: '';*/
/*    display: inline-block;*/
/*    width: 45px;*/
/*    height: 40px;*/
/*    background: url(../img/leftq.png) no-repeat center;*/
/*    margin-right: 15px;*/
/*}*/

/*.indexparttitle h2:after {*/
/*    content: '';*/
/*    display: inline-block;*/
/*    width: 45px;*/
/*    height: 40px;*/
/*    background: url(../img/rightq.png) no-repeat center;*/
/*    margin-left: 15px;*/
/*}*/

.indexparttitle p {
    font-size: 16px;
    color: #666;
}

.whitetitle.indexparttitle h2 {
    color: #fff;
}

.whitetitle.indexparttitle h2:before {
    background: url(../img/leftqb.png) no-repeat center;
}

.whitetitle.indexparttitle h2:after {
    background: url(../img/rightqb.png) no-repeat center;
}

.whitetitle.indexparttitle p {
    font-size: 16px;
    color: #fff;
}

.servicelists {
    margin-right: -20px;
}

.servicebox {
    float: left;
    width: 25%;
    padding-right: 20px;
}


.serviceone {
    border: 1px solid #e5e5e5;
    border-radius: 3px;
    background: #fff;
    transition: all .4s ease;
    padding: 30px;
    -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    cursor: pointer;
    display: block;
    margin-top: 20px;
   
}

.serviceone:hover {
    background: #2e7aff;
    border: 1px solid #2e7aff;
}

.serviceicon {
    display: inline-block;
    width: 70px;
    height: 70px;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 15px;
}

.serviceone h3 {
    font-size: 18px;
    color: #000;
    margin-bottom: 10px;
    font-weight: normal;
}

.serviceone p {
    font-size: 14px;
    line-height: 22px;
    color: #666;
    margin-bottom: 30px;
}

.serviceone a {
    color: #2e7aff;
}

.serviceone a i {
    padding-left: 5px;
}

.serviceone:hover h3 {
    color: #fff;
}

.serviceone:hover p {
    color: #fff;
}

.serviceone:hover a {
    color: #fff;
}

/*首页关于*/
.aboutpart {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.leftmap {
    float: left;
    width: 50%;
    padding-right: 20px;
}
/*.center1:hover{*/
/*    background:#fff;opacity: 0.5;*/
/*}*/
.righttext {
    /*float: right;*/
    width: 68%;
    padding-left: 20px;
    margin: 0 auto;
}

.righttext h3 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 12px;
}

.righttext p {
    margin-bottom: 30px;
    color: #fff;
    line-height: 24px;
    font-size: 15px;
}

.region-list {
    position: absolute;
    left: 0;
    top: 0
}

@-webkit-keyframes warn {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

@-moz-keyframes warn {
    0% {
        -moz-transform: scale(0);
        transform: scale(0);
        opacity: 1;
    }

    100% {
        -moz-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

@-o-keyframes warn {
    0% {
        -o-transform: scale(0);
        transform: scale(0);
        opacity: 1;
    }

    100% {
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes warn {
    0% {
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

.china-map {
    position: relative;
}

.mapimg {
    width: 100%;
    height: auto;
}

.region-list {
    position: absolute;
}

.area-box {
    z-index: 77;
}

.region-list.active .area-box .dot {
    background:#13c5e1;
}

.area-box .dot {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 10px;
    height: 10px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: #a2a9b4;
    opacity: 1;
    filter: alpha(opacity=100);
}

.region-list.active .area-box .pulse {
    border-color: #009fd9;
    top: -39px;
    left: -39px;
    height: 88px;
    width: 88px;
    -webkit-box-shadow: 0 0 12px #0080d9, 0 0 20px #0080d9 inset;
    -moz-box-shadow: 0 0 12px #0080d9, 0 0 20px #0080d9 inset;
    box-shadow: 0 0 12px #0080d9, 0 0 20px #0080d9 inset;
}

.area-box .pulse.delay-1 {
    -webkit-animation-delay: 0;
    -moz-animation-delay: 0;
    -o-animation-delay: 0;
    animation-delay: 0
}

.area-box .pulse.delay-2 {
    -webkit-animation-delay: .4s;
    -moz-animation-delay: .4s;
    -o-animation-delay: .4s;
    animation-delay: .4s
}

.area-box .pulse.delay-3 {
    -webkit-animation-delay: .8s;
    -moz-animation-delay: .8s;
    -o-animation-delay: .8s;
    animation-delay: .8s
}

.area-box .pulse.delay-4 {
    -webkit-animation-delay: 1.2s;
    -moz-animation-delay: 1.2s;
    -o-animation-delay: 1.2s;
    animation-delay: 1.2s
}

.area-box .pulse.delay-5 {
    -webkit-animation-delay: 1.6s;
    -moz-animation-delay: 1.6s;
    -o-animation-delay: 1.6s;
    animation-delay: 1.6s
}

.area-box .pulse.delay-6 {
    -webkit-animation-delay: 2s;
    -moz-animation-delay: 2s;
    -o-animation-delay: 2s;
    animation-delay: 2s
}

.area-box .pulse.delay-7 {
    -webkit-animation-delay: 2.4s;
    -moz-animation-delay: 2.4s;
    -o-animation-delay: 2.4s;
    animation-delay: 2.4s
}

.area-box .pulse.delay-8 {
    -webkit-animation-delay: -.4s;
    -moz-animation-delay: -.4s;
    -o-animation-delay: -.4s;
    animation-delay: -.4s
}

.area-box .pulse.delay-9 {
    -webkit-animation-delay: -.8s;
    -moz-animation-delay: -.8s;
    -o-animation-delay: -.8s;
    animation-delay: -.8s
}

.area-box .pulse.delay-10 {
    -webkit-animation-delay: -1.2s;
    -moz-animation-delay: -1.2s;
    -o-animation-delay: -1.2s;
    animation-delay: -1.2s
}

.area-box .pulse.delay-11 {
    -webkit-animation-delay: 4s;
    -moz-animation-delay: 4s;
    -o-animation-delay: 4s;
    animation-delay: 4s
}

.area-box .pulse.delay-12 {
    -webkit-animation-delay: 4.4s;
    -moz-animation-delay: 4.4s;
    -o-animation-delay: 4.4s;
    animation-delay: 4.4s
}

.area-box .pulse.delay-13 {
    -webkit-animation-delay: 0;
    -moz-animation-delay: 0;
    -o-animation-delay: 0;
    animation-delay: 0
}

.area-box .pulse.delay-14 {
    -webkit-animation-delay: .4s;
    -moz-animation-delay: .4s;
    -o-animation-delay: .4s;
    animation-delay: .4s
}

.area-box .pulse.delay-15 {
    -webkit-animation-delay: .8s;
    -moz-animation-delay: .8s;
    -o-animation-delay: .8s;
    animation-delay: .8s
}

.area-box .pulse.delay-16 {
    -webkit-animation-delay: 1.2s;
    -moz-animation-delay: 1.2s;
    -o-animation-delay: 1.2s;
    animation-delay: 1.2s
}

.area-box .pulse.delay-17 {
    -webkit-animation-delay: 1.6s;
    -moz-animation-delay: 1.6s;
    -o-animation-delay: 1.6s;
    animation-delay: 1.6s
}

.area-box .pulse.delay-18 {
    -webkit-animation-delay: 2s;
    -moz-animation-delay: 2s;
    -o-animation-delay: 2s;
    animation-delay: 2s
}

.area-box .pulse.delay-19 {
    -webkit-animation-delay: 2.4s;
    -moz-animation-delay: 2.4s;
    -o-animation-delay: 2.4s;
    animation-delay: 2.4s
}

.area-box .pulse.delay-20 {
    -webkit-animation-delay: -.4s;
    -moz-animation-delay: -.4s;
    -o-animation-delay: -.4s;
    animation-delay: -.4s
}

.area-box .pulse.delay-21 {
    -webkit-animation-delay: -.8s;
    -moz-animation-delay: -.8s;
    -o-animation-delay: -.8s;
    animation-delay: -.8s
}

.area-box .pulse.delay-22 {
    -webkit-animation-delay: -1.2s;
    -moz-animation-delay: -1.2s;
    -o-animation-delay: -1.2s;
    animation-delay: -1.2s
}

.area-box .pulse.delay-23 {
    -webkit-animation-delay: 4s;
    -moz-animation-delay: 4s;
    -o-animation-delay: 4s;
    animation-delay: 4s
}

.area-box .pulse.delay-24 {
    -webkit-animation-delay: 4.4s;
    -moz-animation-delay: 4.4s;
    -o-animation-delay: 4.4s;
    animation-delay: 4.4s
}

.area-box .pulse.delay-25 {
    -webkit-animation-delay: 0;
    -moz-animation-delay: 0;
    -o-animation-delay: 0;
    animation-delay: 0
}

.area-box .pulse.delay-26 {
    -webkit-animation-delay: .4s;
    -moz-animation-delay: .4s;
    -o-animation-delay: .4s;
    animation-delay: .4s
}

.area-box .pulse.delay-27 {
    -webkit-animation-delay: .8s;
    -moz-animation-delay: .8s;
    -o-animation-delay: .8s;
    animation-delay: .8s
}

.area-box .pulse.delay-28 {
    -webkit-animation-delay: 1.2s;
    -moz-animation-delay: 1.2s;
    -o-animation-delay: 1.2s;
    animation-delay: 1.2s
}

.area-box .pulse.delay-29 {
    -webkit-animation-delay: 1.6s;
    -moz-animation-delay: 1.6s;
    -o-animation-delay: 1.6s;
    animation-delay: 1.6s
}

.area-box .pulse.delay-30 {
    -webkit-animation-delay: 2s;
    -moz-animation-delay: 2s;
    -o-animation-delay: 2s;
    animation-delay: 2s
}

.area-box .pulse.delay-31 {
    -webkit-animation-delay: 2.4s;
    -moz-animation-delay: 2.4s;
    -o-animation-delay: 2.4s;
    animation-delay: 2.4s
}

.area-box .pulse.delay-32 {
    -webkit-animation-delay: -.4s;
    -moz-animation-delay: -.4s;
    -o-animation-delay: -.4s;
    animation-delay: -.4s
}

.area-box .pulse.delay-33 {
    -webkit-animation-delay: -.8s;
    -moz-animation-delay: -.8s;
    -o-animation-delay: -.8s;
    animation-delay: -.8s
}

.area-box .pulse.delay-34 {
    -webkit-animation-delay: -1.2s;
    -moz-animation-delay: -1.2s;
    -o-animation-delay: -1.2s;
    animation-delay: -1.2s
}

.area-box .pulse.delay-35 {
    -webkit-animation-delay: 4s;
    -moz-animation-delay: 4s;
    -o-animation-delay: 4s;
    animation-delay: 4s
}

.area-box .pulse.delay-36 {
    -webkit-animation-delay: 4.4s;
    -moz-animation-delay: 4.4s;
    -o-animation-delay: 4.4s;
    animation-delay: 4.4s
}

.online-node .show-regin,
.region-list:hover .show-regin,
.underline-node .show-regin,
.waite-node .show-regin {
    height: 127px;
    opacity: 1;
}

.area-box .pulse {
    position: absolute;
    top: -28px;
    left: -28px;
    height: 66px;
    width: 66px;
    border: 2px solid #b7b7b7;
    -webkit-border-radius: 48px;
    -moz-border-radius: 48px;
    border-radius: 48px;
    -webkit-box-shadow: 0 0 4px #82878f, 0 0 10px #82878f inset;
    -moz-box-shadow: 0 0 4px #82878f, 0 0 10px #82878f inset;
    box-shadow: 0 0 4px #82878f, 0 0 10px #82878f inset;
    opacity: .12;
    filter: alpha(opacity=0);
    -webkit-animation: warn 2s ease-out both;
    -moz-animation: warn 2s ease-out both;
    -o-animation: warn 2s ease-out both;
    animation: warn 2s ease-out both;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    background: 0 0;
}

.show-regin {
    z-index: 66;
}

.show-regin {
    position: absolute;
    left: 2px;
    height: 0;
    top: 0;
    width: 11px;
    opacity: 0;
    -o-transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.region-list.active .show-regin span {
    position: relative;
    color: #13c5e1;
}

.show-regin span {
    width: 80px;
    position: absolute;
    left: 8px;
    top: -11px;
    padding: 6px 10px;
    font-size: 14px;
    color: #ccc;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    text-align: center;
    white-space: nowrap;
}

.indexmore {
    text-align: center;
    margin-top: 40px;
}

.indexmore a {
    display: inline-block;
    height: 40px;
    width: 140px;
    font-size: 16px;
    color: #fff;
    background: #2e7aff;
    border-radius: 30px;
    line-height: 40px;
}

.mytab .bd {
    text-align: center;
    font-size: 0;
}

.mytab .bd li {
    display: inline-block;
    ;
    width: 33.333%;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e5e5;
    font-size: 0;
    vertical-align: middle;
    cursor: pointer;
    position: relative;
}

.mytab .bd li img {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 10px;
    vertical-align: middle;
}

.mytab .bd li h3 {
    display: inline-block;
    font-size: 18px;
    height: 24px;
    line-height: 24px;
    font-weight: normal;
    vertical-align: middle;
    color: #333;

}

.mytab .bd li.on:after {
    display: block;
    content: '';
    width: 10px;
    height: 7px;
    position: absolute;
    left: 50%;
    margin-left: -5px;
    bottom: -1px;
    z-index: 2;
    background: url(../img/topjt.png) no-repeat center;
}

.mytab .bd li.on {
    border-bottom: 1px solid #2e7aff;

}

.mytab .bd li.on h3 {
    color: #2e7aff;
}

.mytab .hd {
    padding-top: 45px;
    background: url(../img/fabj.jpg) top center no-repeat;
    background-size: 100% auto;
}

.mytab .hd .hdbox {
    display: none;
}

.mytab .hd .hdbox.active {
    display: block;
}

.hdboxleft {
    float: left;
    width: 60%;
    padding-right: 25px;
}

.hdboxright {
    width: 40%;
    float: right;
    padding-left: 25px;
}

.hdboxleft h4 {
    font-size: 24px;
    color: #000;
    font-weight: normal;
    margin-bottom: 20px;
    line-height: 36px;
}

.hdboxleft p {
    line-height: 30px;
    font-size: 15px;
    margin-bottom: 15px;
}

.hdboxright {
    text-align: right;
}

.hdboxright img {
    display: inline-block;
    max-width: 100%;
    height: auto;
    margin-right:140px;
}

/*首页新闻*/
.newsindexpart {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.indexnewslist {
    margin-right: -20px;
    margin-bottom: -20px;
}

.indexnewslistbox {
    float: left;
    width: 50%;
    padding-right: 20px;
    margin-bottom: 20px;
}

.indexnewslistone {
    display: block;
    background: #fff;
    padding: 20px;
}

.indexnewslistone:hover {
    -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.newsimg {
    float: left;
    width: 35%;
}

.newstext {
    float: right;
    width: 65%;
    padding-left: 15px;
}

.newstext h3 {
    font-size: 16px;
    color: #333;
    line-height: 22px;
    margin-bottom: 7px;
    min-height: 44px;
}

.indexnewslistone:hover .newstext h3 {
    color: #2e7aff;
}

.newstext p {
    font-size: 14px;
    line-height: 22px;
    color: #666;
    margin-bottom: 6px;
     overflow: hidden;

    text-overflow: ellipsis;

    display: -webkit-box;

   -webkit-line-clamp: 2;

    -webkit-box-orient: vertical;
}

.newstags span {
    display: inline-block;
    margin-right: 15px;
    color: #999;
}

.newstags span i {
    padding-right: 3px;
}

/*首页行业服务*/
.hyfwlist {
    margin-right: -10px;
    margin-bottom: -10px;
}

.hybannerpart {
    height: 360px;
    background-position: center;
    background-position: center;
    background-size: cover;
    display: block;
    width: 100%;
    position: relative;
}

.hyfwbanner {
    float: left;
    width: 25%;
    padding-right: 10px;
    margin-bottom: 10px;
}

.hyfwlistone {
    float: left;
    height: 175px;
    width: 25%;
    padding-right: 10px;
    margin-bottom: 10px;
}

.hyfwtopright .hyfwlistone {
    width: 33.333%;
}

.hyfwtopright {
    float: left;
    width: 75%;
    margin-right: -10px;
}

.hybannercon {
    position: absolute;
    bottom: 45px;
    left: 15px;
    right: 15px;
    background: rgba(0, 0, 0, .3);
    padding: 10px;
    text-align: center;
}

.hybannercon h3 {
    color: #fff;
    font-weight: normal;
    font-size: 18px;
    line-height: 22px;
}

.hyfwbanner .swiper-pagination-bullet {
    width: 25px;
    background: #fff;
    border-radius: 0;
    opacity: 1;
}

.hyfwbanner .swiper-pagination-bullet-active {
    background: #2e7aff;
}

.hyfwbanner .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 2px;
}

.hyfwlistonebox {
    position: relative;
    cursor: pointer;

}

.hyfwimg {
    height: 175px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: opacity .4s ease;
    opacity: .3;
}

.hyfwlistonebox h3 {
    font-size: 22px;
    color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.fwtextcon {
    display: none;
    width: 100%;
    color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding: 0 35px;
    text-align: center;
}

.fwtextcon p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 10px;
}

.fwtextcon a {
    display: inline-block;
    height: 26px;
    line-height: 26px;
    border-radius: 3px;
    padding: 0 10px;
    color: #fff;
    border: 1px solid #e5e5e5;
}

.hyfwlistonebox:hover {
    background: #2e7aff !important;
}

.hyfwlistonebox:hover .hyfwimg {
    opacity: .5;
}

.hyfwlistonebox:hover h3 {
    display: none;
}

.hyfwlistonebox:hover .fwtextcon {
    display: block;
}

.hyfwtopright .hyfwlistone:nth-of-type(odd) .hyfwlistonebox {
    background: #979797;
}

.hyfwtopright .hyfwlistone:nth-of-type(even) .hyfwlistonebox {
    background: #000;
}

.hyfwbottom .hyfwlistone:nth-of-type(odd) .hyfwlistonebox {
    background: #000;
}

.hyfwbottom .hyfwlistone:nth-of-type(even) .hyfwlistonebox {
    background: #979797;
}

/*首页客户案例*/
.anlipart {
    background: #f7f8fd;
}

.anlilists {
    margin-right: -20px;
    margin-bottom: -20px;
}

.main .anlilists {
    margin-bottom: 0;
}

.anlilists li {
    float: left;
    width: 20%;
    padding-right: 20px;
    margin-bottom: 20px;
}

.anlilists li .anlibox {
    padding: 25px 15px;
    background: #fff;
    border: 1px solid #e5e5e5;
    cursor: pointer;
}

.anlilists li .anlibox a {
    display: block;
    height: 50px;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-size: 210px 65px;
}

.anlilists li .anlibox:hover {
    -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/*首页免费试用*/
.mfsypart {
    background-image: url(../img/mfsybj.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.shiyongbox {
    text-align: center;
    color: #fff;
}

.shiyongbox h2 {
    font-size: 30px;
    font-weight: normal;
    margin-bottom: 15px;
}

.shiyongbox p {
    font-size: 18px;
    margin-bottom: 30px;
}

.shiyongbox a {
    display: inline-block;
    color: #fff;
    font-size: 16px;
    width: 140px;
    height: 40px;
    line-height: 38px;
    border: 1px solid #e5e5e5;
    border-radius: 3px;
}

/*底部样式*/
.footer {
    background: #2e3033;
}

.footertopleft {
    float: left;
    width: 40%;
    padding-right: 60px;
}

.footertopcenter {
    float: left;
    width: 37%;
}

.footertopright {
    float: left;
    width: 23%;
    margin-right: 35px;
}

.footertop {
    padding: 45px 0;
}

.footertopleft h3 {
    font-size: 16px;
    font-weight: normal;
    color: #fff;
    margin-bottom: 15px;
}

.footertopleft ul li a {
    display: block;
    line-height: 32px;
    color: #969799;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.footernav1>li {
    width: 50%;
    float: left;
}

.footernav1>li>a {
    font-size: 16px;
    font-weight: normal;
    color: #fff;
    margin-bottom: 15px;
    display: block;
}

.footernav1>li>.sub-menu li a {
    line-height: 32px;
    color: #969799;
    display: block;
}

.footertopright h3 {
    font-size: 16px;
    font-weight: normal;
    color: #fff;
    margin-bottom: 20px;
}

.footertopright span {
    display: block;
    color: #969799;
    margin-bottom: 3px;
}

.footertopright h2 {
    line-height: 36px;
    font-size: 36px;
    margin-bottom: 15px;
    background-image: linear-gradient(0deg, #2e7aff, #5894fc, #2e7aff);
    -webkit-background-clip: text;
    color: transparent;
}

.footertopright p {
    font-size: 16px;
    color: #fff;
    line-height: 24px;
}

.ewmbox {
    margin-top: 20px;
}

.ewmboxone {
    display: inline-block;
    margin-right: 20px;
    position: relative;
}

.ewmboxcon {
    display: none;
    position: absolute;
    width: 150px;
    background: #fff;
    padding: 10px;
    left: 0;
    bottom: 45px;
    text-align: center;
}

.ewmboxcon img {
    display: inline-block;
    width: 100%;
    height: auto;
    margin-bottom: 5px;
}

.ewmboxone span {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #6c6e82;
    border-radius: 50%;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
    transition: all .4s ease;
}

.ewmboxone span i {
    color: #fff;
    font-size: 24px;
}

.ewmboxone:hover span {
    background: #fff;
}

.ewmboxone:hover span i {
    color: #333;
}

.footercenter {
    padding: 10px 0;
    border-top: 1px solid #3d4043;
    position: relative;
}

.footercenter h3 {
    position: absolute;
    left: 0;
    top: 12px;
    color: #fff;
    font-size: 14px;
}

.footercenter ul {
    padding-left: 80px;
}

.footercenter ul li {
    display: inline-block;
    margin-right: 35px;
}

.footercenter ul li a {
    display: block;
    color: #969799;
    line-height: 24px;
}

.footerbottom {
    padding: 15px 0;
    text-align: center;
    border-top: 1px solid #3d4043;
    margin-top:15px;
}

.footernav2 {
    display: inline-block;
}

.footernav2 li {
    display: inline-block;
    padding: 0 10px;
}

.footernav2 li a {
    display: inline-block;
    color: #969799;
}

.copyright {
    margin: 10px 0px;
    color: #969799;
}

.copyright a {
    color: #969799;
}

.gabha {
    display: inline-block;
    vertical-align: middle;
}

.gabha img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}

.gabha span {
    display: inline-block;
    vertical-align: middle;
    color: #969799;
}

.footerimglist {
    margin-top: 15px;
}

.footerimglist li {
    display: inline-block;
    padding: 0 5px;
}

.footerimglist li a {
    display: block;
}

.footerimglist li a img {
    height: 50px;
    width: auto;
}

/*案例列表*/
.nybanner {
    height: 440px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.nybannertext {
    position: absolute;
    color: #fff;
    top: 50%;
    left: 50%;
    text-align: center;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
}

.main {
    background: #f9f9f9;
}

.bread {
    padding: 20px 0;
}

.bread span i {
    padding-right: 5px;
    color: #2e7aff;
}

.nybannertext h1 {
    font-size: 36px;
    font-weight: normal;
    margin-bottom: 10px;
}

.nybannertext span {
    display: block;
    font-size: 16px;
}

.page_navi {
    padding-bottom: 30px;
}

.page_navi a {
    display: inline-block;
    padding: 7px 15px;
    background: #fff;
    margin: 2px;
    transition: all .4s ease;
}

.page_navi a:hover,
.page_navi a.current {
    background: #2e7aff;
    color: #fff;
}

/*新闻列表*/
.submenu {
    height: 50px;
    line-height: 50px;
    background: rgba(0, 0, 0, .2);
    margin-top: -50px;
    position: relative;
    z-index: 2;
}

.submenu ul {
    text-align: center;
    font-size: 0;
}

.submenu ul li {
    display: inline-block;
    font-size: 0;
    padding: 0 1px;
}

.submenu ul li a {
    display: block;
    color: #fff;
    font-size: 16px;
    height: 50px;
    line-height: 50px;
    padding: 0 70px;
}

.submenu ul li:hover a,
.submenu ul li.current-cat a,
.submenu ul li.current_page_item a {
    background: #2d7afe;
}

.listone {
    background: #fff;
    padding: 25px;
    margin-bottom: 25px;
}

.listone:hover {
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.1);
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.1);
}

.listleft {
    float: left;
    width: 25%;
    padding-right: 25px;
}

.listright {
    float: right;
    width: 75%;
}

.listright a h3 {
    font-size: 20px;
    color: #000;
    margin-bottom: 15px;
}

.listright p {
    font-size: 15px;
    color: #666;
    line-height: 30px;
    margin-bottom: 20px;
}

.listright .newstags span i {
    color: #2d7afe;
}

.listright .newstags .tags {
    float: right;
    margin-right: 0;
}

.listright .newstags .tags a {
    padding-left: 5px;
    color: #999;
}

.listright .newstags .tags a:hover {
    color: #2d7afe;
}

.headerheight {
    height: 80px;
}

/*文章详情页*/
.pagepartbox {
    background: #fff;
    padding: 55px 50px;
}

.pagetop {
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 30px;
}

.pagetop h1 {
    font-size: 30px;
    color: #000;
    font-weight: normal;
    margin-bottom: 15px;
}

.pagetopbottom .newstags span i {
    color: #2d7afe;
}

.pagecon .pagecontent p {
    color: #333;
    font-size: 16px;
    line-height: 34px;
    margin-bottom: 20px;
}

.pagecon .pagecontent p a {
    color: #2d7afe;
}

.pagecon .pagecontent p img {
    max-width: 100%;
    height: auto;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.aligncenter p.wp-caption-text {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.pagecon .pagecontent h1 {
    font-size: 24px;
    margin-bottom: 20px;
}

.pagecon .pagecontent h2 {
    font-size: 22px;
    margin-bottom: 20px;
}

.pagecon .pagecontent h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.pagecon .pagecontent h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.pagecon .pagecontent h5 {
    font-size: 16px;
    margin-bottom: 20px;
}

.pagecon .pagecontent ul,
.pagecon .pagecontent ol {
    margin-bottom: 26px !important;
    padding: 15px;
    background: #fafafa;
    border-radius: 3px;
    border: 1px solid #efefef;
}

.pagecon .pagecontent ul li {
    line-height: 34px;
    color: #333;
    font-size: 15px;
    list-style-type: circle;
    list-style-position: inside;
    margin-bottom: 15px;
}

.pagecon .pagecontent ol li {
    line-height: 34px;
    color: #333;
    font-size: 15px;
    list-style-type: decimal;
    list-style-position: inside;
    margin-bottom: 15px;
}

.pagecon .pagecontent table {
    border: 1px solid #efefef;
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 26px;
}

.pagecon .pagecontent table tr:nth-child(odd) {
    background: #fafafa;
}

.pagecon .pagecontent table tr {
    height: 40px;
    line-height: 40px;
}

.pagecon .pagecontent table tr td {
    border: 1px solid #efefef;
    padding: 0 15px;
}

.wp-video {
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

.prenext {
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
    margin-top: 20px;
}

.prenext p {
    color: #333;
    font-size: 16px;
    line-height: 36px;
}

.prenext p a {
    color: #333;
}

.prenext p a:hover {
    color: #2d7afe;
}

.tagslist {
    color: #333;
    font-weight: bold;
    margin-top: 30px;
}

.tagslist a {
    font-weight: normal;
    color: #666;
    padding: 7px 20px;
    margin-right: 10px;
    display: inline-block;
    background: #fafafa;
    margin-bottom: 10px;
}

.tuijianbox {
    background: #fff;
    padding: 35px 50px;
    margin-top: 25px;
}

.main1 {
    padding-bottom: 25px;
}

.tuijiantitle h2 {
    font-size: 20px;
    font-weight: normal;
    color: #000;
    padding-bottom: 10px;
    margin-bottom: 25px;
    border-bottom: 1px solid #e5e5e5;
}

.tuijianbox .indexnewslistone {
    padding: 0;
}

.tuijianbox .indexnewslistone:hover {
    box-shadow: none;
}

.tuijianbox .newstext h3 {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: auto;
    margin-bottom: 15px;
}

.tuijianbox .newstext p {
    margin-bottom: 15px;
}

/*服务列表*/
.ywfwlist li {
    padding: 45px 0;
    border-bottom: 1px solid #e5e5e5;
}

.ywfwone {
    width: 35%;
    padding: 0 4.6%;
    text-align: center;
}

.ywfwone img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

.ywfwtwo {
    width: 65%;
    padding-top: 30px;
}

.ywfwlist li:nth-child(odd) .ywfwone {
    float: left;
}

.ywfwlist li:nth-child(even) .ywfwone {
    float: right;
}

.ywfwlist li:nth-child(odd) .ywfwtwo {
    float: left;
}

.ywfwlist li:nth-child(even) .ywfwtwo {
    float: right;
}

.ywfwtwo h3 {
    font-size: 24px;
    color: #000;
    margin-bottom: 5px;
}

.ywfwtwo span {
    display: block;
    font-size: 16px;
    color: #999;
    text-transform: uppercase;
}

.ywfwtwo p {
    font-size: 16px;
    color: #666;
    line-height: 36px;
    margin: 20px 0;
}

.ywfwtwo a {
    display: inline-block;
    height: 40px;
    line-height: 40px;
    width: 140px;
    border-radius: 3px;
    color: #fff;
    font-size: 15px;
    background: #2d7afe;
    text-align: center;
}

/*关于我们页面*/
.meleft {
    width: 55%;
    float: left;
    padding-right: 30px;
}

.meright {
    width: 45%;
    float: right;
    text-align: right;
}

.meright img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}

.meleft h2 {
    font-size: 16px;
    color: #2d7afe;
    margin-bottom: 20px;
}

.meleft h3 {
    font-size: 36px;
    color: #000;
    font-weight: 100;
    margin-bottom: 20px;
}

.metext p {
    font-size: 16px;
    color: #666;
    line-height: 36px;
    margin-bottom: 15px;
}

.meyewu {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.ywptlist {
    margin-right: -20px;
}

.ywptlistpart {
    float: left;
    width: 25%;
    padding-right: 20px;
}

.ywptlistone {
    background: #fff;
    border-radius: 3px;
    text-align: center;
    padding: 40px 30px;
    cursor: pointer;
    transition: all .4s ease;
    position: relative;
    -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.ywptlistone:after {
    content: '';
    height: 2px;
    border-radius: 0 0 3px 3px;
    background: #2d7afe;
    position: absolute;
    left: 0;
    width: 0%;
    bottom: 0;
    z-index: 22;
    transition: all .4s ease;
}

.ywptlistone:hover:after {
    content: '';
    height: 2px;
    border-radius: 0 0 3px 3px;
    background: #2d7afe;
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;
    z-index: 22;
}

.ywpticon {
    width: 48px;
    height: 48px;
    display: inline-block;
    margin-bottom: 15px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.ywptlistone h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
    font-weight: normal;
}

.ywptlistone p {
    color: #666;
    line-height: 24px;
    margin-bottom: 35px;
}

.ywptlistone a {
    display: inline-block;
    height: 30px;
    line-height: 28px;
    border-radius: 30px;
    color: #2d7afe;
    border: 1px solid #2d7afe;
    width: 100px;
    text-align: center;
    transition: all .4s ease;
}

.ywptlistone:hover h3 {
    color: #2d7afe;
}

.ywptlistone:hover a {
    color: #fff;
    background: #2d7afe;
}

.teamlayer {
    width: 60% !important;
    height: 80%;
    overflow-y: scroll !important;
}

.teamlayer .layui-layer-content {
    padding: 40px 50px;
}

/*大事记start*/
.event_box {
    width: 80%;
    margin: 0 auto;
    position: relative;
}

.event_box .parHd {
    width: 100%;
    display: inline-block;
    height: 96px;
    overflow: hidden;
}

.parHd ul {
    width: 100%;
    text-align: center;
    margin: 0 auto;
    padding-top: 25px !important;
}

.parHd .tempWrap {
    margin: 0 auto;
    width: 80% !important;
    position: relative;
    overflow: hidden;
}

.parHd .tempWrap:after {
    content: '';
    width: 100%;
    height: 1px;
    background: #ccc;
    position: absolute;
    /* top:33%;*/
    /* right:-140%;*/
    top: 38%;
    /* margin-top:-0.5px;*/
    z-index: 10;
}

.parHd li.no_line:before {
    display: none;
}

.parHd li {
    display: inline-block;
    cursor: pointer;
    padding-top: 30px;
    font-size: 16px;
    color: #000;
    margin: 0 30px;
    position: relative;
}

.parHd li:after {
    content: '';
    background: url(../img/dot_ico.png) no-repeat;
    width: 26px;
    height: 26px;
    position: absolute;
    z-index: 20;
    top: -9px;
    left: 50%;
    margin-left: -12px;
}

.parBd {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px
}

.parBd h4 {
    position: relative;
    font-size: 30px;
    color: #000;
    font-weight: normal;
    margin-top: 0;
    margin-bottom: 20px;
    /*width:200px;*/
    padding: 0 0px;
    display: inline-block;
    text-align: center;
}

.parBd .historycontent p {
    line-height: 24px;
    font-size: 14px;
    width: 80%;
    margin: 0 auto;
    margin-bottom: 15px;
}

div#listBox {
    width: 100%;
}

.sPrev,
.sNext {
    width: 38px;
    height: 38px;
    display: block;
    position: absolute;
    top: 10px;
    z-index: 99;
    cursor: pointer;
}

.sPrev {
    left: 0;
}

.sNext {
    right: 0;
}

.sPrev img,
.sNext img {
    transition: all .6s cubic-bezier(.51, 1.1, .9, .95);
    -moz-transition: all .6s cubic-bezier(.51, 1.1, .9, .95);
    -webkit-transition: all .6s cubic-bezier(.51, 1.1, .9, .95);
    -o-transition: all .6s cubic-bezier(.51, 1.1, .9, .95);
}

.parHd li.act span {
    display: block;
    width: 26px;
    height: 26px;
    overflow: hidden;
    background: url(../img/cat.png) no-repeat;
    position: absolute;
    top: -9px;
    left: 15px;
    z-index: 21;
}

.parHd li span,
.parHd li.clone span {
    display: none;
}

.parHd li.act {
    color: #0093dd;
}

.parBd .slideBox {
    display: none;
}

.jionuspart {
    background: #f7f8fd;
}

.zhiweilist {
    margin-right: -20px;
}

.zhiweione {
    float: left;
    width: 25%;
    padding-right: 20px;
}

.zhiweionebox {
    background: #fff;
    padding: 20px;
}

.zhiweionebox:hover {
    -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.zhiweititle {
    font-size: 16px;
    color: #000;
    margin-bottom: 10px;
}

.zhiweides {
    font-size: 14px;
    color: #999;
    line-height: 20px;
    margin-bottom: 15px;
}

.zhiweimore {
    display: inline-block;
    height: 30px;
    line-height: 28px;
    color: #2d7afe;
    border: 1px solid #2d7afe;
    padding: 0 15px;
    transition: all .4s ease;
}

.zhiweionebox:hover .zhiweimore {
    background: #2d7afe;
    color: #fff;
}

.lxwmbox {
    border: 1px solid #e5e5e5;
    padding: 35px 30px;
}

.lxwmboxleft {
    float: left;
    width: 67%;
    padding-right: 30px;
}

.lxwmboxright {
    float: right;
    width: 33%;
    padding-left: 30px;
    border-left: 1px solid #e5e5e5;
}

.lxwmboxleft h3,
.lxwmboxright h3 {
    font-size: 26px;
    color: #000;
    margin-bottom: 25px;
}

.lxwmboxleft .lydes {
    font-size: 14px;
    color: #333;
    margin-bottom: 25px;
}

div.wpforms-container-full .wpforms-form .wpforms-field-label {
    font-size: 14px !important;
    color: #333 !important;
    margin-bottom: 10px !important;
}

div.wpforms-container-full .wpforms-form input[type=date],
div.wpforms-container-full .wpforms-form input[type=datetime],
div.wpforms-container-full .wpforms-form input[type=datetime-local],
div.wpforms-container-full .wpforms-form input[type=email],
div.wpforms-container-full .wpforms-form input[type=month],
div.wpforms-container-full .wpforms-form input[type=number],
div.wpforms-container-full .wpforms-form input[type=password],
div.wpforms-container-full .wpforms-form input[type=range],
div.wpforms-container-full .wpforms-form input[type=search],
div.wpforms-container-full .wpforms-form input[type=tel],
div.wpforms-container-full .wpforms-form input[type=text],
div.wpforms-container-full .wpforms-form input[type=time],
div.wpforms-container-full .wpforms-form input[type=url],
div.wpforms-container-full .wpforms-form input[type=week],
div.wpforms-container-full .wpforms-form select,
div.wpforms-container-full .wpforms-form textarea {
    font-size: 14px !important;
    border: 1px solid #e5e5e5 !important;
    width: 100% !important;
}

div.wpforms-container-full .wpforms-form input.wpforms-field-medium,
div.wpforms-container-full .wpforms-form select.wpforms-field-medium,
div.wpforms-container-full .wpforms-form .wpforms-field-row.wpforms-field-medium {
    max-width: 100% !important;
}

div.wpforms-container-full .wpforms-form textarea {
    font-family: 'Microsoft YaHei', 'Arial';
    color: #666;
}

div.wpforms-container-full .wpforms-form input[type=submit],
div.wpforms-container-full .wpforms-form button[type=submit],
div.wpforms-container-full .wpforms-form .wpforms-page-button {
    background-color: #2d7afe !important;
    border: 1px solid #2d7afe !important;
    color: #fff !important;
    padding: 10px 35px !important;
    border-radius: 3px !important;
    font-size: 16px !important;
}

.lxwmtext p {
    color: #333;
    line-height: 22px;
    margin-bottom: 10px;
}

.lxwmtext {
    margin-bottom: 15px;
}

.ewmbox {
    margin-right: -10px;
    margin-bottom: -10px;
}

.aboutewmone {
    text-align: center;
    float: left;
    width: 33.333%;
    padding-right: 10px;
    margin-bottom: 10px;
}

.aboutewmone img {
    display: inline-block;
    border: 1px solid #e5e5e5;
    margin-bottom: 3px;
}

.aboutewmone span {
    display: inline-block;
    font-weight: bold;
    color: #333;
}

div.wpforms-container-full .wpforms-form label.wpforms-error {
    color: red !important;
    margin-top: 10px;
}

/*业务详情*/
.ywdesbox {
    background: #fafbfd;
    padding: 30px 40px;
    font-size: 16px;
    color: #333;
    line-height: 30px;
}

.ywmainbox .indexpart:nth-child(even) {
    background: #fafbfd;
}

.fwdetail .hdboxleft {
    width: 50%;
    padding-right: 15px;
}

.fwdetail .hdboxright {
    width: 50%;
    padding-left: 75px;
}

.fwdetail .mytab .hd {
    border-top: 1px solid #e5e5e5;
    margin-top: -1px;
    background: none;
}

.fwdetail .mytab .bd li {
    width: auto;
    padding: 0 25px 15px 25px;
}

.fwdetail .mytab .bd li h3 {
    font-size: 16px;
    display: block;
}

.fwdetail .mytab .bd li img {
    margin-right: 0;
    margin-bottom: 8px;
}

.tyform .wpforms-submit-container {
    text-align: center;
}

div.wpforms-container-full .wpforms-form .wpforms-one-half,
div.wpforms-container-full .wpforms-form .wpforms-three-sixths,
div.wpforms-container-full .wpforms-form .wpforms-two-fourths {
    width: 49% !important;
}

div.wpforms-container-full .wpforms-form .wpforms-one-half,
div.wpforms-container-full .wpforms-form .wpforms-three-sixths,
div.wpforms-container-full .wpforms-form .wpforms-two-fourths {
    width: 49% !important;
}

div.wpforms-container-full .wpforms-form .wpforms-five-sixths,
div.wpforms-container-full .wpforms-form .wpforms-four-sixths,
div.wpforms-container-full .wpforms-form .wpforms-four-fifths,
div.wpforms-container-full .wpforms-form .wpforms-one-fifth,
div.wpforms-container-full .wpforms-form .wpforms-one-fourth,
div.wpforms-container-full .wpforms-form .wpforms-one-half,
div.wpforms-container-full .wpforms-form .wpforms-one-sixth,
div.wpforms-container-full .wpforms-form .wpforms-one-third,
div.wpforms-container-full .wpforms-form .wpforms-three-fourths,
div.wpforms-container-full .wpforms-form .wpforms-three-fifths,
div.wpforms-container-full .wpforms-form .wpforms-three-sixths,
div.wpforms-container-full .wpforms-form .wpforms-two-fourths,
div.wpforms-container-full .wpforms-form .wpforms-two-fifths,
div.wpforms-container-full .wpforms-form .wpforms-two-sixths,
div.wpforms-container-full .wpforms-form .wpforms-two-thirds {
    margin-left: 2% !important;
}

.ywmainbox .ywfwone {
    width: 55%;
    padding: 0;
}

.ywmainbox .ywfwtwo {
    width: 45%;
    padding: 30px 4.6% 0 4.6%;
}

.ywmainbox .ywfwlist li:nth-child(odd) .ywfwone {
    float: right;
    text-align: right;
}

.ywmainbox .ywfwlist li:nth-child(even) .ywfwone {
    float: left;
    text-align: left;
}

.ywmainbox .ywfwlist li:nth-child(odd) .ywfwtwo {
    float: right;
}

.ywmainbox .ywfwlist li:nth-child(even) .ywfwtwo {
    float: left;
}

.ywmainbox .ywfwlist li:last-child {
    border: none;
}

.lcicon {
    width: 48px;
    height: 48px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 48px 48px;
    position: absolute;
    top: 0;
}

.lwpxlcbox {
    background-position: center;
    background-repeat: no-repeat;
    min-height: 435px;
}

.lwpxlcbox ul {
    margin-top: 20px;
}

.lwpxlcbox ul li {
    width: 50%;
}

.lcone {
    position: relative;
}

.lwpxlcbox ul li:nth-child(odd) {
    float: left;
    padding: 30px 13% 30px 11%;
}

.lwpxlcbox ul li:nth-child(even) {
    float: right;
    padding: 30px 11% 30px 13%;
}

.lwpxlcbox ul li:nth-child(odd) .lctext {
    text-align: right;
    padding-right: 65px;
}

.lwpxlcbox ul li:nth-child(odd) .lcicon {
    right: 0;
}

.lwpxlcbox ul li:nth-child(even) .lctext {
    text-align: left;
    padding-left: 65px;
}

.lwpxlcbox ul li:nth-child(even) .lcicon {
    left: 0;
}

.lctext h3 {
    font-size: 18px;
    color: #2299ee;
    margin-bottom: 5px;
}

.lctext p {
    color: #666;
    font-size: 14px;
    line-height: 20px;
    min-height: 40px;
}

.fanganlc .lwpxlcbox ul li {
    padding-top: 20px;
    padding-bottom: 20px;
}

.fays .ywptlistone p {
    margin-bottom: 10px;
    min-height: 72px;
}

.valuelist.fays .ywptlistone p {
    min-height: 48px;
    margin-bottom: 0;
}

.valuelist .ywptlistpart {
    width: 33.333%;
}

/*404*/
.errorpage {
    text-align: center;
    margin: 50px 0;
}

.errorimg img {
    width: 180px;
    height: auto;
    margin-bottom: 20px;
}

.errorpage h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #000;
}

.errorpage p {
    font-size: 16px;
}

.errorpage p a {
    color: #2299ee;
    padding: 0 5px;
}

/*弹出申请表单*/
.mxcover {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 9999;
}

.maixuntan {
    position: fixed;
    background: #fff;
    border-radius: 3px;
    top: 50%;
    left: 50%;
    width: 70%;
    height: 560px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding: 45px 50px;
}

.maixuntan h2 {
    text-align: center;
    color: #000;
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: normal;
}

.closebox {
    position: absolute;
    right: 20px;
    top: 20px;
    display: block;
}

.closebox i {
    color: #2299ee;
    font-size: 30px;
    font-weight: 100;
}

.kefu {
    position: fixed;
    top: 50%;
    right: 0;
    margin-top: -90px;
    z-index: 9998;
}

.kefu ul {
    background: #2299ee;
    border: 3px 0 0 3px;
    width: 60px;
    height: 180px;
}

.kefu ul li {
    border-bottom: 1px solid #1b64e4;
    text-align: center;
    padding: 9px 5px;
}

.kefu ul li:last-child {
    border: none;
}

.kefu ul li a {
    display: block;
}

.kefu ul li:hover {
    background: rgba(255, 255, 255, .2)
}

.kefu ul li i {
    display: block;
    color: #fff;
    font-size: 22px;
    margin-bottom: 1px;
}

.kefu ul li span {
    display: block;
    color: #fff;
    font-size: 12px;
}

/*移动端菜单*/
.phone-menu {
    display: none;
}

.iphone__screen {
    width: 100%;
    height: 50px;
    position: absolute;
    top: 0px;
    right: 0;
    left: 0;
    /*overflow: hidden;*/
    z-index: 999;

}

/**
* Navigation Defaults
*/
.nav {
    position: absolute;
    z-index: 100;
    opacity: 0;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 300ms;
    transition-duration: 300ms;
}

.nav--active {
    height: 100% !important;
}

.nav--active .nav {
    opacity: 1;
}

.nav__list {
    margin: 0;
    margin-top: 50px;
    border-top: 1px solid #e5e5e5;
    padding-top: 15px;
}

.nav__list li {
    list-style-type: none;
    text-align: center;
}

.nav__list li a {
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: none;
    color: #000;
    opacity: 1;
    -webkit-transition: opacity 300ms ease-in-out;
    transition: opacity 300ms ease-in-out;
    line-height: 40px;
}

.nav__list li a i {
    padding-right: 5px;
}

.nav__list li:hover a,
.nav__list li.current-menu-item a {
    color: #2e7aff;
}

/* Default navigation icon */
.nav__trigger {
    display: block;
    position: absolute;
    width: 60px;
    height: 50px;
    right: 0px;
    line-height: 50px;
    padding-top: 25px;
    z-index: 999;
    padding-left: 15px;
    padding-right: 15px;
}

.nav--active .nav__trigger {
    opacity: 0.5;
}

.nav--active .nav__icon {
    background: #2e7aff;
}

.nav--active .nav__icon:before {
    background: #2e7aff;
}

.nav--active .nav__icon:after {
    background: #2e7aff;
}

.nav__icon {
    display: inline-block;
    position: relative;
    width: 25px;
    height: 2px;
    background-color: #fff;
    -webkit-transition-property: background-color, -webkit-transform;
    transition-property: background-color, -webkit-transform;
    transition-property: background-color, transform;
    transition-property: background-color, transform, -webkit-transform;
    -webkit-transition-duration: 300ms;
    transition-duration: 300ms;
    margin-bottom: 3px;
}

.nav__icon:before,
.nav__icon:after {
    content: '';
    display: block;
    width: 25px;
    height: 2px;
    position: absolute;
    background: #fff;
    -webkit-transition-property: margin, -webkit-transform;
    transition-property: margin, -webkit-transform;
    transition-property: margin, transform;
    transition-property: margin, transform, -webkit-transform;
    -webkit-transition-duration: 300ms;
    transition-duration: 300ms;
}

.headerfull .nav__icon,
.headerfull .nav__icon:before,
.headerfull .nav__icon:after {
    background: #2e7aff;
}

.headerfulln .nav__icon,
.headerfulln .nav__icon:before,
.headerfulln .nav__icon:after {
    background: #2e7aff;
}

.heishow .whitelogo {
    display: none !important;
}

.heishow .darklogo {
    display: block !important;
}

.nav__icon:before {
    margin-top: -9px;
}

.nav__icon:after {
    margin-top: 9px;
}

/* Don't nest if you don't have to. */
/**
* Style #1
*/
.style-1 .nav {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    width: 0;
    top: 0;
}

.style-1 .nav__link {
    opacity: 0;
    -webkit-transition-delay: 500ms;
    transition-delay: 500ms;
}

.style-1 .nav--active .nav__link {
    opacity: 1;
    font-size: 16px;
    line-height: 45px;
}

.style-1 .nav--active .nav {
    position: fixed;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    height: 100% !important;
    width: 100%;
    background: #fff;
    border-top: 1px solid #e5e5e5;
    opacity: 1;
}

.style-1 .nav--active .nav__icon {
    background: rgba(223, 85, 18, 0);
}

.style-1 .nav--active .nav__icon:before {
    margin-top: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.style-1 .nav--active .nav__icon:after {
    margin-top: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

@media (max-width: 1000px) {
    .fwtextcon {
        padding: 0 15px;
    }

    .phone-menu {
        display: block;
        height: 100%;
    }

    .aboutewmone {
        width: 50%;
    }

    .aboutewmone span {
        font-size: 12px;
    }

    .txtMarquee-left .bd {
        padding-right: 70px !important;
    }

    .lxwmboxright {
        width: 100%;
        padding-left: 0;
        border: none;
    }

    .txtMarquee-left .bd ul li {
        padding-right: 5px;
    }

    .lxwmboxleft .lydes {
        margin-bottom: 15px;
        text-align: center;
    }

    .lxwmboxleft h3,
    .lxwmboxright h3 {
        font-size: 18px;
        margin-bottom: 15px;
        text-align: center;
    }

    .lxwmboxleft {
        width: 100%;
        padding-right: 0;
    }

    .lxwmbox {
        padding: 25px 15px;
    }

    .teamlayer .layui-layer-content {
        padding: 20px;
    }

    .teamlayer {
        width: 90% !important;
        height: 90% !important;
    }

    .zhiweione {
        width: 100%;
        padding-right: 10px;
        margin-bottom: 10px;
        text-align: center;
    }

    .zhiweilist {
        margin-right: -10px;
        margin-bottom: -10px;
    }

    .parBd .historycontent p {
        width: 100%;
        margin-bottom: 10px;
    }

    .parBd h4:after {
        display: none;
    }

    .parBd h4:before {
        display: none;
    }

    .parBd h4 {
        font-size: 18px;
    }

    .parHd ul {
        overflow: hidden;
        overflow-x: auto;
        white-space: nowrap;
        float: none;
        position: relative;
    }

    .parHd li.act span {
        left: 12px;
    }

    .parHd li {
        font-size: 14px;
        margin: 0 15px;
    }

    .parHd .tempWrap {
        width: 70% !important;
    }

    .event_box {
        width: 100%;
    }

    .ywptlistone a {
        font-size: 12px;
        width: 80px;
    }

    .ywptlistone p {
        font-size: 12px;
        margin-bottom: 20px;
        line-height: 22px;
        height: 36px;
    }

    .meright {
        width: 100%;
        text-align: center;
    }

    .metext p {
        font-size: 15px;
        line-height: 30px;
    }

    .meleft h3 {
        font-size: 18px;
        margin-bottom: 10px;
        font-weight: bold;
        text-align: center;
    }

    .meleft h2 {
        font-size: 14px;
        margin-bottom: 10px;
        text-align: center;
    }

    .meleft {
        width: 100%;
        padding-right: 0;
    }

    .tuijianbox .indexnewslistbox {
        margin-bottom: 15px;
    }

    .tuijiantitle h2 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .tuijianbox {
        margin-top: 15px;
        padding: 20px 15px;
    }

    .prenext p {
        font-size: 15px;
        line-height: 30px;
    }

    .pagecon .pagecontent p {
        font-size: 15px;
        line-height: 30px;
        margin-bottom: 15px;
    }

    .pagetop {
        margin-bottom: 10px;
    }

    .pagetop h1 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .pagepartbox {
        padding: 20px 15px;
    }

    .listright .newstags .tags {
        display: none;
    }

    .listright p {
        display: none;
    }

    .listright a h3 {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .listright {
        width: 70%;
    }

    .listleft {
        width: 30%;
        padding-right: 10px;
    }

    .listone {
        padding: 15px;
        margin-bottom: 10px;
    }

    .bread {
        padding: 10px 0;
        display: block;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .submenu ul li:hover a,
    .submenu ul li.current-cat a,
    .submenu ul li.current_page_item a {
        color: #fff;
    }

    .submenu ul li a {
        font-size: 15px;
        height: 35px;
        line-height: 35px;
        color: #333;
        padding: 0 15px;
    }

    .submenu ul {
        overflow-x: auto;
        white-space: nowrap;
        float: none;
        position: relative;
    }

    .submenu {
        height: 35px;
        line-height: 35px;
        margin-top: 0;
        background: #fff;
        border-bottom: 1px solid #e5e5e5;
    }

    .fays .ywptlistone p {
        font-size: 12px;
        line-height: 22px;
        min-height: 88px;
    }

    .ywptlistone h3 {
        font-size: 16px;
        margin-bottom: 7px;
    }

    .tuijianbox .newstext h3 {
        margin-bottom: 5px;
    }

    .listright a h3 {
        line-height: 18px;
        height: 36px;
        overflow: hidden;
        margin-bottom: 0px;
    }

    .ywptlistone {
        padding: 20px 15px;
    }

    .ywpticon {
        width: 42px;
        height: 42px;
        margin-bottom: 10px;
    }

    .ywptlistpart {
        width: 50%;
        padding-right: 10px;
        margin-bottom: 10px;
    }

    .ywptlist {
        margin-bottom: -10px;
        margin-right: -10px;
    }

    .ywmainbox .ywfwtwo {
        width: 100%;
        padding: 0;
    }

    .ywmainbox .ywfwone {
        width: 100%;
    }

    .ywmainbox .ywfwlist li:nth-child(odd) .ywfwone {
        float: left;
        text-align: center;
    }

    .lctext h3 {
        font-size: 16px;
    }

    .lwpxlcbox {
        min-height: auto;
    }

    .lwpxlcbox ul li .lcicon {
        left: 0 !important;
    }

    .lwpxlcbox ul li .lctext {
        text-align: left !important;
        padding-left: 55px;
        padding-right: 0 !important;
    }

    .lwpxlcbox ul {
        margin-top: 0;
        margin-right: -20px;
        margin-bottom: -20px;
    }

    .lwpxlcbox ul li {
        float: left !important;
        padding: 0 20px 0 0 !important;
        margin-bottom: 20px;
    }

    .lwpxlcbox {
        background: none !important;
    }

    .ywmainbox .anlilists li:last-child {
        display: none !important;
    }

    div.wpforms-container-full .wpforms-form input[type=submit],
    div.wpforms-container-full .wpforms-form button[type=submit],
    div.wpforms-container-full .wpforms-form .wpforms-page-button {
        font-size: 14px !important;
        padding: 7px 20px !important;
    }

    .fwdetail .hdboxright {
        width: 100%;
        padding-left: 0;
    }

    .fwdetail .hdboxleft {
        width: 100%;
        padding-right: 0;
    }

    .ywdesbox {
        padding: 15px;
        font-size: 14px;
        line-height: 24px;
    }

    .header:hover {
        height: 50px;
    }

    .header:hover .logo {
        top: 15px;
    }

    .header:hover .nav__icon,
    .header:hover .nav__icon:before,
    .header:hover .nav__icon:after {
        background: #2e7aff;
    }

    .closebox i {
        font-size: 24px;
    }

    .maixuntan h2 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .maixuntan {
        width: 90%;
        height: 90%;
        padding: 30px 20px;
    }

    .ywfwtwo a {
        height: 35px;
        line-height: 35px;
        font-size: 14px;
        width: 120px;
    }

    .ywfwtwo p {
        margin: 10px 0;
        font-size: 14px;
        line-height: 24px;
    }

    .ywfwtwo span {
        font-size: 14px;
    }

    .ywfwtwo h3 {
        font-size: 18px;
    }

    .ywfwtwo {
        width: 100%;
        padding-top: 0;
        text-align: center;
    }

    .ywfwone {
        width: 100%;
        margin-bottom: 15px;
    }

    .ywfwlist li {
        padding: 25px 0;
    }

    .nybannertext span {
        font-size: 13px;
    }

    .nybannertext h1 {
        font-size: 18px;
    }

    .nybanner {
        height: 180px;
    }

    .footerimglist li a img {
        height: 30px;
    }

    .copyright p {
        font-size: 13px;
    }

    .footernav2 li a {
        font-size: 13px;
    }

    .footercenter {
        display: none;
    }

    .footertop {
        display: none;
    }

    .shiyongbox a {
        width: 120px;
        height: 35px;
        line-height: 34px;
        font-size: 14px;
    }

    .shiyongbox p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .shiyongbox h2 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .anlilists li .anlibox a {
        height: 30px;
    }

    .anlilists li .anlibox {
        padding: 15px;
    }

    .anlilists li {
        width: 33.333%;
        padding-right: 10px;
        margin-bottom: 10px;
    }

    .anlilists {
        margin-right: -10px;
        margin-bottom: -10px;
    }

    .fwtextcon a {
        font-size: 14px;
    }

    .fwtextcon p {
        font-size: 12px;
        line-height: 20px;
    }

    .hyfwlistonebox h3 {
        font-size: 18px;
    }

    .hyfwimg {
        height: 150px;
    }

    .hyfwbottom {
        display: none;
    }

    .hyfwtopright {
        width: 100%;
    }

    .hyfwlistone {
        width: 50%;
    }

    .hyfwlistone {
        height: 150px;
    }

    .hyfwtopright .hyfwlistone {
        width: 50%;
    }

    .hyfwbanner .swiper-pagination-bullet {
        width: 15px;
        height: 3px;
    }

    .hybannercon h3 {
        font-size: 16px;
    }

    .hybannercon {
        bottom: 30px;
    }

    .hybannerpart {
        height: 240px;
    }

    .hyfwbanner {
        width: 100%;
    }

    .fanganlc .lctext p {
        min-height: 80px;
    }

    .newstext h3 {
        font-size: 15px;
        min-height: auto;
        height: 36px;
        overflow: hidden;
        line-height: 18px;
        margin-bottom: 3px;
    }

    .newstags span:nth-child(2) {
        display: none;
    }

    .newstext {
        width: 70%;
        padding-left: 10px;
    }

    .newsimg {
        width: 30%;
    }

    .newstext p {
        display: none;
    }

    .indexnewslistone {
        padding: 15px;
    }

    .indexnewslist {
        margin-bottom: -10px;
    }

    .indexnewslistbox {
        width: 100%;
        margin-bottom: 10px;
    }

    .hdboxleft p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 10px;
    }

    .hdboxleft h4 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .hdboxright img {
        width: 100%;
    }

    .hdboxright {
        width: 100%;
        padding-left: 0;
    }

    .hdboxleft {
        width: 100%;
        padding-right: 0;
        margin-bottom: 15px;
    }

    .mytab .hd {
        padding-top: 20px;
    }

    .mytab .bd li img {
        width: 18px;
        height: 18px;
    }

    .mytab .bd li {
        width: auto;
        padding: 0 15px 10px 15px;
    }

    .mytab .bd {
        overflow-x: auto;
        white-space: nowrap;
        float: none;
        position: relative;
    }

    .mytab .bd li h3 {
        font-size: 16px;
        height: 18px;
        line-height: 18px;
    }

    .indexmore a {
        font-size: 14px;
        height: 35px;
        width: 120px;
        line-height: 35px;
    }

    .indexmore {
        margin-top: 25px;
    }

    .righttext p {
        margin-bottom: 15px;
        font-size: 14px;
        line-height: 22px;
    }

    .righttext {
        width: 100%;
        padding-left: 0;
    }

    .leftmap {
        width: 100%;
        padding-right: 0;
    }

    .whitetitle.indexparttitle p {
        font-size: 14px;
    }

    .serviceone p {
        font-size: 12px;
        line-height: 20px;
        margin-bottom: 15px;
    }

    .serviceone h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .serviceicon {
        width: 50px;
        height: 50px;
        background-size: cover;
        margin-bottom: 10px;
    }

    .serviceone {
        padding: 15px;
    }

    .servicebox {
        width: 50%;
        padding-right: 10px;
        margin-bottom: 10px;
    }

    .servicelists {
        margin-right: -10px;
        margin-bottom: -10px;
    }

    .indexparttitle {
        margin-bottom: 20px;
    }

    .indexparttitle p {
        font-size: 14px;
    }

    .indexparttitle h2:after,
    .whitetitle.indexparttitle h2:after {
        background-size: 30px;
        width: 30px;
        height: 29px;
    }

    .indexparttitle h2:before,
    .whitetitle.indexparttitle h2:before {
        background-size: 30px;
        width: 30px;
        height: 29px;
    }

    .indexparttitle h2 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .indexpart {
        padding: 25px 0;
    }

    .txtMarquee-left .bd {
        padding: 10px;
    }

    .txtMarquee-left {
        background-size: 60px;
        background-position: 10px center;
        padding-left: 70px;
    }

    .toutiao {
        margin-top: 20px;
    }

    .banner .swiper-container {
        --swiper-navigation-size: 30px;
    }

    .advantage {
        margin-top: 20px;
        display: none;
    }

    .banner .swiper-pagination-bullet {
        width: 10px;
        height: 2px;
    }

    .banner .swiper-container-horizontal>.swiper-pagination-bullets,
    .banner .swiper-pagination-custom,
    .swiper-pagination-fraction {
        bottom: 10px;
    }

    .bannercon a {
        margin-top: 0px;
        height: 30px;
        line-height: 28px;
        width: 80px;
        font-size: 13px;
    }

    .bannercon p {
        display: none;
    }

    .bannercon h2 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .bannerpart {
        height: 220px;
    }

    .kefu {
        display: none;
    }

    .header.headerfull .logo {
        top: 15px;
    }

    .header.headerfull {
        height: 50px;
    }

    .logo {
        top: 13px;
    }

    .logo a img {
        height: 24px;
    }

    .headermenu {
        display: none;
    }

    .header {
        height: 50px;
    }
}
/* 走马灯 */

.wrapper {
    width: 1200px;
    height: 150px;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
}

.box {
    width: 200px;
    height: 98px;
    position: absolute;
    /* background: red; */
    font-size: 25px;
    line-height: 100px;
    text-align: center;
}

.rq-code {
    display: flex;
}

.rq-codes {
    width: 156px;
    height: 175px;

}

.rq-codes>div {
    width: 150px;
    height: 150px;
    overflow: hidden;
}

.rq-codes>div img {
    width: 100%;
}

.rq-codes p {
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: white;
}


.rq-codese {
    margin-left: 50px;
}

.rq-codese p {
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: white;
}

