.main {
  padding-top: 108px;
  background-color: #fff;
}

.main .box .box-content {
  max-width: 1400px;
  margin: 0 auto;
}

.main .box-style .box-content {
  padding: 72px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main .box-style .box-content .img-box {
  width: 804px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 10px;
}

.main .box-style .box-content .img-box img {
  width: 100%;
  height: auto;
  cursor: pointer;
  transition: all 1s;
}

.main .box-style .box-content .img-box img:hover {
  transform: scale(1.1);
  
}

.main .box-style .box-content .text-box {
  flex: 1;
}

.main .box-style .box-content .text-box .title {
  font-size: 30px;
  color: #373737;
  font-weight: bold;
  position: relative;
}

.main .box-style .box-content .text-box .title::before {
  content: '';
  height: 3px;
  background-color: #0762D5;
  position: absolute;
  bottom: -20px;
  left: 0;
}

.main .box-style .box-content .text-box .text {
  font-size: 16px;
  line-height: 30px;
  margin: 43px 0 44px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.main .box-style .box-content .text-box.animate__animated .title::before {
  animation: widthLeft  .5s forwards;
  animation-delay: .8s;
}

.main .img-left {
  background-color: #F2F5F8;
}

.main .img-left .box-content .img-box {
  margin-right: 60px;
}

.main .img-right .box-content .img-box {
  margin-left: 60px;
}

.main .box1 {
  height: 342px;
}

.main .box1 .box-content {
  height: 100%;
  text-align: center;
  flex-direction: column;
}

.main .box1 .box-content .title {
  font-size: 24px;
  font-weight: bold;
  color: #0762d5;
  position: relative;
}

.main .box1 .box-content .title::before {
  content: '';
  height: 3px;
  background-color: #0762D5;
  position: absolute;
  bottom: -13px;
  animation: widthCen  .5s forwards;
  animation-delay: 1s;
}

.main .box1 .box-content .text-box {
  margin-top: 52px;
  width: 881px;
  font-size: 16px;
  line-height: 30px;
  color: #494949;
}

.main .box2 .box-content .text-box .title::before {
  animation: widthLeft  .5s forwards;
  animation-delay: 1s;
}

@keyframes widthLeft {
  0% {
    width: 0;
  }
  100% {
    width: 60px;
  }
}

@media screen and (max-width: 1400px) {
  .main .box-style .box-content .img-box {
    width: 57%;
  }
  .main .img-left .box-content .img-box {
    margin-right: 4%;
  }
  .main .img-right .box-content .img-box {
    margin-left: 4%;
  }
  .main .box {
    padding: 0 20px;
  }
}

@media screen and (max-width: 1024px) {
  .main .box1 {
    height: auto;
    padding: 50px 20px;
  }
  .main .box1 .box-content .text-box {
    width: 80%;
  }
  .main .box1 .box-content .text-box {
    margin-top: 40px;
  }
}

@media screen and (max-width: 950px) {
  .main .box-style .box-content {
    flex-direction: column;
    padding: 50px 0;
  }
  .main .img-left .box-content .img-box {
    margin-right: 0;
  }
  .main .img-right .box-content .img-box {
    margin-left: 0;
  }
  .main .box-style .box-content .img-box {
    width: 100%;
  }
  .main .box-style .box-content .text-box {
    width: 100%;
    margin-top: 30px;
  }
  .main .box-style .box-content .text-box .btn {
    margin: 0 auto;
	margin-bottom: 20px;
  }
  .main .box-style:nth-of-type(2n+1) .box-content {
    flex-direction: column-reverse;
  }
}

@media screen and (max-width: 767px) {
  .main .box1 .box-content .text-box {
    width: 90%;
  }
}

@media screen and (max-width: 630px) {
  .main .box-style .box-content {
    padding: 40px 0;
  }
  .main .box-style .box-content .text-box .text {
    margin: 35px 0 30px;
  }
  .main .box-style .box-content .text-box .title {
    font-size: 26px;
  }
}
