@charset "UTF-8";
body {
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: linear-gradient(to top, #2c3e50, #2f4255);
}

.row {
  height: 35px;
  display: flex;
  align-items: center;
}
.row .n {
  width: 80px;
  text-align: right;
  margin-right: 15px;
}
.row .inf input {
  height: 25px;
  border-radius: 5px;
  border: 1px solid #ccc;
  padding-left: 5px;
  width: 350px;
}

.kong {
  width: 100%;
  display: flex;
  height: 100vh;
  overflow: hidden;
}
.kong .kong-left {
  width: calc(100vw - 280mm - 160px);
}
.kong .kong-left .header {
  width: 100%;
  height: 40px;
  background-color: #1a2530;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 200;
  font-size: 120%;
}
.kong .kong-left .foot {
  padding-left: 5px;
  height: 25px;
  overflow: hidden;
  background-color: #1a2530;
  color: #fff;
  font-weight: 200;
  font-size: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #34495e;
}
.kong .kong-left .foot a {
  margin-left: 5px;
  color: #ff5e5e;
  text-decoration: none;
}
.kong .kong-left .tab {
  height: 50px;
  background-color: #1a2530;
  display: flex;
}
.kong .kong-left .tab .tabItem {
  height: 30px;
  margin-left: 12px;
  background: linear-gradient(to top, #1c3e50, #1a2530);
  color: #fff;
  border-radius: 0 0 5px 5px;
  padding: 0 12px;
  display: flex;
  font-size: 100%;
  font-weight: 200;
  align-items: center;
  cursor: pointer;
}
.kong .kong-left .tab .tabItem.cur {
  background: linear-gradient(to top, #3c3e50, #2c3e50);
  color: #ff5e5e;
  font-weight: 500;
}
.kong .kong-left .btns {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  flex-wrap: wrap;
}
.kong .kong-left .btns button {
  height: 30px;
  margin-left: 5px;
  margin-right: 5px;
  cursor: pointer;
  border-radius: 5px;
  border: 1px solid #ccc;
}
.kong .kong-left .handle {
  width: 100%;
  height: calc(100vh - 65px - 50px - 60px);
  overflow: hidden;
  overflow-y: scroll;
  background-color: #fff;
}
.kong .kong-left .handle::-webkit-scrollbar {
  width: 6px; /* 纵向条宽度 */
  height: 6px; /* 横向条高度 */
}
.kong .kong-left .handle::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}
.kong .kong-left .handle::-webkit-scrollbar-thumb {
  background: #ff5e5e;
  border-radius: 3px;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.kong .kong-left .handle::-webkit-scrollbar-thumb:hover {
  background: #ff8e8e;
}
.kong .kong-left .handle .h-item .h-title {
  height: 30px;
  padding-left: 10px;
  background-color: #2c3e50;
  display: flex;
  align-items: center;
  color: #ff8e8e;
}
.kong .kong-left .handle .h-item .h-box {
  margin: 10px 10px;
  padding: 10px;
  border: 1px solid #ccc;
  outline: none;
  border-radius: 5px;
  min-height: 20vh;
  max-height: 40vh;
  overflow: hidden;
  overflow-y: scroll;
  color: #333;
  font-size: 100%;
  font-weight: 400;
}
.kong .preview {
  width: auto;
  overflow: hidden;
  height: 100vh;
  overflow-y: scroll;
}
.kong .preview::-webkit-scrollbar {
  width: 6px; /* 纵向条宽度 */
  height: 6px; /* 横向条高度 */
}
.kong .preview::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}
.kong .preview::-webkit-scrollbar-thumb {
  background: #ff5e5e;
  border-radius: 3px;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.kong .preview::-webkit-scrollbar-thumb:hover {
  background: #ff8e8e;
}
.kong .preview #svgBox {
  margin-left: 0px;
  background-color: #fff;
  width: 280mm;
}/*# sourceMappingURL=kong.css.map */