.cl-tip__showZindex {
  z-index: 1000;
}
.cl-tip__content {
  position: absolute;
  z-index: 10;
}
.cl-tip__content.bottom::after {
  content: '';
  background-color: white;
  width: 20rpx;
  height: 20rpx;
  position: absolute;
  top: 0;
  left: 50%;
  border-radius: 6rpx;
  -webkit-transform: translateX(-50%) rotate(45deg) translateY(-50%);
          transform: translateX(-50%) rotate(45deg) translateY(-50%);
}
.cl-tip__content.show {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.cl-tip__content.hide {
  width: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.cl-tip__arrow {
  z-index: -1;
  position: absolute;
  -webkit-transform: translateX(-50%) rotate(45deg) translateY(-50%);
          transform: translateX(-50%) rotate(45deg) translateY(-50%);
}
.cl-tip__arrow.showArrow {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  height: 20rpx;
  width: 20rpx;
}
.cl-tip__arrow.hideArrow {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  height: 0;
  width: 0;
}
.cl-tip__message {
  overflow: hidden;
  border-radius: 6rpx;
}