page.css 4.08 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: 1700px;
    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 + .result-page span {
    padding: 0 5px;
}

/* .result-progress-wrapper {
  margin: 20px 0 10px;
} */

.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;
}

.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;
}

/* login */
#loginApp {
    width: 100%;
    height: 100%;
}

.login-container {
    width: 100%;
    height: 100%;
    background: url(../image/login_bg.png) no-repeat;
    background-size: 100% 100%;
    text-align: right;
}

.login-form {
    display: inline-block;
    width: 20%;
    padding-top: 30vh;
    margin-right: 10%;
    color: #fff;
    box-sizing: border-box;
}

.login-title {
    text-align: left;
}

input::-webkit-autofill {
    background-color: transparent;
    box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0) inset !important;
    -webkit-box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0) inset !important;
    -webkit-text-fill-color: #fff !important;
    transition: background-clor 5000s ease-in-out 0s;
}

@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%;
}