body {
  padding: 0;
  margin: 0;
}
.nav {
  position: fixed;
  z-index: 99999;
  top: 0;
  padding: 0;
}
.nav ::-webkit-scrollbar {
  display: none;
  /* 不显示滚动条 */
}
.nav nav {
  background-color: rgba(73, 73, 73, 0.36);
  width: 100vw;
  display: flex;
  align-items: center;
  font-size: 16px;
}
.nav nav .nav-list {
  padding: 0;
  list-style: none;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  font-size: 0;
  display: flex;
  /* 下划线初始状态 */
  /* 激活状态样式 */
}
.nav nav .nav-list li {
  position: relative;
  font-size: 16px;
  margin: 0 10px;
  padding-bottom: 5px;
}
.nav nav .nav-list li::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #2196F3;
  /* 蓝色主题色 */
  transition: all 0.3s ease;
  /* 过渡动画 */
}
.nav nav .nav-list li.active {
  color: #2196F3;
}
.nav nav .nav-list li.active::after {
  width: 100%;
  /* 下划线完全显示 */
  left: 0;
  /* 定位到左侧 */
}
.nav nav .menu,
.nav nav .search {
  font-size: 17px;
  padding: 0 10px;
}
.container {
  width: 100%;
  margin: 0 auto;
  overflow-y: hidden;
}
.container .body {
  padding-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3px;
}
.container .body .chart-box {
  width: calc(100vw - 5px);
  height: calc(65vw - 5px);
  padding: 0;
  margin: 0;
}
.container .body .chart-box .chart {
  width: 100%;
  height: 100%;
  background-color: #d3d3d3;
}
/* 768px以上 */
@media screen and (min-width: 768px) {
  body {
    width: 100vw;
  }
  .nav {
    width: 100vw;
  }
  .nav nav {
    width: 1200px;
    margin: 0 auto;
    justify-content: center;
    font-size: 20px;
  }
  .container {
    width: 1200px;
    margin: 0 auto;
  }
  .container .body {
    gap: 10px;
  }
  .container .body .chart-box {
    width: 1200px;
    height: 600px;
  }
}
/*# sourceMappingURL=index.css.map */