[v-cloak] {
  display: none !important;
}

body {
  margin: 0;
  padding: 0;
  font-family: "微软雅黑", Consolas, serif;
  color: #333;
  user-select: none;
}

.ts_tools_outer {
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  overflow: hidden;
}


.json_outer {
  height: 100%;
  width: 100%;
  display: flex;
}

.left_div {
  width: 180px;
  flex: none;
  height: 100%;
  background-color: #fafafa;
  border-right: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header {
  display: flex;
  align-items: center;
  height: 60px;
  width: 100%;
  justify-content: center;
  font-size: 26px;
  font-weight: bold;
  font-family: '微软雅黑', serif;
  border-bottom: 1px solid deepskyblue;
}

.left_div .item {
  width: 80%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  margin-top: 10px;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid #ddd;
}


.left_div .item.selected {
  border: 1px solid deepskyblue;
  color: white;
  background: linear-gradient(#4496FC, #52AFFD, #58BAFD);
}

.left_div .item:hover {
  opacity: 0.8;
  border: 1px solid deepskyblue;
  box-shadow: 0 0 10px 2px #ccc;
}

.right_div {
  flex: 1;
  width: 0;
  height: 100%;


}

.right_div iframe {
  width: 100%;
  height: 100%;
  border: none;
  box-sizing: border-box;
}

::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 8px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 10px;
}

::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius: 2px;
  background: #999;
}

::-webkit-scrollbar-track {
  /*滚动条里面轨道*/
  background: #ddd;
}