* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
ul {
  padding: 0;
}
li {
  list-style: none;
}
a {
  text-decoration: none;
  color: #333;
}
.public-head {
  display: flex;
  height: 108px;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  padding: 0 40px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  min-width: 960px;
  width: 100%;
  max-width: 1920px;
  max-height: 1080px;
}
.public-head ul {
  display: flex;
}

.public-head ul a {
  font-size: 16px;
  margin-left: 56px;
  color: #0C171C;
  transition: all 0.3s;
}

.public-head ul a.active {
  color: #EF6F3E;
}

.head-r {
  display: flex;
}

body {
  font-family: 'Noto Sans SC', sans-serif;  
}

.loading {
  position: fixed;
  inset: 0;
  background: #f5f5f5;
  z-index: 99999;
}

.loading svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8rem;
}

.hourglassx {
  width: 120px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.hourglass {
  stroke-dasharray: 210;
  -webkit-animation: snake 3s linear infinite both;
  animation: snake 3s linear infinite both;
}

@keyframes snake {
  0% {
      stroke-dashoffset: 0;
  }

  100% {
      stroke-dashoffset: 420;
  }
}

.section {
  position: relative;
}

#fullpage {
  min-width: 960px;
  max-width: 1920px;
  max-height: 1080px;
  margin: 0 auto;
}

.title {
  position: relative;
  text-align: center;
  margin: 0 auto;
}

.title .title-img {
  position: relative;
  z-index: 99;
}

.title .wk-img {
  position: absolute;
  left: 300px;
  top: calc(30% - 432px);
  z-index: 9;
}
.centent {
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
.tips {
  text-align: center;
  font-size: 16px;
  color: #3B686B;
  position: relative;
  z-index: 99;
  margin-top: 32px;
}

.tips span {
  text-decoration: underline;
}

.downloads {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 99;
  padding-bottom: 0px;
  padding-top: 32px;
}

.downloads a {
  width: 230px;
  height: 80px;
  background: linear-gradient( 270deg, #3AD1C4 0%, #2D4753 100%);
  border-radius: 6px;
  border: 1px solid #3B686B;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 12px;
}

.downloads a::before {
  position: absolute;
  content: "";
  width: 218px;
  height: 68px;
  top: 4px;
  left: 4px;
  border: 1px solid #EAFDF7;
  opacity: 0.5;
  border-radius: 6px;
}

.downloads a span{
  color: #fff;
  font-size: 20px;
  line-height: 1;
}

.downloads a small {
  font-size: 14px;
}
.touchdown {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 3vh;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  font-size: 12px;
  color: #fff;
  width: 320px;
  height: 48px;
  background: linear-gradient( 270deg, rgba(42,186,164,0) 0%, rgba(42,186,164,0.5) 53%, rgba(42,186,164,0) 100%);
}

.touchdown img {
  width: 12px;
  margin-left: 12px;
  animation: updown 1s linear infinite both;
}
@keyframes updown {
  0% {
    transform: translateY(-4px);
  }

  50% {
    transform: translateY(4px);
  }

  100% {
    transform: translateY(-4px);
  }
}

#fp-nav {
  right: initial;
  left: 17px;
}

#fp-nav ul li {
  width: 3px;
  height: 32px;
  margin-bottom: 16px;
}

#fp-nav ul li a {
  width: 3px;
  height: 32px;
  background: #2D4753;
  opacity: 0.2;
}

#fp-nav ul li a.active,#fp-nav ul li a:hover {
  opacity: 1;
}

#fp-nav ul li a span {
  display: none;
}
.leaf-img {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.title2 {
  text-align: center;
  width: 100%;
  position: relative;
}

.servers {
  display: flex;
  margin-top: 88px;
}

.server-item {
  width: 216px;
  height: 440px;
  background: linear-gradient( 180deg, #F0F5F0 0%, #FFFFFF 100%);
  box-shadow: inset 0px 1px 0px 0px #FFFFFF, inset 0px -1px 0px 0px #C7D6C0;
  border-radius: 8px;
  margin-right: 16px;
  position: relative;
  transition: all 0.3s;
  padding: 64px 24px;
  overflow: hidden;
}

.server-item:last-child {
  margin-right: 0;
}

.server-item::before {
  position: absolute;
  content: "";
  inset: 8px;
  border: 1px solid #4A8580;
  border-radius: 8px;
  opacity: 0.2;
}

.server-item:nth-of-type(2n) {
  margin-top: 64px;
}

.server-item.active {
  transform: translateY(-24px);
  background: linear-gradient(180deg, #2D4753, #3AD1C4);
}

.server-item svg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: all 1s;
}

.server-item.active svg {
  opacity: 1;
}

.leaf1-img {
  position: absolute;
  left: -500px;
  top: -10vh;
}

.server-item.active .server-title {
  color: #EBFFFD;
}

.server-item.active .server-text {
  color: #CBF2EE;
}

.server-title {
  font-size: 24px;
  color: #333;
  margin-top: 24px;
  transition: all 0.3s;
}

.server-text {
  font-size: 14px;
  color: #666;
  margin-top: 16px;
  transition: all 0.3s;
}

@keyframes draw {  
  to {  
      stroke-dashoffset: 0;
  }  
} 

.path1 {  
  stroke: url(#linearGradient-4);  
  stroke-width: 2;  
  fill: none;  
  stroke-dasharray: 1000; 
  stroke-dashoffset: 1000;
} 

.path2 {  
  stroke: url(#linearGradient-5);  
  stroke-width: 10;  
  fill: none;  
  stroke-dasharray: 1000; 
  stroke-dashoffset: 1000;
} 

.server-item.active svg path {
  animation: draw 3s cubic-bezier(.06,.82,.98,.57) forwards;
}

.setmenus {
  width: 1216px;
  height: 606px;
  background: linear-gradient( 180deg, #F0F5F0 0%, #FFFFFF 100%);
  box-shadow: inset 0px 1px 0px 0px #FFFFFF, inset 0px -1px 0px 0px #C7D6C0;
  border-radius: 16px;
  margin-top: 30px;
  position: relative;
  padding: 40px 64px;
}

.setmenu-menu {
  position: absolute;
  left: -144px;
  top: 50%;
  transform: translateY(-50%);
}

.setmenu-menu a {
  display: block;
  width: 144px;
  height: 85px;
  background: #F0F5F0;
  border-radius: 16px 0px 0px 16px;
  font-size: 24px;
  color: #3B686B;
  text-align: center;
  line-height: 85px;
  margin-bottom: 8px;
  transition: all 0.3s;
}

.setmenu-menu a:last-child {
  margin-bottom: 0;
}

.setmenu-menu a.active {
  background: linear-gradient( 270deg, #3AD1C4 0%, #2D4753 100%);
  color: #fff;
}

.setmenu-menu a.active {
  background: url(../image/menu.png) 100% 100%;
}

.setmenu-title {
  margin-bottom: 40px;
  font-size: 24px;
  color: #333333;
  text-align: center;
}

.setmenu-item {
  display: flex;
  justify-content: space-between;
}

.setmenu {
  width: 348px;
  height: 370px;
  background: linear-gradient( 180deg, #A6CFC9 0%, #E2EFE2 100%);
  box-shadow: 0px 6px 16px 0px rgba(143,182,163,0.18);
  border-radius: 8px;
  transition: all 0.3s;
  padding: 40px 24px 34px 24px;
}

.setmenu.active {
  background: linear-gradient( 180deg, #3AD1C4 0%, #21AC91 100%);
  transform: translateY(-10px);
}

.setmenubox {
  margin-bottom: 40px;
}

.gotobuy {
  width: 592px;
  height: 44px;
  background: linear-gradient( 270deg, #FED07B 0%, #FFE3B9 100%);
  border-radius: 22px;
  display: block;
  line-height: 44px;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  color: #AC5A21;
  margin: 0 auto;
}

.setmenu-prduct-title {
  font-size: 16px;
  color: #333;
  font-weight: bold;
  margin-bottom: 32px;
  text-align: center;
}

.setmenu-prduct-price {
  font-size: 16px;
  color: #142149;
  margin-bottom: 12px;
  text-align: center;
}

.setmenu-prduct-price span {
  font-weight: bold;
  font-size: 40px;
  color: #142149;
  line-height: 1;
}

.setmenu-prduct-level {
  text-align: center;
  font-size: 12px;
  color: #333333;
  margin-bottom: 32px;
}

.line {
  height: 1px;
  background-color: #fff;
  opacity: 0.3;
  margin-bottom: 24px;
}

.setmenu-prduct-infotitle {
  font-size: 14px;
  color: #333333;
  margin-bottom: 12px;
}

.setmenu-prduct-infos {
  display: flex;
  align-items: center;
}

.setmenu-prduct-info {
  width: calc((100% - 12px) / 4);
  margin-right: 4px;
  text-align: center;
  width: 72px;
  height: 96px;
  background: linear-gradient( 180deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.8) 100%);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.4);
}

.setmenu-prduct-info:last-child {
  margin-right: 0;
}

.setmenu-prduct-info svg {
  margin-top: 16px;
}

.setmenu-prduct-info .text {
  margin-top: 6px;
  font-size: 14px;
  color: #0C171C;
  line-height: 20px;
}

.setmenu-prduct-info small {
  font-size: 12px;
  color: #0C171C;
  opacity: 0.6;
}

.setmenu.active .setmenu-prduct-title {
  color: #fff;
}

.setmenu.active .setmenu-prduct-price {
  color: #fff;
}

.setmenu.active .setmenu-prduct-price span {
  color: #fff;
}

.setmenu.active .path {
  fill: #fff;
}

:root {
  --bvh: 20vh;
}

.about {
  width: 1376px;
  height: 568px;
  border-radius: 16px;
  overflow: hidden;
  /* padding: 40px 0; */
  margin-top: 40px;
  display: flex;
}

.about-l {
  padding: 40px 0;
  background: linear-gradient( 270deg, #FFFFFF 0%, rgba(255,255,255,0) 100%);
  padding-right: 64px;
}

.about-r {
  flex: 1;
  padding: 88px 40px 126px 0;
  position: relative;
  background-color: #fff;
  margin-left: -1px;
}

.about-navs {
  position: absolute;
  bottom: 88px;
  left: 0;
}

.about-navs a {
  font-size: 12px;
  padding: 10px 12px;
  color: #666;
  border-radius: 21px;
  border: 1px solid #CCCCCC;
  transition: all 0.3s;
  line-height: 1;
}

.about-navs a.active,.about-navs a:hover {
  background-color: #333;
  color: #fff;
}

.about-title {
  font-size: 48px;
  color: #333333;
  line-height: 60px;
  margin-bottom: 36px;
}

.about-smalltitle {
  font-size: 16px;
  color: #3AD1C4;
  line-height: 24px;
  margin-bottom: 20px;
}

.about-text {
  font-size: 16px;
  color: #666666;
  line-height: 24px;
}

.about-text ul {
  padding-left: 20px;
}

.about-text li {
  list-style: initial;
  margin-bottom: 4px;
}

.wk-question-list {
  margin-top: 28px;
  height: 740px;
  overflow-y: auto;
  width: 1400px;
}

.wk-question-item {
  width: 1200px;
  background: #FFFFFF;
  box-shadow: inset 0px -1px 0px 0px #CCCCCC;
  border-radius: 8px;
  overflow: hidden;
  margin: 0 auto;
  margin-bottom: 8px;
}

.wk-question-title {
  height: 80px;
  background: #FFFFFF;
  box-shadow: inset 0px -1px 0px 0px #CCCCCC;
  border-radius: 8px 8px 0px 0px;
  line-height: 80px;
  display: block;
  position: relative;
  padding: 0 24px;
  color: #142149;
  font-size: 20px;
}

.wk-question-title svg {
  position: absolute;
  width: 14px;
  height: 14px;
  right: 36px;
  top: 50%;
  transform: translateY(-50%) rotateZ(90deg);
}

.wk-question-info {
  transition: all 0.3s;
  max-height: 0;
  overflow: hidden;
  color: #666666;
  font-size: 14px;
}

.wk-question-info p {
  padding: 0 24px;
}

.wk-question-info ul {
  list-style: initial;
  padding: 0 24px;
}

::-webkit-scrollbar {
  width: 1px;
  background: #fff;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb {
  width: 10px;
  background: #CDE9E1;
  border-radius: 5px;
}

.fp-watermark {
  display: none;
}

.centent-box {
  transform-origin: center bottom;
}

.copyright {
  width: 100%;
  height: 48px;
  background: #152226;
  font-size: 14px;
  color: #FFFFFF;
  line-height: 48px;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}