.modular01 .top {
  display: flex;
  gap: 0.66rem;
  position: relative;
  z-index: 1;
}

.modular01 .top .item {
  position: relative;
}

.modular01 .top .item .w {
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  transition: .5s;
  cursor: pointer;
  z-index: 2;
}

.modular01 .top .item.on::after {
  content: '';
  position: absolute;
  left: 50%;
  margin-left: -0.1rem;
  bottom: -0.7rem;
  margin-bottom: -1px;
  border: 1px solid #dbdbdb;
  position: absolute;
  padding: 0.1rem;
  z-index: 1;
  background: #fff;
  transform: rotate(-45deg);
  border-top-width: 0;
  border-right-width: 0;
}

.modular01 .top img {
  width: 100%;
}

.modular01 .top .info {
  color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.7rem;
}

.modular01 .top .info .t {
  font-size: 0.6rem;
  font-weight: bold;
}

.modular01 .top .info .text {
  font-size: 0.16rem;
}

.modular01 .line {
  border-top: 1px solid #dbdbdb;
  margin: 0.6rem 0;
}

.modular02 .list {
  display: flex;
  gap: 1.3rem;
  flex-wrap: wrap;
  margin: 0.9rem 0;
  margin-bottom: 1.9rem;
  display: none;
}

.modular02 .list.on {
  display: flex;
}

.modular02 .list .item {
  width: calc(33.33% - 0.87rem);
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 0 0.6rem rgba(0, 0, 0, 0.4);
}

.modular02 .list .item img {
  width: 100%;
  position: relative;
}


.modular02 .list .item .title {
  position: absolute;
  right: 0.46rem;
  top: 0.4rem;
  font-size: 0.24rem;
  font-weight: bold;
  color: #3a3a3a;
}

.modular02 .info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0rem 0.4rem;
  z-index: 1;
  background: rgba(18, 253, 19, 0.95);
  font-size: 0.24rem;
  text-align: center;
  opacity: 0;
  transition: .5s;
  cursor: pointer;
  color: #3a3a3a;
  display: flex;
  box-sizing:border-box;
  flex-direction: column;
  align-items: center;
  justify-items: center;
  justify-content: center;
}

.modular02 .info .tit {
  font-size: 0.3rem;
  font-weight: bold;
}

.modular02 .info .text {
  margin-top: 0.16rem;
  margin-bottom: 0.36rem;
}

.modular02 .info .icons i {
  line-height: 1;
}

.modular02 .info .icons {
  font-size: 0.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 0.3rem;
  justify-content: center;
}

.main {
  position: relative;
}

.modular-wra