/* 通用 */
/* ------------------------八等分 开始*/
.col-xs-1-8,
.col-sm-1-8,
.col-md-1-8,
.col-lg-1-8 {
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
}

.col-xs-1-8 {
  width: 12.5%;
  float: left;
}

@media (min-width: 768px) {
  .col-sm-1-8 {
    width: 12.5%;
    float: left;
  }
}

@media (min-width: 992px) {
  .col-md-1-8 {
    width: 12.5%;
    float: left;
  }
}

@media (min-width: 1200px) {
  .col-lg-1-8 {
    width: 12.5%;
    float: left;
  }
}

/* ------------------------八等分 结束*/
/* ------------------------五等分  开始 */
.col-xs-1-5,
.col-sm-1-5,
.col-md-1-5,
.col-lg-1-5 {
  min-height: 1px;
  padding-left: 0px;
  padding-right: 0px;
  position: relative;
}

.col-xs-1-5 {
  width: 20%;
  float: left;
}

@media (min-width: 768px) {
  .col-sm-1-5 {
    width: 20%;
    float: left;
  }
}

@media (min-width: 992px) {
  .col-md-1-5 {
    width: 20%;
    float: left;
  }
}

@media (min-width: 1200px) {
  .col-lg-1-5 {
    width: 20%;
    float: left;
  }
}

/* ------------------------五等分  结束 */
/* 标题 */
.tit-2024 {
  width: 100%;
  text-align: center;
  letter-spacing: 4px;
  padding: 50px 0;
}

.tit-2024 h2 {
  font-weight: normal !important;
  font-size: 28px;
  color: #333333;
}

.tit-2024 span {
  color: #199fff;
  font-size: 34px;
}

.tit-2024 p {
  margin-top: 10px;
  color: #7f868e;
  font-size: 16px;
  letter-spacing: 1px;
}

/* 标题/ */
/* 产品系列 */
.cpxl li {
  width: 270px;
  box-sizing: border-box;
  padding: 50px 30px 30px;
  margin-bottom: 50px;
  border-radius: 6px;
  background-color: #fff;
}

.cpxl li h3 {
  font-size: 20px;
  margin-top: 30px;
  margin-bottom: 15px;
}

.cpxl li p {
  font-size: 16px;
  color: #666;
}

.cpxl li .btn {
  background-color: #0E86FE;
  margin-top: 20px;
  color: #fff !important;
  width: 180px;
  cursor: pointer;
}

.cpxl li:hover {
  animation: float 2s ease-in-out infinite;

}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* 产品系列/ */
/* 我们的服务 */
.w1200 {
  margin: 0 auto;
  width: 1200px;
  height: auto;
  overflow: hidden;
}

.frist-box {
  /* background: #f2f7f3; */
  padding-bottom: 40px;
}



.frist-ultit {
  font-size: 22px;
  color: #5c5c5c;
  margin: 15px auto;
  text-decoration: none;
}

.frist-ulfont {
  font-size: 12px;
  color: #5c5c5c;
  line-height: 20px;
  display: block;
  width: 84%;
  margin: 0 13%;
}

.tab_menuc {}

#tabc .tab_menuc li {}

#tabc .tab_boxc {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
  position: relative;
}

#tabc .tab_menuc .selectedc {
  cursor: pointer;
}

.hide {
  display: none;
}

.tab_boxc div {}

.frist-ul {
  text-align: center;
}

.frist-ul li {
  float: left;
  width: 20%;
  height: auto;
  text-align: center;
}

.frist-ul li a {
  float: left;
  width: 100%;
  height: auto;
  display: block;
}

.frist-ulscyimg {
  width: 150px;
  height: 150px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  border: 2px solid #80bfe4;
  display: block;
  margin: auto;
}

.frist-img1 {
  margin-top: 35px;
}

.frist-ulscyimg:hover {
  background-color: #199fff;
}

.frist-ulscyimg:hover .frist-img1 {
  display: none;
}

.frist-ulscyimg:hover .frist-img2 {
  display: block !important;
  margin-top: 35px;
  margin-left: 45px;
}


/* 我们的服务/ */
/* 大流程 */
/* 标题2 */
.tit2-2024 {
  width: 100%;
  text-align: center;
  letter-spacing: 4px;
  color: #fff;
}

.tit2-2024 h2 {
  font-weight: normal !important;
  font-size: 28px;
}

.tit2-2024 span {
  font-size: 34px;
}

.tit2-2024 p {
  margin-top: 10px;
  font-size: 16px;
  letter-spacing: 1px;
}

/* 标题2/ */
.three-box {
  background: url(../../../front/public/image/cloud/p_bk.png) no-repeat center top;
  height: 518px;
}

.three-ul {
  text-align: center;
  position: relative;
}

.ul-imgmark {
  position: absolute;
  top: 50px;
  /* right: 0; */
  width: 12px;
  height: 29px;
  background: url(../../../front/public/image/cloud/pimg17.png) no-repeat left top;
}
.daimg:hover{
  animation: spin 2s linear; /* 动画名称，持续时间，速度曲线 */
  animation-iteration-count: 1; /* 动画只播放一次 */
  animation-fill-mode: forwards; /* 在动画结束时保持最后一帧的样式 */
}
/* 定义一个名为spin的动画 */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.three-ul li {
  float: left;
  width: 14.28%;
}

.three-ul li img {
  display: block;
  margin: 0 auto;
}

.three-ul li p {
  display: block;
  font-size: 16px;
  color: #ffffff;
  margin: 10px auto;
  position: relative;
  text-align: center;
}

.three-ul li a {
  display: block;
  font-size: 12px;
  color: #cccccc;
  line-height: 22px;
}

.four-ul {}

.four-ul li {
  float: left;
  width: 31.33%;
  margin: 0 1% 15px 1%;
  position: relative;
  height: 208px;
  text-align: center;
}

/* 大流程/ */