.table-vertical {
  border-collapse: collapse;
  font-size: 1.3rem;
  table-layout: fixed;
  border: 1px solid #000;
}

.table-vertical th,
.table-vertical td {
  border: 2px solid #767171;
  padding: 10px;
}

.table-vertical th {
  background-color: #071844;
  border: 2px solid #F2F2F2;
  color: #F2F2F2;
  text-align: left;
  padding: 10px;
  vertical-align: center; 
}


.bg-red{
  background: #A30119;
  color: #fff;
}

.bg-blue{
  background: #0A2771;
  color: #fff;
}

.with-line {
  position: relative;
}

.with-line::after {
  content: "";
  position: absolute;
  right: 0;
  top: -40%;
  width: 1px;
  height: 190%;
  background-color: #fff;
}

.c_flow_step {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;          /* 横向排列的关键 */
  gap: 10px;              /* 每个步骤之间的间距 */
}

.c_flow_step > li {
    padding: 10px;
    margin-bottom: 10px;
    position: relative;
}

.c_flow_step > li:not(:last-child):after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border: solid 8px;
    border-color: #A30119 #A30119 transparent transparent;
    top: 40%;
    left: 100%;
    margin-left: -8px;
    transform: rotate(45deg);
}

@media (max-width: 992px) {
  .table-vertical {
    font-size: 1rem;
  }
  .table-vertical tr td:last-child,
  .table-vertical tr th:last-child {
    font-size: 1.2rem;
  }
  .surgical{
    font-size: 1rem;
  }
  .with-line::after {
    right: 0;
    top: 100%;
    width: 100%;
    height: 1px;
    background-color: #fff;
  }
}