.zt__img-cell-box {
  min-width: 172px;
  min-height: 48px;
  border: 1px solid #ebebeb;
  background: #ffffff;
  border-radius: 4px;
  padding: 5px 30px 5px 5px;
  display: flex;
  align-items: center;
  position: relative;
  box-sizing: border-box;
  transition: all 0.2s linear;
  .zt__left-icon {
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    :deep(.van-checkbox__icon) {
      .van-icon {
        border-color: #4285f4;
        border-radius: 4px;
      }
    }
  }
  .zt__img-cell-left {
    width: 35px;
    height: 35px;
    overflow: hidden;
    border-radius: 8px;
    img {
      display: block;
      width: 100%;
      height: auto;
    }
  }
  .zt__img-cell-right {
    max-width: 100px;
    font-size: 13px;
    font-family: PingFangSC-Semibold, PingFang SC;
    color: #333333;
    line-height: 18px;
    padding-left: 5px;
    overflow: hidden;
    word-break: break-all;
    .zt__right-icon {
      width: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      :deep(.van-checkbox__icon) {
        .van-icon {
          border-color: #4285f4;
          border-radius: 4px;
        }
      }
    }
  }
}
.zt__img-cell-box-active {
  background: #4285f4;
  .zt__img-cell-right {
    color: #ffffff;
  }
}