@charset "UTF-8";


/*!
 * wx    : 13141800520
 * Website   : https://www.ebxweb.com

 */

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  outline: none;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:focus {
  outline: 0;
}

html {
  scroll-behavior: smooth;
}
html:focus-within {
  scroll-behavior: smooth;
}
html::-webkit-scrollbar {
  width: 4px;
}
html::-webkit-scrollbar-track {
  background-color: transparent;
}
html::-webkit-scrollbar-thumb {
  background-color: hsl(225, 80%, 50%);
}

body {
  color: #666;
  font-size: 14px;
  font-family: helvetica neue, hiragino sans gb, arial, Microsoft JhengHei, microsoft yahei, simsun, sans-serif;
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
}

ol,
ul {
  list-style: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

a {
  color: inherit;
  text-decoration: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
a:active {
  outline: 0;
}

img,
picture,
video,
canvas,
svg {
  max-width: 100%;
  -o-object-fit: fill;
     object-fit: fill;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flex-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex-inline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.flex-1 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.items-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.items-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.items-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.items-stretch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.justify-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.justify-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.justify-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.wrap {
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.btn-default {
  max-width: 280px;
  padding: 12px 0;
  border-radius: 4px;
  background-color: hsl(225, 80%, 50%);
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.btn-default span {
  color: hsl(0, 0%, 100%);
}

.com-title {
  text-align: center;
}
.com-title.light h1 {
  color: hsl(0, 0%, 100%);
}
.com-title.light span {
  color: hsl(0, 0%, 100%);
  opacity: 0.9;
}
.com-title h1 {
  color: #222;
  font-size: 36px;
  line-height: 1;
}
.com-title span {
  color: #666;
  font-size: 16px;
  margin-top: 12px;
  display: block;
}

/** 统一顶部 */
.header {
  width: 100%;
  height: 64px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 0 3vw;
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
  z-index: 999;
}
.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-bottom: 120px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(4.16%, rgba(103, 136, 167, 0.6)), color-stop(99.87%, rgba(103, 136, 167, 0)));
  background: linear-gradient(180deg, rgba(103, 136, 167, 0.6) 4.16%, rgba(103, 136, 167, 0) 99.87%);
  opacity: 1;
  z-index: -1;
}
.header.active {
  background-color: hsl(0, 0%, 0%);
  position: fixed;
}
.header.active::before {
  opacity: 0;
}
.header.active .menus .logo-box img.logo {
  display: none;
}
.header.active .menus .logo-box img.logo-on {
  display: block;
}
.header .menus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .menus .logo-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header .menus .logo-box img {
  height: 38px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.header .menus .logo-box img.logo-on {
  display: none;
}
.header .menus .menu {
  margin-left: 54px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .menus .menu li {
  color: hsl(0, 0%, 100%);
  font-size: 14px;
  font-weight: 400;
  margin-right: 40px;
  line-height: 22px;
  cursor: pointer;
  position: relative;
}
.header .menus .menu li.active {
  font-weight: 600;
}
.header .menus .menu li.active::after {
  opacity: 1;
}
.header .menus .menu li::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 16px;
  height: 4px;
  background: hsl(0, 0%, 100%);
  border-radius: 2px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0;
}
.header .other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .other .code {
  padding-right: 12px;
  border-right: 1px solid hsl(0, 0%, 100%);
  line-height: 12px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .other .code .svg {
  --w: 14px;
}
.header .other .code .svg svg {
  width: var(--w);
  height: var(--w);
  color: hsl(0, 0%, 100%);
  margin-right: 3px;
}
.header .other .code span {
  color: hsl(0, 0%, 100%);
  font-weight: 12;
}
.header .other .code span em {
  color: hsl(225, 80%, 50%);
  font-style: normal;
  text-decoration: underline;
}
.header .other .try {
  width: 120px;
  padding: 8px 0;
  margin-left: 16px;
  position: relative;
}
.header .other .try.show .try-drop {
  opacity: 1;
  visibility: visible;
}
.header .other .try-drop {
  min-width: 280px;
  position: absolute;
  right: 0;
  top: 100%;
  padding: 24px 32px;
  background-color: hsl(0, 0%, 100%);
  opacity: 0;
  visibility: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header .other .try-drop .text {
  padding-right: 24px;
  margin-right: 24px;
  border-right: 1px solid #ddd;
  position: relative;
}
.header .other .try-drop .text span {
  color: #222;
  font-size: 16px;
  display: block;
  line-height: 2;
}
.header .other .try-drop .qrcode img {
  width: 100px;
  height: 100px;
  display: block;
}
.header .other .try-drop .qrcode p {
  color: #666;
  font-size: 12px;
  width: 84px;
  margin: 6px auto 0;
}

/** 统一页脚 */
.footer {
  color: hsl(0, 0%, 100%);
  background-color: hsl(0, 0%, 0%);
  overflow: hidden;
}
.footer-wp {
  padding: 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer-wp .brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.footer-wp .brand .icon {
  margin-right: 10px;
}
.footer-wp .brand .icon svg {
  width: 64px;
  height: 64px;
}
.footer-wp .brand .text .tit {
  font-size: 24px;
  height: 24px;
  line-height: 1;
  margin-bottom: 4px;
}
.footer-wp .brand .text .desc {
  font-size: 18px;
  opacity: 0.7;
}
.footer-wp .wx-num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.footer-wp .wx-num svg {
  width: 40px;
  height: 40px;
}
.footer-wp .wx-num .num {
  font-size: 26px;
}
.footer-wp .wx-ewm img {
  width: 110px;
  height: 100px;
  display: block;
}
.footer-wp .wx-ewm p {
  margin-top: 5px;
  text-align: center;
}
.footer .copyright {
  padding: 16px 0;
  position: relative;
}
.footer .copyright::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: hsla(0, 0%, 100%, 0.1);
  height: 1px;
  width: 100%;
}
.footer .copyright span {
  font-size: 16px;
}

/** 侧边栏 */
.aside {
  width: 200px;
  position: fixed;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: hsl(225, 80%, 50%);
  z-index: 998;
}
.aside .item {
  color: hsl(0, 0%, 100%);
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.aside .item h3 {
  font-size: 24px;
}
.aside .item img {
  width: 140px;
  height: 140px;
  margin: 10px auto;
}
.aside .item p {
  font-size: 18px;
}

/** 申请试用弹窗 */
.dialog {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 9999;
}
.dialog .content {
  width: 520px;
  height: 340px;
  background-color: hsl(0, 0%, 100%);
  -webkit-box-shadow: 0px 6px 16px 0px rgba(204, 211, 214, 0.35);
          box-shadow: 0px 6px 16px 0px rgba(204, 211, 214, 0.35);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.dialog .content .info {
  width: 50%;
  height: 100%;
  color: hsl(0, 0%, 100%);
  position: relative;
  background-color: hsl(225, 80%, 50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.dialog .content .info .tit {
  font-size: 22px;
  margin-bottom: 20px;
}
.dialog .content .info ul li {
  font-size: 16px;
  padding-left: 14px;
  margin-bottom: 10px;
  position: relative;
}
.dialog .content .info ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: hsl(0, 0%, 100%);
  border-radius: 50%;
  opacity: 0.8;
}
.dialog .content .qrcode {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.dialog .content .qrcode h3 {
  font-size: 24px;
}
.dialog .content .qrcode img {
  width: 160px;
  height: 160px;
  margin: 20px auto;
}
.dialog .close {
  --size: 40px;
  width: var(--size);
  height: var(--size);
  color: hsl(0, 0%, 100%);
  background-color: #f90;
  border-radius: 50%;
  border: 2px solid transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: calc(var(--size) / -2);
  right: calc(var(--size) / -2);
  cursor: pointer;
}
.dialog .close svg {
  width: 30px;
  height: 30px;
}

.home-slider {
  width: 100%;
  height: 720px;
  background: url("../images/slider-bg.jpg")/*tpa=http://xpcp.9wyw.com/images/slider-bg.jpg*/ no-repeat center/cover;
  position: relative;
  overflow: hidden;
}
.home-slider .content {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  height: 100%;
}
.home-slider .content .text {
  width: 70%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.home-slider .content .text .title {
  margin-bottom: 20px;
}
.home-slider .content .text .title span {
  color: #666;
  font-size: 18px;
  margin-bottom: 12px;
}
.home-slider .content .text .title h1 {
  color: #222;
  font-size: 54px;
  font-weight: 600;
}
.home-slider .content .text ul {
  max-width: 420px;
  margin-bottom: 3vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.home-slider .content .text ul li {
  width: 50%;
  color: #666;
  font-size: 16px;
  padding-left: 16px;
  line-height: 32px;
  position: relative;
}
.home-slider .content .text ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-color: hsl(225, 80%, 50%);
  border-radius: 50%;
  opacity: 0.8;
}

.solution {
  padding: 100px 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(25.1%, #f7f9ff), to(#ebf2ff));
  background: linear-gradient(180deg, #f7f9ff 25.1%, #ebf2ff);
}
.solution-wp {
  margin-top: 3vw;
}
.solution-wp .tab-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.solution-wp .tab-nav li {
  height: 48px;
  padding: 0 30px;
  opacity: 0.7;
  margin-right: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.solution-wp .tab-nav li.active {
  color: #fff !important;
  border-radius: 24px;
  opacity: 1;
  background: linear-gradient(225deg, #64a9ff, #317af7) !important;
}
.solution-wp .tab-nav li:last-child {
  margin-right: 0;
}
.solution-wp .tab-nav li span {
  font-size: 18px;
  font-weight: 600;
}
.solution-wp .tab-content {
  margin-top: 3vw;
  height: 480px;
}
.solution-wp .tab-content .item {
  height: 100%;
  border-radius: 16px;
  background-color: hsl(0, 0%, 100%);
  -webkit-filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.08));
          filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.08));
  display: none;
  position: relative;
  margin-top: 20px;
}
.solution-wp .tab-content .item.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.solution-wp .tab-content .item .img {
  width: 50%;
  padding: 40px;
  position: relative;
}
.solution-wp .tab-content .item .img img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.solution-wp .tab-content .item .info {
  width: 50%;
  padding: 90px 78px;
  position: relative;
}
.solution-wp .tab-content .item .info .tit {
  color: #333;
  font-size: 28px;
  font-weight: 600;
}
.solution-wp .tab-content .item .info .desc {
  font-size: 16px;
  margin-top: 20px;
}
.solution-wp .tab-content .item .info .btn-default {
  margin-top: 3vw;
}

.feature {
  padding: 100px 0;
  background-color: #1b212e;
  overflow: hidden;
  position: relative;
}
.feature-list {
  margin-top: 3vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.feature-list .item {
  width: 300px;
  height: 400px;
  border-radius: 8px;
  padding: 32px 22px;
  background-color: hsl(225, 80%, 50%);
  position: relative;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  overflow: hidden;
}
.feature-list .item.active {
  width: 560px;
  padding: 32px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(25.1%, #f7f9ff), to(#ebf2ff)) !important;
  background: linear-gradient(180deg, #f7f9ff 25.1%, #ebf2ff) !important;
}
.feature-list .item.active .bg {
  visibility: hidden;
}
.feature-list .item.active .title {
  color: hsl(0, 0%, 0%);
  opacity: 0.9;
}
.feature-list .item.active .tips {
  color: #222;
}
.feature-list .item.active ul {
  background: url("../../p6-addone.byteimg.com/tos-cn-i-hhc0kcolqq/93848f9….png~tplv-hhc0kcolqq-image-v5-610-q100.image")/*tpa=https://p6-addone.byteimg.com/tos-cn-i-hhc0kcolqq/93848f9….png~tplv-hhc0kcolqq-image-v5:610:q100.image*/;
  background-repeat: no-repeat;
  background-size: 100%;
}
.feature-list .item.active ul li {
  opacity: 1;
}
.feature-list .item.active .imgs .img1 {
  bottom: 0;
  opacity: 1;
}
.feature-list .item.active .imgs .img2 {
  opacity: 0;
}
.feature-list .item .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(90.13deg, hsla(219, 72%, 50%, 0.5) 0.13%, hsla(219, 72%, 50%, 0.9) 99.91%);
  z-index: 1;
}
.feature-list .item .title {
  color: hsl(0, 0%, 100%);
  font-weight: 600;
  font-size: 28px;
  position: relative;
  z-index: 2;
}
.feature-list .item .tips {
  color: hsl(0, 0%, 100%);
  font-weight: 400;
  font-size: 18px;
  opacity: 0.7;
  margin-top: 4px;
}
.feature-list .item ul {
  width: 272px;
  padding-top: 80px;
  position: relative;
  left: 0;
  opacity: 1;
  -webkit-transition-property: all;
  transition-property: all;
}
.feature-list .item ul li {
  color: #666;
  font-size: 18px;
  line-height: 45px;
  position: relative;
  padding-left: 18px;
  opacity: 0;
}
.feature-list .item ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: hsl(225, 80%, 50%);
  border-radius: 50%;
}
.feature-list .item .imgs .img1 {
  width: 237px;
  height: 366px;
  position: absolute;
  right: 0;
  bottom: -106px;
  opacity: 0.5;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.feature-list .item .imgs .img2 {
  position: absolute;
  left: 20px;
  top: 0;
  width: 100%;
  opacity: 1;
  z-index: 1;
  -webkit-user-drag: none;
}

.server {
  padding: 100px 0;
  overflow: hidden;
}
.server-list {
  margin-top: 3vw;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.server-list .item {
  width: 100%;
  padding: 30px 12px;
  background-color: transparent;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.server-list .item:hover {
  -webkit-box-shadow: 0px 6px 16px 0px rgba(204, 211, 214, 0.35);
          box-shadow: 0px 6px 16px 0px rgba(204, 211, 214, 0.35);
}
.server-list .item img {
  width: 60px;
  height: 60px;
  display: block;
}
.server-list .item h3 {
  color: #222;
  font-size: 18px;
  margin: 20px auto;
}
.server-list .item p {
  color: #666;
  font-size: 14px;
  text-align: center;
}