body,p,h2,h3 {
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100% !important;
  text-size-adjust: 100% !important;
  -moz-text-size-adjust: 100% !important;
}
#app {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 100px;
}
.header {
  width: 100%;
  height: 410px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 100px;
  overflow: hidden;
}
.header_bg_pc {
  width: 100%;
  height: 100%;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
}
.header_img {
  width: 1280px;
  object-fit: cover;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  top: 2vw;
  left: 50%;
  transform: translateX(-50%);
}
.block {
  width: 93.6%;
  max-width: 1200px;
  margin-bottom: 100px;
}
.block:last-child {
  margin-bottom: 0;
}
.title {
  font-size: 44px;
  font-weight: bold;
  color: #343C4B;
  margin-bottom: 50px;
}
.list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-left: 54px;
  box-sizing: border-box;
  position: relative;
}
.list::after {
  content: '';
  width: 4px;
  height: calc(100% - 0.6em);
  background-color: #4298B4;
  position: absolute;
  left: 0;
  top: 0.3em;
}
.content {
  font-size: 24px;
  color: #505050;
  line-height: 40px;
}
.beian {
  font-size: 14px;
  color: #505050;
  margin: 120px 0;
  text-align: center;
}

@media screen and (max-width: 500px) {
  #app {
    padding-bottom: 50px;
  }
  .header {
    width: 100%;
    height: calc((200 / 375) * 100vw);
    margin-bottom: calc((36 / 375) * 100vw);
  }
  .header_bg {
    width: 100%;
    height: 100%;
    clip-path: polygon(0 0, 100% 0, 100% 95%, 94% 100%, 4% 100%, 0 94%);
    background-color: #F4F4F8;
    position: absolute;
    top: 0;
    left: 0;
  }
  .header_bg_pc {
    display: none;
  }
  .header_img {
    width: 100%;
    height: calc((138 / 375) * 100vw);
    top: calc((40 / 375) * 100vw);
  }
  .block {
    margin-bottom: calc((50 / 375) * 100vw);
  }
  .title {
    font-size: calc((34 / 375) * 100vw);
    margin-bottom: calc((36 / 375) * 100vw);
  }
  .list {
    gap: calc((30 / 375) * 100vw);
    padding-left: calc((24 / 375) * 100vw);
  }
  .list::after {
    width: calc((6 / 375) * 100vw);
  }
  .content {
    font-size: calc((16 / 375) * 100vw);
    line-height: calc((27 / 375) * 100vw);
  }
  .beian {
    font-size: calc((12 / 375) * 100vw);
    margin: calc((30 / 375) * 100vw) 0;
  }
}