* {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, h5, h6,
p, ul, ol {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Microsoft Yahei", "Microsoft YaHei UI", "Arial", "PingFang SC", "HarmonyOS_Regular", "Noto Sans CJK SC", "Helvetica Neue", "Avenir", "Segoe UI", "Hiragino Sans GB", "STHeiti", "Microsoft Sans Serif", "WenQuanYi Micro Hei", sans-serif;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button, input, textarea {
  font: inherit;
}

.page-warp {
  width: 100%;
  min-width: 1200px;
  min-height: 100vh;
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
}
.page-warp .page-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 500px;
  background: linear-gradient(0deg, rgba(248, 255, 252, 0) 0%, rgba(248, 255, 252, 0.8) 100%);
  z-index: -1;
}
.page-warp .header {
  width: 1200px;
  flex: 0 0 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page-warp .header .logo {
  width: 148px;
  height: 40px;
}
.page-warp .header .nav {
  display: flex;
  gap: 32px;
}
.page-warp .header .nav .item {
  color: #000;
  font-size: 16px;
}
.page-warp .header .nav .item:hover {
  color: #08D25B;
}
.page-warp .footer {
  width: 100%;
  flex: 0 0 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #F7F9FA;
  margin-top: 120px;
  gap: 40px;
}
.page-warp .footer span, .page-warp .footer a {
  color: #7D8082;
  font-size: 14px;
}
