@media (min-width: 1024px) {
  #app .tabList .col-lg-3,
  #app .myScene .col-lg-3 {
    margin-bottom: 35px;
  }
  #app .tabList .col-lg-3 .col-height,
  #app .myScene .col-lg-3 .col-height {
    height: 175px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  #app .tabList .col-lg-3,
  #app .myScene .col-lg-3 {
    margin-bottom: 20px;
  }
  #app .tabList .col-lg-3 .col-height,
  #app .myScene .col-lg-3 .col-height {
    height: 130px;
  }
}
@media (min-width: 576px) and (max-width: 768px) {
  #app .tabList .col-sm-6,
  #app .myScene .col-sm-6 {
    margin-bottom: 20px;
  }
  #app .tabList .col-sm-6 .col-height,
  #app .myScene .col-sm-6 .col-height {
    height: 130px;
  }
}
@media (max-width: 576px) {
  #app .tabList .col-xs-12,
  #app .myScene .col-xs-12 {
    margin-bottom: 25px;
  }
  #app .tabList .col-xs-12 .col-height,
  #app .myScene .col-xs-12 .col-height {
    height: 155px;
  }
}
#content #app .moveTips {
  margin: 0 auto 15px;
  padding: 5px 10px;
  position: relative;
  line-height: 30px;
  font-size: 25px;
  text-align: center;
  position: absolute;
  top: calc(50% - 70px);
  width: calc(100% - 20px);
}
#content #app .moveTips::before {
  content: '';
  background: url(../image/icons/warning.png) 0 no-repeat;
  transform: rotate(180deg);
  width: 36px;
  height: 35px;
  background-size: 35px;
  display: inline-block;
  position: relative;
  top: 8px;
}
#app .sysMsg .clearDiv table {
  max-width: initial;
  margin: initial;
  border-radius: none;
  border: initial;
  border-right: none;
  border-collapse: initial;
  font-size: initial;
  border-spacing: initial;
}
#app .sysMsg .clearDiv table td,
#app .sysMsg .clearDiv table th {
  padding: initial;
  line-height: initial;
  text-align: initial;
  vertical-align: initial;
  border-right: none;
  border-bottom: none;
  white-space: normal;
  word-wrap: initial;
  word-break: initial;
}
#app .sysMsg .clearDiv table th {
  background-color: none;
  max-width: initial;
}
#app .sysMsg .clearDiv table tr {
  max-width: initial;
}
#app .sysMsg .clearDiv table tr:last-child th,
#app .sysMsg .clearDiv table tr:last-child td {
  border-bottom: none;
}
#app .CodeMirror-scrollbar-filler {
  height: 8px !important;
  width: 8px !important;
}
#app .CodeMirror-vscrollbar {
  margin-bottom: -8px;
}
#app .CodeMirror-vscrollbar::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background: rgba(250, 249, 249, 0.4);
  z-index: 999;
}
#app .CodeMirror-vscrollbar::-webkit-scrollbar-thumb {
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
  background: #6d6f73;
  border-radius: 8px;
}
#app .CodeMirror-hscrollbar {
  margin-right: -8px;
}
#app .CodeMirror-hscrollbar::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background: rgba(250, 249, 249, 0.4);
  z-index: 999;
}
#app .CodeMirror-hscrollbar::-webkit-scrollbar-thumb {
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
  background: #6d6f73;
  border-radius: 8px;
}
.removeDir_bg,
.cloneDir_bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
  display: none;
}
.removeDir_bg .removeDir,
.cloneDir_bg .cloneDir {
  width: 465px;
  height: 292px;
  position: absolute;
  top: calc(50% - 146px);
  left: calc(50% - 232.5px);
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 0 30px 6px rgba(31, 51, 73, 0.1);
  border: 1px solid #fff;
}
.removeDir_bg .removeDir .title,
.cloneDir_bg .cloneDir .title {
  position: absolute;
  padding: 0 15px;
  height: 50px;
  width: 100%;
  border-bottom: 1px solid rgba(181, 176, 176, 0.1);
  line-height: 50px;
  font-size: 15px;
}
.removeDir_bg .removeDir .title .close,
.cloneDir_bg .cloneDir .title .close {
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 8px;
  color: #979797;
  text-shadow: none !important;
  font-weight: 100;
  font-size: 26px;
  opacity: 1;
}
.removeDir_bg .removeDir .btn,
.cloneDir_bg .cloneDir .btn {
  width: 100%;
  height: 62px;
  position: absolute;
  bottom: 0;
  padding: 0 10px;
  border-top: 1px solid rgba(181, 176, 176, 0.1);
  line-height: 61px;
  font-size: 14px;
}
.removeDir_bg .removeDir .btn span,
.cloneDir_bg .cloneDir .btn span {
  padding: 3px 20px;
  border-radius: 3px;
  cursor: pointer;
}
.removeDir_bg .removeDir .btn .confirm,
.cloneDir_bg .cloneDir .btn .confirm {
  margin-right: 5px;
  background: #ff6110;
  border: 1px solid #ff6110;
  color: #fff;
}
.removeDir_bg .removeDir .btn .confirm:hover,
.cloneDir_bg .cloneDir .btn .confirm:hover {
  background: #ff8140;
  border: 1px solid #ff8140;
}
.removeDir_bg .removeDir .btn .cancel,
.cloneDir_bg .cloneDir .btn .cancel {
  border: 1px solid #81858c;
  color: #81858c;
  margin-left: 5px;
}
.removeDir_bg .removeDir .btn .cancel:hover,
.cloneDir_bg .cloneDir .btn .cancel:hover {
  border-color: #ff954b;
  color: #ff954b;
}
.removeDir_bg .removeDir .removeDirList,
.cloneDir_bg .cloneDir .cloneDirList {
  padding: 10px;
  position: absolute;
  top: 50px;
  width: 100%;
  height: calc(100% - 112px);
  overflow: auto;
}
.removeDir_bg .removeDir .removeDirList ul li,
.cloneDir_bg .cloneDir .cloneDirList ul li {
  line-height: 25px;
  font-size: 14px;
  cursor: pointer;
}
.removeDir_bg .removeDir .removeDirList ul li ul,
.cloneDir_bg .cloneDir .cloneDirList ul li ul {
  padding: 0 10px;
}
.removeDir_bg .removeDir .removeDirList ul li div,
.cloneDir_bg .cloneDir .cloneDirList ul li div {
  padding: 0 10px;
}
.removeDir_bg .removeDir .removeDirList ul li div i,
.cloneDir_bg .cloneDir .cloneDirList ul li div i {
  padding-right: 5px;
  color: #ff7000;
}
.removeDir_bg .removeDir .removeDirList ul li div i.icon-wenjianjia,
.cloneDir_bg .cloneDir .cloneDirList ul li div i.icon-wenjianjia {
  color: #ffce64;
}
.removeDir_bg .removeDir .removeDirList ul li div.selected,
.cloneDir_bg .cloneDir .cloneDirList ul li div.selected {
  border-top: 1px solid #868e96;
  border-bottom: 1px solid #868e96;
  background: #253b7f33;
}
.demos.myproduct.listStyle .add {
  position: absolute;
  top: 20px;
  right: 50px;
}
.demos.myproduct.listStyle .add i {
  width: 20px;
  height: 20px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
}
.demos.myproduct.listStyle .text-center.text-center-list {
  width: 100%;
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 0;
}
.demos.myproduct.listStyle .text-center.text-center-list .card {
  border-radius: 0;
  border-bottom: 1px solid #ecebf5;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 0 !important;
}
.demos.myproduct.listStyle .text-center.text-center-list .card:hover {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  box-shadow: 0 12px 24px rgba(84, 48, 132, 0.06);
}
.demos.myproduct.listStyle .text-center.text-center-list .card .card-body {
  flex: 0 0 calc(100% - 150px);
  width: calc(100% - 150px);
  line-height: 50px;
  display: flex;
}
.demos.myproduct.listStyle .text-center.text-center-list .card .card-body .data-codeline,
.demos.myproduct.listStyle .text-center.text-center-list .card .card-body .data-prev {
  width: calc((100%/5));
  flex: 0 0 calc((100%/5));
  text-align: center;
  display: inline-block;
}
.demos.myproduct.listStyle .text-center.text-center-list .card .card-body .data-codeline {
  text-align: left;
  max-width: calc((100%/5)) !important;
}
.demos.myproduct.listStyle .text-center.text-center-list .card .screenshot-container {
  width: 150px;
  padding: 0px 0.75rem;
  height: 50px;
  border-bottom: none;
  line-height: 50px;
}
.demos.myproduct.listStyle .text-center.text-center-list .card .screenshot-container .card-img-top {
  width: 100%;
  height: 100%;
  display: flex;
}
.demos.myproduct.listStyle .text-center.text-center-list .card .screenshot-container .card-img-top div {
  position: static;
  display: inline-block !important;
  box-shadow: none;
  background: none;
  height: 50px;
  width: calc(100%/3);
  flex: 0 0 calc(100%/3);
  text-align: center;
  color: rgba(0, 0, 0, 0.75);
}
.demos.myproduct.listStyle .text-center.text-center-list .card .screenshot-container .card-img-top div img {
  height: 25px;
  width: auto;
}
.demos.myproduct.listStyle .text-center.text-center-list .card .card_option .arrow {
  top: 50px;
}
.demos.myproduct.listStyle .text-center.text-center-list:nth-child(1) .card .card-body .data-codeline,
.demos.myproduct.listStyle .text-center.text-center-list:nth-child(1) .card .card-body .data-prev {
  cursor: default;
}
.demos.myproduct.listStyle .text-center.text-center-list:nth-child(1) .card .card-body .data-codeline:hover,
.demos.myproduct.listStyle .text-center.text-center-list:nth-child(1) .card .card-body .data-prev:hover {
  color: rgba(0, 0, 0, 0.65);
}
.demos.myproduct.listStyle .text-center.text-center-list:nth-child(1) .card .screenshot-container .card-img-top div {
  cursor: default;
  width: 100%;
  flex: 0 0 100%;
}
