* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.container {
  height: 100vh;
  /* border: 1px solid #000; */
  position: relative;
  overflow: hidden;
}
.container .skip {
  position: absolute;
  top: 0.2rem;
  right: 0.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1rem;
  font-size: 0.15rem;
  height: 0.3rem;
  border-radius: 0.3rem;
  background-color: #66666666;
  color: white;
  border: none;
}
.container .top {
  width: 150%;
  position: fixed;
  top: -3rem;
  left: -0.5rem;
}
.container .logoBox {
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  display: flex;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  justify-content: center;
  align-items: center;
  z-index: 999;
  background: linear-gradient(180deg, #fff0f0 0%, rgba(255, 250, 250, 0) 100%);
}
.container .logoBox .imgBox {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, #ffebeb 0%, rgba(255, 242, 243, 0) 100%);
}
.container .logoBox .imgBox .logo {
  width: 1.2rem;
  border-radius: 50%;
}
.container .name {
  font-size: 0.32rem;
  font-weight: 600;
  color: #292929;
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%);
}
.container .bot {
  width: 150%;
  position: fixed;
  bottom: -2.1rem;
  left: -0.5rem;
}
.container .information {
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 0.3rem;
  left: 50%;
  transform: translate(-50%);
  font-size: 0.15rem;
  color: #666;
}