.action-sheet {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #fff;
  z-index: 1000;
  padding: 24px;
  padding-top: 42px;
  box-sizing: border-box;
  animation-duration: 0.3s;
  animation-name: slide-down-out;
  animation-fill-mode: forwards;
  overflow-y: auto;
}
.action-sheet.show {
  display: block;
  animation-duration: 0.3s;
  animation-name: slide-up-in;
}
.action-sheet-close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 22px;
  color: #CCC;
}
@keyframes slide-up-in {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes slide-down-out {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100%);
    display: none;
  }
}

.page-bottom-logo {
  padding-top: 40px;
  padding-bottom: 24px;
  text-align: center;
  font-size: 12px;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #cccccc;
  width: 100%;
}
.page-bottom-logo a {
  color: #cccccc;
}
.page-bottom-logo img {
  width: 220px;
  max-width: 100%;
}

.login-page {
  margin-top: 22px;
}
.login-page .cutdown-btn {
  width: 100%;
}
.login-page .ant-input {
  height: 40px;
  font-size: 14px;
}
.login-page .ant-btn {
  height: 40px;
  font-size: 14px;
}
.login-title {
  font-size: 24px;
  margin-bottom: 28px;
}
.login-field {
  margin-bottom: 16px;
}
.login-footer {
  margin-top: 64px;
  text-align: center;
}
.login-footer .submit-btn {
  width: 100%;
}
.login-footer .ant-btn {
  height: 40px;
  font-size: 14px;
}

.register-page {
  margin-top: 22px;
  min-height: 300px;
}
.register-title {
  font-size: 24px;
  margin-bottom: 28px;
  font-family: PingFangSC-Medium, PingFang SC;
}
.register-footer {
  margin-top: 64px;
  text-align: center;
}
.register-footer .submit-btn {
  width: 100%;
  height: 40px;
}
.register-page-m #clForm > div {
  padding: 10px !important;
}
.select .option-label {
  line-height: 1.2;
}

.img-container-logo {
  width: 100%;
  height: 100%;
}

.video-container {
  position: relative;
  max-width: 1200px;
  height: 675px;
}
@media (max-width: 1200px) {
  .video-container {
    height: calc(56.25vw - 15px);
  }
}
.video-container .play-btn-cover {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  cursor: pointer;
}
.video-container .video-ele {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.video-container .video-ele .video-js {
  width: 100%;
  height: 100%;
}
.video-container .video-ele video {
  width: 100%;
  height: 100%;
}
.video-container .video-login {
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-container .video-login-content {
  text-align: center;
}
.video-container .video-login .login-tips {
  font-size: 16px;
  font-family: PingFangSC-Medium, PingFang SC;
  font-weight: 500;
  color: #ffffff;
  line-height: 22px;
  text-align: center;
}
.video-container .video-login .ant-btn {
  margin-top: 24px;
  width: 160px;
  height: 40px;
  line-height: 30px;
  border-radius: 20px;
  font-size: 16px;
  font-family: PingFangSC-Medium, PingFang SC;
  font-weight: 500;
  color: #262626;
  border-color: #ffe05e;
  background-color: #ffe05e;
}
.video-container .video-login .ant-btn:hover {
  opacity: 0.8;
}
.video-container .trail-tips {
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  width: 100%;
  left: 0;
  top: -43px;
  padding-left: 16px;
  box-sizing: border-box;
}
.video-container .hide {
  display: none;
}
.video-container .close-circle {
  position: relative;
  cursor: pointer;
  width: 15px;
  height: 15px;
  border: 1px solid #fff;
  border-radius: 7.5px;
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
  margin-top: -1px;
}
.video-container .close-circle::before,
.video-container .close-circle::after {
  position: absolute;
  content: " ";
  background-color: #fff;
  left: 6px;
  width: 1px;
  top: 2px;
  height: 9px;
}
.video-container .close-circle::before {
  transform: rotate(45deg);
}
.video-container .close-circle::after {
  transform: rotate(-45deg);
}

.login-modal .ant-modal-header {
  padding: 20px 40px;
}
.login-modal .ant-modal-body {
  padding: 40px;
}
.login-modal .cutdown-btn {
  width: 100%;
}
.login-modal .submit-btn {
  width: 100%;
}
.login-modal .ant-input {
  height: 40px;
  font-size: 14px;
}
.login-modal .ant-btn {
  height: 40px;
  font-size: 14px;
}

.register-modal .ant-modal-header {
  padding: 20px 40px;
}
.register-modal .ant-modal-body {
  padding: 20px 40px 40px;
}
.register-modal .submit-btn {
  height: 40px;
  width: 100%;
}
.register-modal .select .option-label {
  line-height: 1.2;
}

