.author-avatar{
  height: 58px;
  width:  58px;
  margin: 5px 10px;
  border-radius:50%;
}

.project-title{
  color: #333;
  line-height: 28px;
  height: 28px;
  margin-top: 16px;
  font-size:large;
}
.author-name{
  color: #666;
  font-size: smaller;
}

.scratch-flag{
  height: 24px;
  width: 24px;
  margin: 5px;
  padding: 8px;
}
.scratch-flag:hover{
background-color: #FFF;
border-radius:5px;
cursor: pointer;
opacity: 0.8;
}

#project_slt{
    background-repeat:no-repeat;
    background-position-x: center;
    background-position-y: center;
    background-size: 100%;
    height: 360px;
    border-radius: 10px;

    display:flex;
    align-items: center;
    justify-content: center;
}
  

.scratch-player-bottom{
margin: 10px 0;
display: flex;
justify-content: center;
}
.share-iconbox {
margin: 10px 5px;
}

#qrCodeDiv{
margin: 0 2px;
width: 80px;
height:80px;
}

.go-center{
  display: flex;
  justify-content: center;
}
/*虚拟键盘------------------------------*/
.key {
width: 3.5rem;
height: 3.5rem;
position:absolute;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.up {
  left: 4rem;
  top: 0rem;
  background: url(/img/icon/up.png) no-repeat center/contain;
}
.down {
  left: 4rem;
  bottom: 0rem;
  background: url(/img/icon/down.png) no-repeat center/contain;
}
.left {
left: 1rem;
bottom: 3rem;
background: url(/img/icon/left.png) no-repeat center/contain;
}
.right {
left: 7rem;
bottom: 3rem;
background: url(/img/icon/right.png) no-repeat center/contain;
}
.up .active{
background: url(/img/icon/upactive.png) no-repeat center/contain;
}
.down .active{
background: url(/img/icon/downactive.png) no-repeat center/contain;
}
.left .active{
background: url(/img/icon/leftactive.png) no-repeat center/contain;
}
.right .active{
background: url(/img/icon/rightactive.png) no-repeat center/contain;
}

.space {
width: 5rem;
height: 5rem;
position: absolute;
right: 1rem;
top: 2.5rem;
background: url(/img/icon/space.png) no-repeat center/contain;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.space .active{
  background: url(/img/icon/spaceactive.png) no-repeat center/contain;
}

/*播放部分------------------------------*/
#container_play{
  height: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: black;
  font-size: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  overflow: hidden;
}
  #wrapper {
    display: block;
    width: 100vw;
    height: 75vw;
    position: relative;
  }
  #monitors {
    position: absolute;
    top: 0;
    left: 0;
  }
  @media (min-aspect-ratio: 480/360) {
    #wrapper.bak {
      height: 100vh;
      width: 133.33333333333334vh;
    }
    #wrapper {
      height: 100%;
      width: 133.33333333333334vh;

      display:flex;
      align-items: center;
      justify-content: center;
    }
  }
  #stage {
    width: 100%;
    height: 100%;
  }
  

  #loading-progress {
  position: absolute;
  left: 0;
  right: 0;
  top:200px;
  background-color: rgba(33, 33, 33, 0.7);
  text-align: center;
  line-height: 58px;
}
  .monitor {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.25rem;
    font-size: 0.75rem;
    overflow: hidden;
    padding: 3px;
    color: white;
    white-space: pre;
  }
  .monitor-label {
    margin: 0 5px;
    font-weight: bold;
  }
  .monitor-value {
    display: inline-block;
    vertical-align: top;
    min-width: 34px;
    text-align: center;
    border-radius: 0.25rem;
    overflow: hidden;
    text-overflow: ellipsis;
    user-select: text;
    transform: translateZ(0);
  }
  .default .monitor-value, .slider .monitor-value {
    background-color: rgba(0, 0, 0, 0.5);
    margin: 0 5px;
    padding: 1px 3px;
  }
  .large {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 0.1rem 0.25rem;
    min-width: 3rem;
  }
  .large .monitor-label {
    display: none;
  }
  .large .monitor-value {
    font-size: 1rem;
    width: 100%;
  }
  .list {
    padding: 0;
    overflow: auto;
    overflow-x: hidden;
  }
  .list .monitor-label {
    text-align: center;
    padding: 3px;
    width: 100%;
    display: block;
    margin: 0;
    box-sizing: border-box;
    white-space: pre-wrap;
  }
  .list .monitor-value {
    display: block;
  }
  .slider input {
    display: block;
    width: 100%;
    transform: translateZ(0);
  }
  #asking-box {
    display: none;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(33, 33, 33, 0.7);
  }
  .asking #asking-box {
    display: block;
  }
  #question {
    display: block;
    margin: 0 10px;
    margin-top: 10px;
    font-size: 12px;
    color: white;
  }
  #answer {
    border: none;
    background: none;
    width: 100%;
    font: inherit;
    font-size: 16px;
    color: white;
    padding: 10px;
    box-sizing: border-box;
  }
  #answer:focus {
    outline: none;
  }
