.zhonke-logo {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
}
.zhonke-logo .zhonke-logo-icon {
  flex-shrink: 0;
  --zhonke-logo-size: 50px;
  width: var(--zhonke-logo-size);
  height: var(--zhonke-logo-size);
  background-image: url(../images/logo.png);
  background-size: 100%;
  background-position: center;
}
.zhonke-logo .zhonke-logo-text {
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 900;
  user-select: none;
  margin-left: 5px;
  color: #00309c;
}
.zhonke-logo .zhonke-logo-text .zhonke-logo-name--en {
  font-size: 9px;
  color: #969696;
  font-weight: normal;
}
.zhonke-header {
  width: 100%;
  height: 60px;
  background-color: #f5f5f7cc;
  backdrop-filter: saturate(180%) blur(20px);
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 1;
}
.zhonke-header .zhonke-nav {
  padding: 0 50px;
}
.zhonke-footer {
  width: 100%;
  line-height: 30px;
  position: fixed;
  bottom: 0;
  left: 50%;
  color: #666;
  font-size: 12px;
  transform: translateX(-50%);
  text-align: center;
}
.zhonke-footer .zhonke-footer-icp {
  border: none;
  color: #666;
  text-decoration: none;
}
.zhonke-footer .zhonke-footer-icp:hover {
  color: #00309c;
  border-bottom: 1px solid #333;
}
* {
  margin: 0;
  padding: 0;
  list-style: none;
  box-sizing: border-box;
  --page-padding-top: 60px;
  --theme-backgroun-color: #f3f3f5;
}
body {
  font-family: PingFang SC, Microsoft YaHei UI, Microsoft YaHei, Source Han Sans CN, sans-serif, Helvetica Neue, Helvetica, Arial;
}
.zhonke-vw {
  width: 1024px;
  max-width: 1024px;
  margin: 0 auto;
}
.zhonke-main {
  width: 100vw;
  height: 100vh;
  padding-top: var(--page-padding-top);
  display: flex;
  align-items: center;
  justify-content: center;
}
.zhonke-main .zhonke-main-box {
  width: 800px;
  height: 800px;
  position: fixed;
  top: -80px;
  right: -200px;
  border-radius: 50%;
  background-image: linear-gradient(45deg, #88baff, #00309c);
  box-shadow: 0 0 10px 10px #1672f6;
  filter: blur(80px);
  z-index: -1;
}
.zhonke-main .zhonke-main-logo {
  width: 800px;
  height: 800px;
  position: fixed;
  top: 0;
  right: -100px;
  background-image: url(../images/logo.png);
  background-size: 100%;
  background-position: center;
  filter: blur(130px);
}
.zhonke-main .zhonke-tooltip {
  text-align: center;
  animation: text-opacity 2s ease-out 0s forwards;
}
.zhonke-main .zhonke-tooltip h1 {
  font-size: 20px;
}
.zhonke-main .zhonke-tooltip h6 {
  margin-top: 10px;
}
.zhonke-main .zhonke-tooltip .t-technology {
  color: #00309c;
  font-size: 30px;
}
.zhonke-main .zhonke-tooltip .t-soul {
  color: #00309c;
  font-size: 30px;
}
@keyframes text-opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
