/* 店铺任务管理系统 - 样式 */

/* 弹层动画 */
.overlay {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}

.overlay.show {
  opacity: 1;
  visibility: visible;
}

/* 完成状态 */
.is-done {
  opacity: 0.5;
}

.is-done .shop-name {
  text-decoration: line-through;
}

/* 滚动条 */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #e5e5e5;
}

::-webkit-scrollbar-thumb:hover {
  background: #d0d0d0;
}

/* 数字输入框去箭头 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

/* 响应式 */
@media (max-width: 1100px) {
  .panel-right {
    display: none;
  }
}

@media (max-width: 720px) {
  .panel-middle {
    display: none;
  }
  
  .panel-left {
    width: 100% !important;
    border-right: none !important;
  }
}
