.container {
  position: relative;

}

.banner {
  width: 100%;
  position: relative;
  height: 6.3rem;
  padding: 1.2rem 1.3rem;
}

.banner .img_box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.banner .img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content {
  min-height: 12.82rem;
  position: relative;
}

.content .content_bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.content .content_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content_box {
  /*position: absolute;*/
  /*top: -1rem;*/
  /* bottom: 2.75rem; */
  /*left: 1.3rem;*/
  /*right: 1.3rem;*/
  transform: translateY(-1rem);
  margin: 0 1.3rem;
  padding: 1.2rem 2rem;
  border-radius: .14rem;
  background: rgba(255, 255, 255, 1);
}

.content_box .label {
  text-align: start;
  color: rgba(0, 64, 152, 1);
  font-weight: 400;
  line-height: 130%;
  font-family: 'Microsoft YaHei';
}

.content_box .text {
  margin: .74rem 0 0 0;
  font-weight: 290;
  color: rgba(51, 51, 51, 1);
  line-height: .36rem;
  font-family: 'Microsoft YaHei';
  display: flex;
  flex-direction: column;
  /*gap: .42rem;*/
}


@media (max-width: 767px) {
    .content_box {
        margin: 0 .3rem;
        padding: .3rem;
    }
}