.title {
  width: 100%;
  float: left;
  margin: 20px 0;
  font-size: 18px;
  color: #00479d;
  font-weight: 600;
}
.title img {
  vertical-align: middle;
  /* margin-right: 10px; */
}
.mt-2 {
  margin-top: 2rem;
}
.aw_mainBg {
  width: 100%;
  float: left;
  min-width: 1200px;
  padding: 0 0 20px 0;
}
.aw_main {
  width: 1200px;
  margin: 0 auto;
}
.aw_content {
  width: 1150px;
  float: left;
  padding: 0 0 0 50px;
}
.aw_main h2 {
  font-size: 22px;
  color: #2c8f19;
}
.aw_main .content {
  width: 100%;
  float: left;
}
.imgBox {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.imgBox .item {
  position: relative;
  display: flex;
  justify-content: center;
  width: calc(100% / 3 - 1rem);
  height: 260px;
  border-radius: 0.5em;
  overflow: hidden;
}
.imgBox.box2 .item {
  width: calc(100% / 2 - 14rem);
}
.imgBox .item img {
  width: 100%;
  transform: scale(1);
  transition: all 0.3s ease;
}
.imgBox .item:hover img {
  transform: scale(1.1);
}
.imgBox .item p {
  position: absolute;
  bottom: 0;
  width: 90%;
  text-align: center;
  font-size: 1.125rem;
  color: #fff;
  z-index: 2;
}
.imgBox .item:has(p)::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  z-index: 1;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .aw_mainBg {
    min-width: 1000px;
  }
  .aw_main {
    width: 970px;
    padding: 0 15px;
  }
}

@media screen and (min-width: 320px) and (max-width: 768px) {
  .aw_mainBg {
    min-width: 320px;
  }
  .aw_content {
    width: 100%;
    padding-left: 0;
  }
  .aw_main {
    width: 90%;
    padding: 0 5%;
  }
  .imgBox {
    flex-direction: column;
  }
  .imgBox .item {
    width: 100%;
  }
}
