page.css 3.15 KB
[v-cloak] {
  display: none;
}

html, body, #app {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

.container {
  width: 100%;
  height: 100%;
  padding-top: 10px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.query-box {
  width: 100%;
  display: table;
}

.query-box + .query-box {
  padding-top: 10px;
}

.query-item {
  display: table-cell;
  text-align: right;
  width: 50%;
}

.query-item+.query-item {
  padding-left: 20px;
  text-align: left;
}

.query-select {
  font-size: 13px;
}

.query-item__title {
  font-size: 14px;
}

.query-button {
  margin-left: 20px;
}

.showData{
  width: 50%;
  height: 460px;
  min-width: 600px;
  box-shadow: 0 1px 4px 0 rgba(0,0,0,0.37);
  border-radius: 4px;
  margin: 0 auto;
  position: relative;
  overflow: auto;
}

.result-wrapper {
  /* padding: 0 20px; */
  width: 50%;
  min-width: 600px;
  box-shadow: 0 1px 4px 0 rgba(0,0,0,0.37);
  border-radius: 4px;
  margin: 20px auto 0;
  position: relative;
  overflow: auto;
}

.result-header {
  text-align: center;
  font-size: 16px;
  padding: 10px 0;
  box-shadow: 0px 0px 3px 0 rgba(0,0,0,.2);
  /* margin: 10px 0 0; */
}

.result-content {
  font-size: 14px;
  padding: 0 20px 20px;
}

.result-item {
  padding-right: 8px;
  box-sizing: border-box;
}

.result-item + .result-item {
  margin-top: 10px;
}

.empty-data {
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
}

.result-page {
  margin: 8px 0;
}

.result-page span:last-of-type {
  padding: 0 5px;
}

.result-progress-wrapper::after,
.result-progress-wrapper::before {
  content: '';
  display: table;
}

.result-progress-wrapper::after {
  clear: both;
}

.result-progress-left {
  float: left;
}

.result-progress-right {
  width: 100%;
  padding-left: 88px;
  box-sizing: border-box;
}

.result-progress {
  height: 26px;
  margin-bottom: 4px;
  position: relative;
  border-radius: 100px;
  /* box-shadow: 0px 0px 2px 0 rgba(0,0,0,1); */
  background-color: #ebeef5;
  overflow: hidden;
}

.result-progress__inner {
  width: 0;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  color: #fff;
  background: #409EFF;
  /* background-image: linear-gradient(#86bef7, #409eff); */
  border-radius: inherit;
  text-align: right;
  transition: width 0.1s linear;
}

.move-animate {
  /* animation: move 2s ease-in-out infinite; */
}

.result-progress__text {
  display: inline-block;
  margin: 0 5px;
  vertical-align: middle;
}

.result-progress-right span {
  padding-left: 10px;
}

.pagination-page {
  float: right;
  padding-right: 10px;
}

.result-footer {
  padding: 12px 20px;
  font-size: 16px;
  box-shadow: 0px 0px 3px 0 rgba(0,0,0,.2);
}

.result-footer::after,
.result-footer::before {
  content: '';
  display: table;
}

.result-footer::after {
  clear: both;
}

.result-intro {
  float: left;
}

.result-clear-btn {
  float: right;
  border-radius: 20px;
}

@keyframes move {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 30px 30px;
  }
}

/* cover elementui stylesheet*/
.scrollbar-wrapper {
  height: 100%;
  height: 376px;
  max-height: 376px;
  overflow-x: hidden !important;
}

.el-scrollbar__bar.is-vertical {
  right: 0px;
}

.el-scrollbar {
  height: 100%;
}