.page-wrap {
  position: relative;
  width: 100vw;
  min-height: 100%;
  font-size: 0;
  text-align: center;
  background: url("../imgs/bg.jpg") center center no-repeat #090e12;
  background-size: cover;
  overflow: hidden;
}
.wrap-bd {
  position: absolute;
  max-width: 90vw;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  margin-top: -5vh;
  text-align: center;
}
.wrap-bd img {
  height: 98px;
  margin: 0 auto 32px;
}
.wrap-bd h1 {
  font-weight: 600;
  font-size: 40px;
  margin: 0 auto 24px;
  letter-spacing: 2px;
  max-width: 90vw;
  word-break: keep-all;
}
.wrap-bd h3 {
  font-weight: normal;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.84);
  letter-spacing: 1px;
}
.wrap-bd p {
  position: relative;
  display: inline-block;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  min-width: 320px;
  max-width: 30vw;
  padding: 0 20px;
  height: 52px;
  line-height: 52px;
  box-sizing: border-box;
  transition: all 1s;
  margin: 60px auto 0;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.6px;
  text-align: center;
  border: 1px solid rgb(87, 173, 181);
  border-radius: 4px;
}
.wrap-bd p span {
  display: block;
  position: relative;
  pointer-events: none;
  z-index: 3;
}
.wrap-bd p:before,
.wrap-bd p:after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.5s ease;
}
.wrap-bd p:before {
  border: 1px solid rgb(87, 173, 181);
  box-shadow: 0px 0px 20px 0px rgb(31, 146, 156),
    inset 0px 0px 20px 0px rgb(31, 146, 156);
  background: linear-gradient(
    180deg,
    rgba(31, 146, 156, 0.5),
    rgba(31, 146, 156, 0.1) 100%
  );
}
.wrap-bd p:hover:before {
  border: 1px solid rgb(95, 218, 230);
  box-shadow: 0px 0px 20px 0px rgb(87, 173, 181),
    inset 0px 0px 20px 0px rgb(87, 173, 181);
  background: linear-gradient(
    180deg,
    rgba(87, 173, 181, 0.5),
    rgba(87, 173, 181, 0.1) 100%
  );
}
.wrap-bd p:active:before {
  border: 1px solid rgb(95, 218, 230);
  box-shadow: 0px 0px 20px 0px transparent, inset 0px 0px 20px 0px transparent;
  background: linear-gradient(
    180deg,
    rgba(87, 173, 181, 0),
    rgba(87, 173, 181, 0) 100%
  );
  opacity: 0;
  transition: all 1s ease;
}
.wrap-bd p:active:after {
  border: 1px solid rgb(95, 218, 230);
  box-shadow: 0px 0px 20px 0px rgb(87, 173, 181),
    inset 0px 0px 20px 0px rgb(87, 173, 181);
  background: linear-gradient(
    180deg,
    rgba(87, 173, 181, 0.5),
    rgba(87, 173, 181, 0.1) 100%
  );
  opacity: 0.6;
}
.wrap-ft {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 44px;
  text-align: center;
  z-index: 4;
}
.wrap-ft .btn-wrap {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 6px 0;
}
.wrap-ft .c-btn {
  display: block;
  position: relative;
  height: 40px;
  line-height: 40px;
  margin: 0 10px;
  color: #ffffff;
  font-size: 14px;
  border-radius: 100px;
  padding: 0 24px;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  letter-spacing: 0.28px;
  transition: all 0.5s ease;
  z-index: 5;
  max-width: 300px;
  text-align: left;
}
.wrap-ft .c-btn:hover {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.14);
}
.wrap-ft .c-btn:active {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
}
[class*=" icon-"],
[class^="icon-"] {
  position: relative;
  min-width: 100px;
}
[class*=" icon-"]:before,
[class^="icon-"]:before {
  position: relative;
  top: -2px;
  display: inline-block;
  vertical-align: middle;
  content: "";
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
.icon-tool:before {
  background: url(../imgs/icon-tool.png) no-repeat;
  background-size: cover;
}
.icon-app:before {
  background: url(../imgs/icon-app.png) no-repeat;
  background-size: cover;
}
.icon-manual:before {
  background: url(../imgs/icon-manual.png) no-repeat;
  background-size: cover;
}
.icon-ios:before {
  background: url(../imgs/icon-ios.png) no-repeat;
  background-size: cover;
}
.icon-android:before {
  background: url(../imgs/icon-android.png) no-repeat;
  background-size: cover;
}
.icon-ccep:before {
  background: url(../imgs/icon-app.png) no-repeat;
  background-size: cover;
}
.icon-close:before {
  background: url(../imgs/icon-close.png) no-repeat;
  background-size: cover;
}
.icon-download:before {
  background: url(../imgs/icon-download.png) no-repeat;
  background-size: cover;
}

.wrap-ft .btn-wrap .btn-more {
  position: absolute;
  width: 624px;
  bottom: 5px;
  left: calc(((624px - 100%) / 2) * -1);
  font-size: 0;
  padding-bottom: 40px;
  cursor: initial;
  transform: translateY(440px);
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 4;
}
.wrap-ft .btn-wrap .c-btn {
  box-sizing: border-box;
}
.wrap-ft .btn-wrap:hover .btn-more {
  transform: translateY(0);
  pointer-events: initial;
}
.wrap-ft .btn-wrap .btn-more > div {
  display: inline-block;
  vertical-align: top;
  padding: 30px 24px;
  height: 224px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0px 8px 24px rgba(255, 255, 255, 0.04) inset;
  background: rgba(34, 34, 40, 0.36);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-sizing: border-box;
}
.wrap-ft .btn-wrap .btn-more > div:nth-child(1) {
  /* width: 414px; */
  border-radius: 4px 0 0 4px;
}
.wrap-ft .btn-wrap .btn-more > div:nth-child(2) {
  width: 160px;
  border-radius: 0 4px 4px 0;
  margin-left: 6px;
}
.wrap-ft .btn-wrap .btn-more .pop-item p:before {
  width: 18px;
  height: 18px;
  margin-right: 4px;
}
.wrap-ft .btn-wrap .btn-more .pop-item p {
  font-size: 13px;
}
.wrap-ft .btn-wrap .btn-more .pop-item img {
  display: block;
  width: 120px;
  height: 120px;
  border: 4px solid #fff;
  margin-top: 18px;
  cursor: pointer;
}
.wrap-ft .btn-wrap .btn-more .pop-right {
  display: inline-flex !important;
  flex-direction: column;
  justify-content: center;
}
.wrap-ft .btn-wrap .btn-more .pop-left .pop-item {
  display: inline-block;
  vertical-align: top;
}
.wrap-ft .btn-wrap .btn-more .pop-left .pop-item:nth-child(2) {
  margin-left: 40px;
}
.wrap-ft .btn-wrap .btn-more .pop-right .pop-item {
  text-align: left;
}
.wrap-ft .btn-wrap .btn-more .pop-right .pop-item p {
  width: 100%;
  text-align: left;
}
.wrap-ft .btn-wrap .btn-more .pop-right .pop-item:nth-child(2) {
  margin-top: 30px;
}
.wrap-ft .btn-wrap .btn-more .pop-right .icon-ccep {
  justify-content: left;
  text-align: left;
}
.wrap-ft .btn-wrap .btn-more .pop-right .c-button {
  min-width: 100px;
}
.c-button {
  padding: 0 16px;
  box-sizing: border-box;
  width: 100%;
  height: 32px;
  line-height: 32px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  margin-top: 14px;
  background: #1f929c;
  color: rgba(255, 255, 255, 0.84);
  transition: all 0.3s;
  text-align: center;
}
.c-button:hover {
  background: #57adb5;
  color: rgba(255, 255, 255, 0.84);
}
.c-button:active {
  background: #176e75;
  color: rgba(255, 255, 255, 0.84);
}
.page-popup {
  position: fixed;
  z-index: 9;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.64);
}
.page-popup-wrap {
  position: relative;
  z-index: 9;
  display: inline-block;
  top: 50%;
  transform: translateY(-50%);
  padding: 86px 86px 68px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0px 8px 24px rgba(255, 255, 255, 0.04) inset;
  background: rgba(34, 34, 40, 0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 4px;
  overflow: hidden;
}
.page-popup .icon-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  min-width: 32px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.page-popup .icon-close:before {
  opacity: 0.84;
  margin-right: 0;
  top: 6px;
}
.page-popup .icon-close:hover {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.page-popup .icon-close:active {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.page-popup img {
  display: block;
  width: 220px;
  height: 220px;
  border: 6px solid #fff;
  margin: 0 auto 24px;
}
.page-popup .icon-download {
  font-size: 15px;
  color: #20818b;
  font-weight: 700;
  cursor: pointer;
  opacity: 0.84;
  transition: all 0.3s ease;
  max-width: 300px;
}
.page-popup .icon-download:hover {
  opacity: 1;
}

.preload {
  position: fixed;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: 60px;
  height: 60px;
  z-index: 99;
}
