body {
  background: #f3f6fa;
}
.section1 {
  font-size: 0;
  position: relative;
}
.section1 img {
  width: 100%;
}
.section1-con {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
}
.section1-con-title1 {
  color: #0068fb;
  font-size: 40px;
  font-weight: 700;
}
.section1-con-title2 {
  font-size: 24px;
  margin-top: 20px;
  text-transform: uppercase;
}

/* -------------------------------section2------------------------------- */
.section2 {
  padding: 80px 0 130px 0;
}
.section2-con {
  font-size: 0;
  overflow: hidden;
  width: calc(100% + 12px);
  margin-left: -12px;
   position: relative;
}
.section2-con-item {
  /* display: inline-block; */
  position: relative;
  width: calc(50% - 24px);
  /*margin: 12px;*/
  font-size: 14px;
  background-color: #fff;
  border-radius: 8px;
  padding: 24px;
  float: left;
  cursor: pointer;
  box-shadow: 0px 5px 45px 0px rgba(229, 230, 231, 0.88);
  position: absolute;
  box-sizing: border-box;
}
.section2-con-item:hover .section2-con-item-title {
  color: #0068fb;
}
.section2-con-item::after {
  position: absolute;
  width: 0;
  height: 3px;
  content: '';
  background: #0068fb;
  left: 0;
  bottom: 0;
  transition: all 0.5s;
}
.section2-con-item:hover::after {
  width: 100%;
}
.section2-con-item-img {
  font-size: 0;
  margin-bottom:  20px;
}

.section2-con-item-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 34px;
  
}
.section2-con-item-text {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 20px;
  color: #666;
}
.section2-con-item-bot {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  align-items: center;
  color: #666;
}
@media screen and (max-width: 1200px) {
  .section1 {
    height: 150px;
  }
  .section1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .section1-con-title1 {
    font-size: 24px;
  }
  .section1-con-title2 {
    font-size: 16px;
    margin-top: 14px;
  }
  /* -------------------------------section2------------------------------- */
  .section2{
      padding: 20px 0 60px 0;
  }
  .section2-con{
      width: 100%;
      margin: 0;
  }
  .section2-con-item{
    width: 100%;
    padding: 12px;
    margin: 0 0 20px 0;
  }
  .section2-con-item-title {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 4px;
   }
   .section2-con-item-img{
       margin-bottom: 10px;
   }
   .section2-con-item-text {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 10px;
    color: #666;
}
}
