body {
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    --primary-color: #005eeb;
    --primary-hover-color: #005eebcc;
    --padding-max-width: 0;
    height: 100%;
    padding: 0 !important;
}

* {
    box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 6px;
    /* 纵向滚动条宽度   */
    height: 6px;
    /* 横向滚动条高度 */
}

::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: #88898a;
}

::-webkit-scrollbar-track {
    border-radius: 5px;
    background-color: transparent;
}

.ripple {
    overflow: hidden;
    position: relative;
    transition: background-color 0.3s linear, border 0.3s linear;
}

.ripple:after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, #005eeb 10%, rgba(0, 0, 0, 0) 10.01%);
    background-repeat: no-repeat;
    background-position: 50%;
    transform: scale(10);
    opacity: 0;
    transition: transform 0.5s, opacity 1s;
}

.ripple:active:after {
    transform: scale(0);
    opacity: 0.2;
    transition: 0s;
}

.text-center {
    text-align: center !important;
}

.alert {
    position: relative;
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 14px;
}

.alert.alert-dismissible .close {
    font-size: 16px !important;
    color: inherit;
}

button:not(:disabled) {
    outline: none;
}

.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: 0.5;
}

button.close {
    padding: 0;
    background-color: transparent;
    border: 0;
}

.mr-2 {
    margin-right: 0.5rem !important;
}

.pr-4 {
    padding-right: 1.5rem !important;
}

#notice-bar {
    display: block;
}

@media (max-width: 768px) {
    #notice-bar {
        display: none;
    }
}
