.progress_box {
  display: flex;
  padding-top: 4px;
}
.progress_box_left {
  position: relative;
}
.circle_txt {
  position: absolute;
  background: #2b2b2b;
  color: #fff;
  width: 58px;
  height: 58px;
  font-weight: bold;
  font-size: 28px;
  text-align: center;
  line-height: 58px;
  border-radius: 50%;
  left: 7px;
  top: 7px;
}
.progress_box .circle_progress {
  width: 72px;
  height: 72px;
  color: #fff;
  position: relative;
}
.circle_progress .wrapper {
  width: 50%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
}
.circle_progress .left {
  left: 0;
}
.circle_progress .right {
  right: 0;
}
.circle_progress .main_circle_rogress {
  width: 58px;
  height: 58px;
  border: 7px solid #e8e8e8;
  border-radius: 50%;
  position: absolute;
  top: 0;
}
.circle_progress .rightcircle {
  border-top: 7px solid #ff4747;
  border-right: 7px solid #ff4747;
  right: 0;
}
.circle_progress .leftcircle {
  border-bottom: 7px solid #ff4747;
  border-left: 7px solid #ff4747;
  left: 0;
}

.progress_box_right {
  flex: 1;
  padding-left: 12px;
}
.progress_box_right .line_progress {
  display: flex;
  font-size: 12px;
}
.progress_box_right .line_progress + .line_progress {
  margin-top: 2px;
}
.progress_box_right .line_progress .line_progress_label {
  margin-right: 6px;
  color: #333;
}
.progress_box_right .line_progress .line_progress_box {
  flex: 1;
  display: flex;
  align-items: center;
}
.progress_box_right .line_progress .line_progress_txt {
  color: #e34917;
}
.progress_box_right .line_progress .line_progress_item {
  flex: 1;
  height: 6px;
  background: #e8e8e8;
  margin: 0 6px;
  position: relative;
}
.line_progress_content {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: #e34917;
}
