@font-face {
  font-family: MyCustomFont;  /* 设置字体名称 */
  src: url('./DIN-BLA.TTF');  /* 引入字体文件的路径 */
}

* {
  padding: 0;
  margin: 0;
  font-family: MyCustomFont, sans-serif;  /* 使用自定义字体 */
}
.flex {
  display: flex;
}
.flex-y {
  display: flex;
  flex-direction: column;
}
.flex-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.flex-center-y {
  display: flex;
  align-items: center;
}
.flex-1 {
  flex: 1;
}
.fixed-flex-1 {
  flex: 1;
  overflow: hidden;
}
.auto-flex-1 {
  flex: 1;
  overflow: auto;
}
body {
  background-color: #956eef;
}
.content {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}
.page-header {
  background-color: #191702;
  padding: 8px 12px;
}
.header-text {
  margin-left: 8px;
  color: #fff;
}
.header-text-title {
  line-height: 24px;
  font-size: 20px;
}
.header-text-ratings {
  line-height: 18px;
  height: 18px;
  font-size: 14px;
}
.header-text-ratings > span {
  margin-right: 4px;
}
.page-header .header-text + button {
  height: 30px;
  border-radius: 15px;
  background-color: #8850f0;
  color: #fff;
  text-align: center;
  padding: 8px 12px;
  font-size: 12px;
  line-height: 14px;
  outline: none;
  border: none;
}
.page-container-item-box {
  width: calc(100vw - 32px);
  margin-left: 16px;
}
.container-register {
  position: relative;
}
.container-register-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 21px;
  box-sizing: border-box;
}
img.register-change-pic {
  width: 32px;
  position: absolute;
  bottom: 45%;
  z-index: 4;
}
img.register-change-pic:not(.right) {
  left: 19px;
}
img.register-change-pic.right {
  right: 19px;
}
.container-register-phone-box {
  width: 100%;
  margin-top: 18px;
  padding: 10px;
  box-sizing: border-box;
  position: relative;
}
.register-phone-img {
  height: 274px;
  position: absolute;
  top: 10px;
  z-index: 3;
}
.register-imgs-box {
  height: 266px;
  width: 123px;
  position: absolute;
  top: 10px;
  z-index: 1;
}
.register-imgs-box > img {
  border-radius: 8px;
  position: absolute;
  transition: 1s;
}

.register-imgs-box > img.register-img-1 {
  left: 0;
  transform: scale3d(1, 1, 1);
  z-index: 0;
}
.register-imgs-box > img.register-img-2 {
  left: 50%;
  transform: scale3d(0.82, 0.82, 0.82);
  z-index: -1;
}
.register-imgs-box > img.register-img-3 {
  left: 100%;
  transform: scale3d(0.64, 0.64, 0.64);
  z-index: -2;
}
.register-imgs-box > img.register-img-4 {
  left: 50%;
  transform: scale3d(0.46, 0.46, 0.46);
  z-index: -3;
}
.register-imgs-box > img.register-img-5 {
  left: -100%;
  transform: scale3d(0.64, 0.64, 0.64);
  z-index: -2;
}
.register-imgs-box > img.register-img-6 {
  left: -50%;
  transform: scale3d(0.82, 0.82, 0.82);
  z-index: -1;
}

.banner-text-box {
  font-size: 20px;
  line-height: 24px;
  color: #f1e7ff;
  text-shadow: -2px -2px 0 #7a29c8, 2px -2px 0 #7a29c8, -2px 2px 0 #7a29c8,
    2px 2px 0 #7a29c8;
  margin: 14px auto 16px;
}
.footer-banner-text {
  font-size: 14px;
  line-height: 18px;
  color: #000;
  margin: 16px auto;
}
.page-footer {
  position: fixed;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  padding: 16px 10px 24px;
  width: 100%;
  bottom: 0;
  z-index: 10;
}
