html {
  -webkit-text-size-adjust: none;
}
.l-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1439px) {
  .l-container {
    max-width: 1200px;
  }
}
@media (max-width: 1279px) {
  .l-container {
    padding-left: 3%;
    padding-right: 3%;
  }
}
@media (max-width: 767px) {
  .l-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.mb {
  display: none !important;
}
@media (max-width: 978px) {
  .pc {
    display: none !important;
  }
  .mb {
    display: block !important;
  }
}
.fold-icon {
  display: none !important;
  width: 12px;
  height: 12px;
  background: url("../images/ifold.svg") center no-repeat;
  background-size: cover;
  position: absolute;
  right: 30px;
  top: 50%;
  margin-top: -6px;
  transition: all 0.3s;
  transform: rotateX(180deg);
}
.unfold.fold-icon {
  transform: rotateX(0);
  background: url("../images/ifold-h.svg") center no-repeat;
  background-size: cover;
}
@media (max-width: 978px) {
  .unfold.fold-icon {
    background-size: cover;
  }
  .unfold.fold-icon .pc {
    display: none !important;
  }
  .unfold.fold-icon .mb {
    display: block !important;
  }
  .unfold.fold-icon .fold-icon {
    display: block !important;
  }
}
.l-btn {
  height: 48px;
  line-height: 48px;
  padding: 0 30px;
  border: 1px solid #32ced7;
  color: #32ced7;
  font-size: 16px;
  vertical-align: middle;
  text-align: center;
  transition: all 0.3s;
  border-radius: 4px;
  float: left;
  margin-top: 10px;
  margin-right: 20px;
}
.l-btn + .l-btn {
  margin-right: 0;
}
.l-btn:hover {
  color: #42dde6;
  border: 1px solid #42dde6;
}
.l-btn.green {
  color: #fff;
  border: 1px solid #32ced7;
  background: #32ced7;
}
.l-btn.green:hover {
  background: #42dde6;
}
.l-btn.gray {
  color: #666;
  border: 1px solid #f3f7fd;
  background: #f3f7fd;
}
.l-btn.gray:hover {
  background: #f3f7fd;
  color: #666;
  border-color: #f3f7fd;
}
.l-btn.orange {
  color: #fff;
  border: 1px solid #f59a23;
  background: #f59a23;
}
.l-btn.orange:hover {
  border: 1px solid #ffa632;
  background: #ffa632;
}
.bs-btn {
  background: #2fc6d0;
  border-radius: 24px;
  color: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.bs-btn span {
  font-size: 16px;
  color: #ffffff;
  letter-spacing: 0;
  text-align: center;
  line-height: 24px;
  font-weight: 400;
  position: relative;
  z-index: 2;
}
.bs-btn i {
  position: relative;
  z-index: 2;
  transition: all 0.3s;
  margin-left: 10px;
  display: block;
  overflow: hidden;
  width: 8px;
}
.bs-btn i svg {
  width: 100%;
  float: left;
}
.bs-btn i svg path {
  fill: #fff;
  opacity: 1;
}
.bs-btn:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0%;
  height: 100%;
  width: 0;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  z-index: 1;
  background-color: #fff;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.bs-btn:hover {
  border-color: #2cc6d0;
}
.bs-btn:hover i {
  transform: translateX(6px);
}
.bs-btn:hover svg path {
  fill: #2cc6d0;
  opacity: 1;
}
.bs-btn:hover span {
  color: #2cc6d0;
}
.bs-btn:hover:before {
  width: 102%;
}
.bs-btn.white {
  background: #fff;
  border-radius: 24px;
  color: #2fc6d0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.bs-btn.white span {
  font-size: 16px;
  color: #2fc6d0;
  letter-spacing: 0;
  text-align: center;
  line-height: 24px;
  font-weight: 400;
  position: relative;
  z-index: 2;
}
.bs-btn.white i {
  position: relative;
  z-index: 2;
  transition: all 0.3s;
  margin-left: 10px;
  display: block;
  overflow: hidden;
  width: 8px;
}
.bs-btn.white i svg {
  width: 100%;
  float: left;
}
.bs-btn.white i svg path {
  fill: #2fc6d0;
  opacity: 1;
}
.bs-btn.white:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0%;
  height: 100%;
  width: 0;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  z-index: 1;
  background-color: #2fc6d0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.bs-btn.white:hover {
  border-color: #2cc6d0;
}
.bs-btn.white:hover i {
  transform: translateX(6px);
}
.bs-btn.white:hover svg path {
  fill: #fff;
  opacity: 1;
}
.bs-btn.white:hover span {
  color: #fff;
}
.bs-btn.white:hover:before {
  width: 102%;
}
@media (max-width: 978px) {
  .l-btn {
    float: none;
    height: 36px;
    line-height: 36px;
    font-size: 14px;
    padding: 0 28px;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    margin-right: 10px;
  }
  .l-btn + .l-btn {
    margin-right: 0;
  }
  .bs-btn {
    background: #2fc6d0;
    border-radius: 24px;
    color: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    height: 44px;
    line-height: 44px;
    float: left;
    margin: 0 auto;
  }
}
.clearfix:after {
  /*伪元素是行内元素 正常浏览器清除浮动方法*/
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.clearfix {
  *zoom: 1;
  /*ie6清除浮动的方式 *号只有IE6-IE7执行，其他浏览器不执行*/
}
.tab[data-direction="cross"] > .tab_btn > li {
  float: left;
  text-align: center;
}
.tab[data-direction="cross"] > .tab_btn > li > p {
  display: inline-block;
  font-size: 18px;
  color: #333;
  cursor: pointer;
}
.tab[data-direction="cross"] > .tab_item > li {
  float: left;
}
.tab[data-direction="cross"][data-index="2"] > .tab_btn > li {
  width: 50%;
}
.tab[data-direction="cross"][data-index="3"] > .tab_btn > li {
  width: 33.333%;
}
.tab[data-direction="cross"][data-index="4"] > .tab_btn > li {
  width: 25%;
}
.tab[data-direction="vertical"] > .tab_btn > li > p {
  display: inline-block;
  font-size: 18px;
  color: #333;
  cursor: pointer;
}
.tab[data-direction="vertical"] > .tab_item > li {
  float: left;
}
.tab[data-direction="vertical"][data-index="2"] > .tab_btn > li {
  width: 50%;
}
.tab[data-direction="vertical"][data-index="3"] > .tab_btn > li {
  width: 33.333%;
}
.tab[data-direction="vertical"][data-index="4"] > .tab_btn > li {
  width: 25%;
}
.l-section {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}
.l-title {
  padding-bottom: 0.6rem;
  font-size: 0;
  text-align: center;
}
.l-title h2 {
  color: #000000;
  text-align: center;
  font-weight: 500;
}
.l-title p {
  text-align: center;
  color: #505050;
  font-weight: 400;
  margin-top: 0.1rem;
}
@media (max-width: 978px) {
  .l-section {
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
  }
  .l-title {
    padding-bottom: 30px;
    font-size: 0;
  }
  .l-title h2 {
    font-weight: 400;
  }
}
body {
  background: #fff;
}
@media (max-width: 978px) {
  body {
    background: #fff;
  }
}
.content {
  padding-top: 70px;
}
@media (max-width: 978px) {
  padding-top: 60px;
}
.banner {
  background: url(../images/banner-bg.jpg) center no-repeat;
  background-size: cover;
}
.banner .banner-main {
  position: relative;
  z-index: 2;
  text-align: left;
  display: flex;
  align-items: center;
  min-height: 400px;
}
.banner .banner-info {
  display: inline-block;
  vertical-align: middle;
  line-height: 1rem;
  text-align: left;
  width: 50%;
  padding-right: 100px;
}
.banner .banner-info h1 {
  color: #000000;
  letter-spacing: 0;
  font-size: 0.38rem;
  font-weight: 500;
  line-height: 0.6rem;
  margin-bottom: 20px;
}
.banner .banner-info p {
  font-size: 16px;
  color: #666666;
  letter-spacing: 0;
  line-height: 28px;
  font-weight: 400;
}
.banner .banner-img {
  vertical-align: middle;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  padding: 30px 0;
}
.banner .banner-img img {
  width: 60%;
  display: inline-block;
}
@media (max-width: 978px) {
  .banner {
    background: #ecf7f9;
  }
  .banner .l-container {
    padding: 0 20px;
  }
  .banner .banner-main {
    height: auto;
    line-height: 0px;
    position: relative;
    padding-top: 0;
    padding-bottom: 30px;
    text-align: center;
    display: block;
  }
  .banner .banner-main img {
    width: 100%;
  }
  .banner .bealters .cont {
    margin: 0 auto;
  }
  .banner .btn-box {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 20px;
  }
  .banner .btn-box .bs-btn {
    margin: 0;
  }
  .banner .btn-box .bs-btn + a {
    margin-left: 20px;
  }
  .banner .banner-info {
    display: inline-block;
    vertical-align: middle;
    line-height: 1rem;
    text-align: center;
    width: 100%;
    padding-top: 40px;
    padding-right: 0;
  }
  .banner .banner-info h1 {
    font-size: 24px;
    color: #000000;
    letter-spacing: 0;
    line-height: 36px;
    font-weight: 500;
  }
  .banner .banner-info p {
    font-size: 16px;
    color: #666666;
    letter-spacing: 0;
    text-align: center;
    line-height: 24px;
    font-weight: 400;
  }
  .banner .banner-img {
    position: static;
    width: 100%;
    padding: 0;
    padding-top: 30px;
  }
}
.what {
  background: #fff;
}
.what .l-body ul li {
  margin-right: 40px;
  float: left;
  width: calc(( 100% - 40px ) / 2 );
  background: #ffffff;
  box-shadow: 0px 5px 10px 0px #e4ebf0;
  border-radius: 10px;
}
.what .l-body ul li:last-child {
  margin-right: 0;
}
.what .l-body ul li .img-box {
  position: relative;
}
.what .l-body ul li .img-box img {
  width: 100%;
}
.what .l-body ul li .img-box span {
  position: absolute;
  width: 137px;
  height: 44px;
  background: url(../images/what-biaoqian.png);
  background-size: 100% 100%;
  font-size: 16px;
  color: #2cc6d0;
  letter-spacing: 0;
  padding-left: 30px;
  line-height: 44px;
  font-weight: 400;
  left: -8px;
  border-radius: 8px 0px 0px 0px;
}
.what .l-body ul li .info-box {
  padding: 30px;
}
.what .l-body ul li .info-box h3 {
  font-size: 24px;
  color: #000000;
  letter-spacing: 0;
  line-height: 36px;
  font-weight: 500;
  margin-bottom: 10px;
}
.what .l-body ul li .info-box p {
  font-size: 16px;
  color: #666666;
  letter-spacing: 0;
  line-height: 24px;
  font-weight: 400;
}
@media (max-width: 978px) {
  .what {
    background: #fff;
  }
  .what .l-title {
    padding: 0 20px 30px;
  }
  .what .l-body ul li {
    margin-right: 0px;
    float: none;
    width: 100%;
    background: #ffffff;
    box-shadow: 0px 5px 10px 0px #e4ebf0;
    border-radius: 10px;
    margin-bottom: 20px;
  }
  .what .l-body ul li:last-child {
    margin-bottom: 0;
  }
  .what .l-body ul li .img-box {
    position: relative;
  }
  .what .l-body ul li .img-box img {
    width: 100%;
  }
  .what .l-body ul li .img-box span {
    position: absolute;
    width: 97px;
    height: 44px;
    background: url(../images/what-biaoqian.png);
    background-size: 100% 100%;
    font-size: 14px;
    color: #2cc6d0;
    letter-spacing: 0;
    padding-left: 20px;
    line-height: 44px;
    font-weight: 400;
  }
  .what .l-body ul li .info-box {
    padding: 20px;
  }
  .what .l-body ul li .info-box h3 {
    font-size: 16px;
    color: #000000;
    letter-spacing: 0;
    line-height: 24px;
    font-weight: 500;
    margin-bottom: 10px;
  }
  .what .l-body ul li .info-box p {
    font-size: 14px;
    color: #666666;
    letter-spacing: 0;
    line-height: 20px;
    font-weight: 400;
  }
}
@keyframes fontSS {
  0% {
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}
.solution {
  position: relative;
  overflow: hidden;
  background: #f9fbff;
}
.solution .l-body {
  background: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: top;
  /*垂直居中*/
  justify-content: center;
  /*水平居中*/
  position: relative;
  box-shadow: 10px 10px 20px rgba(203, 219, 239, 0.4);
  z-index: 2;
  overflow: hidden;
}
.solution .l-body .l-content-l {
  width: 260px;
  background: #ecf7f9;
  border-radius: 12px 0px 0px 12px;
  padding: 30px 20px 0 30px;
  overflow: hidden;
}
.solution .l-body .l-content-l::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  background: url(../images/aaaaa.png) center no-repeat;
  background-size: 100% 100%;
  transform: translateX(-48%) translateY(50%);
  width: 500px;
  height: 500px;
}
.solution .l-body .l-content-l .content-box {
  display: none;
}
.solution .l-body .l-content-l .active h3 {
  color: #22cdd7;
}
.solution .l-body .l-content-l li {
  background: #ffffff;
  box-shadow: 0px 5px 10px 0px #dff1f3;
  border-radius: 10px;
  margin-bottom: 20px;
  width: 200px !important;
  position: relative;
  z-index: 2;
  cursor: pointer;
}
.solution .l-body .l-content-l li:last-child {
  border: none;
}
.solution .l-body .l-content-l li h3 {
  font-size: 14px;
  color: #000000;
  letter-spacing: 0;
  line-height: 52px;
  margin-bottom: 0;
  text-align: left;
  padding-left: 20px;
  cursor: pointer;
}
.solution .l-body .l-content-l li h3:hover {
  color: #22cdd7;
}
.solution .l-body .l-content-l li i:first-child {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  vertical-align: middle;
  margin-top: -3px;
}
.solution .l-body .l-content-l li.active {
  width: 100% !important;
  padding-right: 10px;
  background: url(../images/enterprise3-bg3.png);
  background-size: 100% 100%;
}
.solution .l-body .l-content-l li:nth-child(1).active h3 {
  color: #fff;
}
.solution .l-body .l-content-l li:nth-child(2).active h3 {
  color: #fff;
}
.solution .l-body .l-content-l li:nth-child(3).active h3 {
  color: #fff;
}
.solution .l-body .l-content-l li:nth-child(4).active h3 {
  color: #fff;
}
.solution .l-body .l-content-l li:nth-child(5).active h3 {
  color: #fff;
}
.solution .l-body .l-content-r {
  width: calc( 100% - 260px );
  position: relative;
}
.solution .l-body .l-content-r li {
  padding: 40px;
}
.solution .l-body .l-content-r li .t-content {
  width: 50%;
  padding-right: 40px;
}
.solution .l-body .l-content-r li .t-content h3 {
  font-size: 24px;
  color: #000000;
  letter-spacing: 0;
  line-height: 36px;
  font-weight: 500;
  margin-bottom: 20px;
}
.solution .l-body .l-content-r li .img-box {
  width: 50%;
  font-size: 0;
}
.solution .l-body .l-content-r li .img-box img {
  width: 100%;
  background: #2fc6d0;
  border-radius: 10px;
}
.solution .l-body .l-content-r li .b-content {
  padding-right: 0px;
}
.solution .l-body .l-content-r li .b-content p {
  font-size: 14px;
  color: #666666;
  letter-spacing: 0;
  line-height: 24px;
  font-weight: 400;
  position: relative;
}
.solution .l-body .l-content-r li .b-content p i {
  background: url(../images/icon-suc.svg);
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
}
.solution .l-body .l-content-r li .b-content .btn-box {
  margin-top: 40px;
}
.solution .l-body .l-content-r li .b-content .btn-box a {
  float: none;
  width: 156px;
}
.solution .l-body .l-content-r li .content-box {
  display: flex;
  align-items: center;
  justify-items: center;
}
.solution .l-body .l-content-r li {
  opacity: 0;
  transition: all 0.3s;
}
.solution .l-body .l-content-r .active {
  opacity: 1;
  transition: all 0.3s;
}
.solution .l-body .l-content-r li:nth-child(n + 2) {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.solution .l-body[data-index="1"] .l-content-r li:nth-child(1) {
  display: block;
}
.solution .l-body[data-index="2"] .l-content-r li:nth-child(2) {
  display: block;
}
.solution .l-body[data-index="3"] .l-content-r li:nth-child(3) {
  display: block;
}
.solution .l-body[data-index="4"] .l-content-r li:nth-child(4) {
  display: block;
}
.solution .l-body[data-index="5"] .l-content-r li:nth-child(5) {
  display: block;
}
.solution .bg-box.pc {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: none;
}
.solution .bg-box.pc img {
  position: absolute;
  width: 120px;
  height: 120px;
  z-index: -1;
}
.solution .bg-box.pc img:nth-child(1) {
  width: 588px;
  height: 588px;
  top: -30%;
  left: 90%;
  animation: banner2 16s ease-in-out infinite;
}
.solution .bg-box.pc img:nth-child(2) {
  width: 131px;
  height: 131px;
  top: 20%;
  left: 3%;
  animation: banner2 16s 1s ease-in-out infinite;
}
.solution .bg-box.pc img:nth-child(3) {
  width: 959px;
  height: 959px;
  top: 60%;
  left: -30%;
  animation: banner1 16s 1s ease-in-out infinite;
}
@media (max-width: 978px) {
  .solution {
    background: #eafbfd;
    padding-bottom: 40px;
  }
  .solution .l-title h2 {
    color: #000;
  }
  .solution .l-body {
    display: block;
    background: transparent;
    box-shadow: none;
  }
  .solution .l-body .l-content-l {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    padding: 0;
    background: transparent;
  }
  .solution .l-body .l-content-l li {
    margin-bottom: 10px;
    box-shadow: none;
    border-radius: 4px;
    background: #ffffff;
    box-shadow: 0px 0px 5px 0px rgba(213, 213, 213, 0.8);
    border-radius: 8px;
    border: none;
    overflow: hidden;
    padding: 0;
    width: 100% !important;
  }
  .solution .l-body .l-content-l li.active {
    background: #4bc6d0 !important;
    padding-right: 0;
  }
  .solution .l-body .l-content-l li h3 {
    font-size: 16px;
    color: #333333;
    letter-spacing: 0;
    line-height: 56px;
    text-align: left;
    padding: 0 20px;
    position: relative;
  }
  .solution .l-body .l-content-l li i:last-child {
    display: block !important;
  }
  .solution .l-body .l-content-l li i:first-child {
    right: 20px;
    margin-right: 0;
    margin-top: -9px;
  }
  .solution .l-body .l-content-l:after {
    display: none;
  }
  .solution .l-body .l-content-r {
    display: none;
  }
  .solution .l-body .l-content-l .content-box {
    margin-bottom: 0;
    background: #fff;
    padding: 15px 15px 20px;
  }
  .solution .l-body .l-content-l .content-box .t-content h3 {
    font-size: 20px;
    color: #5a4848 !important;
    letter-spacing: 0;
    line-height: 30px;
    font-weight: 500;
    margin-bottom: 10px;
    padding-left: 0;
  }
  .solution .l-body .l-content-l .content-box .img-box {
    width: 100%;
    font-size: 0;
    float: none;
    position: static;
    transform: translateY(0);
    margin-bottom: 0px;
    border-radius: 8px;
    height: 215px;
    overflow: hidden;
    margin-top: 20px;
    display: none;
  }
  .solution .l-body .l-content-l .content-box .img-box img {
    width: 100%;
    border-radius: 8px;
  }
  .solution .l-body .l-content-l .content-box .b-content {
    width: 100%;
    padding-right: 0px;
  }
  .solution .l-body .l-content-l .content-box .b-content p {
    font-size: 13px;
    color: #666666;
    letter-spacing: 0;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 0px;
    position: relative;
    padding-left: 0px;
  }
  .solution .l-body .l-content-l .content-box .b-content p i {
    background: url(../images/icon-suc.svg) !important;
    background-size: 100% 100% !important;
    position: absolute;
    left: 0;
    top: 6px;
    width: 16px;
    height: 16px;
  }
  .solution .l-body .l-content-l .content-box .b-content .btn-box {
    margin-top: 20px;
  }
  .solution .l-body .l-content-l .content-box .b-content .btn-box a {
    float: none;
    width: 156px;
  }
}
.l-sec6 .cont {
  display: block !important;
  text-align: center;
  width: 100%;
}
.l-sec6 .cont .font {
  width: 100%;
  margin-bottom: 30px;
}
.l-sec6 .cont .gt .f_but1 {
  width: 156px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 978px) {
  .l-sec6 .cont {
    display: block !important;
    text-align: center;
    width: 100%;
    padding: 30px 0;
  }
  .l-sec6 .cont .font {
    width: 100%;
    margin-bottom: 20px;
    font-size: 24px;
    color: #ffffff;
    letter-spacing: 0;
    text-align: center;
    line-height: 36px;
    font-weight: 500;
  }
  .l-sec6 .cont .gt .f_but1 {
    width: 156px;
    left: 50%;
    transform: translateX(-50%);
  }
}
