.reset-component {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: #182948;
  font-size: 12px;
  font-family: inherit;
  line-height: 18px;
  list-style: none;
}
.reset-scrollbar ::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.reset-scrollbar ::-webkit-scrollbar-thumb {
  background-color: var(--ap-scrollbar-thumb-color-base);
  background-clip: content-box;
  border: 1px solid transparent;
  border-radius: 4px;
}
.reset-scrollbar ::-webkit-scrollbar-track,
.reset-scrollbar ::-webkit-scrollbar-corner {
  background-color: var(--ap-table-header-bg, #f2f6f9);
}
.reset-scrollbar ::-webkit-scrollbar-thumb:hover,
.reset-scrollbar ::-webkit-scrollbar-thumb:active {
  background-color: var(--ap-scrollbar-thumb-color-hover);
}
.clear-fix::before {
  display: table;
  content: '';
}
.clear-fix::after {
  display: table;
  clear: both;
  content: '';
}
.common-style {
  box-sizing: border-box;
  font-size: 12px;
  font-family: inherit;
}
.common-style::before,
.common-style::after {
  box-sizing: border-box;
}
.aplus-ap-draggable-grid {
  display: grid;
  grid-template-columns: repeat(24, 1fr);
  /* 固定24列布局 */
  width: 100%;
  box-sizing: border-box;
}
.aplus-ap-draggable-grid__item {
  background: #fff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
  overflow: hidden;
  box-sizing: border-box;
  border: 1px solid #fff;
}
.aplus-ap-draggable-grid--canDrag {
  cursor: pointer;
}
.aplus-ap-draggable-grid--canDrag:hover {
  border: 1px solid #66a9ff;
}
.aplus-ap-draggable-grid--dragging {
  cursor: move;
  z-index: 100;
  opacity: 1;
}
.aplus-ap-draggable-grid__dragging {
  opacity: 0;
  z-index: 999;
}
.aplus-ap-draggable-grid__overlay {
  border: 1px solid #66a9ff;
}
.aplus-ap-draggable-grid-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  padding: 20px;
}
