
.fullscreen-wrapper[data-v-6eb21740] {
  width: 100vw;
  min-height: 100vh;
  height: auto;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch; /* iOS平滑滚动 */
  scrollbar-width: thin; /* Firefox 细滚动条 */
  scrollbar-color: rgba(59, 130, 246, 0.5) rgba(10, 14, 39, 0.3);
}

/* 全屏容器滚动条样式 */
.fullscreen-wrapper[data-v-6eb21740]::-webkit-scrollbar {
  width: 10px;
}
.fullscreen-wrapper[data-v-6eb21740]::-webkit-scrollbar-track {
  background: rgba(10, 14, 39, 0.5);
  border-radius: 5px;
}
.fullscreen-wrapper[data-v-6eb21740]::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, 
    rgba(59, 130, 246, 0.6) 0%, 
    rgba(139, 92, 246, 0.6) 100%);
  border-radius: 5px;
  border: 2px solid rgba(10, 14, 39, 0.5);
  transition: background 0.3s ease;
}
.fullscreen-wrapper[data-v-6eb21740]::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, 
    rgba(59, 130, 246, 0.8) 0%, 
    rgba(139, 92, 246, 0.8) 100%);
}
.app-container[data-v-6eb21740] {
  min-height: 100vh;
}
.sidebar[data-v-6eb21740] {
  background-color: #001529;
  overflow-x: hidden;
}
.logo[data-v-6eb21740] {
  height: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  border-bottom: 1px solid #ffffff1a;
}
.logo h2[data-v-6eb21740] {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
}
.logo p[data-v-6eb21740] {
  margin: 4px 0 0;
  font-size: 12px;
  opacity: 0.8;
}
.header[data-v-6eb21740] {
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
  box-shadow: 0 1px 4px rgba(0, 21, 41, 0.08);
}
.header h3[data-v-6eb21740] {
  margin: 0;
  font-size: 18px;
  color: #333;
}
.main-content[data-v-6eb21740] {
  padding: 24px;
  background-color: #f0f2f5;
}
.fade-enter-active[data-v-6eb21740],
.fade-leave-active[data-v-6eb21740] {
  transition: opacity 0.2s ease;
}
.fade-enter-from[data-v-6eb21740],
.fade-leave-to[data-v-6eb21740] {
  opacity: 0;
}

/* 移动端适配 */
.sidebar-overlay[data-v-6eb21740] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
  animation: fadeIn-6eb21740 0.3s;
}
@keyframes fadeIn-6eb21740 {
from { opacity: 0;
}
to { opacity: 1;
}
}
.sidebar-mobile[data-v-6eb21740] {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 999;
  transition: transform 0.3s ease;
}
.sidebar-collapsed[data-v-6eb21740] {
  transform: translateX(-100%);
}
.header-left[data-v-6eb21740] {
  display: flex;
  align-items: center;
  gap: 12px;
}
.menu-toggle[data-v-6eb21740] {
  flex-shrink: 0;
}

/* 响应式设计 */
@media (max-width: 768px) {
.app-container .sidebar[data-v-6eb21740] {
    width: 200px !important;
}
.header[data-v-6eb21740] {
    padding: 0 12px !important;
}
.header h3[data-v-6eb21740] {
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.main-content[data-v-6eb21740] {
    padding: 12px !important;
}
.logo h2[data-v-6eb21740] {
    font-size: 16px;
}
.logo p[data-v-6eb21740] {
    font-size: 11px;
}
}
@media (max-width: 480px) {
.header h3[data-v-6eb21740] {
    font-size: 14px;
}
.header-right .el-tag[data-v-6eb21740] {
    display: none;
}
.main-content[data-v-6eb21740] {
    padding: 8px !important;
}
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial,
    'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
    'Noto Color Emoji';
}

#app {
  min-height: 100vh;
  background-color: #f0f2f5;
}

.el-table .cell {
  white-space: nowrap;
}

/* 自定义滚动条 */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* 价格正数绿色，负数红色 */
.price-positive {
  color: #67c23a;
}

.price-negative {
  color: #f56c6c;
}

/* 卡片阴影 */
.card-shadow {
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
}


