html {
  background-color: #F2F3F5;
  overflow: -moz-hidden-unscrollable;
}
body {
  padding: 0;
  margin: 0;
}
body::-webkit-scrollbar {
  display: none;
}
div {
  box-sizing: border-box;
  font-size: 12px;
}
.wrap {
  /* padding: 5px; */
  color: #333;
  margin-bottom: 50px;
}
.btn-box {
  position: fixed;
  height: 50px;
  bottom: 0;
  width: 100%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 20px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
}
.store-btn {
  background-color: #F2F3F5;
  height: 24px;
  width: 60px;
  margin-left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  font-size: 10px;
  cursor: pointer;
  /* font-weight: bold; */
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.menu {
  margin: 10px;
}
.menu .menu-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.menu-item .item-title {
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.item-title span {
  font-weight: normal;
  font-size: 12px;
  color: #555;
  margin-left: 10px;
}

.menu-item .item-content {
  margin: 10px 0;
  display: flex;
  align-items: center;
}
.opacity-input {
  height: 25px;
  width: 50px;
  text-align: center;
}
.color-input {
  flex: 1;
  margin-right: 10px;
  display: flex;
  align-items: center;
}
.color-input .color-warp {
  /* width: 50%; */
  flex: 1;
  box-sizing: border-box;
}
.color-warp input {
  width: 100%;
}
.color-input .color-preview {
  border: 1px solid #333;
  background-color: black;
  height: 15px;
  width: 15px;
  border-radius: 2px;
  margin-left: 5px;
}
input {
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  border-radius: 5px;
  padding: 5px;
  vertical-align:middle
}
input:focus {
	outline: none;
}
input::placeholder {
  font-size: 12px;
}