@charset "UTF-8";
#jpEditor .e-input {
  outline: none;
  border: 1px solid #eee;
  overflow: hidden;
  overflow-y: scroll;
  border-radius: 0px;
  padding: 10px;
  height: 320px;
  display: none;
  line-height: 1.5em;
  border-radius: 5px;
  /* 只想美化某一个容器，比如 class="box" */
}
#jpEditor .e-input.cur {
  display: block;
}
#jpEditor .e-input::-webkit-scrollbar {
  width: 6px;
}
#jpEditor .e-input::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #42b983, #3399ff);
}
#jpEditor .ctrl {
  position: fixed;
  width: 10%;
  top: calc(50% - 225px);
  left: 1%;
}
#jpEditor .ctrl button {
  width: 80%;
  height: 40px;
  background-color: rgb(85, 170, 127);
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  margin-bottom: 20px;
}
#jpEditor .editor {
  right: 12%;
  position: fixed;
  width: 76%;
  height: 450px;
  top: calc(50% - 225px);
  overflow: hidden;
  padding: 1%;
  border: 1px solid #ccc;
  background-color: #fff;
  border-radius: 10px;
  opacity: 1;
  display: flex;
  justify-content: space-between;
}
#jpEditor .editor button {
  margin-top: 10px;
  height: 30px;
  background-color: rgb(85, 170, 127);
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  margin-bottom: 20px;
  padding: 0px 5px;
}
#jpEditor .editor .mainTab {
  width: 10%;
  border-right: 1px solid rgb(85, 170, 127);
  margin-right: 0px;
}
#jpEditor .editor .mainTab .tabItem {
  background-color: #ccc;
  color: #333;
  margin-bottom: 15px;
  text-align: center;
  padding: 5px 0px;
  cursor: pointer;
  border-radius: 0px 0 0 10px;
  font-size: 70%;
}
#jpEditor .editor .mainTab .tabItem.cur {
  background-color: rgb(85, 170, 127);
  color: #fff;
}
#jpEditor .editor .infoTab {
  width: 89%;
  flex-direction: column;
}
#jpEditor .editor .infoTab .jpTab {
  display: flex;
  margin-bottom: 10px;
  border-bottom: 1px solid rgb(0, 0, 0);
}
#jpEditor .editor .infoTab .jpTab .jpTab-item {
  background-color: rgba(85, 170, 127, 0.2);
  color: rgb(26, 26, 26);
  padding: 4px 4px;
  margin-right: 10px;
  border-radius: 5px 5px 0 0;
  cursor: pointer;
  font-size: 70%;
}
#jpEditor .editor .infoTab .jpTab .jpTab-item.cur {
  background-color: rgb(0, 0, 0);
  color: #fff;
}
#jpEditor .editor .infoTab .jpContent {
  width: 100%;
}
#jpEditor .editor .infoTab .jpContent textarea {
  flex: 1;
  width: 98.5%;
  height: 0px;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 5px;
  font-size: 14px;
  color: #00a65a;
  overflow: scroll;
}
#jpEditor .editor .infoTab .jpContent .jp {
  display: none;
}
#jpEditor .editor .infoTab .jpContent .jp.cur {
  display: block;
}/*# sourceMappingURL=jpEditor.css.map */