* {
  padding: 0;
  margin: 0;
}

html,
body {
  width: 100%;
  height: 100%;
  color: #fff;
  background-image: linear-gradient(to top, #174747 0%, #115c5c 100%);
}

.wrapper {
  display: flex;
  justify-content: space-around;
}

.left {
  min-height: 100vh;
  max-height: 100vh;
  overflow-y: scroll;
  display: flex;
  flex: 0.33;
  flex-wrap: wrap;
  align-items: center;
  border-right: 1px solid #c88792;
}

.left > div {
  width: 23.6%;
  padding: 10px 5px;
  text-align: center;
  border: 1px solid #dd4f42;
}

.active {
  background: #24a2ff;
}

.passive {
  background: #79726c;
}

.center {
  flex: 0.33;
  border-right: 1px solid #c88792;
  padding: 10px;
}

.center button {
  padding: 5px 10px;
}

.right {
  flex: 0.33;
  max-height: 100vh;
  overflow-y: scroll;
}

.group {
  border-bottom: 1px solid #dd4f42;
  margin-bottom: 10px;
}

.group .label {
  color: #ffce45;
}

input[type="text"],
button {
  box-sizing: border-box;
  text-align: center;
  height: 2.7em;
  border-radius: 4px;
  -web-kit-appearance: none;
  -moz-appearance: none;
  display: block;
  outline: 0;
  border: none;
  text-decoration: none;
  width: 100%;
}
input[type="text"]:focus {
  border: 1px solid #ff7496;
}

.btn__run,
.btn__reset {
  color: #fff;
  cursor: pointer;
  margin-top: 10px;
}

.btn__run {
  background: #1ba160;
}

.btn__run:hover {
  background: #52ab80;
}

.btn__reset {
  background: #dd5347;
}

.btn__reset:hover {
  background: #e6766c;
}

/* 设置滚动条的样式 */
::-webkit-scrollbar {
  width: 12px;
}
/* 滚动槽 */
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset006pxrgba(0, 0, 0, 0.3);
  border-radius: 10px;
}
/* 滚动条滑块 */
::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: inset006pxrgba(0, 0, 0, 0.5);
}
::-webkit-scrollbar-thumb:window-inactive {
  background: rgba(255, 0, 0, 0.4);
}

#live2dcanvas {
  left: 40% !important;
}
