@media (min-width: 600px) {
  /* 优化 Chart_Win 整体样式 */
  .Chart_Win {
    /* padding-bottom: 15px; */
    height: 600px !important;
    margin-right: 0 !important;
    border-radius: 8px !important;
  }

  /* 优化 Chart_Win_Top 删除按钮位置 - 移到左侧 */
  .Chart_Win_Top {
    position: relative;
    height: 50px !important;
  }
  .Chart_Win_Top h4 {
    position: absolute !important;
    left: 15px !important;
    right: auto !important;
    top: 15px !important;
    width: 24px !important;
    height: 24px !important;
    margin: 0 !important;
    padding: 0 !important;
    cursor: pointer;
    z-index: 100;
    transition: opacity 0.2s ease;
  }
  .Chart_Win_Top h4:hover {
    opacity: 0.7;
  }
  .Chart_Win_Top h4 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  /* 优化 Chart_Win_Mid 去除左右留白 */
  .Chart_Win_Mid {
    height: 550px !important;
    position: relative;
    /* padding-left: 0 !important;
    padding-right: 0 !important; */
    padding: 0 !important;
    margin: 0 !important;
    width: 101% !important;
  }

  /* 优化 Bottom_Chart_Div 去除右侧留白 */
  .Bottom_Chart_Div {
    right: 110px !important;
    padding-right: 0 !important;
    margin-right: 0 !important;
  }
  .Chart_Loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    z-index: 10;
  }
  .Chart_Loading.Hide {
    display: none;
  }
  .Chart_Loading_Spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #c51618;
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  .Chart_Loading_Text {
    margin-top: 15px;
    font-size: 14px;
    color: #666;
  }
}

@media (max-width: 600px) {
  /* 优化移动端 Chart_Win 整体样式 - 宽度占满 */
  .Chart_Win {
    width: 100vw !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    margin-top: 10vh !important;
    border-radius: 8px !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1002 !important;
  }

  /* 优化移动端 Chart_Win_Top 删除按钮位置 - 移到左侧 */
  .Chart_Win_Top {
    position: relative;
    height: 40px !important;
  }
  .Chart_Win_Top h4 {
    position: absolute !important;
    left: 3vw !important;
    right: auto !important;
    top: 3vw !important;
    width: 6vw !important;
    height: 6vw !important;
    margin: 0 !important;
    padding: 0 !important;
    cursor: pointer;
    z-index: 100;
    transition: opacity 0.2s ease;
  }
  .Chart_Win_Top h4:hover {
    opacity: 0.7;
  }
  .Chart_Win_Top h4 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  /* 优化移动端 Chart_Win_Mid 去除左右留白 - 宽度占满，高度增加 */
  .Chart_Win_Mid {
    position: relative;
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 102% !important;
    height: 86vh !important;
    margin: 0 !important;
  }

  /* 优化移动端 Bottom_Chart_Div 去除右侧留白 - 宽度占满，位置上调到页面顶部 */
  .Bottom_Chart_Div {
    position: fixed !important;
    right: 0 !important;
    left: 0 !important;
    top: 0 !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    margin-top: 0 !important;
    width: 100vw !important;
    z-index: 1000 !important;
  }

  /* 移动端 Chart_Icon 使用固定定位到屏幕右下角 */
  .Chart_Icon {
    position: fixed !important;
    right: 0 !important;
    bottom: 255px !important;
    width: 106px !important;
    height: 86px !important;
    float: none !important;
    z-index: 1001 !important;
  }
  .Chart_Icon img {
    width: 106px !important;
    height: 86px !important;
  }
  .Chart_Loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    z-index: 10;
  }
  .Chart_Loading.Hide {
    display: none;
  }
  .Chart_Loading_Spinner {
    width: 8vw;
    height: 8vw;
    border: 0.8vw solid #f3f3f3;
    border-top: 0.8vw solid #c51618;
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  .Chart_Loading_Text {
    margin-top: 3vw;
    font-size: 14px;
    color: #666;
  }
}
