@keyframes scroll {
  0% {
    margin-left: 0;
  }
  10% {
    margin-left: 0;
  }
  90% {
    margin-left: var(--hideWidth);
  }
  100% {
    margin-left: var(--hideWidth);
  }
}
#btp-header {
  background-color: #09122B;
}
#superContainer .layout-header {
  position: absolute;
  top: 75px;
}
#reason-full-page {
  text-align: center;
  color: #333;
}
#reason-full-page > div:first-child .tableCell {
  vertical-align: bottom;
}
#reason-full-page h1 {
  font-weight: 650;
  font-size: 70px;
}
#reason-full-page h3 {
  font-weight: 650;
  font-size: 28px;
}
#reason-full-page h5 {
  font-weight: 650;
  font-size: 20px;
}
.registered-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #797979;
  border-radius: 5px;
  width: 140px;
  height: 40px;
  margin-top: 65px;
  font-size: 13px;
  letter-spacing: normal;
  color: #333333;
}
.function-box {
  overflow: hidden;
  max-width: 100vw;
}
.function-box .function-list {
  box-sizing: border-box;
  display: flex;
  font-size: 0;
  padding: 0 10px;
  flex-wrap: nowrap;
}
.function-box .function-list:first-child {
  animation: scroll 5s infinite linear alternate;
}
.function-box .function-list:last-child {
  margin-left: var(--hideWidth);
  animation: scroll 5s infinite linear alternate-reverse;
}
.function-box .function-list:hover {
  animation-play-state: paused;
}
.function-box .function-list-item {
  flex-shrink: 0;
  display: inline-block;
  box-sizing: border-box;
  vertical-align: middle;
  background: #fff;
  width: 180px;
  height: 180px;
  margin-right: 32px;
  margin-bottom: 32px;
  overflow: hidden;
  position: relative;
  text-align: center;
  padding-top: 42px;
  font-size: 14px;
  border-radius: 3px;
  color: #474E56;
}
.function-box .function-list-item:last-child {
  margin-right: 0;
}
.function-box .function-list-item .img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}
.function-box .function-list-item .mask {
  position: absolute;
  left: 0;
  right: 0;
  top: 300px;
  bottom: 0;
  background: #2461ff;
  color: #fff;
  padding: 10px 20px;
  font-size: 14px;
  transition: all 0.3s ease;
}
.function-box .function-list-item .mask .link-btn {
  position: absolute;
  right: 15px;
  top: 13px;
}
.function-box .function-list-item .mask .link-btn img {
  width: 20px;
}
.function-box .function-list-item .mask .title {
  padding: 5px 0 15px;
  position: relative;
}
.function-box .function-list-item .mask .title:before {
  content: '';
  position: absolute;
  width: 30px;
  height: 2px;
  background: #fff;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
}
.function-box .function-list-item .mask .desc {
  text-align: left;
  word-break: break-all;
}
.function-box .function-list-item:hover .mask {
  top: 0;
}
