:root {
  --title-size: 23px;
  --sub-title-size: 15px;
  --text-size: 13px;
  --title-color: #106742;
  --normal-text-color: #009C58;
}

.container {
  width: 100%;
  height: 100vh;
  padding: 61px 7% 20px;
  box-sizing: border-box;
  background-image: linear-gradient(327deg, #ffe8724a 0%, #ffffff33 50%, #01ea911a 79%, #01ea910f 100%, #01ea9130 100%);
  overflow-y: auto;
}

h2 {
  font-size: var(--title-size);
  font-family: PingFangSC-Medium, PingFang SC;
  font-weight: bold;
  color: var(--title-color);
  line-height: 25px;
  padding-bottom: 30px;
}

h3 {
  font-size: var(--sub-title-size);
  font-family: PingFangSC-Semibold, PingFang SC;
  font-weight: 600;
  color: var(--normal-text-color);
  line-height: 20px;
  padding: 20px 0 12px;
}

ul li,
p {
  text-align: justify;
  font-size: var(--text-size);
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: var(--normal-text-color);
  line-height: 17px;
  margin-bottom: 12px;
}

em {
  font: inherit;
  font-family: PingFangSC-Semibold, PingFang SC;
  font-weight: 600;
  color: var(--normal-text-color);
}

.link {
  text-decoration: underline;
}