body {
  background: #F6F8FC;
}

.eventsInfo1 {
  padding: 7.2395833333vw 0 3.125vw;
}
.eventsInfo1 .wrap {
  width: 62.5vw;
  margin: auto;
  position: relative;
}
.eventsInfo1 .wrap .back {
  width: 2.9166666667vw;
  height: 2.9166666667vw;
  border-radius: 50%;
  background: #232225;
  position: absolute;
  top: 3.9583333333vw;
  left: -6.0416666667vw;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .6s ease;
  cursor: pointer;
}
.eventsInfo1 .wrap .back:hover {
  background: var(--color);
}
.eventsInfo1 .wrap .back svg {
  width: 1.0416666667vw;
  height: 1.0416666667vw;
  display: block;
}
.eventsInfo1 .wrap .jump {
  width: 100%;
  border-radius: 1.25vw;
  background: #FFF;
  backdrop-filter: blur(10px);
  padding: 4.1666666667vw 3.125vw;
}
.eventsInfo1 .wrap .jump .title .p1 {
  width: 46.9270833333vw;
  color: #232225;
  font-size: 2.0833333333vw;
  font-style: normal;
  font-weight: bold;
  line-height: 120%;
  text-transform: capitalize;
}
.eventsInfo1 .wrap .jump .title .p2 {
  margin: 2.0833333333vw 0 0 0;
  color: #204E81;
  font-size: 1.0416666667vw;
  font-style: normal;
  font-weight: bold;
  text-transform: uppercase;
}
.eventsInfo1 .wrap .jump .title .line {
  margin: 2.0833333333vw 0 0 0;
  width: 100%;
  height: 1px;
  background: #232225;
  transform: scaleX(0);
  transition: 2s;
  transform-origin: left;
}
.eventsInfo1 .wrap .jump .title .line.aos-animate {
  transform: scaleX(1);
  transition-delay: .6s;
}
.eventsInfo1 .wrap .jump .content {
  margin: 2.0833333333vw 0 0 0;
}
.eventsInfo1 .wrap .jump .content p {
  color: #525261;
  font-size: 0.9375vw;
  font-style: normal;
  font-weight: 400;
  line-height: 155.556%;
}
.eventsInfo1 .wrap .jump .content img {
  width: 100%;
  border-radius: 0.8333333333vw;
  height: auto;
}


@media screen and (max-width: 1024px) {

  body {
    background: #F6F8FC;
  }

  .eventsInfo1 {
    padding: 80px 16px 40px;
  }

  .eventsInfo1 .wrap {
    width: 100%;
    margin: 0 auto;
    position: relative;
  }

  /* 返回按钮 */
  .eventsInfo1 .wrap .back {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #232225;
    position: relative;
    top: auto;
    left: auto;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .eventsInfo1 .wrap .back:hover {
    background: #232225;
  }

  .eventsInfo1 .wrap .back svg {
    width: 14px;
    height: 14px;
  }

  /* 内容卡片 */
  .eventsInfo1 .wrap .jump {
    width: 100%;
    box-sizing: border-box;
    border-radius: 16px;
    background: #FFF;
    backdrop-filter: blur(10px);
    padding: 28px 20px 32px;
  }

  /* 标题 */
  .eventsInfo1 .wrap .jump .title .p1 {
    width: 100%;
    color: #232225;
    font-size: 16px;
    line-height: 1.45;
    font-weight: bold;
  }

  .eventsInfo1 .wrap .jump .title .line{
    transform: scaleX(1);
  }

  /* 日期 */
  .eventsInfo1 .wrap .jump .title .p2 {
    margin: 18px 0 0;
    color: #204E81;
    font-size: 13px;
    line-height: 20px;
  }

  /* 分割线 */
  .eventsInfo1 .wrap .jump .title .line {
    margin: 18px 0 0;
    width: 100%;
    height: 1px;
  }

  .eventsInfo1 .wrap .jump .title .line.aos-animate {
    transition-delay: .4s;
  }

  /* 正文 */
  .eventsInfo1 .wrap .jump .content {
    margin: 22px 0 0;
  }

  .eventsInfo1 .wrap .jump .content p {
    color: #525261;
    font-size: 14px;
    line-height: 1.8;
  }

  /* 正文图片 */
  .eventsInfo1 .wrap .jump .content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    margin: 15px 0;
  }

}