.title-normal {
  font-weight: 700;
  font-size: 24px;
  padding: 0 12px;
  width: 75%;
  background-color: #fff;
  z-index: 10;
  position: relative;
}
.title-normal::before,
.title-normal::after {
  content: "";
  position: absolute;
  height: 16px;
  width: 3px;
  background-color: #bcd7f7;
  border-radius: 3px;
  top: 50%;
  transform: translateY(-50%);
}
.title-normal::before {
  left: 0;
}
.title-normal::after {
  right: 0;
}
/* 按钮-小手 */
.button-hand {
  position: relative;
  font-size: 5.1282vw;
  font-weight: bold;
  padding: 6px 4px;
  border-radius: 66px;
  color: #fff;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
  text-align: center;
  transition: all .3s;
}
.button-hand .button-info-text {
  padding: 4px 32px;
  border-radius: 62px;
}
.button-hand:hover {
  transform: translateY(-5px);
  text-shadow: 0px 4px 7px rgba(0, 0, 0, 0.4);
}
.button-hand:hover .button-info-text {
  padding: 4px 20px;
}
.button-hand::before {
  position: absolute;
  content: "";
  background: url("https://static.cmereye.com/imgs/2024/03/a1e7771b0dd348dd.png") no-repeat;
  background-size: contain;
  width: 32px;
  height: 32px;
  bottom: 0;
  right: -4px;
  animation: FadeElement 2s ease-in-out infinite;
}
@media screen and (max-width: 1023px) {
  .table-wrap tr {
    border-bottom: 3px solid #bcd7f7;
  }
  .table-wrap th,
  .table-wrap td {
    padding: 20px 4px;
  }
  .table-wrap th {
    font-size: 3.3333vw;
    color: var(--color-lens);
  }
  .table-wrap tbody th span {
    font-size: 10px;
  }
}
@media screen and (min-width: 1024px) {
  /* 按钮-带鼠标 */
  .button-hand {
    font-size: 48px;
    border-radius: 104px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    padding: 8px;
  }
  .button-hand .button-info-text {
    padding: 4px 72px;
    border-radius: 74px;
    box-shadow: 0 2.5px 2.5px rgba(0, 0, 0, 0.16);
  }
  .button-hand:hover .button-info-text {
    padding: 4px 60px;
  }
  .button-hand::before {
    height: 84px;
    width: 84px;
    right: -28px;
    bottom: -12px;
  }
  .title-normal {
    font-size: 52px;
    padding: 0 52px;
    width: fit-content;
  }
  .title-normal::before,
  .title-normal::after {
    width: 6px;
    height: 30px;
  }
  .table-wrap {
    border-collapse: collapse;
    border: 0.3125vw solid #bcd7f7;
    border-radius: 3.2188vw;
    overflow: hidden;
  }
  .table-wrap th {
    font-size: 30px;
    color: var(--color-lens);
  }
  .table-wrap thead th {
    padding: 8px 0;
  }
  .table-wrap tbody th,
  .table-wrap tbody td {
    padding: 20px 0;
  }
  .table-wrap tbody th span {
    font-size: 20px;
  }
  .table-wrap th,
  .table-wrap td {
    border: 0.3125vw solid #bcd7f7;
  }
  .table-wrap tr:first-child th,
  .table-wrap tr:first-child td {
    border-top: none;
  }
  .table-wrap tbody tr:last-child th,
  .table-wrap tr:last-child td {
    border-bottom: none;
  }
  .table-wrap tr td:first-child,
  .table-wrap tr th:first-child {
    border-left: none;
  }
  .table-wrap tr td:last-child,
  .table-wrap tr th:last-child {
    border-right: none;
  }
}
