.progressPage .tabs {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 20px;
}
.progressPage .tabs li {
  flex: 1;
}
.progressPage .tabs li button {
  width: 100%;
  text-align: center;
  background: #FAFAFF;
  border-radius: 4px;
  padding: 4px 0;
  font-size: 12px;
}
.progressPage .tabs li button.active {
  border: 1px solid #7BA9BE;
}
.progressPage .chart-details {
  box-shadow: 0px 15px 40px 0px #EDEEFB;
  margin-bottom: 20px;
  padding: 18px 12px;
  border-radius: 10px;
}
.progressPage .chart-details span {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 12px;
  color: #898D9E;
  font-size: 12px;
}
.progressPage .info {
  margin-bottom: 30px;
}
.progressPage .info h4 {
  margin-bottom: 8px;
  font-weight: bold;
  font-size: 16px;
}
.progressPage .info p {
  font-size: 12px;
  color: #898D9E;
}
.progressPage .advice-list {
  margin-top: 30px;
}
.progressPage .advice-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: bold;
  border-bottom: 1px solid #E5E6EE;
  padding-bottom: 16px;
  margin-bottom: 16px;
}
.progressPage .advice-list li .number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #F0F1F9;
  border-radius: 50%;
  font-weight: bold;
  font-size: 16px;
}