.radioWrap {
  display: flex;
  justify-content: space-around;
  gap: 8px;
  width: 100%;
  height: 96px;

  .itemActive {
    color: #3a89fe;
    .iconWrap {
      background-color: rgba(58, 137, 254, 0.1);
      border-color: rgba(58, 137, 254, 0.4);
    }
  }
}

.radioItem {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100%;
  color: #b4b7c1;
  line-height: 20px;
  font-size: 12px;
  cursor: pointer;
}
.iconWrap {
  height: 76px;
  width: 100%;
  border: 1px solid #ffffff0f;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
