/* Move down content because we have a fixed navbar that is 3.5rem tall */
body {
    height: 100%;
    background-color: #fafafa;
    margin: auto;
    padding: 0;
    border: 0;
    text-decoration: none;
    vertical-align: baseline;
    box-sizing: border-box;
    font-size: 14px;
}

.navbar-brand img {
    max-width: 168px;
    max-height: 24px;
}

.navbar-brand .logo {
    position: relative;
}

.navbar-brand .title {
    margin-left: 20px;
}

.navbar-brand .title:before {
    content: "";
    position: absolute;
    width: 1px;
    height: 24px;
    background: #999;
    margin-left: -10px;
}

.sidebar-container {
    display: flex;
    justify-content: center;
    transition: width .28s;
    background-color: #fff;
    position: relative;
}

.br-20 {
    border-radius: 20px;
}

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

.br-10 {
    border-radius: 10px;
}

footer {
    height: 32px !important;
    font-size: 12px !important;
}

.inner-close-btn {
    background: none;
    border: none;
    position: absolute;
    right: 48px;
    z-index: 99;
    line-height: calc(1.5em + .75rem + 2px);
    color: gray;
    display: none;
}

.icon-btn {
    font-size: 22px;
    color: #e6a23c;
    cursor: pointer;
}

.cursor {
    cursor: pointer;
}

.circle-badge {
    position: absolute;
    right: 5px;
    background-color: #ffcb0f;
    height: 8px;
    width: 8px;
    padding: 0;
    border-radius: 50%;
    transform: translateY(-50%) translateX(100%);
}

.icon-dollar {
    color: #ff510d;
    font-size: 34px;
    width: 62px;
    height: 62px;
    font-weight: bolder;
    text-align: center;
    box-sizing: border-box;
    border: 5px solid #ff510d;
    border-radius: 50%;
}

.min-vh-50 {
    min-height: 50vh !important
}

.min-vh-60 {
    min-height: 60vh !important
}

.min-vh-70 {
    min-height: 70vh !important
}

.min-vh-80 {
    min-height: 80vh !important
}

.min-vh-90 {
    min-height: 90vh !important
}

.btn-loading {
    position: relative;
    pointer-events: none;
    /* 禁用点击事件 */
}

.btn-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1rem;
    height: 1rem;
    border: 2px solid transparent;
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.list-group-item.active {
    color: #0634d1;
}

.list-group-item:hover {
    text-decoration: none !important;
}
