/*textarea 滚动条样式*/
textarea::-webkit-scrollbar {
  /*滚动条整体样式*/
  width : 10px;  /*高宽分别对应横竖滚动条的尺寸*/
  height: 1px;
}
textarea::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius: 10px;
  box-shadow   : inset 0 0 5px rgb(248, 245, 245);
  background   : rgba(15, 168, 230, 1);
}
textarea::-webkit-scrollbar-track {
  /*滚动条里面轨道*/
  box-shadow   : inset 0 0 5px rgba(15, 168, 230, 0.6);
  border-radius: 10px;
  background   : rgb(255, 255, 255);
}

#loadingDialog {
  z-index: 10000;
  position: absolute;
  /* display: none; */
  display: block;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background-color:#000;
  opacity:0.7;
  /*兼容IE8及以下版本浏览器*/
  filter: alpha(opacity=30);
  display: none;
  align-items: center;
  justify-content: center;
}

#connectDialog {
  z-index: 10000;
  position: absolute;
  /* display: none; */
  /* display: block; */
  top:0;
  left:0;
  width:100%;
  height:100%;
  background-color:#000;
  opacity:0.7;
  /*兼容IE8及以下版本浏览器*/
  filter: alpha(opacity=30);
  display: none;
  align-items: center;
  justify-content: center;
}

.pos-abs {
  position: relative;
  color: #3398ff;
  top: 60px;
  left: -120px;
}


#connectDialog2 {
  background: url(../assets/loading2.gif) no-repeat 10px 10px;
  background-color: #fff;
  margin: -22px -22px;
  top: 50%;
  left: 50%;
  z-index: 10000;
  position: absolute;
  width: 170px;
  height: 92px;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  }