.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}
.swiper-container-no-flexbox .swiper-slide {
  float: left;
}
.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap;
}
.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}
.swiper-invisible-blank-slide {
  visibility: hidden;
}
/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
/* 3D Effects */
.swiper-container-3d {
  perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  touch-action: pan-y;
}
.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  touch-action: pan-x;
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}
.swiper-button-lock {
  display: none;
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}
.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}
.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}
/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progressbar {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-container-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-lock {
  display: none;
}
/**** mixins ******/
/**** 公用部分 ******/
html,
body {
  height: 100%;
}
body {
  min-width: 1410px;
  font-family: "PingFang", "PingFangSC", Helvetica, "Helvetica Neue", "SourceHanSansCN", "Microsoft YaHei", Arial, sans-serif;
}
a {
  transition: all 0.4s;
}
a:hover {
  color: #2ba2ff;
}
.container {
  width: 1370px;
  max-width: 1370px;
  min-width: 1370px;
}
header.navbar {
  height: 72px;
  background-color: #272727;
  margin-bottom: 0;
  border: 0;
  border-radius: 0;
  transition: all 0.3s;
}
header.navbar:hover {
  background-color: #272727;
}
header.navbar .container {
  position: relative;
  z-index: 1;
}
header.navbar .navbar-header {
  float: left;
  padding-left: 25px;
}
header.navbar .navbar-brand {
  font-size: 0;
  width: 130px;
  height: 72px;
  background: url(../images/logo@2x.png) no-repeat center;
}
header.navbar .navbar-nav > li:hover a,
header.navbar .navbar-nav > li:focus a,
header.navbar .navbar-nav > li.active a,
header.navbar .navbar-nav > li:hover a:focus,
header.navbar .navbar-nav > li:focus a:focus,
header.navbar .navbar-nav > li.active a:focus,
header.navbar .navbar-nav > li:hover a:hover,
header.navbar .navbar-nav > li:focus a:hover,
header.navbar .navbar-nav > li.active a:hover {
  background-color: transparent;
  color: #fff;
}
header.navbar .navbar-nav > li > a,
header.navbar .navbar-nav > li > a:focus,
header.navbar .navbar-nav > li > a:hover {
  font-size: 18px;
  line-height: 30px;
  padding: 21px 33px;
  color: #cdcdcd;
}
header.navbar .navbar-nav > li.openplatform > a {
  color: #2ba2ff;
  text-decoration: underline;
}
header.navbar .navbar-nav > li.openplatform > a:hover,
header.navbar .navbar-nav > li.openplatform > a:focus {
  color: #3293de;
}
header.navbar .navbar-right {
  float: right;
  margin-right: -25px;
}
header.navbar .navbar-right > li {
  float: left;
}
header.navbar .navbar-mask {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-color: #272727;
}
header.navbar .dropdown-solution {
  position: relative;
  z-index: -1;
  display: none;
  animation-duration: 0.4s;
  height: 140px;
  background-color: #151515;
}
header.navbar .dropdown-solution.fadeInDown {
  display: block;
}
header.navbar .dropdown-solution ul {
  float: right;
  margin: 0;
  padding: 0;
  list-style: none;
}
header.navbar .dropdown-solution li {
  float: left;
  text-align: center;
}
header.navbar .dropdown-solution li a {
  display: block;
  padding: 30px 40px 0;
}
header.navbar .dropdown-solution li a:hover {
  text-decoration: none;
  color: #2ba2ff;
}
header.navbar .dropdown-solution li a:hover .icon,
header.navbar .dropdown-solution li a:hover .text {
  color: #2ba2ff;
}
header.navbar .dropdown-solution li .icon {
  display: block;
  margin: 0 auto;
  width: 48px;
  height: 48px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}
header.navbar .dropdown-solution li .text {
  margin-top: 20px;
  font-size: 16px;
  color: #f6f7fb;
}
@media (max-width: 1369px) {
  header.navbar .container {
    width: 100%;
    min-width: auto;
  }
  header.navbar .dropdown-solution ul {
    width: 100%;
    float: none;
  }
  header.navbar .dropdown-solution li {
    width: 12.5%;
  }
  header.navbar .dropdown-solution li a {
    padding: 30px 0;
  }
}
.subnav {
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 11;
  height: 80px;
  background-color: #333333;
}
.subnav ul {
  list-style: none;
  float: right;
  text-align: center;
}
.subnav li {
  float: left;
}
.subnav li a {
  display: block;
  color: #838383;
  font-size: 18px;
  line-height: 80px;
  padding: 0 33px;
}
.subnav li.active a,
.subnav li:hover a,
.subnav li.active a:hover,
.subnav li:hover a:hover,
.subnav li.active a:focus,
.subnav li:hover a:focus {
  color: #ffffff;
  background-color: transparent;
}
.subnav li.title {
  margin-right: 20px;
  display: inline-block;
  font-size: 18px;
  line-height: 80px;
  padding: 0 30px;
  color: #2ba2ff;
}
.page-index header.navbar {
  background-color: transparent;
}
aside {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 11;
  width: 94px;
}
aside > div {
  height: 96px;
  overflow: hidden;
  transition: height 0.4s;
}
aside.active > div {
  height: 96px;
}
aside a {
  display: block;
  height: 94px;
  line-height: 94px;
  font-size: 20px;
  color: #808080;
  margin-top: 2px;
  background-color: #101010;
  text-align: center;
}
aside a .iconfont {
  display: block;
  font-size: 40px;
}
aside a:focus,
aside a:active,
aside a:visited {
  text-decoration: none;
  color: #808080;
}
aside a:hover {
  text-decoration: none;
  color: #ffffff;
  background-color: #2ba2ff;
}
.popover-contact h4 {
  color: #666666;
  font-size: 28px;
  margin: 0;
}
.popover-contact p {
  color: #999999;
  font-size: 14px;
  margin: 0;
}
footer {
  padding-top: 40px;
  background-color: #373d41;
  color: #fefefe;
}
footer .row {
  margin-left: -40px;
  margin-right: -40px;
}
footer .logo {
  float: left;
  padding-right: 60px;
  width: 316px;
  height: 70px;
  background: url(../images/home-logo@2x.png) no-repeat;
  border-right: #878b8d 2px solid;
  margin-right: 100px;
  font-size: 0;
}
footer .lists {
  list-style: none;
  float: left;
  margin: 0;
  padding: 0;
  width: 200px;
}
footer .lists .title {
  font-size: 18px;
  height: 30px;
}
footer .lists a {
  font-size: 18px;
  color: #fefefe;
  line-height: 42px;
  opacity: 0.4;
  transition: all 0.4s;
}
footer .lists a:hover {
  color: #2ba2ff;
  opacity: 1;
}
footer .contact-wrapper {
  position: relative;
  float: left;
  margin-left: 36px;
}
footer .contact-wrapper .contact {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 350px;
}
footer .contact-wrapper .qrcode {
  width: 90px;
  height: 90px;
  padding: 5px;
  background-color: #fff;
  float: left;
  margin-right: 12px;
}
footer .contact-wrapper .qrcode img {
  width: 80px;
  height: 80px;
}
footer .contact-wrapper h4 {
  margin: 0;
  font-size: 30px;
}
footer .contact-wrapper .worktime {
  font-size: 14px;
  line-height: 40px;
}
footer .contact-wrapper p a {
  font-size: 16px;
  color: #2ba2ff;
}
footer .copyright {
  text-align: center;
  line-height: 60px;
  color: #9b9d9e;
}
footer .copyright .address {
  margin: 0 80px 0 0;
}
footer .copyright a {
  color: #9b9d9e;
}
section.section {
  padding: 48px 0 70px;
}
section.section h3.section-header {
  margin: 0;
  position: relative;
  text-align: center;
  font-size: 36px;
  line-height: 84px;
  color: #333;
  font-weight: 700;
}
section.section h3.section-header:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 58px;
  height: 6px;
  background-color: #6694f6;
  margin-left: -29px;
}
section.section .subtitle {
  margin: 20px 0 0;
  color: #333;
  font-size: 18px;
  line-height: 28px;
  padding: 0 210px;
  text-align: center;
}
img,
audio,
video {
  max-width: 100%;
}
/**** 首页 ******/
.banner {
  margin-top: 72px;
  position: relative;
  padding-top: 48.85%;
  overflow: hidden;
}
.banner .swiper-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.banner .swiper-slide::before {
  width: 100%;
  content: "";
}
.banner .swiper-slide a,
.banner .swiper-slide img {
  width: 100%;
  display: block;
}
.banner .swiper-button-disabled {
  display: none;
}
.section-solution {
  background-color: #f6f6fb;
}
.section-solution .row {
  margin-top: 20px;
  margin-left: -10px;
  margin-right: -10px;
}
.section-solution .col-xs-3 {
  position: relative;
  margin-top: 20px;
  padding-left: 10px;
  padding-right: 10px;
  height: 250px;
}
.section-solution .col-xs-3 .bg {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}
.section-solution .col-xs-3 .bg:hover .mask {
  opacity: 0.75;
  filter: alpha(opacity=75);
  background: #0653f7;
}
.section-solution .col-xs-3 .bg:hover .content {
  top: 38px;
  overflow: inherit;
}
.section-solution .col-xs-3 .mask {
  width: 100%;
  height: 100%;
  background: #373d41;
  opacity: 0.66;
  filter: alpha(opacity=66);
  transition: all 0.4s;
}
.section-solution .col-xs-3 .content {
  position: absolute;
  top: 68px;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 110px;
  text-align: center;
  color: #fff;
  overflow: hidden;
  transition: all 0.4s;
}
.section-solution .col-xs-3 .icon {
  margin-left: auto;
  margin-right: auto;
  width: 48px;
  height: 48px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}
.section-solution .col-xs-3 .text {
  position: relative;
  margin-top: 20px;
  font-size: 16px;
  line-height: 54px;
  color: #ffffff;
}
.section-solution .col-xs-3 .text::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -10px;
  width: 20px;
  height: 2px;
  background-color: #ffffff;
}
.section-solution .col-xs-3 .button a {
  display: inline-block;
  border-radius: 5px;
  width: 120px;
  line-height: 36px;
  text-align: center;
  border: #ffffff 1px solid;
  color: #ffffff;
}
.section-business {
  background-color: #ffffff;
}
.section-business .row {
  margin-top: 40px;
  margin-left: -2px;
  margin-right: -2px;
}
.section-business .item-1 {
  background-image: url(../images/01.png);
}
.section-business .item-2 {
  background-image: url(../images/02.png);
}
.section-business .item-3 {
  background-image: url(../images/03.png);
}
.section-business .item-4 {
  background-image: url(../images/04.png);
}
.section-business .col-xs-3 {
  position: relative;
  padding-left: 2px;
  padding-right: 2px;
}
.section-business .col-xs-3 > div {
  height: 314px;
  background-color: #f6f6fb;
  background-repeat: no-repeat;
  background-position: 22px 38px;
  padding: 94px 20px 0 44px;
}
.section-business .col-xs-3 h4 {
  margin: 0;
  font-size: 20px;
  line-height: 44px;
  color: #333333;
  font-weight: 700;
}
.section-business .col-xs-3 ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.section-business .col-xs-3 li {
  position: relative;
  padding-left: 16px;
  font-size: 18px;
  line-height: 24px;
  color: #666666;
  font-family: Helvetica, "PingFang";
  font-weight: 300;
}
.section-business .col-xs-3 li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  background-color: #b8c4fa;
  border-radius: 50%;
}
.section-coverage {
  background-color: #fff;
}
.section-coverage .media {
  padding: 20px;
  background-color: #fff;
  border-radius: 5px;
  transition: all 0.4s;
}
.section-coverage .media .media-left {
  float: left;
  display: block;
  width: 138px;
  height: 100px;
}
.section-coverage .media .media-left a {
  display: block;
}
.section-coverage .media .media-left img {
  height: 100%;
}
.section-coverage .media .media-body {
  width: auto;
  height: 112px;
  display: block;
  margin-left: 156px;
  line-height: 22px;
  color: #666666;
}
.section-coverage .media .media-body time {
  display: block;
  margin-top: 8px;
}
.section-coverage .media .media-body > div {
  line-height: 22px;
}
.section-coverage .media h4 {
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1;
}
.section-coverage .media h4 a {
  display: block;
  line-height: 28px;
  color: #333;
  height: 28px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.section-coverage .media h4 a:hover {
  color: #2ba2ff;
}
.section-coverage .media:hover {
  box-shadow: #23549518 14px 14px 16px;
}
.section-coverage .row {
  margin-top: 24px;
  margin-left: -10px;
  margin-right: -10px;
  padding-left: 60px;
  padding-right: 60px;
}
.section-coverage .col-xs-6 {
  margin-top: 20px;
  padding-left: 10px;
  padding-right: 10px;
}
.section-coverage .section-footer {
  margin-top: 20px;
  padding: 20px 0 18px;
  text-align: center;
}
.section-coverage .section-footer a {
  font-size: 18px;
  line-height: 26px;
  color: #999999;
  transition: all 0.4s;
}
.section-coverage .section-footer a:hover {
  color: #2ba2ff;
}
/****** 商务合作********/
.business-banner {
  height: 604px;
  background: url(../images/business-banner.jpg) no-repeat center center;
  background-size: cover;
}
.section-condition {
  text-align: center;
}
.section-condition .subtitle {
  margin: 20px 0 0;
  color: #333;
  font-size: 18px;
  line-height: 28px;
  padding: 0 210px;
}
.section-condition ul {
  list-style: none;
  margin: 52px auto 0;
  padding: 0;
  width: 1300px;
}
.section-condition li {
  width: 260px;
  float: left;
  padding: 0 35px;
  font-size: 16px;
  line-height: 24px;
  color: #333;
}
.section-condition li .icon {
  display: block;
  margin: 0 auto 22px;
  width: 68px;
  height: 68px;
  background-position: center;
  background-repeat: no-repeat;
}
.section-condition li.item-1 .icon {
  background-image: url(../images/Cooperation-condition-01-icon.png);
}
.section-condition li.item-2 .icon {
  background-image: url(../images/Cooperation-condition-02-icon.png);
}
.section-condition li.item-3 .icon {
  background-image: url(../images/Cooperation-condition-03-icon.png);
}
.section-condition li.item-4 .icon {
  background-image: url(../images/Cooperation-condition-04-icon.png);
}
.section-condition li.item-5 .icon {
  background-image: url(../images/Cooperation-condition-05-icon.png);
}
.section-process {
  background-color: #f6f6fb;
}
.section-process ul {
  position: relative;
  list-style: none;
  margin: 70px 10px 0;
  padding: 0 0 0 136px;
}
.section-process ul::after {
  content: "";
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: #d9dffa;
  border-radius: 4px;
}
.section-process li {
  position: relative;
  float: left;
  padding-left: 60px;
  margin-left: -136px;
}
.section-process li .item {
  position: relative;
  width: 206px;
  height: 100px;
}
.section-process li .item::before {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 38px;
  width: 12px;
  height: 12px;
  margin-left: -4px;
  background-color: #d9dffa;
  border-radius: 50%;
}
.section-process li .item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 38px;
  width: 4px;
  height: 25px;
  background-color: #d9dffa;
  border-radius: 4px;
}
.section-process li .item .icon {
  display: block;
  float: left;
  margin-right: 14px;
  width: 72px;
  height: 48px;
  background-position: center;
  background-repeat: no-repeat;
}
.section-process li .item .text {
  font-size: 18px;
  color: #333333;
  padding-top: 24px;
}
.section-process li .item.item-1 .icon {
  background-image: url("../images/number01.png");
}
.section-process li .item.item-2 .icon {
  background-image: url("../images/number02.png");
}
.section-process li .item.item-3 .icon {
  background-image: url("../images/number03.png");
}
.section-process li .item.item-4 .icon {
  background-image: url("../images/number04.png");
}
.section-process li .item.item-5 .icon {
  background-image: url("../images/number05.png");
}
.section-process li .item.item-6 .icon {
  background-image: url("../images/number06.png");
}
.section-process li .item.item-7 .icon {
  background-image: url("../images/number07.png");
}
.section-process li .item.item-8 .icon {
  background-image: url("../images/number08.png");
}
.section-process li .item.item-9 .icon {
  background-image: url("../images/number09.png");
}
.section-process li .item.item-2,
.section-process li .item.item-4,
.section-process li .item.item-6,
.section-process li .item.item-8 {
  padding-top: 152px;
  height: 208px;
}
.section-process li .item.item-2::before,
.section-process li .item.item-4::before,
.section-process li .item.item-6::before,
.section-process li .item.item-8::before {
  top: 128px;
  bottom: auto;
}
.section-process li .item.item-2::after,
.section-process li .item.item-4::after,
.section-process li .item.item-6::after,
.section-process li .item.item-8::after {
  top: 108px;
  bottom: auto;
}
.section-process li .item.item-9 {
  width: 160px;
  white-space: nowrap;
}
.section-support ul {
  list-style: none;
  margin: 40px auto 0;
  padding: 0;
  width: 1300px;
}
.section-support li {
  float: left;
  width: 256px;
  height: 320px;
  margin: 0 2px;
  background-color: #f6f6fb;
  padding: 42px 20px 20px;
  text-align: center;
  color: #666666;
}
.section-support li .icon {
  display: block;
  margin: 0 auto;
  width: 50px;
  height: 50px;
  background-position: center;
}
.section-support li h4 {
  margin: 14px 0 0;
  color: #333333;
  font-size: 20px;
  line-height: 48px;
  font-weight: 700;
}
.section-support li div {
  font-family: Helvetica, "PingFang";
  font-size: 18px;
  font-weight: 300;
  line-height: 23px;
}
.section-support li.item-1 .icon {
  background-image: url(../images/Cooperation-support-1.png);
}
.section-support li.item-2 .icon {
  background-image: url(../images/Cooperation-support-2.png);
}
.section-support li.item-3 .icon {
  background-image: url(../images/Cooperation-support-3.png);
}
.section-support li.item-4 .icon {
  background-image: url(../images/Cooperation-support-4.png);
}
.section-support li.item-5 .icon {
  background-image: url(../images/Cooperation-support-5.png);
}
section.section-contact {
  height: 478px;
  padding-top: 30px;
  background: #20355d url(../images/business-banner-02.png) no-repeat center center;
  background-size: cover;
}
section.section-contact h3.section-header {
  color: #fff;
}
section.section-contact h3.section-header::after {
  background-color: #bec6d6;
}
section.section-contact .form {
  width: 502px;
  margin: 30px auto 0;
}
section.section-contact .form .form-group {
  margin-bottom: 10px;
}
section.section-contact .form .form-control,
section.section-contact .form .btn {
  font-size: 18px;
  border-radius: 0;
  color: #333;
}
section.section-contact .form textarea.form-control {
  height: 154px;
  border-radius: 0;
  padding: 20px;
}
section.section-contact .form input.form-control {
  float: left;
  width: 348px;
  height: 60px;
  padding: 20px;
  font-size: 18px;
  line-height: 20px;
}
section.section-contact .form .btn {
  float: right;
  width: 144px;
  height: 60px;
  line-height: 60px;
  padding: 0;
  color: #ffffff;
  text-align: center;
  background-color: #2ba2ff;
  border: 0;
}
section.section-contact .form .btn:hover,
section.section-contact .form .btn:focus,
section.section-contact .form .btn:active {
  color: #ffffff;
  background-color: #3293de;
  box-shadow: none;
  outline: none;
}
section.section-contact .contact-text {
  margin: 18px 0 0;
  text-align: center;
  color: #f6f7fb;
  font-size: 16px;
}
/****** 关于我们 ********/
section.section-intro {
  margin-top: 72px;
  padding-top: 110px;
  height: 500px;
  background: #415379 url(../images/about-us-banner.jpg) no-repeat center center;
  background-size: cover;
  color: #fff;
}
section.section-intro h3.section-header {
  color: #ffffff;
}
section.section-intro h3.section-header::after {
  background-color: #fff;
}
section.section-intro .intro {
  width: 840px;
  margin: 20px auto;
  font-size: 16px;
  line-height: 36px;
}
section.section-intro .intro div {
  text-indent: 2em;
}
section.section-honor .subtitle {
  line-height: 36px;
}
section.section-honor .certificate {
  margin-top: 40px;
  text-align: center;
}
section.section-job {
  background-color: #f6f6fb;
}
section.section-job .subtitle a {
  color: #2ba2ff;
}
section.section-job .subtitle a:hover {
  color: #3293de;
}
section.section-job .jobs {
  width: 912px;
  margin: 30px auto 0;
}
section.section-job .jobs .media {
  position: relative;
  float: left;
  width: 440px;
  height: 136px;
  margin: 0 8px 16px;
  padding: 32px;
  background-color: #ffffff;
  overflow: inherit;
}
section.section-job .jobs .media .media-left {
  margin-right: 28px;
}
section.section-job .jobs .media .media-heading {
  font-size: 24px;
  line-height: 42px;
}
section.section-job .jobs .media .media-body p {
  margin: 0;
  font-size: 14px;
  line-height: 22px;
  color: #666;
}
section.section-job .jobs .media .popover {
  left: 100%;
  top: -132px;
  width: 568px;
  max-width: 568px;
  background-color: #373d41;
}
section.section-job .jobs .media .popover > .arrow {
  top: 200px;
}
section.section-job .jobs .media .popover.left {
  left: auto;
  right: 451px;
}
section.section-job .jobs .media .popover.left > .arrow {
  top: 200px;
}
section.section-job .jobs .media .popover.left > .arrow:after {
  border-left-color: #373d41;
}
section.section-job .jobs .media .popover.right > .arrow {
  top: 200px;
}
section.section-job .jobs .media .popover > .arrow:after {
  border-right-color: #373d41;
}
section.section-job .jobs .media .popover .popover-content {
  color: #fff;
  padding: 40px 40px 20px;
}
section.section-job .jobs .media .popover .popover-content h4 {
  margin: 0 0 20px;
  font-size: 18px;
}
section.section-job .jobs .media .popover .popover-content ul {
  margin: 0;
  padding: 0;
  list-style-type: decimal;
  list-style-position: inside;
}
section.section-job .jobs .media .popover .popover-content ul li {
  margin-bottom: 20px;
}
section.section-job .jobs .media:hover .popover {
  display: block;
}
/****** FAQ ********/
section.section-faq {
  margin-top: 72px;
  padding: 0;
}
section.section-faq .nav {
  position: relative;
  border-bottom: #e8e8e8 4px solid;
}
section.section-faq .nav > li {
  z-index: 2;
  float: left;
  margin-left: 0;
  padding-right: 26px;
}
section.section-faq .nav > li > a,
section.section-faq .nav > li > a:focus {
  color: #838383;
  font-size: 18px;
  padding: 30px 16px;
  border-bottom: transparent 4px solid;
  margin-bottom: -4px;
  background-color: transparent;
}
section.section-faq .nav > li > a.reset,
section.section-faq .nav > li > a:focus.reset,
section.section-faq .nav > li > a:hover,
section.section-faq .nav > li > a:focus:hover {
  color: #2ba2ff;
}
section.section-faq .nav > li:hover a,
section.section-faq .nav > li.active a {
  background-color: transparent;
  color: #2ba2ff;
}
section.section-faq .nav > li.move {
  position: absolute;
  bottom: -4px;
  z-index: 3;
  height: 4px;
  background-color: #2ba2ff;
}
section.section-faq .faqs {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}
section.section-faq .faqs li {
  font-size: 18px;
  padding: 46px 175px;
  border-bottom: #e8e8e8 1px solid;
}
section.section-faq .faqs li h4 {
  color: #272727;
  font-size: 18px;
  height: 44px;
  line-height: 44px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
section.section-faq .faqs li p {
  padding-left: 18px;
  line-height: 28px;
  color: #606060;
  font-weight: 300;
}
section.section-faq .faqs li i {
  float: left;
  display: block;
  margin-right: 10px;
  width: 44px;
  height: 44px;
  font-size: 18px;
  line-height: 44px;
  text-align: center;
  border-radius: 50%;
  color: #f5faff;
  background-color: #2ba2ff;
  font-style: normal;
}
section.section-faq .faqs.active {
  display: block;
}
/***** 解决方案 - 智能门禁 - 概览 ******/
.banner-overview {
  margin-top: 152px;
  height: 604px;
  background: url(../images/menjin-gainan-banner.jpg) no-repeat center center;
  background-size: cover;
}
section.section-opening-mode {
  background-color: #f6f7fb;
}
section.section-opening-mode h3.section-header {
  margin-bottom: 50px;
}
section.section-opening-mode .mode-left {
  float: left;
  width: 640px;
  text-align: center;
  line-height: 100px;
  color: #333333;
  font-size: 20px;
  font-weight: 700;
}
section.section-opening-mode .mode-content {
  margin-left: 640px;
}
section.section-opening-mode .mode-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
section.section-opening-mode .mode-content ul li {
  margin-bottom: 35px;
}
section.section-opening-mode .mode-content ul li h4 {
  position: relative;
  color: #333333;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 14px;
}
section.section-opening-mode .mode-content ul li h4::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #b8c4fa;
  position: absolute;
  top: 50%;
  left: -20px;
  margin-top: -5px;
}
section.section-opening-mode .mode-content ul li p {
  margin: 0;
  font-size: 16px;
}
section.section-eg-platform {
  padding: 60px 0 40px;
  background-color: #ffffff;
}
section.section-eg-platform .container {
  overflow: hidden;
}
section.section-eg-platform .platform-image {
  width: 800px;
  float: left;
}
section.section-eg-platform .platform-text {
  float: left;
  margin-left: -100px;
  width: 540px;
  padding-top: 84px;
  font-weight: 300;
  font-family: Helvetica, "PingFang";
}
section.section-eg-platform .platform-text h4 {
  font-weight: 300;
  font-family: Helvetica, "PingFang";
  margin: 0 0 28px;
  font-size: 39px;
  color: #333;
}
section.section-eg-platform .platform-text p {
  font-size: 25px;
  color: #333333;
}
section.section-eg-platform.first {
  margin-top: 152px;
}
section.section-eg-platform.even {
  background-color: #f7f6fc;
}
section.section-eg-platform.even .platform-image {
  float: right;
}
section.section-eg-platform.even .platform-text {
  float: right;
  text-align: right;
  margin-left: inherit;
  margin-right: -100px;
}
section.section-eg-app {
  height: 400px;
  background-color: #fff;
}
section.section-eg-app.first {
  margin-top: 152px;
  background: url(../images/menjin-app-banner.png) no-repeat center center;
}
section.section-eg-app.even {
  background-color: #f7f6fc;
}
section.section-eg-app.even .image img {
  left: 0;
  right: auto;
}
section.section-eg-app .container {
  overflow: hidden;
}
section.section-eg-app .image {
  height: 400px;
  position: relative;
}
section.section-eg-app .image img {
  position: absolute;
  right: 0;
  bottom: 0;
}
section.section-eg-app .text {
  padding: 98px 25px 0;
  font-weight: 300;
  font-family: Helvetica, "PingFang";
}
section.section-eg-app .text img {
  display: block;
  margin: 0 auto;
}
section.section-eg-app h4 {
  font-weight: 300;
  font-family: Helvetica, "PingFang";
  font-size: 39px;
  color: #333333;
  margin: 26px 0 0;
}
section.section-eg-app p {
  font-size: 25px;
  color: #333333;
  margin: 26px 0 0;
  font-weight: 300;
}
.banner-eg-hardware {
  height: 100%;
  padding-top: 152px;
  background: #272727 url(../images/banner-bg.png) center center;
  background-size: cover;
  overflow: hidden;
}
.banner-eg-hardware .container {
  height: 100%;
  position: relative;
  text-align: center;
}
.banner-eg-hardware .text {
  position: absolute;
  top: 11.70483461%;
  height: 15.26717557%;
  max-height: 119px;
}
.banner-eg-hardware .image {
  position: absolute;
  bottom: 0;
  height: 66.15776081%;
}
.banner-eg-hardware .text,
.banner-eg-hardware .image {
  width: 100%;
  text-align: center;
}
.banner-eg-hardware .text img,
.banner-eg-hardware .image img {
  height: 100%;
}
.section-eg-hardware-app {
  padding: 132px 0;
  height: 938px;
  text-align: center;
  overflow: hidden;
}
.section-eg-hardware-app .container {
  position: relative;
}
.section-eg-hardware-app .container .content {
  text-align: center;
}
.section-eg-hardware-app .container .image {
  height: 100%;
}
.section-eg-hardware-app .container .line {
  position: absolute;
  left: -100px;
  top: 102px;
  opacity: 0;
}
.section-eg-hardware-app .container .text {
  position: absolute;
  color: #272727;
  font-size: 18px;
  line-height: 24px;
  width: 300px;
  opacity: 0;
}
.section-eg-hardware-app .container .text span {
  font-size: 14px;
  color: #ff2d2d;
}
.section-eg-hardware-app .container .text.text-1 {
  top: 118px;
  left: -420px;
  text-align: right;
}
.section-eg-hardware-app .container .text.text-2 {
  top: 196px;
  left: -420px;
  text-align: right;
}
.section-eg-hardware-app .container .text.text-3 {
  top: 300px;
  left: -420px;
  text-align: right;
}
.section-eg-hardware-app .container .text.text-4 {
  top: 12px;
  left: 480px;
  text-align: left;
}
.section-eg-hardware-app .container .text.text-5 {
  top: 200px;
  left: 480px;
  text-align: left;
}
.section-eg-hardware-app .container .text.text-6 {
  top: 385px;
  left: 480px;
  text-align: left;
}
.section-eg-hardware-structure {
  height: 100%;
  padding-top: 152px;
  background: #272727 url(../images/banner-bg.png) center center;
  background-size: cover;
  overflow: hidden;
}
.section-eg-hardware-structure .container {
  position: relative;
  height: 100%;
  padding: 72px 0 50px;
}
.section-eg-hardware-structure .container .content {
  position: relative;
  padding-left: 580px;
  height: 100%;
}
.section-eg-hardware-structure .container .content.dispersed .image {
  transform: translateX(0);
  opacity: 1;
}
.section-eg-hardware-structure .container .content.dispersed .image.image-1 {
  z-index: 1;
}
.section-eg-hardware-structure .container .content.dispersed .image.image-2 {
  z-index: 2;
}
.section-eg-hardware-structure .container .content.dispersed .image.image-3 {
  z-index: 3;
}
.section-eg-hardware-structure .container .content.dispersed .image.image-4 {
  z-index: 4;
}
.section-eg-hardware-structure .container .content.dispersed .image.image-5 {
  z-index: 5;
}
.section-eg-hardware-structure .container .image {
  position: absolute;
  height: 100%;
  transition: all 0.3s;
  opacity: 0;
}
.section-eg-hardware-structure .container .image img {
  height: 100%;
  transition: all 0.3s;
}
.section-eg-hardware-structure .container .image img.text {
  position: absolute;
  height: auto;
  opacity: 0;
  transition: all 0.3s;
}
.section-eg-hardware-structure .container .image.image-1 {
  z-index: 5;
  margin-left: -576px;
  transform: translateX(576px);
}
.section-eg-hardware-structure .container .image.image-1 .text {
  left: 28%;
  bottom: 94%;
}
.section-eg-hardware-structure .container .image.image-2 {
  z-index: 4;
  margin-left: -284px;
  transform: translateX(284px);
}
.section-eg-hardware-structure .container .image.image-2 .text {
  top: 88%;
  left: 30%;
}
.section-eg-hardware-structure .container .image.image-3 {
  z-index: 3;
}
.section-eg-hardware-structure .container .image.image-3 .text {
  top: 78%;
  left: 60%;
}
.section-eg-hardware-structure .container .image.image-4 {
  z-index: 2;
  margin-left: 284px;
  transform: translateX(-284px);
}
.section-eg-hardware-structure .container .image.image-4 .text {
  bottom: 86%;
  left: 42%;
}
.section-eg-hardware-structure .container .image.image-5 {
  z-index: 1;
  margin-left: 576px;
  transform: translateX(-576px);
}
.section-eg-hardware-structure .container .image.image-5 .text {
  top: 84%;
  left: 28%;
}
.section-eg-hardware-structure .container .image:hover img {
  transform: translateY(-50px);
  opacity: 1;
}
.section-eg-hardware-parameter {
  background: #f7f6fc url(../images/menjin-pingtai-bg.png) no-repeat center 56px;
  padding: 44px 0 70px;
}
.section-eg-hardware-parameter .container {
  position: relative;
}
.section-eg-hardware-parameter .parameter-image {
  width: 550px;
}
.section-eg-hardware-parameter .parameter-content {
  margin-top: 400px;
  margin-left: 550px;
  background-color: #ffffff;
  padding: 50px 0 30px 68px;
}
.section-eg-hardware-parameter .parameter-content .title {
  float: left;
  width: 240px;
}
.section-eg-hardware-parameter .parameter-content .title h4 {
  margin: 0;
  font-size: 36px;
  color: #333;
  font-weight: 700;
}
.section-eg-hardware-parameter .parameter-content .title p {
  font-size: 18px;
  font-weight: 500;
  margin-top: 20px;
  padding-bottom: 18px;
  border-bottom: #bebebe 1px solid;
  display: inline-block;
}
.section-eg-hardware-parameter .parameter-content dl {
  position: relative;
  margin: 0 0 0 240px;
  font-size: 18px;
  line-height: 36px;
}
.section-eg-hardware-parameter .parameter-content dl dt {
  float: left;
  width: 160px;
  line-height: 36px;
  font-weight: normal;
  color: #333333;
}
.section-eg-hardware-parameter .parameter-content dl dd {
  margin-left: 160px;
  line-height: 36px;
  color: #666666;
}
section.section-eg-scene {
  padding-top: 200px;
}
section.section-eg-scene .image {
  margin-top: 54px;
  border: #e7e7e7 1px solid;
  padding: 42px 67px;
}
section.section-eg-scene .image img {
  width: 100%;
}
/******/
.banner-sh-overview {
  margin-top: 152px;
  padding-top: 256px;
  height: 748px;
  background: url(../images/banner-huaju-01.jpg) no-repeat center;
  background-size: cover;
  text-align: center;
}
.banner-sh-hardware {
  margin-top: 152px;
  padding-top: 250px;
  height: 748px;
  background: url(../images/banner-jiaju-02.jpg) no-repeat center;
  background-size: cover;
  text-align: center;
}
section.section-sh-scene {
  padding-top: 200px;
}
section.section-sh-scene .image {
  margin-top: 54px;
  border: #e7e7e7 1px solid;
  padding: 42px 67px;
}
section.section-sh-scene .image img {
  width: 100%;
}
/***/
.banner-im-overview {
  margin-top: 152px;
  padding-top: 218px;
  height: 748px;
  background: url(../images/banner-jiankon-01.jpg) no-repeat center;
  background-size: cover;
  text-align: center;
}
.banner-im-hardware {
  position: relative;
  margin-top: 152px;
  padding-top: 100px;
  height: 748px;
  background: #272727 url(../images/banner-jiankon-02.jpg) no-repeat center;
  text-align: center;
  overflow: hidden;
}
.banner-im-hardware .text {
  margin-bottom: 50px;
}
.banner-im-hardware .image {
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -272px;
}
section.section-im-scene {
  padding-top: 200px;
}
section.section-im-scene .image {
  margin-top: 54px;
  border: #e7e7e7 1px solid;
  padding: 42px 67px;
}
section.section-im-scene .image img {
  width: 100%;
}
/****/
.banner-isc-overview {
  margin-top: 152px;
  padding-top: 274px;
  height: 748px;
  background: #272727 url(../images/bannertikon-01.jpg) no-repeat center bottom;
  text-align: center;
}
.banner-isc-overview img {
  margin-left: 400px;
}
.banner-isc-hardware {
  margin-top: 152px;
  padding-top: 194px;
  height: 748px;
  background: #272727 url(../images/banner-tikon-01.jpg) no-repeat center bottom;
  text-align: center;
}
.banner-isc-hardware img {
  margin-left: 440px;
}
section.section-isc-scene {
  padding-top: 200px;
}
section.section-isc-scene .image {
  margin-top: 54px;
  border: #e7e7e7 1px solid;
  padding: 42px 67px;
}
section.section-isc-scene .image img {
  width: 100%;
}
/****/
.banner-ip-overview {
  position: relative;
  margin-top: 152px;
  background: #2b2b2b;
  background-size: cover;
  text-align: center;
  height: 604px;
}
.banner-ip-overview video {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  background-color: transparent;
}
.banner-ip-overview .container {
  position: relative;
  height: 604px;
}
.banner-ip-overview .container img {
  position: absolute;
  top: 198px;
  right: 50%;
}
.section-ip-feature {
  background-color: #f6f6fb;
}
.section-ip-feature .features {
  text-align: center;
  margin-top: 70px;
}
.section-ip-feature .features .feature {
  display: inline-block;
  width: 300px;
  margin-bottom: 44px;
  font-size: 16px;
  line-height: 24px;
  padding: 0 60px;
}
.section-ip-feature .features .feature img {
  margin-bottom: 30px;
}
.banner-ip-hardware {
  margin-top: 152px;
  height: 616px;
  background: #272727 url(../images/banner-bg.png) no-repeat center center;
  background-size: cover;
  padding-top: 124px;
  position: relative;
  text-align: center;
}
.banner-ip-hardware .image {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 308px;
  text-align: center;
}
.banner-ip-hardware .image img {
  height: 100%;
}
.section-ip-specifications .specifications {
  margin-top: 64px;
}
.section-ip-specifications .specifications-left {
  float: left;
  position: relative;
  padding-left: 130px;
}
.section-ip-specifications .specifications-left .text {
  font-size: 16px;
  position: absolute;
  left: 470px;
  white-space: nowrap;
}
.section-ip-specifications .specifications-left .text.text-1 {
  top: 30px;
}
.section-ip-specifications .specifications-left .text.text-2 {
  top: 102px;
}
.section-ip-specifications .specifications-left .text.text-3 {
  top: 242px;
}
.section-ip-specifications .specifications-left .text.text-4 {
  top: 296px;
}
.section-ip-specifications .specifications-left .text.text-5 {
  top: 368px;
}
.section-ip-specifications .specifications-left .text.text-6 {
  top: 428px;
}
.section-ip-specifications .specifications-content {
  margin-left: 680px;
  font-size: 16px;
}
.section-ip-specifications .specifications-content td {
  padding: 12px;
}
section.section-ip-scene {
  padding-top: 200px;
}
section.section-ip-scene .image {
  margin-top: 54px;
  border: #e7e7e7 1px solid;
  padding: 42px 67px;
}
section.section-ip-scene .image img {
  width: 100%;
}
section.section-ip-app {
  height: 400px;
  background-color: #fff;
}
section.section-ip-app.first {
  margin-top: 152px;
}
section.section-ip-app.even {
  background-color: #f7f6fc;
}
section.section-ip-app.even .image img {
  left: 0;
  right: auto;
}
section.section-ip-app .container {
  overflow: hidden;
}
section.section-ip-app .image {
  height: 400px;
  position: relative;
}
section.section-ip-app .image img {
  position: absolute;
  right: 0;
  bottom: 0;
}
section.section-ip-app .text {
  padding: 98px 25px 0;
  font-weight: 300;
  font-family: Helvetica, "PingFang";
}
section.section-ip-app .text img {
  display: block;
  margin: 0 auto;
}
section.section-ip-app h4 {
  font-size: 39px;
  font-weight: 300;
  color: #333333;
  margin: 26px 0 0;
}
section.section-ip-app p {
  font-size: 25px;
  color: #333333;
  margin: 26px 0 0;
  font-weight: 300;
}
/****/
.banner-iem-overview {
  margin-top: 152px;
  padding-top: 90px;
  height: 748px;
  background: url(../images/bannner-wuye-01.jpg) no-repeat center;
  background-size: cover;
  text-align: center;
}
.banner-iem-hardware {
  margin-top: 152px;
  padding-top: 112px;
  height: 748px;
  background: #272727 url(../images/banner-wuye-02.jpg) no-repeat center bottom;
  text-align: center;
}
section.section-iem-scene {
  padding-top: 200px;
}
section.section-iem-scene .image {
  margin-top: 54px;
  border: #e7e7e7 1px solid;
  padding: 42px 67px;
}
section.section-iem-scene .image img {
  width: 100%;
}
/****/
.banner-we-overview {
  margin-top: 152px;
  padding-top: 244px;
  height: 748px;
  background: #272727 url(../images/banner-shuidian-01.jpg) no-repeat center;
  text-align: center;
}
.banner-we-overview img {
  margin-left: 450px;
}
.banner-we-hardware {
  margin-top: 152px;
  padding-top: 120px;
  height: 748px;
  background: #272727 url(../images/banner-shuidian-02.jpg) no-repeat center;
  text-align: center;
}
section.section-we-scene {
  padding-top: 200px;
}
section.section-we-scene .image {
  margin-top: 54px;
  border: #e7e7e7 1px solid;
  padding: 42px 67px;
}
section.section-we-scene .image img {
  width: 100%;
}
/****/
.banner-ifc-overview {
  margin-top: 152px;
  padding-top: 136px;
  height: 748px;
  background: #272727 url(../images/banner-xiaofang-01.jpg) no-repeat center;
  text-align: center;
}
.banner-ifc-hardware {
  margin-top: 152px;
  padding-top: 244px;
  height: 748px;
  background: #272727 url(../images/banner-xiaofang-02.jpg) no-repeat center bottom;
  text-align: center;
}
section.section-ifc-scene {
  padding-top: 200px;
}
section.section-ifc-scene .image {
  margin-top: 54px;
  border: #e7e7e7 1px solid;
  padding: 42px 67px;
}
section.section-ifc-scene .image img {
  width: 100%;
}
.section-news-info {
  padding: 92px 0 20px;
  background-color: #f6f7fb;
}
.section-news-info .container {
  background-color: #ffffff;
  padding: 60px 80px;
  min-width: 1080px;
  max-width: 1080px;
  width: 1080px;
}
.section-news-info .section-news-title {
  color: #333333;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
}
.section-news-info .section-news-date {
  text-indent: 0;
  margin: 28px 0 40px;
  text-align: center;
  font-size: 18px;
  color: #999999;
}
.section-news-info .section-news-content {
  padding: 0 40px;
}
.section-video {
  background-color: #f6f6fb;
}
.section-video video {
  display: block;
  margin: 40px auto 0;
  max-width: 100%;
}
.page404 {
  text-align: center;
  margin: 260px auto 150px;
  font-size: 20px;
  color: #999;
}
.page404 p {
  line-height: 100px;
}
/*代理商*/
.agent_top {
  background: url(../images/agent_bg1.jpg) no-repeat center 0;
  height: 604px;
  margin: 72px 0 0;
  color: #fff;
  text-align: center;
  padding: 135px 0 0;
}
.agent_top h4 {
  font-size: 48px;
  font-weight: normal;
}
.agent_top h5 {
  font-size: 30px;
  font-weight: normal;
  padding: 20px 0 0;
}
.agent_top ol {
  list-style: none;
  margin: 35px auto 0;
  width: 848px;
}
.agent_top ol li {
  float: left;
  width: 154px;
  height: 54px;
  border: 1px solid #fff;
  line-height: 54px;
  font-size: 20px;
  margin: 0 50px 0 0;
}
.agent_top ol li.last {
  margin: 0;
}
.agent_top .phone {
  font-size: 18px;
  margin: 28px 0 0;
}
.agent_top .button {
  display: block;
  margin: 19px auto 0;
  width: 126px;
  height: 33px;
  line-height: 33px;
  font-size: 18px;
  background: #537cd6;
  cursor: pointer;
  color: #fff;
  text-decoration: none;
}
section.agent-market {
  padding-bottom: 0;
}
section.agent-market .subtitle {
  margin: 26px 0 0;
}
section.agent-market .point {
  padding: 11px 0 0;
  background: url(../images/agent_market.png) no-repeat 618px 0;
  margin: 57px 0 0 194px;
  height: 273px;
}
section.agent-market .point li {
  margin: 0 0 24px;
  width: 465px;
}
ul.point {
  padding: 0;
  list-style: none;
}
ul.point li:before {
  content: "•";
  font-size: 20px;
  color: #6a98fa;
  position: absolute;
  left: -13px;
}
ul.point li {
  color: #666;
  font-size: 16px;
  line-height: 25px;
  position: relative;
}
section.agent-community {
  padding-bottom: 93px;
  background: #f6f6fb;
}
section.agent-community .subtitle {
  margin: 25px 0 0;
}
section.agent-community ol {
  padding: 0;
  width: 840px;
  margin: 18px auto 0;
  list-style: none;
  background: url(../images/agent_application.png) no-repeat 10px 10px;
}
section.agent-community ol li {
  float: left;
  width: 120px;
  height: 120px;
  margin: 10px;
  color: #333;
  text-align: center;
  padding: 80px 0 0;
  font-size: 18px;
}
section.agent-community ul {
  margin: 28px 0 0 367px;
}
section.agent-community ul li {
  width: 382px;
  float: left;
  padding: 0 0 6px;
}
section.agent-advantage {
  padding-bottom: 65px;
}
section.agent-advantage ol {
  padding: 0;
  list-style: none;
  margin: 39px auto 41px;
  width: 1040px;
}
section.agent-advantage ol li {
  float: left;
  width: 198px;
  height: 88px;
  border: 1px solid #aaaaaa;
  margin: 0 30px;
  text-align: center;
  color: #333;
  font-size: 14px;
}
section.agent-advantage ol li h5 {
  font-size: 28px;
  padding: 4px 0 0;
}
section.agent-advantage .point {
  margin: 13px 0 0 283px;
}
section.agent-advantage .point li {
  padding: 0 0 5px;
}
section.agent-profit {
  background: #f6f6fb;
  padding-bottom: 44px;
}
section.agent-profit ol {
  list-style: none;
  padding: 0;
  background: url(../images/agent_number.png) no-repeat 10px 0;
  width: 992px;
  margin: 44px auto 0;
}
section.agent-profit ol li {
  float: left;
  width: 476px;
  height: 133px;
  margin: 0 10px 20px;
  padding: 18px 0 0 123px;
  text-align: center;
  font-size: 16px;
  color: #666;
}
section.agent-profit ol li h5 {
  font-size: 18px;
  color: #333;
  padding: 0 0 6px;
}
section.agent-video {
  background: #fff;
}
section.agent-vs {
  background: url(../images/agent_bg2.jpg) no-repeat center 0;
  height: 602px;
  color: #333;
  font-size: 18px;
}
section.agent-vs h3.section-header {
  color: #fff;
}
section.agent-vs h3.section-header:after {
  background: #fff;
}
section.agent-vs table {
  margin: 45px auto 0;
  background: url(../images/agent_vs.png) no-repeat;
  width: 852px;
  height: 360px;
}
section.agent-vs table thead td {
  height: 46px;
  color: #fff;
  width: 370px;
}
section.agent-vs table thead td.first {
  width: 112px;
}
section.agent-vs table td {
  text-align: center;
}
section.agent-vs table .funciton td.first {
  vertical-align: middle;
}
section.agent-vs table .funciton td {
  vertical-align: top;
  height: 182px;
}
section.agent-vs table .funciton td p {
  padding: 29px 0 15px;
}
section.agent-value {
  padding: 50px 0 61px;
}
section.agent-value ol {
  width: 1540px;
  margin: 40px auto 0;
  padding: 0;
  list-style: none;
}
section.agent-value ol > li {
  border-radius: 3px;
  width: 371px;
  height: 324px;
  margin: 7px;
  float: left;
  background: #f6f6fb;
  color: #666;
  font-size: 16px;
  padding: 26px 21px 0 29px;
}
section.agent-value ol > li h4 {
  font-size: 18px;
  color: #333;
}
section.agent-value ol > li .content {
  height: 130px;
}
section.agent-value ol li {
  line-height: 26px;
}
section.agent-value ol .point {
  margin: 12px 0 0 19px;
}
section.agent-brand {
  padding-bottom: 40px;
  background: #f6f6fb;
}
section.agent-brand ol {
  list-style: none;
  padding: 0;
  margin: 45px auto 0;
  width: 893px;
  height: 424px;
  background: url(../images/agent_brand.png) no-repeat;
}
section.agent-brand ol > li {
  float: left;
  width: 437px;
  height: 193px;
  margin: 0 0 19px;
  padding: 16px 0 0 48px;
}
section.agent-brand ol > li h5 {
  font-size: 18px;
  color: #333;
}
section.agent-brand ol > li .point {
  padding: 9px 0 0 163px;
}
section.agent-brand ol li.even {
  margin-right: 19px;
}
section.agent-cooperation {
  background: url(../images/agent_bg3.jpg) no-repeat center 0;
  height: 714px;
  color: #fff;
}
section.agent-cooperation h3.section-header,
section.agent-cooperation .subtitle {
  color: #fff;
}
section.agent-cooperation h3.section-header:after {
  background: #fff;
}
section.agent-cooperation ol {
  padding: 0;
  list-style: none;
  background: url(../images/agent_cooperative.png) no-repeat;
  width: 1180px;
  margin: 79px auto 0;
}
section.agent-cooperation ol li {
  float: left;
  width: 25%;
  text-align: center;
  padding: 54px 0 96px;
  font-size: 16px;
}
section.agent-cooperation ol li h5 {
  font-size: 18px;
  margin-bottom: 14px;
}
section.case {
  background: #f6f6fb;
}
section.case ol {
  width: 1260px;
  padding: 0;
  list-style: none;
  margin: 20px auto 0;
}
section.case ol li p {
  float: left;
  width: 200px;
  height: 78px;
  background: #fff;
  border-radius: 3px;
  color: #666;
  font-size: 20px;
  text-align: center;
  line-height: 78px;
  margin: 5px;
}
section.case .swiper-container {
  padding: 0 0 20px;
}
section.case .swiper-container .swiper-pagination {
  bottom: 0;
}
section.case .swiper-container .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #333;
}
section.agent-apply {
  background: url(../images/agent_bg4.jpg) center 0;
  height: 699px;
}
section.agent-apply h3.section-header,
section.agent-apply .subtitle {
  color: #fff;
}
section.agent-apply h3.section-header:after {
  background: #fff;
}
section.agent-apply form {
  margin: 40px 0 0;
}
section.agent-apply form .form-group {
  width: 608px;
  margin: 0 auto 30px;
}
section.agent-apply form .form-group input {
  width: 100%;
  height: 60px;
  font-size: 18px;
  color: #666;
  text-indent: 30px;
}
section.agent-apply form .submit {
  width: 100%;
  color: #fff;
  background: #2ba2ff;
  height: 60px;
  font-size: 18px;
  line-height: 60px;
  border: none;
}
@media (max-width: 1540px) {
  section.agent-value ol {
    width: 770px;
  }
}
@media (min-width: 1920px) {
  section.agent-vs,
  .agent_top,
  section.agent-cooperation,
  section.agent-apply {
    background-size: 100% auto;
  }
}
.product-banner {
  margin-top: 72px;
  height: 400px;
  background: #48494e url(../images/product/banner_bg.png) no-repeat center center;
}
section.section-products {
  width: 100%;
  max-width: 1920px;
  min-width: 1370px;
  padding: 20px;
  background-color: #ffffff;
  overflow: hidden;
}
.product-item {
  float: left;
  width: 50%;
  margin-bottom: 20px;
}
.product-image {
  position: relative;
  width: 60%;
  padding-top: 37.52%;
  float: left;
}
.product-image img {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  transform: translateX(-50%);
}
.product-title {
  color: #333333;
  font-size: 42px;
  height: 154px;
  line-height: 154px;
  text-align: center;
}
.product-title span {
  position: relative;
  display: inline-block;
  padding-left: 32px;
}
.product-title span::before {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -8px;
  background-color: #333333;
  border-radius: 50%;
}
.product-content {
  position: relative;
  padding: 0 10% 40px;
}
.product-info {
  float: left;
  padding-top: 30px;
}
.product-info .title {
  font-size: 24px;
  color: #333333;
}
.product-info ul {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
}
.product-info li {
  position: relative;
  font-size: 18px;
  color: #333333;
  margin-bottom: 20px;
  padding-left: 20px;
}
.product-info li::before {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -5px;
  background-color: #333333;
  border-radius: 50%;
}
@media (min-width: 1920px) {
  .product-info .title {
    font-size: 36px;
  }
  .product-info li {
    font-size: 24px;
  }
}
.product-item-1,
.product-item-3,
.product-item-5,
.product-item-7 {
  margin-right: 10px;
}
.product-item-2,
.product-item-4,
.product-item-6,
.product-item-8 {
  margin-left: 10px;
}
.product-item-1,
.product-item-5 {
  background-color: #fafafa;
}
.product-item-2,
.product-item-6,
.product-item-3,
.product-item-7 {
  background-color: #eeeeee;
}
.product-item-4,
.product-item-8 {
  background-color: #fcfcfc;
}
.plan_top {
  background: url(../images/agent_bg1.jpg) no-repeat center 0;
  height: 604px;
  margin: 72px 0 0;
  color: #fff;
  text-align: center;
  padding: 133px 0 0;
}
.plan_top h2 {
  font-size: 48px;
  font-family: DengXian-Light;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 20px;
}
.plan_top .describe {
  font-size: 30px;
  font-family: DengXian-Light;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 10px;
}
.plan_top .describe .big {
  font-size: 36px;
  font-family: DengXian-Bold;
  font-weight: bold;
  color: #ffffff;
}
.plan_top ol {
  list-style: none;
  margin: 30px auto 0;
  width: 1060px;
  padding: 0;
}
.plan_top ol li {
  float: left;
  min-width: 154px;
  height: 54px;
  border: 1px solid #f6f6fb;
  line-height: 54px;
  font-size: 20px;
  margin: 0 50px 0 0;
  padding: 0 17px;
}
.plan_top ol li.last {
  margin: 0;
}
.plan_top .cooperation {
  font-size: 18px;
  font-family: DengXian-Light;
  font-weight: 300;
  color: #ffffff;
  margin-top: 58px;
}
.section.plan_example {
  padding-bottom: 30px;
}
.section.plan_example h4 {
  font-size: 18px;
  font-family: PingFang-SC-Medium;
  font-weight: 500;
  color: #333333;
  margin-top: 30px;
  text-align: center;
}
.section.plan_example ol {
  margin: 30px auto 0;
  width: 1190px;
  list-style: none;
  padding: 0;
  font-size: 16px;
  font-family: PingFang-SC-Medium;
  font-weight: 500;
  color: #333333;
}
.section.plan_example ol li {
  float: left;
  width: 170px;
  text-align: center;
}
.section.plan_example ol img {
  width: 68px;
  height: 68px;
  margin-bottom: 25px;
}
.section.plan_example ol .big {
  font-size: 20px;
  padding: 0;
}
.section.plan_example .plan_example_table_wrapper {
  margin: 50px auto;
  width: 1050px;
}
.section.plan_example .plan_example_table_button {
  list-style: none;
  padding: 0;
  margin: 0;
}
.section.plan_example .plan_example_table_button li {
  width: 231px;
  height: 53px;
  line-height: 53px;
  background: #d4d4d4;
  border-radius: 0px 20px 0px 0px;
  font-size: 20px;
  font-family: PingFang-SC-Medium;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  float: left;
  cursor: pointer;
  margin-left: 1px;
}
.section.plan_example .plan_example_table_button li.active {
  background: #9ab8ff;
}
.section.plan_example .plan_example_table {
  font-size: 18px;
  text-align: center;
  display: none;
}
.section.plan_example .plan_example_table thead {
  background: #999999;
  font-family: PingFang-SC-Medium;
  font-weight: 500;
  color: #ffffff;
}
.section.plan_example .plan_example_table thead th {
  height: 46px;
  line-height: 46px;
  text-align: center;
  border-right: 1px solid #fff;
  border-bottom: 0;
}
.section.plan_example .plan_example_table tbody {
  font-family: PingFang-SC-Regular;
  font-weight: 400;
  color: #333333;
  line-height: 60px;
  background: #e0e0e0;
}
.section.plan_example .plan_example_table tbody tr:nth-of-type(odd) {
  background: #efefef;
}
.section.plan_example .plan_example_table tbody td {
  min-height: 60px;
  box-sizing: border-box;
  line-height: 44px;
  border-right: 1px solid #fff;
}
.section.plan_example .plan_example_table tbody .h60 {
  height: 60px;
}
.section.plan_example .plan_example_table tbody .lh15 {
  line-height: 1.5;
}
.section.plan_example .db {
  display: table;
}
.section.plan_example .plan_example_news {
  list-style: none;
  margin: 0 auto;
  width: 1240px;
  padding: 0;
}
.section.plan_example .plan_example_news li {
  float: left;
  width: 600px;
  height: 140px;
  background: #ffffff;
  border-radius: 5px;
  margin-left: 20px;
  padding: 20px 20px 40px;
  box-sizing: border-box;
  margin-bottom: 19px;
  transition: all .3s;
}
.section.plan_example .plan_example_news li img {
  float: left;
  margin-right: 17px;
}
.section.plan_example .plan_example_news li h5 {
  font-size: 18px;
  font-family: PingFang-SC-Bold;
  font-weight: bold;
  color: #333333;
  line-height: 22px;
  margin-bottom: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.section.plan_example .plan_example_news li p {
  font-size: 16px;
  font-family: PingFang-SC-Regular;
  font-weight: 400;
  color: #666666;
  line-height: 22px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.section.plan_example .plan_example_news li:hover,
.section.plan_example .plan_example_news li.active {
  box-shadow: 0px 14px 13px 3px rgba(35, 84, 149, 0.08);
}
.plan_cooperation {
  background: #f4f5fa;
  padding-bottom: 50px;
}
.plan_cooperation .plan_cooperation_wrapper {
  width: 1180px;
  margin: 50px auto 0;
}
.plan_cooperation .cooperation_top {
  width: 568px;
  height: 378px;
  background: #ffffff;
  position: relative;
}
.plan_cooperation .cooperation_top .decorate_text {
  position: absolute;
  left: 0;
  top: 0;
  width: 113px;
  text-align: center;
  height: 113px;
  line-height: 113px;
  background: #e3ebfe;
  font-size: 60px;
  font-family: MicrosoftYaHei-Bold;
  font-weight: bold;
  color: #6694f9;
}
.plan_cooperation .cooperation_top .decorate_img {
  position: absolute;
  right: 60px;
  top: 48px;
  width: 87px;
  height: 86px;
}
.plan_cooperation .cooperation_top .decorate_img img {
  width: 100%;
  height: 100%;
}
.plan_cooperation .cooperation_top h3 {
  font-size: 30px;
  font-family: PingFang-SC-Bold;
  font-weight: bold;
  color: #92b1fa;
  line-height: 113px;
  padding-left: 143px;
  margin: 0;
}
.plan_cooperation .cooperation_left {
  float: left;
}
.plan_cooperation .cooperation_left ul {
  padding-top: 15px;
  padding-left: 50px;
}
.plan_cooperation .cooperation_left ul li {
  font-size: 16px;
  font-family: PingFang-SC-Medium;
  font-weight: 500;
  color: #666666;
  padding-top: 30px;
}
.plan_cooperation .cooperation_right {
  float: right;
}
.plan_cooperation .cooperation_right p {
  text-align: center;
  font-size: 16px;
  font-family: PingFang-SC-Medium;
  font-weight: 500;
  color: #666666;
  padding-top: 90px;
}
.plan_cooperation .cooperation_middle {
  width: 1180px;
  height: 318px;
  background: #ffffff;
  margin-top: 30px;
}
.plan_cooperation .cooperation_middle h4 {
  font-size: 20px;
  font-family: PingFang-SC-Medium;
  font-weight: 500;
  color: #333333;
  line-height: 60px;
  text-align: center;
}
.plan_cooperation .cooperation_middle .cooperation_box {
  padding-left: 220px;
}
.plan_cooperation .cooperation_middle .cooperation_box > div {
  float: left;
  width: 450px;
}
.plan_cooperation .cooperation_middle .cooperation_box h5 {
  font-size: 24px;
  font-family: PingFang-SC-Heavy;
  font-weight: 800;
  color: #6a98fa;
  position: relative;
  left: -13px;
}
.plan_cooperation .cooperation_middle .cooperation_box li {
  font-size: 16px;
  font-family: PingFang-SC-Medium;
  font-weight: 500;
  color: #666;
  padding-left: 6px;
}
.plan_cooperation .cooperation_middle .cooperation_box span {
  width: 200px;
  display: inline-block;
}
.plan_cooperation .cooperation_middle .cooperation_box .small_dec {
  width: 120px;
  display: inline-block;
}
.plan_cooperation .cooperation_bottom {
  margin-top: 30px;
  padding: 0;
}
.plan_cooperation .cooperation_bottom li {
  float: left;
  margin-right: 30px;
  width: 211px;
  height: 212px;
  background: #ffffff;
  border-radius: 3px;
  padding: 20px 23px 0;
  text-align: center;
}
.plan_cooperation .cooperation_bottom h5 {
  font-size: 18px;
  font-family: PingFang-SC-Medium;
  font-weight: 500;
  color: #6a98fa;
  margin-bottom: 20px;
}
.plan_cooperation .cooperation_bottom p {
  font-size: 16px;
  font-family: PingFang-SC-Medium;
  font-weight: 500;
  color: #666666;
  line-height: 30px;
}
.plan_cooperation .cooperation_bottom li.last {
  margin-right: 0;
}
.section.plan_function {
  padding-bottom: 30px;
  margin: 0 auto;
  text-align: center;
}
.section.plan_function p {
  font-size: 18px;
  font-family: MicrosoftYaHei;
  font-weight: 500;
  color: #333333;
  line-height: 35px;
}
.section.plan_function .plan_function_table1 {
  width: 1180px;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
}
.section.plan_function .plan_function_table1 tr {
  border-bottom: 1px solid #e5e5e5;
}
.section.plan_function .plan_function_table1 .last {
  border: none;
}
.section.plan_function .plan_function_table1 td {
  width: 145px;
  height: 295px;
  text-align: center;
  border-right: 1px solid #e5e5e5;
}
.section.plan_function .plan_function_table1 .plan_function_img {
  height: 119px;
}
.section.plan_function .plan_function_table1 .plan_function_img img {
  vertical-align: middle;
}
.section.plan_function .plan_function_table1 .title {
  font-size: 22px;
  font-family: MicrosoftYaHei;
  font-weight: 400;
  color: #333333;
  line-height: 35px;
  margin: 0;
}
.section.plan_function .plan_function_table1 .introduction {
  font-weight: 400;
}
.section.plan_function .plan_function_table1 .ellipsis {
  font-size: 30px;
  color: #6a98fa;
}
.section.plan_function .plan_function_table2 {
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  width: 1180px;
}
.section.plan_function .plan_function_table2 td {
  height: 220px;
  width: 25%;
}
.section.plan_function .plan_function_table2 div {
  height: 177px;
  position: relative;
}
.section.plan_function .plan_function_table2 div img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.section.plan_function ol {
  width: 701px;
  margin: 30px auto 0;
  padding: 0;
}
.section.plan_function ol li {
  float: left;
  width: 274px;
  margin-right: 153px;
}
.section.plan_function ol .last {
  margin: 0;
}
.section.plan_cloud_architecture {
  background: #69a3ff;
  position: relative;
}
.section.plan_cloud_architecture h3.section-header {
  color: #fff;
}
.section.plan_cloud_architecture h3.section-header:after {
  background-color: #fff;
}
.section.plan_cloud_architecture .bg_img {
  position: absolute;
  top: 244px;
  left: 50%;
  transform: translateX(-50%);
}
.section.plan_cloud_architecture .plan_cloud_architecture_top {
  width: 700px;
  margin: 38px auto 0;
}
.section.plan_cloud_architecture .plan_cloud_architecture_top > div {
  width: 278px;
  padding: 0 27px;
  text-align: center;
}
.section.plan_cloud_architecture .plan_cloud_architecture_top h6 {
  font-size: 20px;
  font-family: PingFang-SC-Medium;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 20px;
  margin-top: 26px;
}
.section.plan_cloud_architecture .plan_cloud_architecture_top p {
  font-size: 16px;
  font-family: PingFang-SC-Medium;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  line-height: 26px;
}
.section.plan_cloud_architecture .plan_cloud_architecture_top1 {
  width: 1022px;
  margin-top: 164px;
}
.section.plan_cloud_architecture ul {
  width: 800px;
  margin: 155px auto 0;
  padding: 0;
}
.section.plan_cloud_architecture ul li {
  width: 179px;
  height: 129px;
  background: rgba(255, 255, 255, 0.5);
  padding: 17px 17px 0;
  margin-right: 20px;
  text-align: center;
  float: left;
}
.section.plan_cloud_architecture ul h5 {
  font-size: 20px;
  font-family: PingFang-SC-Medium;
  font-weight: 500;
  color: #333333;
  margin-bottom: 20px;
}
.section.plan_cloud_architecture ul p {
  font-size: 16px;
  font-family: PingFang-SC-Medium;
  font-weight: 500;
  color: rgba(51, 51, 51, 0.7);
  line-height: 26px;
}
.section.plan_cloud_architecture ol {
  margin: 0 auto;
  width: 914px;
  padding: 0;
}
.section.plan_cloud_architecture ol li {
  position: relative;
  width: 435px;
  height: 193px;
  line-height: 193px;
  text-align: center;
  border-radius: 5px;
  float: left;
  margin-right: 20px;
  margin-top: 20px;
}
.section.plan_cloud_architecture ol li p {
  font-size: 30px;
  font-family: PingFang-SC-Medium;
  font-weight: 500;
  color: #ffffff;
  position: relative;
  z-index: 2;
}
.section.plan_cloud_architecture ol li img {
  position: absolute;
  left: 0;
  right: 0;
  width: 435px;
  height: 193px;
  border-radius: 5px;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
