        /* 公共样式 */
        @-webkit-keyframes bouncedelay {

          0%,
          80%,
          to {
            -webkit-transform: scale(0)
          }

          40% {
            -webkit-transform: scale(1)
          }
        }

        @keyframes bouncedelay {

          0%,
          80%,
          to {
            -webkit-transform: scale(0);
            transform: scale(0)
          }

          40% {
            -webkit-transform: scale(1);
            transform: scale(1)
          }
        }

        ::-webkit-scrollbar-track-piece {
          width: 8px;
          background-color: #f0f0f0
        }

        ::-webkit-scrollbar {
          width: 8px;
          background-color: #00C0FF
        }

        ::-webkit-scrollbar-thumb {
          width: 8px;
          background-color: #333
        }

        ::-webkit-scrollbar-thumb:hover {
          width: 8px;
          background-color: #00C0FF
        }

/*
        @font-face {
          font-family: 'zcoolqingkehuangyouti';
          src: url('../css/font/font-hy.ttf');
        }*/

        body {
          background-color: #f3f3f3;
        }

        :focus {
          outline: -webkit-focus-ring-color auto 0;
        }

        .m-header.head {
          padding: 70px 0 100px 0;
          text-align: center;
          position: relative;
        }

        .m-header.head .title {
          font-size: 36px;
          color: #333;
        }

        .m-header.head .subtitle {
          font-size: 32px;
          color: #999;
          margin-top: 20px;
        }

        .m-header .line1 {
          position: absolute;
          bottom: 76px;
          left: 50%;
          margin-left: -64px;
          width: 136px;
          height: 5px;
          background: #005BB6;
        }

        /* 公共宽度 */
        .w12 {
          width: 1200px;
          margin: 0 auto;
        }


        /* 头部css */
        #header {
          position: fixed;
          width: 100%;
          top: 0;
          left: 0;
          z-index: 44;
          box-shadow: 4px 1px 12px 3px rgba(38, 49, 79, 0.2);
        }

        /* 欢迎头css */
        #header .welcome-bar {
          width: 100%;
          height: 50px;
          background-color: #014185;
        }

        #header .welcome-bar>.wrap {
          margin: 0 auto;
          height: 50px;
          line-height: 50px;
        }

        #header .welcome-bar>.wrap p {
          color: #FFFFFF;
          font-size: 18px;
        }

        /* 主导航css */
        #header .nav-wrapper {
          width: 100%;
          height: 90px;
          background: #fff;
        }

        #header .nav-wrapper .wrap .logo {
          height: 40px;
          margin: 25px 0 0 0;
        }

        #header .nav-wrapper .wrap .nav {
          font-size: 18px;
          line-height: 90px;
        }

        #header .nav-wrapper .wrap .nav-item {
          position: relative;
        }

        #header .nav-wrapper .wrap .nav-item>a {
          display: block;
          padding: 0 30px;
          font-weight: 100;
        }

        #header .nav-wrapper .wrap .nav-item:hover>a,
        #header .nav-wrapper .wrap .nav-item.active>a {
          font-weight: bold;
          color: #004EA2;
        }

        /* 二级导航 */
        #header .nav-wrapper .wrap .nav-item .subnav {
          position: absolute;
          top: 90px;
          left: 50%;
          line-height: 40px;
          overflow: hidden;
          width: 200px;
          text-align: center;
          background-color: #fff;
          box-shadow: 0 13px 42px 11px rgba(0, 0, 0, .05);
          opacity: 0;
          transition: all .36s ease;
          display: none;
          transform: translateX(-50%);
        }

        #header .nav-wrapper .wrap .nav-item .subnav a {
          display: block;
          font-size: 16px;
          line-height: 46px;
          transition: all .36s ease;

        }

        #header .nav-wrapper .wrap .nav-item:hover .subnav {
          visibility: visible;
          opacity: 1;
          display: block;
        }

        #sitecontent {
          padding-top: 140px;
        }

        #header .nav-wrapper .wrap .nav-item .subnav .sub-active a {
          background: #014185;
          color: #fff;
        }

        /* 首页轮播css */
        .slider .swiper-container {
          width: 100%;
          height: 500px;

        }

        .slider .swiper-slide {
          text-align: center;
          font-size: 18px;
          background: #fff;
          display: -webkit-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          -webkit-justify-content: center;
          justify-content: center;
          -webkit-box-align: center;
          -ms-flex-align: center;
          -webkit-align-items: center;
          align-items: center;
        }

        .swiper-button-prev::after,
        .swiper-button-next::after {
          display: none;
        }

        .swiper-button-next:focus,
        .swiper-button-prev:focus {
          outline: -webkit-focus-ring-color auto 0
        }

        .silder .swiper-container .swiper-button-next {
          width: 60px;
          height: 60px;
          background: url("../imgs/icon/right1.png") no-repeat center;
          -moz-transition: all .36s ease;
          -webkit-transition: all .36s ease;
          -o-transition: all .36s ease;
          -ms-transition: all .36s ease;
          transition: all .36s ease;
        }


        .silder .swiper-container .swiper-button-prev {
          width: 60px;
          height: 60px;
          background: url("../imgs/icon/left1.png") no-repeat center;
          -moz-transition: all .36s ease;
          -webkit-transition: all .36s ease;
          -o-transition: all .36s ease;
          -ms-transition: all .36s ease;
          transition: all .36s ease;
        }

        .silder .swiper-container .swiper-button-prev:hover {
          background: url("../imgs/icon/left2.png") no-repeat center;
        }

        .silder .swiper-container .swiper-button-next:hover {
          background: url("../imgs/icon/right2.png") no-repeat center;
        }


        /* 智能建造体系css */
        .construction {
          padding-bottom: 110px;
          background: #fff;
        }

        .construction .m-header {
          padding: 110px 0 120px;
        }

        .construction .cont .lists {
          margin-right: -8px;
        }

        .construction .cont .lists .item {
          position: relative;
          overflow: hidden;
          margin: 0 4px 0 0;
        }

        .construction .cont .lists .item .box1 {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          z-index: 8;
        }

        .construction .cont .lists .item .box2 {
          position: relative;
        }

        .construction .cont .lists .item .item-mask-top,
        .construction .cont .lists .item .item-mask-bottom {
          width: 100%;
          height: 50%;
          background: #014185;
          position: absolute;
        }

        .construction .cont .lists .item .item-mask-top {
          top: 0;
          left: 0;
          transition: all .36s ease;
        }

        .construction .cont .lists .item .item-mask-bottom {
          bottom: 0;
          left: 0;
          transition: all .36s ease;
        }

        .construction .cont .lists .item .box1-info {
          position: relative;
          padding-top: 46px;
        }

        .construction .cont .lists .item .item-icon {
          position: relative;
          top: 0;
          text-align: center;
          transition: all .26s ease;
        }

        .construction .cont .lists .item .item-icon img {
          display: inline-block;
          margin: 0 auto;
        }

        .construction .cont .lists .item .item-title {
          color: #fff;
          font-weight: bold;
          font-size: 20px;
          text-shadow: 0 0px 12px #65fffa;
          letter-spacing: 8px;
          text-align: center;
          padding: 0 20px;
          position: relative;
          bottom: 0;
          transition: all .26s ease;
        }

        .construction .cont .lists .item .item-mask {
          width: 100%;
          height: 100%;
          position: absolute;
          top: 0;
          left: 0;
          background: rgba(66, 72, 108, 0.8);
          z-index: 4;
        }

        .construction .cont .lists .item .description {
          width: 100%;
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          color: #fff;
          font-size: 16px;
          line-height: 32px;
          padding: 0 26px;
          z-index: 6;
          box-sizing: border-box;
        }

        .construction .cont .lists .item:hover .item-mask-top {
          top: -50%
        }

        .construction .cont .lists .item:hover .item-mask-bottom {
          bottom: -50%
        }

        .construction .cont .lists .item:hover .item-icon {
          top: -190px
        }

        .construction .cont .lists .item:hover .item-title {
          bottom: -140px
        }

        /* 智能工厂css */
        .factory {
          background: url("../imgs/factory-bg.png") no-repeat left center #f7f7f7;
          padding-bottom: 80px;
        }

        .gallery-top {
          height: 420px;
          width: 1040px;
        }

        .gallery-thumbs {
          width: 140px;
          height: 420px;
          padding: 10px;
          z-index: 20;
        }

        .gallery-thumbs .swiper-slide {
          height: 140px;
        }


        .gallery-top .swiper-slide .img-box {
          width: 500px;
          height: 400px;
        }

        .gallery-top .swiper-slide .img-box img {
          width: 100%;
        }

        .gallery-top .swiper-slide .info-box {
          padding: 38px 38px 0;
          text-align: center;
          width: 480px;
        }

        .gallery-top .swiper-slide .info-box .desc {
          font-size: 14px;
          color: #666;
          line-height: 36px;
          text-align: left;
        }

        .gallery-top .swiper-slide .details,
        .news .news-lists .details {
          display: inline-block;
          width: 136px;
          border: 1px solid #cbcbcb;
          line-height: 38px;
          height: 38px;
          padding: 0 18px;
          box-sizing: border-box;
          color: #999;
          font-size: 14px;
          text-align: center;
          border-radius: 50px;
          margin-top: 30px;
          transition: all .36s ease;
        }

        .gallery-top .swiper-slide .details:hover,
        .news .news-lists .details:hover {
          color: #fff;
          background: #004EA2;
        }

        .factory .m-header.head {
          padding-bottom: 70px;
        }

        .factory .m-header .line1 {
          bottom: 40px;
        }

        .factory .cont {
          position: relative;
          padding: 140px 0;
          margin-top: -20px;
        }

        .factory .cont .swiper-button-next,
        .factory .cont .swiper-button-prev {
          width: 140px;
          height: 140px;
          right: 10px;
          left: auto;
          border-left: 1px solid #cbcbcb;
          top: auto;
          box-sizing: border-box;
        }

        .factory .cont .swiper-button-next:focus,
        .factory .cont .swiper-button-prev:focus {
          outline: -webkit-focus-ring-color auto 0
        }

        .factory .cont .swiper-button-next {
          border-top: 1px solid #cbcbcb;
          bottom: 10px;
          background: url("../imgs/arrows-icon-down.png") no-repeat center #f7f7f7;
          z-index: 21;
        }

        .factory .cont .swiper-button-next::after,
        .factory .cont .swiper-button-prev::after {
          display: none
        }

        .factory .cont .swiper-button-prev {
          border-bottom: 1px solid #cbcbcb;
          top: 10px;
          background: url("../imgs/arrows-icon-up.png") no-repeat center;
          margin-top: 0;
        }

        .gallery-thumbs .swiper-slide {
          border-left: 1px solid #cbcbcb;
        }

        .gallery-thumbs .swiper-slide a {
          display: block;
          position: relative;
          width: 100%;
          height: 100%;
          text-align: center;
          font-weight: bold;
          color: #666;
        }

        .gallery-thumbs .swiper-slide a .title-box {
          position: absolute;
          top: 50%;
          left: 50%;
          width: 100%;
          transform: translate(-50%, -50%);
          font-size: 18px;
          line-height: 30px;
        }

        .gallery-thumbs .swiper-slide-thumb-active a {
          opacity: 1;
          color: #014185;
          background: #fff;
          box-shadow: 0 0px 10px #7d7d7d;
        }


        /* 智能装备css */
        .equipment {
          padding-bottom: 80px;
          background: #fff;
        }

        .equipment .cont {
          position: relative;
          width: 1200px;
          margin: 0 auto;
        }

        .equipment .cont .eq-lists {
          padding: 12px;
          box-sizing: border-box;
        }

        .equipment .cont .eq-lists .swiper-slide {
          box-shadow: 4px 1px 12px 3px rgba(38, 49, 79, 0.2);
        }

        .equipment .cont .eq-lists .swiper-slide .item-img {
          width: 100%;
          height: 275px;
          overflow: hidden;
        }

        .equipment .cont .eq-lists .swiper-slide .item-img img {
          -moz-transform: scale(1);
          -webkit-transform: scale(1);
          -o-transform: scale(1);
          -ms-transform: scale(1);
          transform: scale(1);
          -moz-transition: all .36s ease;
          -webkit-transition: all .36s ease;
          -o-transition: all .36s ease;
          -ms-transition: all .36s ease;
          transition: all .36s ease;
        }

        .equipment .cont .eq-lists .swiper-slide .item-info {
          padding: 20px;
          box-sizing: border-box;
          text-align: center;

          background: #fff;
        }

        .equipment .cont .eq-lists .swiper-slide .item-info .title {
          font-size: 18px;

          font-weight: bold;
          color: #333333;
          margin-bottom: 16px;
          -moz-transition: all .36s ease;
          -webkit-transition: all .36s ease;
          -o-transition: all .36s ease;
          -ms-transition: all .36s ease;
          transition: all .36s ease;
        }

        .equipment .cont .eq-lists .swiper-slide .item-info .desc {
          font-size: 14px;
          line-height: 28px;
          color: #999999;
          -moz-transition: all .36s ease;
          -webkit-transition: all .36s ease;
          -o-transition: all .36s ease;
          -ms-transition: all .36s ease;
          transition: all .36s ease;
        }

        .equipment .cont .eq-lists .swiper-slide:hover .item-img img {
          -moz-transform: scale(1.1);
          -webkit-transform: scale(1.1);
          -o-transform: scale(1.1);
          -ms-transform: scale(1.1);
          transform: scale(1.1);
        }

        .equipment .cont .eq-lists .swiper-slide:hover .item-info .title {
          color: #004EA2;
        }

        .equipment .cont .eq-lists .swiper-slide:hover .item-info .desc {
          color: #666;
        }

        .equipment .cont .swiper-button-next,
        .equipment .cont .swiper-button-prev,
        .wond-wrap .swiper-button-next,
        .wond-wrap .swiper-button-prev {
          width: 60px;
          height: 60px;
          border-radius: 50%;
          -moz-transition: all .26s ease;
          -webkit-transition: all .26s ease;
          -o-transition: all .26s ease;
          -ms-transition: all .26s ease;
          transition: all .26s ease;
        }

        .equipment .cont .swiper-button-next,
        .wond-wrap .swiper-button-next {
          background: url("../imgs/arrows-icon-right.png") no-repeat -62px 0 #e6e6e6;
          background-size: auto 100%;
          right: -152px;
        }

        .equipment .cont .swiper-button-prev,
        .wond-wrap .swiper-button-prev {
          background: url("../imgs/arrows-icon-left.png") no-repeat 0 0 #e6e6e6;
          background-size: auto 100%;
          left: -152px;
        }

        .equipment .cont .swiper-button-next:hover,
        .wond-wrap .swiper-button-next:hover {
          background: url("../imgs/arrows-icon-right.png") no-repeat 0 0 #fff;
          background-size: auto 100%;
          box-shadow: 0 0 30px rgba(65, 79, 165, 0.5);
        }

        .equipment .cont .swiper-button-prev:hover,
        .wond-wrap .swiper-button-prev:hover {
          background: url("../imgs/arrows-icon-left.png") no-repeat -62px 0 #fff;
          background-size: auto 100%;
          box-shadow: 0 0 30px rgba(65, 79, 165, 0.5);
        }

        @media screen and (max-width:1600px) and (min-width:1210px) {

          .equipment .cont .swiper-button-next {
            right: -75px;
          }

          .equipment .cont .swiper-button-prev {
            left: -75px;
          }
        }

        @media screen and (max-width:1200px) {
          .equipment .cont .swiper-button-next {
            right: 40px;
          }

          .equipment .cont .swiper-button-prev {
            left: 40px;
          }

        }

        .management {
          padding-bottom: 100px;
        }

        /* 物联网+智慧运营css */
        .internet {
          background: url("../imgs/inter-bg.png") no-repeat #f7f7f7;
          background-size: 100% 100%;
        }

        .internet .zpmenu {
          margin-top: 20px;
          width: 1200px;
          height: 470px;

          overflow: hidden;
          padding-bottom: 120px;
        }

        .internet .zpmenu dl {
          width: 1200px;
          height: 470px;
        }

        .internet .zpmenu dt {
          width: 220px;
          float: left;
          height: 470px;
          position: relative;
          overflow: hidden;
        }

        .internet .zpmenu dd {
          position: relative;
          width: 320px;
          display: block;
          float: left;
          height: 100%;
          overflow: hidden;
          background: #fff;
        }

        .internet .inter-img {
          width: 100%
        }

        .internet .inter-info {
          position: absolute;
          top: 0;
          height: 100%;
        }

        .internet .inter-info .inter-icon {
          width: 125px;
          height: 125px;
          margin: 92px 48px 52px;
          -moz-transition: all .36s ease;
          -webkit-transition: all .36s ease;
          -o-transition: all .36s ease;
          -ms-transition: all .36s ease;
          transition: all .36s ease;
        }

        .internet .zpmenu .desc {
          padding: 30px;
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          color: #999;
          width: 320px;
          font-size: 14px;
          box-sizing: border-box;
          line-height: 28px;
        }

        .internet .inter-info .inter-title {
          font-size: 24px;

          font-weight: bold;
          color: #FFFFFF;
          line-height: 40px;
          padding: 0 56px;
          text-align: center;
        }

        .internet .icon-jiao {
          position: absolute;
          bottom: 0;
          right: -22px;
          width: 42px;
          height: 42px;
          background: url("../imgs/icon-jiao.png") no-repeat;
          background-size: 100% 100%;
          -moz-transition: all .36s ease;
          -webkit-transition: all .36s ease;
          -o-transition: all .36s ease;
          -ms-transition: all .36s ease;
          transition: all .36s ease;
        }

        .internet .zpmenu .line1 {
          position: absolute;
          top: 0;
          right: 0px;
          width: 2px;
          height: 470px;
          background: url("../imgs/inter-line.png") no-repeat;
          background-size: 100% 100%;
        }

        .internet .zpmenu dt:hover .inter-info .inter-icon {
          margin-top: 76px
        }

        .internet .zpmenu dt:hover .icon-jiao {
          right: -1px;
        }




        /* 新闻中心css */
        .news .main-news {
          position: relative;
        }

        .news .main-news .image {
          width: 400px;
          height: 200px;
          position: absolute;
          top: 20px
        }

        .news .main-news .image img {
          width: 100%;
          height: 100%;
        }

        .news .main-news .info-box {
          margin-left: 340px;
          height: 240px;
          padding: 50px 170px 50px 100px;
          box-sizing: border-box;
          background: #fff;
        }

        .news .main-news .info-box .datebox {
          position: absolute;
          top: 52px;
          right: 30px;
        }

        .news .main-news .info-box .datebox .month,
        .news .news-lists .item .datebox .month {
          display: block;
          font-family: 'hyfont';
          font-size: 28px;
          font-family: 'zcoolqingkehuangyouti';
          font-weight: bold;
          color: #333;
          line-height: 30px;
        }

        .news .main-news .info-box .datebox .year,
        .news .news-lists .item .datebox .year {
          display: block;
          font-size: 14px;
          font-family: 'zcoolqingkehuangyouti';
          font-weight: 400;
          color: #666666;
          text-align: right;
        }



        .news .main-news .info-box .info .title,
        .news .news-lists .item .info .title {
          font-size: 18px;
          font-weight: bold;
          color: #333333;
          line-height: 30px;
          margin-bottom: 30px;
        }

        .news .main-news .info-box .info .description,
        .news .news-lists .item .info .description {
          font-size: 14px;
          height: 90px;
          font-weight: 400;
          color: #666666;
          line-height: 30px;
        }

        .news .news-lists {
          margin-top: 20px;
          margin-right: -10px;
          padding-bottom: 60px;
        }

        .news .news-lists .details {
          display: block;
          margin: 20px auto 0
        }

        .news .news-lists .item .datebox {
          width: 92px;
          height: 92px;
          background: #E9E7E7;
          -webkit-transition: all 0.3s ease-out 0s;
          -moz-transition: all 0.3s ease-out 0s;
          -o-transition: all 0.3s ease-out 0s;
          transition: all 0.3s ease-out 0s;
        }

        .news .news-lists .item .info {
          height: 190px;
          padding: 22px 26px;
          width: 490px;
          box-sizing: border-box;
          -webkit-transition: all 0.3s ease-out 0s;
          -moz-transition: all 0.3s ease-out 0s;
          -o-transition: all 0.3s ease-out 0s;
          transition: all 0.3s ease-out 0s;
        }

        .news .news-lists .item .datebox .month {
          text-align: center;
          padding-top: 22px;
          -webkit-transition: all 0.3s ease-out 0s;
          -moz-transition: all 0.3s ease-out 0s;
          -o-transition: all 0.3s ease-out 0s;
          transition: all 0.3s ease-out 0s;
        }

        .news .news-lists .item .datebox .year {
          padding: 0 10px;
          -webkit-transition: all 0.3s ease-out 0s;
          -moz-transition: all 0.3s ease-out 0s;
          -o-transition: all 0.3s ease-out 0s;
          transition: all 0.3s ease-out 0s;
        }

        .news .news-lists .item a {
          display: block;
        }

        .news .news-lists .item {
          width: 592px;
          margin-right: 8px;
          margin-bottom: 10px;
        }

        .news .news-lists .item .info .title {
          margin-bottom: 20px;
        }

        .news .news-lists .item:hover .datebox {

          background: #004EA2;
        }

        .news .news-lists .item:hover .datebox .month {
          color: #fff
        }

        .news .news-lists .item:hover .datebox .year {
          color: #fff
        }

        .news .news-lists .item:hover .info {
          box-shadow: 4px 7px 27px 3px rgba(38, 49, 79, 0.2);
          background: #fff;
        }

        /* 项目案例css */
        .case-page .pro-case {
          padding-top: 92px;
          padding-bottom: 80px;
          position: relative;
          background: #fff;
        }

        .case-page .pro-case .wrap {
          position: relative;
          z-index: 2;
        }

        .case-page .head-box .title,
        .join-page .head-box .title,
        .about-page .head-box .title,
        .news-page .head-box .title,
        .team-page .head-box .title {
          font-size: 28px;
          font-weight: bold;
          color: #333333;
          line-height: 30px;
        }

        .case-page .head-box .description {
          width: 604px;
          font-size: 14px;

          font-weight: 400;
          color: #666666;
          line-height: 30px;
          margin-top: 38px;
        }

        .line03 {
          width: 32px;
          margin-top: 38px;
          height: 2px;
          background: #004EA2;
        }

        .case-page .pro-case .bg-txt {
          position: absolute;
          top: 46px;
          left: 6%;
          font-size: 116px;
          opacity: 0.05;
          color: #03104A;
          font-weight: bold;
        }

        /*项目案例-服务客户css   */
        .case-page .client-wrap {
          background: #fff;
          padding-top: 52px
        }

        .case-page .client-wrap .map {
          height: 600px;
          width: 700px;
          display: flex;
          flex-direction: column;
        }

        .case-page .client-wrap .map .chart {
          flex: 1;
          background-color: rgba(255, 255, 255, 0.05);
        }

        .case-page .client-wrap .map .geo {
          width: 100%;
          height: 100%;
        }

        .case-page .client-map {
          position: relative;
        }

        .case-page .client-map .description {
          position: absolute;
          top: 50%;
          right: 0;
          padding: 40px 100px 40px 185px;
          width: 650px;
          background: rgba(255, 255, 255, .16);
          font-size: 14px;

          font-weight: 400;
          color: #333;
          line-height: 30px;
          box-shadow: 1px 2px 27px 3px rgba(4, 22, 83, 0.3);
          box-sizing: border-box;
          transform: translateY(-50%);
          margin-top: -40px;
        }


        .case-page .pro-case .pro-r-img {
          width: 536px;
          height: 300px;
          margin-top: 46px;
        }

        .case-page .pro-case .pro-r-img img {
          width: 100%;
        }

        /* 项目案例-合作伙伴css */
        .case-page .client-wrap .client-img {
          text-align: center;
          padding: 30px 0 50px;

        }

        .case-page .client-wrap .client-img .lists {
          margin-right: -10px;
        }

        .case-page .client-wrap .client-img .item {
          float: left;
          margin: 0 5px 5px 0;
        }

        /* 项目案例-标杆项目css */
        .benchmarking-wrap {
          padding: 60px 0
        }

        .benchmarking-wrap .lists {
          margin-right: -32px;
          margin-top: 40px;
        }

        .benchmarking-wrap .lists .item {
          width: 380px;
          margin-right: 30px;
          margin-bottom: 30px;
          float: left;
        }

        .benchmarking-wrap .lists .item a {
          display: block;
          width: 100%;
          height: 100%;
          position: relative;
          overflow: hidden;
          -webkit-transition: all 0.3s ease-out 0s;
          -moz-transition: all 0.3s ease-out 0s;
          -o-transition: all 0.3s ease-out 0s;
          transition: all 0.3s ease-out 0s;
        }

        .benchmarking-wrap .lists .item .image {
          width: 380px;
          height: 266px;
          overflow: hidden;
        }

        .benchmarking-wrap .lists .item .image img {
          height: 100%;
          width: 100%;
          -webkit-transition: all 0.3s ease-out 0s;
          -moz-transition: all 0.3s ease-out 0s;
          -o-transition: all 0.3s ease-out 0s;
          transition: all 0.3s ease-out 0s;
        }

        .benchmarking-wrap .lists .item .title {
          width: 100%;
          background: #FFF;
          height: 76px;
          line-height: 76px;
          text-align: center;
          border-bottom: 1px solid #f5f5f5;
          color: #333;
        }

        .benchmarking-wrap .lists .item .desc {
          font-size: 12px;
          margin-top: 16px;
          color: #666;
          line-height: 24px;
        }

        .benchmarking-wrap .lists .item .cont {
          position: absolute;
          bottom: -36%;
          padding: 20px 40px;
          background: #FFF;
          transition: all 0.3s ease-out 0s;
          -webkit-transition: all 0.3s ease-out 0s;
          -moz-transition: all 0.3s ease-out 0s;
          -o-transition: all 0.3s ease-out 0s;
        }

        .benchmarking-wrap .lists .item .cont .txt {
          text-align: center;
          color: #004EA2;
        }

        .benchmarking-wrap .lists .item a:hover {
          box-shadow: 0px 0px 20px #ccc;
          -moz-box-shadow: 0px 0px 20px #ccc;
          -ms-box-shadow: 0px 0px 20px #ccc;
          -webkit-box-shadow: 0px 0px 20px #ccc;
        }

        .benchmarking-wrap .lists .item a:hover .cont {
          bottom: 0px;
        }

        .benchmarking-wrap .lists .item a:hover .image img {
          transform: scale(1.1);
          -webkit-transform: scale(1.1);
          opacity: 0.9;
        }

        .honor-wrap {
          padding: 60px 0;
          position: relative;
        }

        .case-page .honor-wrap .head-box .title {
          text-align: center;
        }

        .case-page .honor-wrap .head-box .line03 {
          margin: 38px auto 0;
        }

        .honor-wrap .honor-swiper {
          padding: 36px 0 52px;
        }

        .honor-wrap .honor-swiper .image {
          padding: 15px 30px;
          background: #fff;
        }


        .honor-wrap .honor-swiper .swiper-slide.swiper-slide-active {
          box-shadow: 1px 2px 27px 3px rgba(112, 112, 112, 0.3);
        }

        .honor-wrap .honor-swiper .swiper-slide .mask {
          width: 100%;
          height: 100%;
          position: absolute;
          top: 0;
          left: 0;
          background: rgba(255, 255, 255, .5);
        }

        .honor-wrap .honor-swiper .swiper-slide.swiper-slide-active .mask {
          display: none
        }

        .honor-wrap .honor-swiper .swiper-slide .line04 {
          width: 100%;
          height: 2px;
          background: url("../imgs/line04.png")no-repeat;
          background-size: 100% auto;
        }

        .honor-wrap .honor-swiper .title {
          padding: 16px 20px;
          text-align: center;
          font-size: 16px;
          font-weight: bold;
          color: #333333;
          line-height: 30px;
          background: #fff;
        }

        .honor-wrap .honor-swiper .swiper-button-next,
        .honor-wrap .honor-swiper .swiper-button-prev {
          width: 40%;
          height: 100%;
          top: 0;
        }

        .honor-wrap .more {
          display: block;
          width: 168px;
          height: 72px;
          background: #fff;
          position: relative;
          z-index: 2;
          margin: 0 auto;
          padding: 1px;
          box-shadow: 1px 2px 27px 3px rgba(187, 187, 187, 0.3);
          margin-bottom: -28px;
          transition: all 0.3s ease-out 0s;
          -webkit-transition: all 0.3s ease-out 0s;
          -moz-transition: all 0.3s ease-out 0s;
          -o-transition: all 0.3s ease-out 0s;
        }

        .honor-wrap .more span {
          display: block;
          width: 90px;
          height: 36px;
          background: url("../imgs/icon/more-icon.png")no-repeat -101px 0px;
          margin: 18px 40px;
          transition: all 0.3s ease-out 0s;
          -webkit-transition: all 0.3s ease-out 0s;
          -moz-transition: all 0.3s ease-out 0s;
          -o-transition: all 0.3s ease-out 0s;
        }

        .honor-wrap .more:hover {
          background: #004EA2;
        }

        .honor-wrap .more:hover span {
          background: url("../imgs/icon/more-icon.png")no-repeat 0px 0px;
        }

        .honor-wrap .bg-box {
          position: absolute;
          bottom: 0px;
          width: 100%;
          height: 70px;
          background: #fff;
        }

        /* 公共底部footer */
        .footer {
          width: 100%;
          height: auto;
          background: #004EA2;
        }

        .footerA {
          margin: 0 auto;
          width: 1200px;
          height: 235px;
          overflow: hidden;
        }

        .footerA ul {
          float: left;
          overflow: hidden;
          width: 730px;
        }

        .footerA ul li {
          float: left;
          margin-right: 30px;
        }

        .footerA ul li a {
          font-size: 12px;
          color: #fff;
          line-height: 25px;
          display: block;
          font-weight: bold;
        }

        .footerA ul li a:focus,
        .footerA ul li a:hover {
          text-decoration: underline;
        }

        .footerA ul li a:first-child {
          font-size: 20px;
          color: #fff;
          font-weight: bold;
          line-height: 20px;
          margin: 40px 0 15px 0;
        }

        .footerA .footerAr {
          float: right;
          width: 430px;
          height: 145px;
          border-top: 1px solid #fff;
          border-bottom: 1px solid #fff;
          margin: 40px 0 0 20px;
          padding: 15px 0;
          box-sizing: border-box;
        }

        .footerA .footerAr p {
          color: #fff;
          font-size: 12px;
          line-height: 39px;
        }

        .footerA .footerAr p span {
          color: #fff;
          font-size: 18px;
        }

        .footerB {
          height: 50px;
          background: #014185;
          color: #fff;
          text-align: center;
          line-height: 50px;
          font-size: 12px;
        }



        /* 解决方案   简介css */

        .intro-wrap {
          padding-top: 60px;
          padding-bottom: 60px;
          background: #fff;
          position: relative;
        }

        .intro-wrap .intro-desc {
          width: 1181px;
          margin: 40px auto 20px;
          font-size: 14px;

          font-weight: 400;
          color: #666666;
          line-height: 30px;
        }

        .intro-wrap .intro-img {
          text-align: center;
        }

        .intro-wrap .intro-img img {
          width: auto;
          display: inline-block
        }


        /* 解决方案   精彩图片css */

        .wonderful {
          background: #fff;
          padding-top: 60px;
        }

        .wond-wrap {
          position: relative;
          padding: 60px 0 145px;
        }

        .wond-wrap .swiper-pagination {
          text-align: center;
          width: 100%;
          margin-top: 36px;
        }

        .wond-wrap .swiper-pagination-bullet {
          width: 12px;
          height: 12px;
          margin: 0 6px;
          display: inline-block;
          border-radius: 100%;
          background: #DCDCDC;

        }

        .wond-wrap .swiper-button-next,
        .wond-wrap .swiper-button-prev {
          margin-top: -64px;
        }

        .wond-wrap .swiper-pagination .swiper-pagination-bullet-active {
          background: #014185;
        }

        .h3-title {
          position: relative;
          padding-bottom: 38px;
          font-size: 28px;

          font-weight: bold;
          color: #333333;
          line-height: 30px;
          text-align: center;
        }

        .h3-title::after {
          content: '';
          position: absolute;
          width: 32px;
          height: 2px;
          background: #014185;
          bottom: 0px;
          left: 50%;
          margin-left: -16px;
        }




        .pro-cont {
          position: relative;
          padding: 108px 0;
        }

        .pro-cont .img {
          width: 1647px;
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
        }

        .pro-silder-wrap {
          position: relative;
          z-index: 3;
        }

        .pro-silder-wrap .info {
          width: 562px;
          position: absolute;
          top: 40%;
          left: 20px;
          transform: translateY(-50%)
        }

        .pro-silder-wrap .info .info-title {
          font-size: 38px;

          font-weight: bold;
          color: #FFFFFF;
          margin-bottom: 46px;
          text-shadow: 0px 2px 5px rgba(4, 22, 83, 0.3);
        }

        .pro-silder-wrap .info .info-desc {
          width: 562px;

          font-size: 14px;

          font-weight: 400;
          color: #FFFFFF;
          line-height: 30px;
          text-shadow: 0px 2px 3px rgba(4, 22, 83, 0.3);
        }

        .pro-swriper-wrap {
          position: relative;
        }

        .pro-swriper {
          height: 680px;
          padding: 20px;
          box-sizing: border-box;
        }

        .pro-swriper .swiper-slide {
          width: 500px;
          padding: 42px;
          box-sizing: border-box;
          background: #FFFFFF;
          border-radius: 20px;
          padding-left: 64px;
        }

        .pro-swriper .swiper-slide .title {
          position: relative;
          font-size: 22px;

          font-weight: bold;
          color: #333333;
          line-height: 30px;
          padding-bottom: 42px;
        }

        .pro-swriper .swiper-slide .title::after {
          content: '';
          position: absolute;
          bottom: 20px;
          left: 0;
          width: 210px;
          height: 1px;
          background: #dcdcdc;
        }

        .pro-swriper .swiper-slide .title .icon-loop {
          width: 10px;
          height: 10px;
          border: 5px solid #004ea2;
          position: absolute;
          top: 6px;
          left: -32px;
          border-radius: 50%;
        }

        .pro-swriper .swiper-slide .description {

          font-size: 14px;

          font-weight: 400;
          color: #666666;
          line-height: 30px;
        }

        .pro-swriper-wrap .swiper-button-next1,
        .pro-swriper-wrap .swiper-button-prev1 {
          position: absolute;
          width: 48px;
          height: 48px;
          border-radius: 2px;
          -moz-transition: all .26s ease;
          -webkit-transition: all .26s ease;
          -o-transition: all .26s ease;
          -ms-transition: all .26s ease;
          transition: all .26s ease;
          left: -52px;
          top: auto;
        }


        .pro-swriper-wrap .swiper-button-next1 {
          background: url("../imgs/icon/pro-icon-up1.png") no-repeat #fff;
          background-size: auto 100%;
          bottom: 120px;


        }


        .pro-swriper-wrap .swiper-button-prev1 {
          background: url("../imgs/icon/pro-icon-down1.png") no-repeat #fff;
          background-size: auto 100%;
          bottom: 56px;
        }


        .pro-swriper-wrap .swiper-button-next1:hover,.pro-swriper-wrap .swiper-button-next1.swiper-button-disabled {
          background: url("../imgs/icon/pro-icon-up.png") no-repeat rgba(255, 255, 255, 0.5);
          background-size: auto 100%;
        }


        .pro-swriper-wrap .swiper-button-prev1:hover,.pro-swriper-wrap .swiper-button-prev1.swiper-button-disabled {
          background: url("../imgs/icon/pro-icon-down.png") no-repeat rgba(255, 255, 255, 0.5);
          background-size: auto 100%;

        }


        /* 新闻中心页面css */
        .news-page {
          background: #fff;
        }

        .news-page .hots-news .head-box .title {
          text-align: center;
        }

        .news-page .hots-news .head-box .line03 {
          margin: 38px auto 0;
        }

        .news-page .hots-news {
          padding: 60px 0;
        }

        .news-page .hots-news .info {
          margin-top: 40px;
        }

        .news-page .hots-news .info .image {
          margin-bottom: 40px;
        }

        .news-page .hots-news .info .image img {
          width: 100%
        }

        .news-page .hots-news .info .title {
          font-size: 24px;
          font-weight: 500;
          color: #333333;
          line-height: 30px;
        }

        .hots-news .info .description {
          margin-top: 32px;
          font-size: 14px;
          font-family: Source Han Sans CN;
          font-weight: 400;
          color: #666666;
          line-height: 30px;
        }

        .news-page .hots-news .info .details-btn {
          display: block;
          width: 100px;
          padding: 0 20px;
          border-radius: 50px;
          height: 42px;
          border: 1px solid #004EA2;
          margin: 46px auto 0;
          font-size: 14px;
          text-align: center;
          font-weight: bold;
          color: #004EA2;
          line-height: 42px;
          transition: all 0.3s ease-out 0s;
          -webkit-transition: all 0.3s ease-out 0s;
          -moz-transition: all 0.3s ease-out 0s;
          -o-transition: all 0.3s ease-out 0s;
        }

        .news-page .news-page-lists {
          padding: 60px 0 0
        }

        .news-page .news-page-lists .lists .item .details {
          height: 42px;
          position: absolute;
          bottom: 48px;
          width: 107px;
          background: #2b2b2b;
          color: #fff;
          font-size: 14px;
          text-align: center;
          line-height: 42px;
          transition: all 0.3s ease-out 0s;
          -webkit-transition: all 0.3s ease-out 0s;
          -moz-transition: all 0.3s ease-out 0s;
          -o-transition: all 0.3s ease-out 0s;
        }

        .news-page .news-page-lists .lists .item {
          transition: all 0.3s ease-out 0s;
          -webkit-transition: all 0.3s ease-out 0s;
          -moz-transition: all 0.3s ease-out 0s;
          -o-transition: all 0.3s ease-out 0s;
        }

        .news-page .news-page-lists .lists .item a {
          padding: 40px;
          display: block;
          position: relative;
        }

        .news-page .news-page-lists .lists .item .image {
          width: 260px;
          height: 152px;
          margin-right: 0;
          overflow: hidden;
          float: right;
        }


        .news-page .news-page-lists .lists .item .info {
          width: 610px;
          padding: 0px 40px 0;
          transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
        }

        .news-page .news-page-lists .lists .item .title {
          font-size: 18px;

          color: #333333;
          line-height: 32px;
          max-height: 64px;
          font-weight: bold;
        }

        .news-page .news-page-lists .lists .item .desc {
          font-size: 14px;
          color: #666666;
          line-height: 30px;
          height: 90px;
          margin-top: 20px;
          overflow: hidden;
        }

        .news-page .news-page-lists .lists .item .date-box {
          font-size: 24px;
          background: #2b2b2b;
          position: relative;
          float: left;
          padding: 24px 20px;
        }

        .news-page .news-page-lists .lists .item .date-box:after {
          content: '';
          position: absolute;
          top: 14px;
          left: 75px;
          width: 0;
          height: 2px;
          background: #004ea2;
          transition: all 0.3s ease-out 0s;
          -webkit-transition: all 0.3s ease-out 0s;
          -moz-transition: all 0.3s ease-out 0s;
          -o-transition: all 0.3s ease-out 0s;
        }

        .news-page .news-page-lists .lists .item .date-box .date-year {
          font-size: 15px;
          color: #adadad;
        }

        .news-page .news-page-lists .lists .item .date-box .date-day {
          font-family: "微软雅黑";
          color: #fff;
        }

        .news-page .news-page-lists .lists .item .details {
          margin-left: 0;
          margin-top: 20px;
        }

        .news-page .news-page-lists .lists .item:last-child .line05,
        .news-page .news-page-lists .lists .item:hover .line05 {
          display: none;
        }

        .news-page .news-page-lists .line05 {
          position: absolute;
          bottom: -1px;
          left: 0;
          width: 100%;
          border-bottom: 1px solid #D9D9D9;
          transition: all 0.3s ease-out 0s;
          -webkit-transition: all 0.3s ease-out 0s;
          -moz-transition: all 0.3s ease-out 0s;
          -o-transition: all 0.3s ease-out 0s;
        }

        .news-page .news-page-lists .lists .item:hover .details,
        .news-page .hots-news .info .details-btn:hover {
          background: #004EA2;
          color: #fff;
        }

        .news-page .news-page-lists .lists .item:hover .date-box:after {
          width: 64px;
        }

        .news-page .news-page-lists .lists {
          padding: 20px 0;
        }

        .news-page .news-page-lists .lists .item:hover {
          box-shadow: 1px 2px 27px 3px rgba(187, 187, 187, 0.3);
          background: #fff;
        }

        .news-page .news-page-lists .lists .item:hover .info {
          padding-left: 52px;
        }


        /* 分页css */
        .pager-wrap {
          text-align: center;
          padding: 40px 0 80px;
        }

        .pager {
          max-width: 800px;
          text-align: center;
          display: inline-block;
        }

        .pager a {
          cursor: pointer;
        }

        .pager a {
          display: block
        }

        .pager-wrap ul li,
        .thisclass {
          height: 38px;
          border: 1px solid #004EA2;
          margin-left: -1px;
          color: #333333;
          display: inline-block;
          line-height: 40px;
          float: left;
          font-size: 15px;
          text-decoration: none;
          margin: 0 2px;
          border-radius: 6px;
          min-width: 28px;
          padding: 0 5px;
        }

        .pager-wrap ul li.thisclass,
        .pager-wrap ul li:hover a {
          color: #fff;
        }

        .pager-wrap ul li.thisclass,
        .pager-wrap ul li:hover {
          background-color: #004EA2;
          color: #fff;
          border-color: #004EA2;
          position: relative;
          z-index: 1;
        }

        .pager .pg-first,
        .pager .pg-prev,
        .pager .pg-next,
        .pager .pg-last {
          background: white url(../imgs/icon/page_bg.png) 5px 6px no-repeat;
        }

        .pager .pg-first:hover,
        .pager .pg-prev:hover,
        .pager .pg-next:hover,
        .pager .pg-last:hover {
          background: white url(../imgs/icon/page_bg.png) 5px 6px no-repeat;
        }

        .pager .pg-prev,
        .pager .pg-prev:hover {
          background-position: 6px -22px;
        }

        .pager .pg-next,
        .pager .pg-next:hover {
          background-position: -25px -22px;
        }

        .pager .pg-last,
        .pager .pg-last:hover {
          background-position: -25px 5px;
        }

        .pager .pg-prev[disabled='true'],
        .pager .pg-prev[disabled='true']:hover {
          cursor: default;
          background-image: url(../imgs/icon/page_bg.png);
        }

        .pager .pg-next[disabled='true'],
        .pager .pg-next[disabled='true']:hover {
          cursor: default;
          background-image: url(../imgs/icon/page_bg.png);
        }

        .pager .pg-prev[disabled='true'],
        .pager .pg-next[disabled='true'] {
          border-color: #004EA2;
        }

        .pager span.els {
          border-color: transparent;
        }

        .pagerHtmlWrap {
          width: 800px;
          margin: 30px auto;
        }

        .pagerHtmlWrap .cc_cells {
          width: 100%;
          height: 35px;
          padding: 5px 0;
          border-bottom: 1px #cccccc solid;
        }

        .pagerHtmlWrap .cc_cells a {
          color: #454545;
          font-size: 14px;
          line-height: 35px;
          text-decoration: none;
        }

        .pagerHtmlWrap .cc_cells a span {
          display: inline-block;
          width: 25%;
          text-align: left;
          margin: 0;
        }


        /* 加入我们css */
        .join-page {
          padding-top: 60px;
        }

        .join-page .lists {
          padding-top: 20px;
          padding-bottom: 60px;
        }

        .join-page .lists .item {
          margin-bottom: 30px;
        }

        .join-page .lists .item .item-img {
          width: 540px;
          height: 340px;
          position: absolute;
          top: 45px;
          left: 0;
          box-shadow: 0px 0px 20px #ccc;
          -moz-box-shadow: 0px 0px 20px #ccc;
          -ms-box-shadow: 0px 0px 20px #ccc;
          -webkit-box-shadow: 0px 0px 20px #ccc;
          border-radius: 8px;
          overflow: hidden;
        }

        .join-page .lists .item .item-img img {
          width: 100%;
        }

        .join-page .lists .item .info-wrap {
          width: 930px;
          padding: 45px 45px 30px 45px;
          text-align: right;
          background: #fff;
          box-sizing: border-box;
          border-radius: 10px;
        }

        .join-page .lists .item .info-wrap .wrap {
          width: 574px;
          height: 340px;
          display: inline-block;
        }

        .join-page .lists .item .info-wrap .info-head {
          text-align: left;
        }

        .join-page .lists .item .info-wrap .info-head .head-title {
          width: 330px;
        }

        .join-page .lists .item .info-wrap .info-head .head-title .title {
          font-size: 20px;
          font-weight: bold;
          color: #333333;
          line-height: 30px;
        }

        .join-page .lists .item .info-wrap .info-head .head-title .subtitle {
          font-size: 14px;
          color: #C6C6C6;
          line-height: 30px;
        }

        .join-page .lists .item .info-wrap .info-head .tab-btns {
          margin-top: 8px;
        }

        .join-page .lists .item .info-wrap .info-head .tab-btns a {
          float: left;
          width: 106px;
          padding: 0 10px;
          border-radius: 50px;
          border: 1px solid rgba(204, 204, 204, 0);
          font-size: 14px;
          color: #333;
          line-height: 30px;
          text-align: center;
          box-sizing: border-box;
        }

        .join-page .lists .item .info-wrap .info-head .tab-btns a.active {
          border: 1px solid#004EA2;
          color: #004EA2
        }

        .join-page .lists .item .info-wrap .tab-list {
          text-align: left;
          margin-top: 36px
        }

        .join-page .lists .item .info-wrap .tab-list .t-item {
          height: 210px;
          font-size: 14px;
          color: #666666;
          line-height: 30px;
          display: none;
          overflow: hidden;
        }

        .join-page .lists .item .info-wrap .examine-btn {
          width: 58px;
          height: 28px;
          padding-right: 24px;
          background: url(../imgs/icon/icon-up02.png) no-repeat center right;
          font-size: 14px;
          color: #C6C6C6;
          line-height: 30px;
          margin: 0 auto;
          display: block;
          margin-top: 24px;
        }

        .join-page .lists .item .info-wrap .tab-list .t-item.on {
          display: block
        }

        .mask-box {
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: rgba(0, 0, 0, 0.5);
          z-index: 99;
          display: none
        }

        .popups {
          width: 1080px;
          height: auto;
          padding: 40px;
          box-sizing: border-box;
          border-radius: 10px;
          position: fixed;
          top: -50%;
          left: 50%;
          z-index: 110;
          transform: translate(-50%, -50%);
          background: #fff;
          -webkit-transition: all 0.26s ease-out 0.06s;
          -moz-transition: all 0.26s ease-out 0.06s;
          -o-transition: all 0.26s ease-out 0.06s;
          transition: all 0.26s ease-out 0.06s;
        }

        .popups .close-btn {
          width: 50px;
          height: 50px;
          position: absolute;
          top: -22px;
          right: -22px;
          background: url(../imgs/icon/close-icon.png) no-repeat;
          background-size: 100% 100%;
          -webkit-transition: all 0.3s ease-out 0s;
          -moz-transition: all 0.3s ease-out 0s;
          -o-transition: all 0.3s ease-out 0s;
          transition: all 0.3s ease-out 0s;
        }

        .popups .close-btn:hover {
          -moz-transform: rotate(-90deg);
          -webkit-transform: rotate(-90deg);
          -o-transform: rotate(-90deg);
          -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
        }

        .popups .popups-head {
          text-align: center;
          margin-bottom: 36px;
        }

        .popups .popups-head .title {
          font-size: 26px;

          font-weight: bold;
          color: #333333;
          line-height: 30px;
        }

        .popups .popups-head .subtitle {
          font-size: 18px;

          color: #C6C6C6;
          line-height: 30px;
        }

        .popups .popups-body {
          position: relative;
          padding-bottom: 30px;
        }

        .popups .popups-body h4 {
          font-size: 18px;
          font-weight: bold;
          color: #333333;
          line-height: 30px;
        }

        .popups .popups-body .cont {
          width: 460px;
          margin-top: 20px;
          font-size: 14px;
          color: #666666;
          line-height: 30px;
        }

        .line06 {
          position: absolute;
          width: 2px;
          height: 100%;
          background: url(../imgs/line06.png) no-repeat;
          background-size: 100% 100%;
          left: 50%;
        }

        /* 风采css */
        .mien-wrap {
          padding: 60px 0 90px
        }

        .mien-wrap .cont-box {
          margin-top: 40px;
        }

        .mien-wrap .cont-box img {
          -webkit-transition: all 0.3s ease-out 0s;
          -moz-transition: all 0.3s ease-out 0s;
          -o-transition: all 0.3s ease-out 0s;
          transition: all 0.3s ease-out 0s;
        }

        .mien-wrap .cont-box img:hover,
        .mien-wrap .cont-box .more-imgs:hover img {
          transform: scale(1.1);
          -webkit-transform: scale(1.1);
        }

        .mien-wrap .cont-box .left-imgs .item {
          width: 280px;
          height: 250px;
          overflow: hidden;
        }

        .mien-wrap .cont-box .left-imgs .item img {
          width: 100%;
        }

        .mien-wrap .cont-box .left-imgs .more-imgs {
          height: 250px;
          width: 100%;
          position: relative;
          overflow: hidden;
        }

        .mien-wrap .cont-box .left-imgs .more-imgs a {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
        }

        .mien-wrap .cont-box .left-imgs .more-imgs .title {
          position: relative;
          margin-top: 76px;
          font-family: Source Han Sans CN;

          letter-spacing: 12px;
          font-size: 28px;
          text-align: center;
          color: #FFFFFF;
          z-index: 2;
        }

        .mien-wrap .cont-box .left-imgs .more-imgs .m-i-mask {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: rgba(0, 0, 0, .5)
        }

        .mien-wrap .cont-box .left-imgs .more-imgs .more-icon {
          position: relative;
          width: 244px;
          margin: 42px auto 0;
          height: 50px;
          border: 1px solid rgb(255 255 255 / 65%);
          border-radius: 25px;
          text-align: center;
          z-index: 2;
        }

        .mien-wrap .cont-box .left-imgs .more-icon .jt-icon05 {
          display: inline-block;
          width: 111px;
          height: 22px;
          background: url(../imgs/icon/jt-icon05.png) no-repeat;
          background-size: 100% 100%;
          margin: 15px auto 0;
        }

        .mien-wrap .cont-box .right-imgs {
          width: 360px;
          height: 500px;
          overflow: hidden;
        }

        .history-wrap>.wrap {
          width: 100%;
          height: 100%;
          position: absolute;
          top: 0;
          left: 0;
          z-index: 10;
        }

        /* 环形背景 */
        .annular {
          width: 1366px;
          height: 1366px;
          position: absolute;
          top: 17%;
          left: 50%;
          z-index: 6;
        }

        .annular img {
          width: 100%;
          height: 100%;
        }

        .annular01 {
          width: 1366px;
          height: 1366px;
          position: absolute;
          top: 50%;
          left: 50px;
          transform: translate(-50%, -50%);
          -webkit-transition: all 0.3s ease-out 0s;
          -moz-transition: all 0.3s ease-out 0s;
          -o-transition: all 0.3s ease-out 0s;
          transition: all 0.3s ease-out 0s;
        }

        .annular02 {
          width: 999px;
          height: 999px;
          position: absolute;
          top: 50%;
          left: 50px;
          transform: translate(-50%, -50%);
          -webkit-transition: all 0.3s ease-out 0s;
          -moz-transition: all 0.3s ease-out 0s;
          -o-transition: all 0.3s ease-out 0s;
          transition: all 0.3s ease-out 0s;
        }

        .annular03 {
          width: 647px;
          height: 647px;
          position: absolute;
          top: 50%;
          left: 50px;
          transform: translate(-50%, -50%);
          -webkit-transition: all 0.3s ease-out 0s;
          -moz-transition: all 0.3s ease-out 0s;
          -o-transition: all 0.3s ease-out 0s;
          transition: all 0.3s ease-out 0s;
        }

        .about-page {
          background: #fff;
        }

        /* 公司简介 */
        .about-wrap {
          padding-top: 60px;
          position: relative;
        }

        .about-wrap .head-box .title {
          text-align: center;
        }

        .about-wrap .head-box .line03 {
          margin: 38px auto 0;
        }

        .about-wrap .cont-box {
          margin-top: 40px;
          position: relative;
          z-index: 4;
        }

        .about-wrap .cont-box .video-box {
          margin: 0 0 20px 0
        }

        .about-wrap .cont-box .company-box {
          padding: 32px 0 64px;
        }

        .about-wrap .cont-box .company-box .txt-box {
          width: 400px;
          padding: 0 20px;
        }

        .about-wrap .cont-box .company-box .title {
          font-size: 18px;
          font-weight: bold;
          color: #333333;
          line-height: 30px;
        }

        .about-wrap .cont-box .company-box .subtitle {
          font-size: 12px;
          color: #999999;
          line-height: 30px;
        }

        .about-wrap .cont-box .company-box .intro {
          width: 760px;
          font-size: 14px;
          color: #666666;
          line-height: 30px;
          padding: 0 20px;
          box-sizing: border-box;
        }

        .about-wrap .bg-txt1,
        .about-wrap .bg-txt2 {
          position: absolute;
          bottom: 75px;
          left: 0px;
          font-size: 272px;
          color: rgb(230, 230, 230, 0.56);
          font-weight: bold;
          letter-spacing: 20px;
        }

        .about-wrap .bg-txt2 {
          top: 22%;
          right: 10px;
          left: auto;
        }

        /* 发展历程 */
        .history-wrap {
          position: relative;
          overflow: hidden;
        }

        .history-wrap .head-box {
          padding-top: 60px;
        }

        .history-wrap .swiper-line {
          position: absolute;
          bottom: 78px;
          background: url(../imgs/line07-bg.png) no-repeat;
          width: 100%;
          height: 4px;
          -webkit-transition: all 0.3s ease-out 0s;
          -moz-transition: all 0.3s ease-out 0s;
          -o-transition: all 0.3s ease-out 0s;
          transition: all 0.3s ease-out 0s;
        }

        .swiper-line .line-w {
          height: 4px;
          background: url(../imgs/line07.png) no-repeat;
          background-size: 100% 100%;
          position: absolute;
          top: 0;
          left: 0;
          -webkit-transition: all 0.3s ease-out 0s;
          -moz-transition: all 0.3s ease-out 0s;
          -o-transition: all 0.3s ease-out 0s;
          transition: all 0.3s ease-out 0s;
        }

        .history-wrap .swiper-container {
          height: 300px;
          padding-bottom: 141px;
        }

        .history-wrap .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
          margin: 0 30px
        }

        .history-wrap .swiper-pagination-bullet {
          width: auto;
          height: auto;
          background: none;
        }

        .history-wrap .history-wrap {
          position: relative;
        }

        .history-wrap .swiper-pagination-bullet {
          opacity: 1;
          position: relative;
        }

        .history-wrap .swiper-pagination-clickable .swiper-pagination-bullet .yeartxt {
          display: block;
          font-size: 28px;
          font-weight: bold;
          color: #7AA6FF;
          line-height: 29px;
          margin-top: 26px;
          -webkit-transition: all 0.3s ease-out 0s;
          -moz-transition: all 0.3s ease-out 0s;
          -o-transition: all 0.3s ease-out 0s;
          transition: all 0.3s ease-out 0s;
        }

        .history-wrap .swiper-pagination-clickable .swiper-pagination-bullet .line08 {
          display: block;
          width: 3px;
          height: 110px;
          position: absolute;
          top: -100px;
          left: 29px;
          background: url(../imgs/line08.png) no-repeat 0 104px;
          -webkit-transition: all 0.3s ease-out 0s;
          -moz-transition: all 0.3s ease-out 0s;
          -o-transition: all 0.3s ease-out 0s;
          transition: all 0.3s ease-out 0s;

        }

        .history-wrap .swiper-pagination-clickable .swiper-pagination-bullet .dian {
          width: 30px;
          height: 30px;
          background: url(../imgs/icon/dian-icon.png) no-repeat center;
          display: block;
          margin: 0 auto;
          position: relative;
          z-index: 3;
        }

        .history-wrap .swiper-pagination-clickable .swiper-pagination-bullet-active .dian {
          background: url(../imgs/icon/dian-h-icon.png) no-repeat center;
        }

        .history-wrap .swiper-pagination-clickable .swiper-pagination-bullet-active .line08 {
          background: url(../imgs/line08.png) no-repeat;
        }

        .hist-swiper .swiper-slide {
          color: #fff;
          padding: 0px 154px;
          box-sizing: border-box;
        }

        .hist-swiper .year {
          width: 240px;
          height: 100%;
          text-align: center;
          position: relative;
        }

        .hist-swiper .year span {
          position: absolute;
          top: 50%;
          left: 50%;
          font-size: 70px;
          transform: translate(-50%, -50%);
        }

        .hist-swiper .hist-list {
          position: relative;
          height: 100%;
          width: 650px;
          font-size: 20px;

          color: #FFFFFF;
 
        }

        .history-wrap .swiper-pagination-clickable .swiper-pagination-bullet-active .yeartxt {
          color: #fff;
        }

        .hist-swiper .hist-list .list {
          position: absolute;
          top: 50%;
          left: 10%;
          transform: translateY(-50%);
          width: 90%;
          margin-right: 10%;
        }

        .hist-swiper .hist-list li {
          padding: 10px 0;
        }


        .history-wrap .head-box,
        .history-wrap .cont-box {
          position: relative;
          z-index: 6;
        }

        .history-wrap .head-box .title {
          color: #fff;
        }

        .history-wrap .head-box .line03 {
          background: rgba(255, 255, 255, .1);
        }

        .history-wrap .cont-box {
          margin-top: 28px;
        }

        .history-wrap .cont-box h2 {
          text-align: center;
          font-size: 50px;
          font-family: Source Han Sans CN;
          font-weight: 300;
          color: #FFFFFF;
          letter-spacing: 20px;
        }

        .footerA .footerAr .rwm {
          width: 90px;

          position: absolute;
          top: 15px;
          right: 0;
          line-height: inherit;
          text-align: center;
        }

        .footerA .footerAr p.rwm span {
          font-size: 12px;
          line-height: 24px;
        }






        /* 需要优化的关于我们 */
        .about-t {
          width: 1200px;
          height: 750px;


        }

        .about-tl,
        .about-tr {
          float: left
        }

        .about-tl {
          cursor: pointer;
          background: #fff;
        }

        .about-tli {
          width: 600px;
          height: 500px;
          overflow: hidden;
        }

        .about-tli img {
          width: 100%;
          height: 100%;
          -webkit-transition: all 0.3s ease-out 0s;
          -moz-transition: all 0.3s ease-out 0s;
          -o-transition: all 0.3s ease-out 0s;
          transition: all 0.3s ease-out 0s;
        }

        .about-tlp {
          text-align: center;
          padding: 77px 146px;
          box-sizing: border-box;
        }

        .about-tlp span,
        .about-tlp p,
        .about-trap p,
        .about-trap span {
          font-size: 18px;
          font-family: Source Han Sans CN;
          text-align: center;
          color: #666666;

        }

        .about-tlp,
        .about-trap {
          text-align: center;
        }

        .about-tlp span,
        .about-trap span {
          margin-top: 32px;
          display: inline-block;
        }

        .about-tlp p {
          font-size: 30px;

          font-weight: bold;
          color: #333333;
        }

        .about-tlp p,
        .about-trap p {
          font-weight: bold;
        }

        .about-tra {
          width: 600px;
          height: 250px;
          overflow: hidden;
          background: #fff;
        }

        .about-trai,
        .about-trap {
          float: left;
          height: 250px;
          width: 300px;
          overflow: hidden;
        }

        .about-trai img {
          width: 100%;
          height: 100%;
          -webkit-transition: all 0.3s ease-out 0s;
          -moz-transition: all 0.3s ease-out 0s;
          -o-transition: all 0.3s ease-out 0s;
          transition: all 0.3s ease-out 0s;
        }

        .about-trap {
          padding: 78px 33px;
          box-sizing: border-box;
        }

        .about-tra:hover img,
        .about-tl:hover img {
          transform: scale(1.1);
          -webkit-transform: scale(1.1);
        }

        .about-trap p {
          font-size: 24px;
        }

        .zl {
          width: 100%;
          height: 600px;
          background-image: url("../imgs/host-img3.png");
          background-size: 100% 100%;
          margin-top: 41px;
        }

        .zla {
          width: 100%;
          background: #f7f7f7;
          height: 700px;
        }

        .zlat {
          width: 1245px;
          margin: 0 auto;
          height: 700px;
          overflow: hidden;
          background: url("../imgs/host-img4(1).png") no-repeat center;
          background-size: 100%;
        }
        .zla1 {
          width: 1245px;
          background: #fff;
          height: auto;
        }
        .zla1 h2 {
          margin-top: 30px;
		  margin-left:45px;
        }
        .zlat1 {
          width: 1245px;
          margin: 0 auto;
          height: 220px;
          overflow: hidden;
          background: url("../imgs/gjqy-img.png") no-repeat center;
          background-size: 100%;
        }
        .zlat2 {
          width: 1245px;
          margin: 0 auto;
          height: 250px;
          overflow: hidden;
          background: url("../imgs/xmry-img.png") no-repeat center;
          background-size: 100%;
        }
        .zlat3 {
          width: 1245px;
          margin: 0 auto;
          height: 220px;
          overflow: hidden;
          background: url("../imgs/shry-img.png") no-repeat center;
          background-size: 100%;
        }

        .zlat li {
          width: 340px;
          height: 400px;
          float: left;
          margin-right: 5px;
        }

        .team-wrap {
          background: #f7f7f7;
        }

        /* 发展团队页面css */
        .team-page {
          background: #fff;
        }

        .team-page .team-page-wrap {
          padding: 60px 0 0
        }

        .team-page .teamlists {
          margin-right: -50px;
          padding: 40px 0px;
        }

        .team-page .teamlists .item {
          position: relative;
          width: 580px;
          padding: 10px;
          border: 1px solid rgba(0, 0, 0, 0.1);
          box-sizing: border-box;
          margin-right: 40px;
          margin-bottom: 40px;
        }

        .team-page .teamlists .item .imgs {
          width: 180px;
          height: 145px;
          float: left;
          overflow: hidden;
        }

        .team-page .teamlists .item .imgs img {
          -webkit-transition: all 0.3s ease-out 0s;
          -moz-transition: all 0.3s ease-out 0s;
          -o-transition: all 0.3s ease-out 0s;
          transition: all 0.3s ease-out 0s;
        }

        .team-page .teamlists .item .info {
          width: 338px;
          float: left;
          padding-top: 18px;
          margin-left: 26px;
          transition: all 0.36s cubic-bezier(0.215, 0.61, 0.355, 1);
        }

        .team-page .teamlists .item .info .title-box .title {
          display: inline-block;
          padding-right: 12px;
          font-size: 18px;
          color: #484848;
        }

        .team-page .teamlists .item .info .title-box .post {
          display: inline-block;
          max-width: 202px;
          font-size: 13px;
          color: #999;
          margin-top: 7px;
        }

        .team-page .teamlists .item .info .desc {
          font-size: 13px;
          line-height: 24px;
          margin-top: 15px;
          height: 52px;
          overflow: hidden;
          color: #757575;
        }

        .team-page .teamlists .item .line09 {
          width: 0;
          height: 1px;
          position: absolute;
          top: -1px;
          left: 0;
          background: #004EA2;
          transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
        }

        .team-page .teamlists .item:hover .info {
          padding-top: 32px;
        }

        .team-page .teamlists .item:hover .line09 {
          width: 100%;
        }

        .team-page .teamlists .item:hover .imgs img {
          transform: scale(1.1);
          -webkit-transform: scale(1.1);
        }

        .picture-page .picture-title {
          padding: 30px 0 60px;
          font-size: 20px;
          text-align: center;
          position: relative;
        }

        /* 精彩图片页面css */
        .picture-page {
          padding: 40px 0 80px;
        }

        .picture-page .picture-title::after {
          content: '';
          width: 80px;
          height: 3px;
          background: #004EA2;
          position: absolute;
          top: 69%;
          left: 50%;
          transform: translate(-50%, -50%);
        }

        .picture-page ul {
          margin-right: -22px;
          margin-bottom: 20px;
        }

        .picture-page ul li {
          width: calc(33.333% - 20px);
          margin-right: 20px;
          height: 292px;
          overflow: hidden;
          margin-bottom: 20px;
        }


        .news-postpage .newsright img{display:inline-block}