* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  font-family: 'MiSans', Inter, -apple-system, BlinkMacSystemFont, Segoe UI, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Helvetica Neue, Helvetica, Arial, sans-serif;
}
:root {
  --border-color: #EDEDEE;
}
.container-full {
  padding: 0 24px;
}
.dividing-line {
  border-bottom: 1px solid var(--border-color);
}
.text-center {
  text-align: center;
}
.button {
  border: 1px solid var(--border-color);
  padding: 12px 24px;
  background: #fff;
  cursor: pointer;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
}
.button:hover {
  background: #F4F5F5;
}
.button a {
  color: #333;
  text-decoration: none;
}
.button.primary {
  color: #fff;
  background: #0064FA;
}
.button.primary:hover {
  background: #0062D6;
}
.button.primary a {
  color: #fff;
  text-decoration: none;
}
header {
  border-bottom: 1px solid #EDEDEE;
  position: sticky;
  top: 0;
  z-index: 99;
  background: #fff;
}
header .header-main {
  backdrop-filter: saturate(1.8) blur(40);
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .logo {
  max-height: 24px;
}
main {
  overflow: hidden;
}
main img {
  max-width: 100%;
}
.description-header {
  display: flex;
  margin: 80px auto;
  justify-content: center;
}
.description-header .left {
  flex-shrink: 0;
  margin-right: 100px;
  padding-top: 100px;
}
.description-header .left .title-big {
  font-size: 48px;
  color: #1C1F23;
  text-align: left;
  vertical-align: top;
  font-weight: 600;
  line-height: 67px;
  letter-spacing: 0;
}
.description-header .right {
  position: relative;
}
.description-header .right .bg {
  position: absolute;
  width: 640px;
  height: 640px;
  left: -50px;
  top: -20px;
  filter: blur(120px);
  opacity: 0.6;
}
.description-header .right .bg:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 474px;
  border-radius: 50%;
  top: 0;
  left: 0;
  background: #8090d3;
}
.description-header .right .theme-jt {
  border-radius: 10px;
  position: relative;
  left: 0;
  margin-left: -30px;
  margin-top: -30px;
  width: 800px;
  border: 1px solid #EDEDEE;
}
.feature-box {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  max-width: 1000px;
  margin: 50px auto;
}
.feature-box > div {
  flex-shrink: 0;
  width: 50%;
}
.feature-box img {
  max-width: 420px;
}
.feature-box .big-title {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 600;
  color: #333;
}
.feature-box .sub-title {
  font-size: 20px;
  color: #999;
  margin-bottom: 30px;
}
.feature-box .content {
  line-height: 1.6;
  font-size: 18px;
}
.gn-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
  margin-top: 20px;
}
.gn-item {
  border: 1px solid var(--border-color);
  padding: 24px 40px;
  border-radius: 10px;
}
.gn-item .icon {
  width: 40px;
}
.gn-item .big-title {
  font-size: 20px;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 20px;
}
.gn-item .content {
  font-size: 18px;
  color: #727477;
  line-height: 32px;
}
.statistic-wrap {
  text-align: left;
}
.statistic-wrap .box-title {
  color: #727477;
  font-size: 14px;
}
.statistic-wrap .number {
  font-size: 32px;
  font-weight: bold;
  color: #0064FA;
}
.update-version {
  font-size: 24px;
  color: #0064FA;
  font-weight: bold;
  margin-bottom: 10px;
}
.update-content {
  font-size: 18px;
  line-height: 28px;
}
.sh-box {
  display: flex;
  gap: 20px;
  justify-content: center;
  max-width: 800px;
  margin: auto;
}
.sh-box .box-title {
  font-size: 20px;
  font-weight: 600;
}
.sh-box li {
  border: 1px solid #EDEDEE;
  margin: 10px 0;
  padding: 10px;
  border-radius: 10px;
  min-height: 80px;
  display: flex;
}
.sh-box li:hover {
  background: #F4F5F5;
}
footer {
  margin: 20px 0;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .description-header {
    flex-direction: column;
    align-items: center;
    margin-top: 0;
  }
  .description-header .left {
    margin-top: 0 !important;
    padding-top: 0;
    margin-right: 0 !important;
  }
  .description-header .theme-jt {
    margin: 0 !important;
  }
  .description-header .title-big {
    font-size: 40px !important;
  }
  .description-header .right {
    margin-top: 20px;
  }
  .ztjg-img {
    width: 100% !important;
  }
  .xqd-wrap {
    flex-direction: column !important;
  }
  .xqd-wrap img {
    max-width: 100% !important;
  }
  .feature-box {
    flex-direction: column !important;
  }
  .feature-box img {
    max-width: 100% !important;
  }
  .gn-list {
    padding: 0 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 600px) {
  .gn-list {
    padding: 0 10px;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .sh-box {
    display: block;
    padding: 10px;
  }
}
