@font-face {
  font-family: "AlipuhuiBold";
  src: url(../fonts/AlipuhuiBold.ttf) format("truetype");
}
@font-face {
  font-family: "AlipuhuiHeavy";
  src: url(../fonts/AlipuhuiHeavy.ttf) format("truetype");
}
@font-face {
  font-family: "AlipuhuiLight";
  src: url(../fonts/AlipuhuiLight.ttf) format("truetype");
}
@font-face {
  font-family: "AlipuhuiMedium";
  src: url(../fonts/AlipuhuiMedium.ttf) format("truetype");
}
@font-face {
  font-family: "AlipuhuiRegular";
  src: url(../fonts/AlipuhuiRegular.ttf) format("truetype");
}
@font-face {
  font-family: "impact";
  src: url(../fonts/impact.ttf) format("truetype");
}
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "AlipuhuiRegular", "AlipuhuiMedium", "AlipuhuiLight","Arial";
  line-height: 1em;
}

.font-bold {
  font-family: "AlipuhuiBold";
}

.font-heavy {
  font-family: "AlipuhuiHeavy";
}

.font-light {
  font-family: "AlipuhuiLight";
}

.font-medium {
  font-family: "AlipuhuiMedium";
}

.font-regular {
  font-family: "AlipuhuiRegular";
}

a {
  text-decoration: none;
  color: #333333;
  border: none;
  outline: none;
}

ul,
ol {
  list-style: none;
}

.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.por {
  position: relative;
}

.poa {
  position: absolute;
}

.pull-left {
  float: left;
}

.pull-right {
  float: right;
}

.container {
  margin: 0 auto;
  width: 1600px;
}

.header {
  width: 100%;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.8);
  position: fixed;
  top: 0;
  z-index: 999;
}
.header .logo {
  margin-top: 13px;
  width: 356px;
  height: 49px;
  background-image: url(../images/logo.png);
}
.header .nav {
  height: 80px;
  margin-right: 40px;
}
.header .nav > ul {
  height: 100%;
}
.header .nav > ul > li {
  float: left;
  height: 80px;
  width: 135px;
  position: relative;
}
.header .nav > ul > li:first-child {
  margin-left: 0;
}
.header .nav > ul > li > a {
  font-size: 16px;
  color: #333;
  height: 80px;
  line-height: 80px;
  display: block;
  text-align: center;
}
.header .nav > ul > li.active > a {
  color: #0a7fb4;
}
.header .nav > ul > li:hover > a {
  color: #0a7fb4;
}
.header .nav > ul > li .subnav {
  width: 165px;
  background: rgba(255, 255, 255, 0.8);
  text-align: center;
  padding: 10px 0;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 80px;
  left: -10px;
  display: none;
}
.header .nav > ul > li .subnav > li {
  line-height: 40px;
}
.header .nav > ul > li .subnav > li > a:hover, .header .nav > ul > li .subnav > li > a.active {
  color: #0a7fb4;
}
.header .search {
  position: absolute;
  right: 0;
  top: 31px;
}
.header .search .btn-search {
  display: block;
  width: 21px;
  height: 21px;
  background: url(../images/sprite.png) no-repeat 0 -23px;
  cursor: pointer;
}
.header .search .btn-search:hover {
  background-position: -21px -23px;
}
.header .search .searhc-box {
  display: none;
  background-color: #fff;
  position: absolute;
  top: 48px;
  right: 0;
  padding: 15px;
  width: 290px;
  -webkit-box-shadow: 0px 0px 2px #ccc;
          box-shadow: 0px 0px 2px #ccc;
}
.header .search .searhc-box > input {
  width: 200px;
  height: 35px;
  border: 1px solid #ccc;
  outline: none;
  padding: 0 10px;
  float: left;
}
.header .search .searhc-box > input:focus {
  border-color: #0a7fb4;
}
.header .search .searhc-box > button {
  width: 55px;
  height: 35px;
  border: none;
  outline: none;
  background-color: #0a7fb4;
  color: #fff;
  cursor: pointer;
}
.header .search .searhc-box > button:hover {
  opacity: 0.8;
}
.header .language {
  position: absolute;
  top: 33px;
  right: -50px;
  font-size: 16px;
}
.header .language a:hover {
  color: #0a7fb4;
}

.header-sticky {
  position: sticky;
}

.banner {
  width: 100%;
  height: 100vh;
  position: relative;
}
.banner > video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner .banner-text {
  position: absolute;
  top: 60%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  width:100%;
}
.banner .banner-text > h1 {
  font-size: 56px;
  margin-bottom: 30px;
  font-family: Arail;
}
.banner .banner-text > h1 .circle {
  display: inline-block;
  width: 14px;
  height: 14px;
  background-color: #fff;
  border-radius: 50%;
  margin: 0 10px;
  vertical-align: middle;
  margin-top: -15px;
}
.banner .banner-text > p {
  font-size: 24px;
  font-family:Arial;
}

.footer {
  height: 270px;
  background-color: #009ce2;
}
.footer .copyrights-wrap {
  float: left;
  width: 539px;
}
.footer .copyrights-wrap .logo {
  margin-top: 44px;
  margin-bottom: 50px;
}
.footer .copyrights-wrap .copyrights {
  color: #ace5ff;
  margin-top: -35px;
  font-size: 14px;
}
.footer .copyrights-wrap .copyrights p {
  line-height: 25px;
}
.footer .copyrights-wrap .copyrights a {
  color: #ace5ff;
}
.footer .copyrights-wrap .copyrights a:hover {
  color: #dff5ff;
}
.footer .bottom-contact-wrap {
  float: left;
  margin-top: 56px;
  width: 580px;
  color: #fff;
  font-size: 16px;
}
.footer .bottom-contact-wrap .address {
  margin-bottom: 30px;
}
.footer .bottom-contact-wrap dl dt {
  float: left;
  height: 100px;
  width: 70px;
}
.footer .bottom-contact-wrap dl dd {
  float: left;
  margin-bottom: 19px;
}
.footer .bottom-contact-wrap dl dd .name {
  margin-left: 5px;
  margin-right: 15px;
}
.footer .bottom-contact-wrap dl dd i {
  color: #98daff;
  margin: 0 2px;
}
.footer .bottom-menus-wrap {
  float: left;
  margin-top: 56px;
  color: #fff;
  font-size: 16px;
}
.footer .bottom-menus-wrap dl {
  float: left;
  margin-right: 30px;
}
.footer .bottom-menus-wrap dl a {
  color: #fff;
}
.footer .bottom-menus-wrap dl a:hover {
  color: #ace5ff;
}
.footer .bottom-menus-wrap dl dt {
  margin-bottom: 29px;
}
.footer .bottom-menus-wrap dl dd {
  margin-bottom: 20px;
}
.footer .bottom-menus-wrap dl:last-child {
  margin-right: 0;
}

.home-about-container {
  margin-top: 60px;
  margin-bottom: 100px;
}
.home-about-container .img {
  margin-right: 72px;
  float: left;
  width: 687px;
  height: 447px;
  border-radius: 22px;
  overflow: hidden;
}
.home-about-container .text {
  float: left;
  width: 840px;
}
.home-about-container .text .h2 {
  margin-bottom: 23px;
  font-size: 44px;
  color: #010101;
}
.home-about-container .text .h2 span {
  color: #fe7500;
}
.home-about-container .text .h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 20px;
  font-weight: normal;
}
.home-about-container .text .profile-text {
  font-size: 16px;
  color: #666;
  line-height: 30px;
}
.home-about-container .text .h4 {
  margin-top: 20px;
  margin-bottom: 15px;
  font-size: 30px;
  color: #333;
  font-weight: normal;
}

.wuliu-cangchu-container {
  margin-bottom: 115px;
  height: 984px;
  background: url(../images/home/bg-business.jpg) no-repeat center bottom;
}
.wuliu-cangchu-container .h2 {
  font-size: 30px;
  color: #333;
  font-weight: normal;
  margin-bottom: 10px;
}
.wuliu-cangchu-container .text,.wuliu-cangchu-container .pre {
  font-size: 18px;
  line-height: 36px;
  color: #666;
}
.wuliu-cangchu-container .cangchu-tt {
  margin-top: 72px;
}
.wuliu-cangchu-container .btn-view-more {
  margin-top: 70px;
  display: block;
  width: 193px;
  height: 48px;
  line-height: 48px;
  border: 1px solid #fe7500;
  font-size: 16px;
  color: #fe7500;
  border-radius: 5px;
  padding-left: 40px;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.wuliu-cangchu-container .btn-view-more .icon {
  display: block;
  position: absolute;
  left: 126px;
  top: 22px;
  width: 21px;
  height: 3px;
  background: url(../images/sprite.png) no-repeat;
  background-position: 0 -14px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.wuliu-cangchu-container .btn-view-more:hover {
  background-color: #fe7500;
  color: #fff;
}
.wuliu-cangchu-container .btn-view-more:hover .icon {
  background-position: -21px -14px;
}
.wuliu-cangchu-container .big-circle {
  position: absolute;
  width: 135px;
  height: 135px;
  border-radius: 50%;
  background-color: rgba(254, 117, 0, 0.1);
  top: 180px;
  left: 798px;
  z-index: 1;
  -webkit-animation: myscale 2s linear infinite;
          animation: myscale 2s linear infinite;
}
.wuliu-cangchu-container .mid-circle {
  position: absolute;
  width: 67px;
  height: 67px;
  border-radius: 50%;
  background-color: rgba(254, 117, 0, 0.3);
  top: 213px;
  left: 833px;
  z-index: 2;
  -webkit-animation: myscale2 2s linear infinite;
          animation: myscale2 2s linear infinite;
}
.wuliu-cangchu-container .sm-circle {
  position: absolute;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  background-color: rgb(254, 117, 0);
  top: 224px;
  left: 844px;
  z-index: 3;
  color: #fff;
  font-size: 12px;
}
@-webkit-keyframes myscale {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes myscale {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes myscale2 {
  0% {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes myscale2 {
  0% {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.news-container .tt-wrap {
  margin-bottom: 75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.news-container .tt-wrap .tt {
  margin-bottom: 20px;
  font-weight: normal;
  font-size: 44px;
  color: #010101;
}
.news-container .tt-wrap .tt span {
  color: #009ce2;
}
.news-container .tt-wrap .text {
  font-size: 20px;
  color: #333;
}
.news-container .tt-wrap .btn-more-link {
  margin-top: 29px;
  display: block;
  width: 194px;
  height: 50px;
  line-height: 50px;
  background-color: #fe7500;
  color: #fff;
  font-size: 16px;
  border-radius: 5px;
  padding-left: 40px;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.news-container .tt-wrap .btn-more-link .icon {
  position: absolute;
  display: block;
  width: 21px;
  height: 3px;
  background: url(../images/sprite.png) no-repeat;
  background-position: -21px -14px;
  left: 127px;
  top: 23px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.news-container .tt-wrap .btn-more-link:hover {
  background-color: #fff;
  color: #fe7500;
  border: 1px solid #fe7500;
}
.news-container .tt-wrap .btn-more-link:hover .icon {
  background-position: 0 -14px;
}
.news-container .news-list {
  margin-bottom: 155px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -44px;
}
.news-container .news-list .news-item {
  width: 504px;
  margin-right: 44px;
}
.news-container .news-list .news-item .img {
  margin-bottom: 60px;
  width: 100%;
  height: 300px;
  border-radius: 22px;
  overflow: hidden;
}
.news-container .news-list .news-item .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 1s;
  transition: all 1s;
}
.news-container .news-list .news-item .img img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.news-container .news-list .news-item .text .date {
  font-size: 16px;
  color: #fe7500;
}
.news-container .news-list .news-item .text .h3 {
  font-weight: normal;
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 24px;
  line-height: 36px;
}
.news-container .news-list .news-item .text .h3 a {
  color: #333;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.news-container .news-list .news-item .text .h3 a:hover {
  color: #fe7500;
}
.news-container .news-list .news-item .text .view-more {
  font-size: 16px;
  color: #666;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.news-container .news-list .news-item .text .view-more .icon {
  display: inline-block;
  width: 15px;
  height: 3px;
  background: url(../images/sprite.png) no-repeat;
  background-position: 0 -2px;
  margin-left: 9px;
  vertical-align: middle;
  margin-top: -4px;
}
.news-container .news-list .news-item .text .view-more:hover {
  color: #fe7500;
}
.news-container .news-list .news-item .text .view-more:hover .icon {
  background-position: 0 -5px;
}

.news-container-page .news-item {
  margin-bottom: 70px;
}

.pagination {
  margin-bottom: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pagination a {
  display: block;
  padding: 10px 30px;
  border: 1px solid #bfbfbf;
  font-size: 14px;
  color: #333;
  margin: 0 6px;
  border-radius: 3px;
}
.pagination a.current, .pagination a:hover {
  border-color: #009ce2;
  background-color: #009ce2;
  color: #fff;
}

.page-banner {
  width: 100%;
  height: auto;
}
.page-banner img {
  width: 100%;
  height: auto;
  max-height: 500px;
}

.breadcrumb {
  width: 100%;
  height: 81px;
  border-bottom: 1px solid #dcdcdc;
}
.breadcrumb .container {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.breadcrumb .container .breadcrumb-wrap {
  font-size: 16px;
  color: #999;
}
.breadcrumb .container .breadcrumb-wrap .icon-home {
  margin-left: 3px;
  display: inline-block;
  width: 17px;
  height: 16px;
  background: url(../images/sprite.png) no-repeat;
  background-position: -46px -23px;
  vertical-align: top;
}
.breadcrumb .container .breadcrumb-wrap a {
  font-size: 16px;
  color: #999;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.breadcrumb .container .breadcrumb-wrap a:hover {
  color: #009ce2;
}
.breadcrumb .container .breadcrumb-wrap .split {
  margin: 0 5px;
  font-size: 12px;
  font-weight: bold;
  vertical-align: top;
}
.breadcrumb .container .sub-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 540px;
}
.breadcrumb .container .sub-menu li {
  margin: 0 30px;
}
.breadcrumb .container .sub-menu li a {
  display: block;
  height: 81px;
  line-height: 81px;
  font-size: 14px;
  color: #999;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.breadcrumb .container .sub-menu li a:hover {
  color: #009ce2;
  border-bottom: 3px solid #009ce2;
}
.breadcrumb .container .sub-menu li.active a {
  color: #009ce2;
  border-bottom: 3px solid #009ce2;
}

.page-title {
  margin-top: 78px;
  margin-bottom: 88px;
  text-align: center;
}
.page-title h2 {
  margin-bottom: 40px;
  font-size: 44px;
  color: #010101;
  font-family: "AlipuhuiBold";
}
.page-title h2 span {
  color: #009ce2;
  font-family: "AlipuhuiBold";
}
.page-title h3 {
  font-size: 18px;
  color: #333;
  font-weight: normal;
  letter-spacing: 1px;
}

.company-profile-wrap {
  margin-bottom: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.company-profile-wrap .item {
  margin-bottom: 52px;
  width: 775px;
  height: 650px;
  overflow: hidden;
  border-radius: 22px;
}
.company-profile-wrap .item .img {
  width: 100%;
  height: 415px;
  position: relative;
}
.company-profile-wrap .item .img img {
  width: 100%;
  height: 100%;
}
.company-profile-wrap .item .img h3 {
  position: absolute;
  font-size: 30px;
  color: #fff;
  font-weight: normal;
  bottom: 26px;
  left: 50px;
}
.company-profile-wrap .item .text {
  height: 238px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 29px;
  padding-left: 49px;
  padding-right: 30px;
  padding-bottom: 20px;
  background-color: #eeeeee;
}
.company-profile-wrap .item .text .pre {
  font-size: 16px;
  color: #333;
  line-height: 30px;
}

.page-culture-wrap {
  margin-bottom: 160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.page-culture-wrap .item {
  width: 510px;
  height: 735px;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
}
.page-culture-wrap .item img {
  width: 100%;
  height: 100%;
}
.page-culture-wrap .item .text {
  position: absolute;
  color: #fff;
  top: 54px;
  left: 51px;
}
.page-culture-wrap .item .text h3 {
  margin-bottom: 16px;
  font-size: 26px;
  font-weight: normal;
  font-family: "impact";
}
.page-culture-wrap .item .text h2 {
  margin-bottom: 28px;
  font-size: 40px;
  font-weight: normal;
  font-family: "AlipuhuiMedium";
}
.page-culture-wrap .item .text pre {
  font-size: 24px;
  line-height: 29px;
}

.article-container {
  margin-top: 85px;
  margin-bottom: 160px;
}
.article-container .article-info {
  float: left;
  width: 66.25%;
}
.article-container .article-info .article-title {
  margin-bottom: 30px;
  font-size: 36px;
  color: #333;
  line-height: 1.2em;
}
.article-container .article-info .article-meta {
  margin-bottom: 90px;
  font-size: 18px;
  color: #999999;
}
.article-container .article-info .article-content {
  font-size: 18px;
  color: #333;
  line-height: 36px;
  border-bottom: 1px solid #dcdcdc;
  padding-bottom: 50px;
  margin-bottom: 45px;
}
.article-container .article-info .article-content p {
  line-height: 36px;
  margin-bottom: 30px;
}
.article-container .article-info .article-nav .prev, .article-container .article-info .article-nav .next {
  font-size: 16px;
  color: #666;
  margin-bottom: 15px;
}
.article-container .article-info .article-nav .prev a, .article-container .article-info .article-nav .next a {
  color: #666;
}
.article-container .article-info .article-nav .prev a:hover, .article-container .article-info .article-nav .next a:hover {
  color: #009ce2;
}
.article-container .article-asice {
  width: 25.93%;
  float: right;
}
.article-container .article-asice .article-search {
  margin-bottom: 75px;
}
.article-container .article-asice .article-search > h2 {
  font-size: 36px;
  color: #333;
  font-weight: normal;
  margin-bottom: 27px;
  margin-top: 5px;
}
.article-container .article-asice .article-search > .input-wrap {
  height: 58px;
  border: 1px solid #bfbfbf;
  position: relative;
}
.article-container .article-asice .article-search > .input-wrap > input {
  height: 100%;
  width: 100%;
  border: none;
  outline: none;
  font-size: 16px;
  padding: 0 15px;
}
.article-container .article-asice .article-search > .input-wrap > .icon-search {
  display: block;
  position: absolute;
  width: 21px;
  height: 21px;
  background: url(../images/sprite.png) no-repeat;
  background-position: -84px 0;
  top: 18px;
  right: 21px;
  cursor: pointer;
}
.article-container .article-asice .article-recommend > h2 {
  font-size: 24px;
  color: #666;
  font-weight: normal;
  margin-bottom: 25px;
}
.article-container .article-asice .article-recommend > ul > li {
  margin-bottom: 15px;
}
.article-container .article-asice .article-recommend > ul > li > a {
  font-size: 16px;
  color: #333;
}
.article-container .article-asice .article-recommend > ul > li > a:hover {
  color: #009ce2;
}

.contact-map {
  width: 100%;
  height: 480px;
  background-color: #ccc;
}

.contact-info-wrap {
  margin-bottom: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #d2d2d2;
  border-top: none;
}
.contact-info-wrap .address-box {
  width: 583px;
  height: 173px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-right: 1px solid #d2d2d2;
}
.contact-info-wrap .address-box .icon {
  display: block;
  width: 37px;
  height: 44px;
  background: url(../images/sprite.png) no-repeat;
  background-position: 0 -53px;
  margin-bottom: 15px;
}
.contact-info-wrap .address-box p {
  font-size: 18px;
  color: #333;
  line-height: 1.5em;
  width: 60%;
}
.contact-info-wrap .icon-column {
  width: 119px;
  border-right: 1px solid #d2d2d2;
}
.contact-info-wrap .icon-column .icon {
  width: 119px;
  height: 58px;
  display: block;
  border-bottom: 1px solid #d2d2d2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.contact-info-wrap .icon-column .icon:last-child {
  border-bottom: none;
}
.contact-info-wrap .icon-column .icon-user {
  width: 26px;
  height: 27px;
  background: url(../images/sprite.png) no-repeat;
  background-position: -47px -53px;
}
.contact-info-wrap .icon-column .icon-tel {
  width: 23px;
  height: 21px;
  background: url(../images/sprite.png) no-repeat;
  background-position: -83px -53px;
}
.contact-info-wrap .icon-column .icon-email {
  width: 23px;
  height: 19px;
  background: url(../images/sprite.png) no-repeat;
  background-position: -115px -53px;
}
.contact-info-wrap .contact-info {
  width: 300px;
  border-right: 1px solid #d2d2d2;
}
.contact-info-wrap .contact-info:last-child {
  border-right: none;
}
.contact-info-wrap .contact-info li {
  height: 58px;
  line-height: 58px;
  text-align: center;
  border-bottom: 1px solid #d2d2d2;
  font-size: 18px;
  color: #000;
}
.contact-info-wrap .contact-info li:last-child {
  border-bottom: none;
}

.search-result {
  width: 1000px;
  margin: 0 auto 200px;
}
.search-result li {
  margin-bottom: 20px;
  font-size: 16px;
}
.search-result li a {
  display: block;
  width: 100%;
}
.search-result li a .tit {
  float: left;
  width: 80%;
}
.search-result li a .tit span {
  margin-right: 20px;
}
.search-result li a .tit:hover {
  color: #009ce2;
}
.search-result li a .time {
  float: right;
}

.honor-wrap {
  margin: 0 auto;
  width: 1335px;
  height: 530px;
  position: relative;
  margin-bottom: 200px;
}
.honor-wrap .swiper-slide {
  width: 505px;
  height: 372px;
}
.honor-wrap .swiper-slide img {
  margin: 0 auto;
  width: auto;
  max-width: 100%;
  height: 100%;
  display: block;
}
.honor-wrap .current-bg {
  width: 695px;
  height: 136px;
  background: url(../images/honor-bg.png) no-repeat;
  position: absolute;
  bottom: 50px;
  left: 50%;
  -webkit-transform: translateX(-336px);
          transform: translateX(-336px);
}
.honor-wrap .current-title {
  position: absolute;
  width: 700px;
  height: 40px;
  bottom: 25px;
  left: 50%;
  -webkit-transform: translateX(-336px);
          transform: translateX(-336px);
  font-size: 30px;
  color: #333;
  text-align: center;
}
.honor-wrap .button {
  position: absolute;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 1px solid #d5d5d5;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.honor-wrap .button .icon {
  display: block;
  width: 25px;
  height: 6px;
  background: url(../images/sprite.png) no-repeat;
  background-position: -23px 0;
}
.honor-wrap .button .icon-next {
  background-position: -50px 0;
}
.honor-wrap .button:hover {
  border-color: #fe7500;
}
.honor-wrap .button:hover .icon {
  background-position: -23px -6px;
}
.honor-wrap .button:hover .icon-next {
  background-position: -50px -6px;
}
.honor-wrap .button-prev {
  left: 82px;
}
.honor-wrap .button-next {
  right: 82px;
}

.product-content {
  margin-bottom: 200px;
}
.product-content .menu {
  width: 100%;
  height: 58px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
}
.product-content .menu li {
  width: 50%;
  height: 58px;
  border: 1px solid #009ce2;
  cursor: pointer;
}
.product-content .menu li a {
  display: block;
  line-height: 58px;
  font-size: 34px;
  color: #009ce2;
  text-align: center;
}
.product-content .menu li.active, .product-content .menu li:hover {
  background: #009ce2;
}
.product-content .menu li.active a, .product-content .menu li:hover a {
  color: #fff;
}
.product-content .description {
  margin-bottom: 50px;
}
.product-content .description p {
  font-size: 18px;
  line-height: 30px;
  color: #666;
  margin-bottom: 30px;
}
.product-content .feature {
  margin-bottom: 110px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.product-content .feature .item {
  width: 228px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.product-content .feature .icon {
  margin-bottom: 16px;
  width: 138px;
  height: 138px;
  border-radius: 50%;
  overflow: hidden;
}
.product-content .feature .icon img {
  width: 100%;
  height: 100%;
}
.product-content .feature h4 {
  font-weight: normal;
  font-size: 18px;
  color: #009ce2;
  text-align: center;
}
.product-content .parameter .left {
  float: left;
  width: 988px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.product-content .parameter .left .item {
  margin-right: 12px;
  margin-bottom: 12px;
  width: 482px;
  height: 378px;
  position: relative;
}
.product-content .parameter .left .item img {
  width: 100%;
  height: 100%;
}
.product-content .parameter .left .item h2 {
  width: 100%;
  position: absolute;
  bottom: 20px;
  padding: 0 25px;
  font-size: 24px;
  color: #333;
  font-weight: normal;
}
.product-content .parameter .left .item h2 span {
  margin-left: 22px;
  font-size: 24px;
  color: #333;
  font-family: AlipuhuiLight;
}
.product-content .parameter .right {
  float: right;
  width: 595px;
}
.product-content .parameter .right ul {
  margin-bottom: 40px;
  width: 100%;
  border: 1px solid #7bd6ff;
}
.product-content .parameter .right ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 20px;
  height: 88px;
  color: #666;
}
.product-content .parameter .right ul li .name {
  width: 296px;
  line-height: 88px;
  padding: 0 20px;
  border-right: 1px solid #7bd6ff;
}
.product-content .parameter .right ul li .value {
  padding: 0 20px;
  line-height: 88px;
}
.product-content .parameter .right ul li:nth-child(2n+1) {
  background-color: #ebf9ff;
}
.product-content .parameter .right ul li:last-child .value {
  padding-top: 20px;
  line-height: 1.2em;
}
.product-content .parameter .right ul .th {
  height: 66px;
  line-height: 66px;
  color: #fff;
  background-color: #7bd6ff !important;
}
.product-content .parameter .right ul .th .name, .product-content .parameter .right ul .th .value {
  line-height: 66px;
  padding: 0 20px;
}
.product-content .parameter .right ul .th .name {
  border-right: 1px solid #fff;
}
.product-content .parameter .right .remark {
  font-size: 18px;
  color: #999;
  line-height: 1.5em;
}