* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: PingFang SC, serif;
  background-color: #1D1F27;
}

#app {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
}

#app main {
  width: 100%;
  height: 100%;
  background-color: #1D1F27;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  /* padding: 15px; */
}

#app main .header {
  width: 100%;
  padding: 0 20px;
  margin-top: 15px;
  display: flex;
  align-items: space-between;
}
#app main .header .title {
  color: white;
  font-size: 36px;
  font-family: SourceHanSansSC-extraLight;
  font-weight: 100;
  text-align: center;
}

#app main .map-chart {
  width: 100%;
  flex: 1;
  overflow: hidden;
  position: relative;
}

#app main .map-chart .chart {
  width: 100%;
  height: 100%;
}

#app main .text-data {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #31a7ff;
  font-size: 18px;
  font-family: SourceHanSansSC-extraLight;
  font-weight: 100;
  position: absolute;
  top: 15px;
}

#app #setting-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  opacity: 0.1;
  cursor: pointer;
}
#app #setting-btn:hover {
  opacity: 0.8;
}
.flex {
  display: flex;
  flex-direction: column;
}
.flex.gap {
  gap: 10px;
}
.flex.gap-5 {
  gap: 5px;
}
.flex.gap-20 {
  gap: 20px;
}
.flex.row {
  flex-direction: row;
}
.flex.center {
  align-items: center;
}
.flex.vcenter {
  justify-content: center;
}
.flex .auto {
  flex: 1;
}
.bold {
  font-weight: bold;
}
.ant-cascader-menu {
  height: 400px !important;
}