body {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 50px 0;
    font-family: Consolas, "Microsoft YaHei";
}

body::before {
    content: '';
    position: fixed;
    z-index: -1000;
    font: 25px sans-serif;
    letter-spacing: -16px;
    line-height: 0.88;
    opacity: .02;
}

body::after {
    content: '';
    position: fixed;
    z-index: 1000;
    top: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
}

#backToTop {
    position: fixed;
    bottom: 65px;
    right: 15px;
}

#backToTop .btn {
    width: 36px;
    padding: 6px 0;
    text-align: center;
}

#main {
    position: relative;
    height: 100%;
    padding: 15px;
}

#main > [ng-view] {
    margin: 0 -15px;
    padding: 15px;
    /*width: 100%;*/
    height: 100%;
    overflow: auto;
}

.navbar {
    background: lightsteelblue;
    border-color: lightsteelblue;
}

.navbar > * {
    mix-blend-mode: multiply;
}

.navbar-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
}

::-webkit-scrollbar,
::-webkit-scrollbar-button {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-button,
::-webkit-scrollbar-thumb {
    border-radius: 1000px;
    background: rgba(176, 196, 222, .5);

}

::-webkit-scrollbar-corner,
::-webkit-scrollbar-track,
::-webkit-scrollbar-track-piece {
    display: none;
}

::-webkit-scrollbar-resizer {

}

::selection {
    background: steelblue;
    color: snow;
}

.rel {
    position: relative;
}

.abs {
    position: absolute;
}

.fixed {
    position: fixed;
}

.flex-nowrap {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.clear {
    clear: both;
}

.silent {
    pointer-events: none;
}

.sound {
    pointer-events: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
}

.text-bold {
    font-weight: bold;
}

.text-normal {
    font-weight: normal;
}

.pill {
    border-radius: 1000px;
}

.rounded {
    border-radius: 4px;
}

.label,
.badge {
    display: inline-block;
}

.label-inline,
.badge-inline {
    margin: 5px 2px;
}

.badge-default {
    background-color: #777;
}

.badge-default[href]:hover,
.badge-default[href]:focus {
    background-color: #5e5e5e;
}

.badge-primary {
    background-color: #337ab7;
}

.badge-primary[href]:hover,
.badge-primary[href]:focus {
    background-color: #286090;
}

.badge-success {
    background-color: #5cb85c;
}

.badge-success[href]:hover,
.badge-success[href]:focus {
    background-color: #449d44;
}

.badge-info {
    background-color: #5bc0de;
}

.badge-info[href]:hover,
.badge-info[href]:focus {
    background-color: #31b0d5;
}

.badge-warning {
    background-color: #f0ad4e;
}

.badge-warning[href]:hover,
.badge-warning[href]:focus {
    background-color: #ec971f;
}

.badge-danger {
    background-color: #d9534f;
}

.badge-danger[href]:hover,
.badge-danger[href]:focus {
    background-color: #c9302c;
}

[ng-view] input, [ng-view] select {
    width: 40px;
    border: 0;
    outline: 0;
    background: transparent;
    border-bottom: 1px solid;
    text-align: right;
    color: coral;
}

[ng-view] input[type=text] {
    width: auto;
    text-align: left;
}

[ng-view] select {
    color: steelblue;
}