@font-face {
  font-family: "NotoSerifCJKsc";
  src: url("../fonts/NotoSerifCJKsc-Bold.otf") format("opentype");
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  user-select: none;
}

img {
  pointer-events: none;
  cursor: default;
}

html {
  --primary-text-color: #fffaef;
  --primary-text-spacing: 6px;
  --primary-text-family: "NotoSerifCJKsc", sans-serif;
}

body {
  color: var(--primary-text-color);
  font-family: var(--primary-text-family);
  letter-spacing: var(--primary-text-spacing);
}

#app {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.lanrui-home {
  height: 100vh;
  width: 100vw;
  background-image: url(../images/home/home-bg.png);
  background-size: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.lanrui-home__start {
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #312d26;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lanrui-loading {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.lanrui-loading__icon {
  background-image: url(../images/home/start-icon.png);
  background-size: 100%;
  width: 142px;
  height: 140px;
}

.lanrui-loading__text {
  font-size: 28px;
  line-height: 40px;
  margin-top: 29px;
  display: flex;
  justify-content: center;
}

.lanrui-loading__progress {
  width: 500px;
  height: 4px;
  background: #524841;
  border-radius: 4px;
  margin-top: 30px;
}

.lanrui-loading__progress--active {
  background: #ffd04c;
  border-radius: 4px;
  height: 100%;
  width: 0;
  /* animation: progress 5s linear 2s forwards; */
  transition: width 0.3s linear;
}

@keyframes progress {
  0% {
    width: 0;
  }

  30% {
    width: 50%;
  }

  70% {
    width: 60%;
  }

  100% {
    width: 100%;
  }
}

.lanrui-logo {
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.lanrui-logo .label_1 {
  width: 37px;
  height: 37px;
  margin-right: 10px;
}

.lanrui-logo .text-group_1 {
  overflow-wrap: break-word;
  font-size: 20px;
  font-weight: 400;
  text-align: left;
  white-space: nowrap;
  line-height: 29px;
}
