body {
  background: #F6F8FC;
}

.footer {
  margin: -1.6666666667vw 0 0;
}

.section {
  padding: 9.0625vw 12.5vw 7.1354166667vw;
  position: relative;
  overflow: hidden;
}
.section .cir {
  width: 58.3854166667vw;
  height: 58.3854166667vw;
  border-radius: 58.3854166667vw;
  opacity: 0.5;
  background: #FBAA9D;
  filter: blur(10.4166666667vw);
  position: absolute;
  top: 30.2083333333vw;
  left: -14.84375vw;
  z-index: -1;
  transform-origin: 40% 50%;
  animation: 20s scale linear infinite;
}
.section .cir.cir1 {
  background: #65ABF9;
  top: 0.3645833333vw;
  left: 51.71875vw;
  animation: 20s scale1 linear infinite;
}
.section .title {
  color: #232225;
  font-size: 3.125vw;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.625vw;
}
.section .des {
  width: 42.96875vw;
  color: #525261;
  font-size: 1.0416666667vw;
  font-weight: 400;
  margin-bottom: 3.9583333333vw;
}
.section .box {
  display: flex;
  justify-content: space-between;
}
.section .box .l_box {
  width: 42.96875vw;
  border-radius: 0.625vw;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0.2083333333vw 2.6041666667vw 0 rgba(32, 78, 129, 0.1);
  padding: 2.0833333333vw 2.0833333333vw 3.1770833333vw;
}
.section .box .l_box .box_little {
  color: #232225;
  font-size: 1.6666666667vw;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 1.7708333333vw;
}
.section .box .l_box .form {
  width: 100%;
}
.section .box .l_box .form input {
  display: block;
  width: 100%;
  height: 3.75vw;
  border: none;
  border-bottom: 0.0520833333vw solid #525261;
  color: #232225;
  font-size: 0.8333333333vw;
  font-weight: 400;
  text-transform: capitalize;
  background: unset;
}
.section .box .l_box .form input::placeholder {
  color: #232225;
}
.section .box .l_box .form .common_more {
  margin: 2.2916666667vw 0 0;
  cursor: pointer;
}
.section .box .r_box {
  width: 30.9895833333vw;
  border-radius: 0.625vw;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0.2083333333vw 2.6041666667vw 0 rgba(32, 78, 129, 0.1);
  padding: 2.0833333333vw;
}
.section .box .r_box .box_little {
  color: #232225;
  font-size: 1.6666666667vw;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 3.3333333333vw;
}
.section .box .r_box ul li:not(:nth-last-child(1)) {
  margin-bottom: 2.0833333333vw;
}
.section .box .r_box ul li h3 {
  color: #525261;
  font-size: 0.8333333333vw;
  font-weight: 400;
  text-transform: capitalize;
  margin-bottom: 0.5208333333vw;
}
.section .box .r_box ul li p {
  color: #232225;
  font-size: 1.0416666667vw;
  font-weight: 400;
}

@keyframes scale {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes scale1 {
  100% {
    transform: rotate(-360deg);
  }
}

@media screen and (max-width: 1024px) {

  body {
    background: #F6F8FC;
  }

  .footer {
    margin: -16px 0 0;
  }

  /* ==================== section ==================== */

  .section {
    padding: 88px 16px 60px;
    position: relative;
    overflow: hidden;
  }

  /* 背景光圈 */
  .section .cir {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    opacity: 0.5;
    background: #FBAA9D;
    filter: blur(80px);
    position: absolute;
    top: 450px;
    left: -300px;
    z-index: -1;
    transform-origin: 40% 50%;
    animation: 20s scale linear infinite;
  }

  .section .cir.cir1 {
    background: #65ABF9;
    top: -150px;
    left: 40%;
    animation: 20s scale1 linear infinite;
  }

  /* 标题 */
  .section .title {
    color: #232225;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.45;
    text-transform: uppercase;
    margin-bottom: 10px;
  }

  /* 描述 */
  .section .des {
    width: 100%;
    color: #525261;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 35px;
  }

  /* 内容区域 */
  .section .box {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* 左侧表单 */
  .section .box .l_box {
    width: 100%;
    box-sizing: border-box;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 30px 0 rgba(32, 78, 129, 0.1);
    padding: 25px 20px 30px;
  }

  .section .box .l_box .box_little {
    color: #232225;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    text-transform: uppercase;
    margin-bottom: 25px;
  }

  .section .box .l_box .form {
    width: 100%;
  }

  .section .box .l_box .form input {
    display: block;
    width: 100%;
    height: 52px;
    box-sizing: border-box;
    border: none;
    border-bottom: 1px solid #525261;
    color: #232225;
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
    background: unset;
    outline: none;
  }

  .section .box .l_box .form input::placeholder {
    color: #232225;
  }

  .section .box .l_box .form .common_more {
    margin: 25px 0 0;
    cursor: pointer;
  }

  /* 右侧信息 */
  .section .box .r_box {
    width: 100%;
    box-sizing: border-box;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 30px 0 rgba(32, 78, 129, 0.1);
    padding: 25px 20px;
  }

  .section .box .r_box .box_little {
    color: #232225;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    text-transform: uppercase;
    margin-bottom: 30px;
  }

  .section .box .r_box ul li:not(:nth-last-child(1)) {
    margin-bottom: 25px;
  }

  .section .box .r_box ul li h3 {
    color: #525261;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    text-transform: capitalize;
    margin-bottom: 8px;
  }

  .section .box .r_box ul li p {
    color: #232225;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
  }

}