.stats_graph_box {
  position: relative;
    margin: 20px 0;
}
.stats_graph_box .graph {
  position: relative;
  height: 46px;
  background: #f0f0f0;
  border-radius: 4px;
  font-size: 0;
  white-space: nowrap;
  overflow: hidden;
}
.stats_graph_box .graph:after {
  content: "";
  display: block;
  clear: both;

}
.stats_graph_box .graph .bar.green:hover,
.stats_graph_box .graph .bar.pink:hover,
.stats_graph_box .graph .bar.clear:hover {
  transition: all 1s;
  background: #666;
}

.stats_graph_box .graph .bar {
  position: relative;
  display: inline-block;
  height: 46px;
  background: #ddd;
  border-radius: 5px;
  overflow: hidden;
  animation-duration: 1s;
  animation-name: slidein;
}
@keyframes slidein {
  from {
    margin-left: 100%;

  }

  to {
    margin-left: 0%;

  }
}
.stats_graph_box .graph .bar + .bar {
  margin-left: -5px;
  padding-right: 5px;
  box-sizing: content-box;
  border-radius: 0 5px 5px 0;
}
.stats_graph_box .graph .bar.green {
  z-index: 3;
  background: #00617e;
}
.stats_graph_box .graph .bar.pink {
  z-index: 2;
  background: #5991a2;
}
.stats_graph_box .graph .bar.clear {
  z-index: 1;
    background: #b7b7b7;
}
.stats_graph_box .graph .bar.clear .desc {
  color: #000;
}
.stats_graph_box .graph .bar.clear:hover .desc {
  transition: all 1s;
  color: #fff;
}
.stats_graph_box .graph .bar .desc {
  position: absolute;
  display: none;
  top: 50%;
  left: 50%;
  margin: 0;
  text-align: center;
  font-size: 12px;
  line-height: 16px;
  color: #fff;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.stats_graph_box .graph .bar .desc em {
  font-style: normal;
  font-size: 16px;
  font-weight: 700;
}
.stats_graph_box .graph .bar .desc dd {
  margin: 0;
}
.stats_graph_box .fixed_data {
  position: absolute;
  top: 52px;
  width: 120px;
  margin: 0;
  text-align: center;
  font-size: 10px;
  color: #000;
}
.stats_graph_box .fixed_data:before {
  content: "";
  position: absolute;
  top: -53px;
  left: 50%;
  width: 1px;
  height: 50px;
  border-left: 1px dashed #bababa;
}
.stats_graph_box .fixed_data .item {
  float: left;
}
.stats_graph_box .fixed_data .item + .item dt {
  padding-left: 8px;
}
.stats_graph_box .fixed_data .item + .item dt:before {
  content: "/";
  position: absolute;
  top: 0;
  left: 2px;
}
.stats_graph_box .fixed_data .item + .item dd:before {
  content: "/";
  position: absolute;
  top: 2px;
  left: -1px;
}
.stats_graph_box .fixed_data dt {
  position: relative;
}
.stats_graph_box .fixed_data dd {
  margin: 0;
  position: relative;
}
.stats_graph_box .fixed_data dd em {
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
}

ul.graph_stat {
  margin: 20px 0;
}
  ul.graph_stat li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    width: 100%;
  }
  ul.graph_stat li .graph_name {
    margin: 0 10px;
    width: 100px;
    text-align: left;
  }
  ul.graph_stat li .graph_percent {
    margin-left: 20px;
  }
  ul.graph_stat li i.fa-circle {
    font-size: x-large;
  }

iframe.shareddata_list {
  width: 100%;
  height: 500px;
}

/*main*/
.pie_chart1 {
  display: inline-block;
  position: relative;
  width: 240px;
  height: 240px;
  background: conic-gradient(#5991a2 0% 25%, #b7b7b7 25% 56%, #00617e 56% 100%);
  border-radius: 50%;
}
.pie_chart1 .center {
  position: absolute;
  width: 120px;
  height: 120px;
  background: #fff;
  border-radius: 50%;
  top: 60px;
  left: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  text-align: center;
}