body,
ul {
    margin: 0;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

ul li {
    list-style: none;
}

.img-responsive {
    display: inline-block;
    height: auto;
    max-width: 100%;
}

.theme-black {
    background: #f7f8fa;
}

.theme-black a {
    color: #fff;
}

.theme-black .ed-header-switch-button {
    background: #fff;
    border-right: 1px solid #fff;
    float: right;
    margin-top: 10px;
}

.theme-black .ed-header-fluid {
    background: #fff;
}

.theme-black .ed-sidebar-user-panel {
    background: #45525b;
    border-bottom: 1px solid #1f2224;
}

.theme-black .container-fluid {
    background: #424b4f;
}

.theme-black .widget {
    border: 1px solid #f5ede0;
    border-top: 2px solid #f5ede0;
    background: #f5ede0;
    color: #ffffff;
}

.theme-black .widget-head {
    border-bottom: 1px solid #3f4649;
}

.theme-black form label,
.theme-black form input {
    color: #838FA1 !important;
    background-color: none !important;
}

.default a {
    color: #838FA1!important;
}

.widget {
    width: 100%;
    min-height: 148px;
    margin-bottom: 20px;
    border-radius: 0;
    position: relative;
}

.widget-head {
    padding: 15px;
}

.widget-title {
    font-size: 18px;
}

.widget-body {
    padding: 13px 15px;
    overflow: hidden;
    line-height: 30px;
}

.mg-t-10 {
    margin-top: 10px;
}

.mg-l-10 {
    margin-left: 10px;
}

.bg-aqua {
    background-color: #00c0ef !important
}

.bg-green {
    background-color: #00a65a !important;
}

.bg-red {
    background-color: #dd4b39 !important;
}

.bg-yellow {
    background-color: #f39c12 !important;
}

.danger {
    color: #CC0000;
}

.el-pagination ul li {
    color: #000;
}

.editPage {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    z-index: 9999;
}

.editPage form {
    width: 600px;
    margin: 30px auto;
}

.el-select-dropdown {
    z-index: 9999 !important;
}


/*分割线*/

.ed-line {
    width: 100%;
    color: #99A9BF;
    background: #99A9BF;
    border-color: #99A9BF;
}


/*圆角*/

.border-radius-5 {
    border-radius: 5px;
}


/*loading*/

#loadingMask {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff;
    z-index: 9999;
    position: fixed;
}

#loadingMask .loading {
    width: 80px;
    height: 40px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
}

#loadingMask .loading span {
    display: inline-block;
    width: 8px;
    height: 100%;
    border-radius: 4px;
    background: lightgreen;
    -webkit-animation: load 1s ease infinite;
}

@-webkit-keyframes load {
    0%,
    100% {
        height: 40px;
        background: lightgreen;
    }
    50% {
        height: 70px;
        margin: -15px 0;
        background: lightblue;
    }
}

#loadingMask .loading span:nth-child(2) {
    -webkit-animation-delay: 0.2s;
}

#loadingMask .loading span:nth-child(3) {
    -webkit-animation-delay: 0.4s;
}

#loadingMask .loading span:nth-child(4) {
    -webkit-animation-delay: 0.6s;
}

#loadingMask .loading span:nth-child(5) {
    -webkit-animation-delay: 0.8s;
}