common.scss 1.26 KB
html,
body,
#app {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

::-webkit-scrollbar-track-piece {
  -webkit-border-radius: 0
}
::-webkit-scrollbar {
  width: 5px;
  height: 10px
}
::-webkit-scrollbar-thumb {
  height: 50px;
  background-color: #b8b8b8;
  -webkit-border-radius: 6px;
  outline-offset: -2px;
  filter: alpha(opacity = 50);
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  opacity: 0.5
}
::-webkit-scrollbar-thumb:hover {
  height: 50px;
  background-color: #878987;
  -webkit-border-radius: 6px
}

.common-info-box {
  height: calc(100vh - 200px);
}
.item-box {
  width: 100%;
  border-radius: 10px;
  background-color: rgba(244, 244, 245, 0.38);
  margin-bottom: 15px;
  .item-title {
    color: rgba(255, 255, 255, 1);
    font-size: 16px;
    line-height: 23px;
    padding: 10px;
  }
  .item-body {
    height: calc(100% - 68px);
    margin: 0 13px;
    // padding-bottom: 28px;
    .el-table {
      border-radius: 10px;
      height: 100%;
    }
  }
}

.router-link-active {
  text-decoration: none
}

a {
 text-decoration: none

} 

.form-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  color: #C0C4CC;
  line-height: 30px;
  .label {
    color: #000;
    &.w-100 {
      width: 100px;
    }
  }
}