@charset "UTF-8";
/* 添加全局样式（注意：这里不使用 scoped） */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  overflow: hidden;
}


.app-container[data-v-26fd3ba8] {
  display: flex;
  height: 100vh;
  width: 100vw;
  background-color: #000;
  color: #fff;
  overflow: hidden;
}
.sidebar-container[data-v-26fd3ba8] {
  position: relative;
  display: flex;
  transition: all 0.3s ease;
  height: 100%;
}
.sidebar-container.collapsed .app-sidebar[data-v-26fd3ba8] {
  width: 0;
  overflow: hidden;
  padding: 0;
}
.collapse-button[data-v-26fd3ba8] {
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 40px;
  background-color: #242424;
  border: 1px solid #333;
  border-left: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  border-radius: 0 4px 4px 0;
}
.collapse-button[data-v-26fd3ba8]:hover {
  background-color: #333;
}
.app-sidebar[data-v-26fd3ba8] {
  flex-shrink: 0;
  height: 100%;
  overflow-y: auto;
  transition: all 0.3s ease;
  width: 230px;
  display: flex;
  flex-direction: column;
}
.app-main[data-v-26fd3ba8] {
  flex: 1;
  height: 100%;
  transition: all 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.app-main.expanded[data-v-26fd3ba8] {
  margin-left: 15px;
  /* 折叠按钮的宽度 */
}

/* 自定义滚动条样式 */
.app-sidebar[data-v-26fd3ba8]::-webkit-scrollbar {
  width: 6px;
}
.app-sidebar[data-v-26fd3ba8]::-webkit-scrollbar-thumb {
  background-color: #333;
  border-radius: 3px;
}
.app-sidebar[data-v-26fd3ba8]::-webkit-scrollbar-track {
  background-color: #242424;
}
body {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  touch-action: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
html {
  touch-action: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  text-size-adjust: none;
}
.viewport-container {
  touch-action: manipulation;
}
.cornerstone-element {
  touch-action: manipulation;
}
.toolbar {
  touch-action: manipulation;
  user-select: auto;
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
}
.tool-scroll-container {
  touch-action: manipulation;
  user-select: auto;
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
}
.series-container {
  touch-action: manipulation;
  user-select: auto;
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
}
.series-scroll-container {
  touch-action: manipulation;
  user-select: auto;
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
}
.van-button {
  touch-action: manipulation;
  user-select: auto;
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
}
.van-popover {
  touch-action: manipulation;
  user-select: auto;
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
}
.van-slider {
  touch-action: manipulation;
  user-select: auto;
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
}
.van-checkbox {
  touch-action: manipulation;
  user-select: auto;
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
}
.control-bar {
  touch-action: manipulation;
  user-select: auto;
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
}* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

#app {
  height: 100%;
}

/* 全局覆盖 Vant 主题色 */
:root:root {
  --van-nav-bar-background: #0067F4;
  --van-nav-bar-icon-color: #fff;
  --van-nav-bar-text-color: #fff;
  --van-nav-bar-title-text-color: #fff;
}