.table-indicator {
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
  font-family: "Nunito", sans-serif;
}
.table-indicator-head {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.table-indicator-head h3 {
  font-size: 2.75rem;
  line-height: 2.8125rem;
  font-weight: 300;
  color: #3b4c58;
  margin: 0;
}
.table-indicator-head h3 strong,
.table-indicator-head h3 b {
  font-weight: 700;
}
.table-indicator-content {
  max-width: 88.125rem;
  width: 100%;
  margin: 5.375rem auto 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.875rem;
}
.table-indicator-content .item {
  max-width: 43.125rem;
  width: 100%;
  height: max-content;
  border-radius: 1.875rem;
  border: 0.0938rem solid #aec6d7;
  padding: 4.75rem 4.625rem;
  position: relative;
  --blockw: 13.625rem;
}
.table-indicator-content .item h4 {
  margin: 0;
  font-size: 2.5rem;
  line-height: 2.5rem;
  font-weight: 700;
  position: absolute;
  top: -1.375rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFFFFF;
  padding: 0 0.3125rem;
}
.table-indicator-content .item h4.orange {
  color: #ffa600;
}
.table-indicator-content .item h4.blue {
  color: #48AAF0;
}
.table-indicator-content .item-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: calc(100% - var(--blockw) * 2);
  row-gap: 5.625rem;
}
.table-indicator-content .item-block {
  width: var(--blockw);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6875rem;
  position: relative;
}
.table-indicator-content .item-block .icon {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
  margin-bottom: 0.5rem;
}
.table-indicator-content .item-block h5 {
  font-size: 1.5rem;
  color: #3B4C58;
  margin: 0;
  line-height: 1.875rem;
  font-weight: 700;
  max-width: 12.0625rem;
  display: flex;
  justify-content: center;
}
.table-indicator-content .item-block p {
  color: #4981A9;
  margin: 0;
  font-size: 1rem;
  line-height: 1.25rem;
  font-weight: 400;
  width: 100%;
}
.table-indicator-content .item-block:nth-child(2)::before, .table-indicator-content .item-block:nth-child(4)::before {
  content: "";
  width: 0.0938rem;
  height: 6rem;
  background-color: #C9DEED;
  position: absolute;
  left: -25%;
  top: 50%;
  transform: translateY(-50%);
}
.table-indicator-content .item-block:nth-child(1)::after, .table-indicator-content .item-block:nth-child(2)::after {
  content: "";
  height: 0.0938rem;
  width: 6rem;
  background-color: #C9DEED;
  position: absolute;
  left: 50%;
  bottom: -2.8125rem;
  transform: translateX(-50%);
}
.table-indicator-content .item-block:nth-child(5) {
  margin-top: -2.8125rem;
}
