* {
  box-sizing: border-box;
  user-select:none;
}
html,
body {
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: relative;
  margin: 0;
  padding: 0;
  background-color: #fafafa;
  font-family: "微软雅黑";
}

.titlehead {
  color: coral;
}

#renderCanvas {
  position: absolute;
  width: 100%;
  height: 100%;
  outline: none;
  align-items: center;
  touch-action: none;
}

#loadingScreen {
  position: fixed;
  width: 100%;
  z-index: 1000;
  height: 100%;
  background-image: url("https://zh-jh.oss-cn-shanghai.aliyuncs.com/wechat/blur_bg.jpg");
  background-size: 100% auto;
  background-position: left top;
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.loading-title {
  color: rgba(25, 169, 122, 1);
  font-size: 20px;
  font-weight: bold;
}
.loading-desc {
  font-size: 12px;
  font-weight: bold;
  color: #ffffff;
  line-height: 24px;
  text-align: center;
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.28);
}
.starts {
  width: 50%;
  margin-top: 2vh;
  max-width: 300px;
}
.copyRight {
  display: block;
  width: 70%;
  position: absolute;
  max-width: 200px;
  bottom: 20px;
}
.loading-bar {
  width: 80vw;
  height: 18px;
  margin: 2vh 0;
  background: white;
  border-radius: 5px;
  position: relative;
  box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.1);
}
.loading-progress {
  background: rgba(247, 219, 180, 1);
  border-radius: 5px;
  width: 0%;
  height: 100%;
}
.loading-text {
  position: absolute;
  right: 10px;
  top: 0;
  z-index: 1000;
  color: rgba(25, 169, 122, 1);
  font-weight: 400;
  font-size: 12px;
}
.init-screen {
  position: fixed;
  width: 100%;
  z-index: 10001;
  height: 100%;
  background-image: url("https://zh-jh.oss-cn-shanghai.aliyuncs.com/wechat/blur_bg.jpg");
  background-size: 100% auto;
  background-position: left top;
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.init-screen .btn {
  background: rgba(25, 169, 122, 1);
  color: white;
  padding: 6px 30px;
  border-radius: 20px;
  font-size: 16px;
  margin: 3vh 0;
  font-weight: bold;
  cursor: pointer;
}
.runData {
  background: url("https://zh-jh.oss-cn-shanghai.aliyuncs.com/static/basic.webp");
  width: 200px;
  height: 100px;
  position: absolute;
  right: 10px;
  bottom: 10px;
  background-size: 100% auto;
  background-repeat: no-repeat;
  color: white;
  padding:5px 0 0 70px;
  font-size: 12px;
}
.username {
  color: white;
  font-size: 12px;
}
.points {
  margin-bottom: 3px;
  font-size: 13px;
}
.user-task-progress {
    display: flex;
    align-items: center;
}
.user-task-progress > div{  
    width: 5px;
    height: 10px;
    margin: 0 3px;
    transform: skew(-40deg);
    background: rgba(255,255,255,.1);
    
}
.point-progress{
    position: absolute;
    right: 10px;
    color:rgba(255,255,255,.5);
    font-size: 12px;
    display: flex;
    text-align: right;
    top: 21px;
}

.modal{
  background-color:rgba(255,255,255,.2);
  backdrop-filter: blur(3px);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 100000;
  display: none;
  align-items: center;
  justify-content: center;
}
.modal-content{
   display: flex;
   align-items: center;
   justify-content: center;
   position: relative;
   animation: a 1s linear;
}
.modal-content img{
  width: 90%;
}
.modal-desc{
  width: 64%;
  top: 33vw;
  letter-spacing: 1px;
  text-align: justify;
  position: absolute;
  color: rgba(242, 216, 141, 1);
  font-size: 12px;
  line-height: 21px;
}
.right-desc{
  position: absolute;
  line-height: 21px;
  right: 21vw;
  top: 69vw;
  color: rgba(242, 216, 141, 1);
  font-size: 12px;
  text-align: right;
}
@keyframes a {
  0%{
    transform: scale(0.1);
  }

  100%{
    transform: scale(1);
  }
}
