@charset "UTF-8";
.data-bg {
  font-family: 'PingFangSC';
}

.data-bg .data-container {
  margin: 0 auto;
  width: 1400px;
  overflow: hidden;
}

.data-cate {
  float: left;
  margin: 30px 0;
  width: 310px;
  overflow-y: auto;
  /*里面的代码可以根据自己需求去进行更改*/
  /* 设置滚动条的样式 */
  /* 滚动槽 */
  /* 滚动条滑块 */
}

.data-cate::-webkit-scrollbar {
  width: 8px;
}

.data-cate::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(195, 156, 116, 0.1);
  border-radius: 10px;
}

.data-cate::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: rgba(195, 156, 116, 0.3);
}

.data-cate .item-index {
  text-align: center;
  height: 50px;
  background: #FFF;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
  border: 1px solid #F3F4F5;
  font-size: 16px;
  line-height: 50px;
  font-weight: 600;
  color: #666666;
  cursor: pointer;
}

.data-cate .list-0 {
  display: block;
  position: sticky;
  margin-top: 10px;
  height: 60px;
  line-height: 60px;
  font-weight: 600;
  font-size: 18px;
  color: #4D3B1B;
  background: #FDF9F0;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
  border: 1px solid #F3F4F5;
}

.data-cate .list-0 + ul {
  display: none;
}

.data-cate .list-1 + ul {
  display: none;
}

.data-cate .active {
  background: #E9C357;
  color: #fff;
}

.chart-table {
  float: right;
  margin-top: 40px;
  width: 1060px;
}

.chart-table .chart-box {
  height: 530px;
  background: rgba(255, 255, 255, 0.73);
  border-radius: 8px;
  backdrop-filter: blur(3px);
  padding: 10px 10px 0;
}

.chart-table .chart-box .chart-top {
  color: #666666;
  font-weight: 600;
  padding-top: 5px;
  overflow: hidden;
}

.chart-table .chart-box .chart-top .index-name {
  float: left;
  position: relative;
  padding-left: 20px;
}

.chart-table .chart-box .chart-top .index-name::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background: url("../image/data-icon.svg");
  background-size: 100% 100%;
  width: 15px;
  height: 15px;
}

.chart-table .chart-box .chart-top .operate-div {
  float: right;
}

.chart-table .chart-box .chart-top .operate-div .index-explain {
  position: relative;
  float: left;
  padding-left: 20px;
}

.chart-table .chart-box .chart-top .operate-div .index-explain::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 15px;
  height: 15px;
  background: url("../image/why.svg");
  background-size: 100% 100%;
}

.chart-table .chart-box .chart-top .operate-div .select-div {
  margin-left: 15px;
  float: left;
}

.chart-table .chart-box .chart-top .operate-div .select-div select {
  margin-top: -5px;
  border: 1px solid #C39C74;
  width: 74px;
}

.chart-table .chart-box .chart-top .operate-div .download {
  margin-left: 15px;
  float: left;
  background: url("../image/download.svg");
  background-size: 100% 100%;
  width: 22px;
  height: 18px;
  cursor: pointer;
}

.chart-table .chart-box .line-chart {
  height: 480px;
  position: relative;
}

.chart-table .chart-box .line-chart #main {
  height: 100%;
  width: 100%;
}

.chart-table .chart-box .line-chart .tip {
  position: absolute;
  bottom: 45px;
  left: 40px;
  padding-left: 25px;
  font-size: 14px;
  color: #696969;
}

.chart-table .chart-box .line-chart .tip::after {
  position: absolute;
  left: 5px;
  top: 3px;
  content: '';
  width: 13px;
  height: 15px;
  background: url(../image/tips-icon.svg) no-repeat;
  background-size: 100%;
}

.chart-table .table-box {
  margin: 10px 0 30px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.chart-table .table-box table {
  width: 100%;
  table-layout: fixed;
}

.chart-table .table-box table td,
.chart-table .table-box table th {
  text-align: center;
  height: 45px;
  line-height: 45px;
  color: #666;
}

.chart-table .table-box table th {
  background: #F6F6F6;
}

.chart-table .table-box .thead th {
  background: #E9C357;
  color: #fff;
}

.chart-table .table-box .tbody {
  max-height: 320px;
  overflow-y: scroll;
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none;
  scrollbar-color: transparent transparent;
  scrollbar-track-color: transparent;
  -ms-scrollbar-track-color: transparent;
}

.chart-table .table-box .tbody::-webkit-scrollbar {
  display: none;
}

.chart-table .table-box .tbody tr {
  background: #fff;
}

.chart-table .table-box .tbody tr:nth-of-type(even) {
  background: #F8F5EC;
}

.chart-table .table-box .tbody .up {
  color: #DF3636;
}

.chart-table .table-box .tbody .down {
  color: green;
}
