body{
  font-family:'微软雅黑';
}
.el-header{
  text-align: center;
}
.sprite-tool {
  text-align: center;
  padding-bottom: 20px;
}

.sprite-content {
  display: flex;
}

.upload-icons {
  /* margin-top: 200px; */
  width: 400px;
  height: 600px;
  /* margin: auto; */
  border: 2px dashed #d5d5d5;
  /* left: 100px; */
  /* margin-left: -300px; */
  /* position: absolute; */
  font-size: 40px;
  text-align: center;
  padding: 20px;
  color: gray;
}

.CodeMirror {
  height: 100%;
}

.sprite-image {
  border: 1px solid #e1e1e1;
}

.center {
  text-align: center;
}


/*滚动条的宽度*/

::-webkit-scrollbar {
  width: 4px;
  height: 9px;
}

/*外层轨道。可以用display:none让其不显示，也可以添加背景图片，颜色改变显示效果*/

::-webkit-scrollbar-track {
  width: 6px;
  background-color: #fff;
  -webkit-border-radius: 2em;
  -moz-border-radius: 2em;
  border-radius: 2em;
}

/*滚动条的设置*/

::-webkit-scrollbar-thumb {
  background-color: gray;
  background-clip: padding-box;
  min-height: 28px;
  -webkit-border-radius: 2em;
  -moz-border-radius: 2em;
  border-radius: 2em;
}

/*滚动条移上去的背景*/

::-webkit-scrollbar-thumb:hover {
  background-color: #fff;
}