body {
  background-image: url("../img/application/bg.png");
  background-size: cover !important;
  height: 100vh !important;
}


.subLine {
  position: relative;
  /* 设置相对定位 */
  height: 1.25vw;
  /* 设置容器高度 */
  border-right: 0.25vw solid #da251d;
  /* 添加右边框作为竖线样式 */
}

.subLine::after {
  content: "";
  /* 必须有内容才能显示伪元素 */
  position: absolute;
  /* 将伪元素放置于容器之外 */
  bottom: -50%;
  /* 调整伪元素的位置到容器下部分 */
  right: 50%;
  /* 水平居中 */
  height: 3px;
  /* 设置伪元素的高度 */
  background-color: #da251d;
  /* 设置背景色 */
  transform: translateY(50%);
  /* 垂直居中 */
}

.appContent td,
.appContent th {
  line-height: 2;
  margin-bottom: 0.7vw;
  font-size: 1vw;
}

.appContent ul li{
  margin-bottom: 0;
}