body {
  width: 960px;
  width: 80vw;
}

#logo {
  position: absolute;
  top: 100px;
}

.chara-icon {
  width: 100px;
  height: 100px;
  border-radius: 8px;
}

#star-panel {
  display: flex;
  margin: 2rem auto;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

#star-panel button {
  margin: 10px;
  padding: 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  background: grey;
  font-size: 1.5rem;
  box-shadow: 1px 1px 1px green;
}

#star-panel button:hover {
  background: lightpink;
  box-shadow: none;
}

#star-panel button.activated {
  background: lightyellow;
}
body {
  background-color: rgba(56, 67, 78, 1)
}
#hs-container {
  width: 960px;
  height: 640px;
  position: relative;
  margin: auto;
  z-index: 1;
  display: flex;
  justify-content: center;
  font-family: monospace;
  opacity: 0.7;
}

#hs-container>div {
  position: absolute;
  transition: all 0.5s ease-out;
}

#hs-frame {
  width: 960px;
  height: 640px;
  position: absolute;
  z-index: 3;
  background-image: url(https://misuzu.moe/wcp/border.png);
  background-size: contain;
}

#hs-scene, #hs-spine {
  width: 960px;
  height: 640px;
  top: 0;
  right: 0;
  border-radius: 10px;   /* 向 div 元素添加圆角边框 */
  background: linear-gradient(rgba(163, 123, 178, 0.6), rgba(113, 113, 08, 0.6));
  z-index: 2;
  transition: all 0.4s ease-in;
}

#hs-label {
  width: 283px;
  height: 37px;
  top: 420px;
  left: 120px;
  display: none;
  background-image: url(https://misuzu.moe/wcp/name.png);
  z-index: 5;
  text-align: center;
}

#hs-dialog {
  top: 445px;
  width: 800px;
  height: 154px;
  margin: auto;
  border-radius: 15px;
  display: none;
  background-image: linear-gradient(rgba(143, 103, 120, 0.83), rgba(32, 102, 129, 0.7));
  z-index: 4;
}

span {
  font-size: 21px;
  color: #eee;
  line-height: 32px;
}

#hs-dialog>span {
  width: 96%;
  margin-top: 12px;
  margin-left: 24px;
}

#hs-loading {
  top: 40%;
  font-size: 30px;
  color: #233;
}

#charas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#charas > div {
  max-width: 100px;
  margin: 0 16px;
}

#charas p {
  margin: 2px 0 6px 0;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

#hs-spine canvas {
  width: 100%;
}


@media screen and (max-width: 1000px) and (orientation: portrait){
  body {
    width: auto;
    margin: 2vw;
  }

  #logo {
    top: 6vw;
  }

  #logo img {
    max-width: 90vw;
    max-height: 60vw;
  }

  #hs-container, #hs-frame, #hs-scene, #hs-spine{
    width: 96vw;
    height: 64vw;
  }

  #hs-dialog {
    width: 90vw;
  }

  #star-panel {
    margin: 1rem auto;
  }

  #star-panel button {
    font-size: 1.2rem;
  }

  #charas > div {
    max-width: 22vw;
    margin: 12px auto;
    overflow: hidden;
  }

  .chara-icon {
    width: 20vw;
    height: 20vw;
  }

  #hs-label {
    width: 42vw;
    height: 5vw;
    background-size: cover;
    top: 32vw;
    left: 3vw;
  }

  #hs-label span {
    font-size: 3vw;
    line-height: 4vw;
  }

  #hs-dialog {
    top: 36vw;
    height: 25vw;
  }
  
  #hs-dialog > span{
    margin: 3vw;
    font-size: 3vw;
    line-height: 4vw;
  }
}

@media screen and (max-width: 1000px) and (orientation: landscape){
  body {
    width: auto;
    margin: 2vw;
  }

  #logo {
    top: 6vw;
  }

  #logo img {
    max-width: 60vw;
    max-height: 40vw;
  }

  #hs-container, #hs-frame, #hs-scene, #hs-spine{
    width: 60vw;
    height: 40vw;
  }

  #hs-dialog {
    top: 22vw;
    height: 16vw;
    width: 56vw;
  }

  #star-panel {
    margin: 1rem auto;
  }

  #star-panel button {
    font-size: 1.2rem;
  }

  #charas > div {
    max-width: 15vw;
    margin: 12px auto;
    overflow: hidden;
  }

  .chara-icon {
    width: 15vw;
    height: 15vw;
  }

  #hs-label {
    width: 27vw;
    height: 3.2vw;
    background-size: cover;
    top: 20vw;
    left: 2vw;
  }

  #hs-label span {
    font-size: 2vw;
    line-height: 2.7vw;
  }

  #hs-dialog > span{
    margin: 2vw;
    font-size: 2vw;
    line-height: 2.7vw;
  }
}

/*# sourceMappingURL=./style.e308ff8e.css.map */