.sale-data {
  display: flex;
  justify-content: center;
  gap: 0 40px;
}
.sale-data-item {
  flex: 1;
  max-width: 700px;
  background: #FCFCFC;
  border: 1px solid #EDEEF2;
  border-radius: 4px;
  cursor: pointer;
}
.sale-data-item .sale-data-title {
  height: 56px;
  line-height: 20px;
  font-size: 14px;
  color: #39435A;
  padding: 8px 12px;
  border-bottom: 1px solid #EDEEF2;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.sale-data-item .sale-data-chart-content {
  height: 310px;
  padding: 8px 12px;
  position: relative;
}
.sale-data-item .sale-data-chart-content .yAxis {
  line-height: 16px;
  font-size: 12px;
  color: #B4B8C1;
  position: absolute;
  top: 8px;
  left: 12px;
}
.sale-data-item .sale-data-chart-content .xAxis {
  line-height: 16px;
  font-size: 12px;
  color: #B4B8C1;
  position: absolute;
  top: 8px;
  right: 12px;
}
.sale-data-item .sale-data-chart-content .sale-chart {
  width: 100%;
  height: 100%;
}
.table-progress {
  width: 100%;
  border: 1px solid #EDEEF2;
  border-radius: 4px;
  cursor: pointer;
}
.table-progress table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
}
.table-progress table tr {
  display: flex;
  border-bottom: 1px solid #EDEEF2;
}
.table-progress table tr:last-child {
  border: 0 none;
}
.table-progress table tr th {
  flex: 1;
  line-height: 42px;
  font-size: 14px;
  font-weight: bold;
  color: #39435A;
  text-align: left;
  padding-left: 24px;
  background: #F1F5FE;
  border-right: 1px solid #EDEEF2;
}
.table-progress table tr th:last-child {
  border: 0 none;
}
.table-progress table tr th .text {
  display: block;
}
.table-progress table tr th .text.w250 {
  width: 250px;
}
.table-progress table tr td {
  flex: 1;
  line-height: 26px;
  font-size: 14px;
  color: #39435A;
  padding: 10px 6px;
  border-right: 1px solid #EDEEF2;
}
.table-progress table tr td:last-child {
  border: 0 none;
}
.table-progress table tr td .text {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 18px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.table-progress table tr td .text.w262 {
  width: 262px;
}
.table-progress table tr td .color {
  display: block;
  width: 100%;
  height: 26px;
  background: #4282FF;
  text-align: center;
  color: #fff;
  border-radius: 2px;
  opacity: 0.2;
}
.table-progress table tr td .color.active {
  opacity: 1;
}
.stage-data {
  cursor: pointer;
}
.stage-data-content {
  width: 100%;
  background: #FCFCFC;
  border: 1px solid #EDEEF2;
  border-radius: 4px;
}
.stage-data-content .stage-chart {
  width: 100%;
  height: 340px;
}
.review-progress {
  width: 100%;
  background: #FCFCFC;
  border: 1px solid #EDEEF2;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
.review-progress:hover {
  transform: scale(1.02);
}
.review-progress-content {
  width: 100%;
  border-top: 1px solid;
  border-image: linear-gradient(90deg, rgba(215, 229, 255, 0), #d7e5ff, #d7e5ff, rgba(215, 229, 255, 0)) 1 1;
  padding: 0 88px;
  margin: 100px 0;
  display: flex;
  justify-content: space-between;
}
.review-progress-content .review-item {
  width: 18px;
  height: 18px;
  background: #4282FF;
  border: 5px solid #E7EFFF;
  border-radius: 50%;
  position: relative;
  top: -9.5px;
}
.review-progress-content .review-item:nth-child(1),
.review-progress-content .review-item:nth-child(2) {
  background: #FD9433;
  border: 5px solid #FFECDA;
}
.review-progress-content .review-item:nth-child(2n) .review-count {
  top: auto;
  bottom: -56px;
}
.review-progress-content .review-item .review-count {
  position: absolute;
  top: -56px;
  left: 50%;
  transform: translateX(-50%);
}
.review-progress-content .review-item .review-count-text {
  line-height: 18px;
  font-size: 14px;
  color: #39435A;
  text-align: center;
  word-break: keep-all;
}
.review-progress-content .review-item .review-count-num {
  line-height: 18px;
  font-size: 14px;
  font-weight: bold;
  color: #15213A;
  text-align: center;
  margin: 4px 0;
}
