/* yanxin:im-panel-resize-hotpatch v1 — IM 浮窗 JS 拖拽改大小 */
.im-panel-wrap {
  resize: none !important;
}

.im-panel-wrap::after {
  display: none !important;
}

.yx-im-panel-resize-handle {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 22px;
  height: 22px;
  z-index: 20;
  cursor: nwse-resize;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
  border-radius: 0 0 18px 0;
  background:
    linear-gradient(135deg, transparent 0 44%, rgba(87, 107, 149, 0.35) 44% 48%, transparent 48% 56%, rgba(87, 107, 149, 0.55) 56% 60%, transparent 60% 68%, rgba(87, 107, 149, 0.75) 68% 72%, transparent 72%);
}

.yx-im-panel-resize-handle:hover,
.yx-im-panel-resize-handle--active {
  background:
    linear-gradient(135deg, transparent 0 44%, rgba(87, 107, 149, 0.55) 44% 48%, transparent 48% 56%, rgba(87, 107, 149, 0.75) 56% 60%, transparent 60% 68%, rgba(25, 25, 25, 0.65) 68% 72%, transparent 72%);
}

body.yx-im-panel-resizing {
  cursor: nwse-resize !important;
  user-select: none !important;
  -webkit-user-select: none !important;
}

body.yx-im-panel-resizing * {
  cursor: nwse-resize !important;
}
