body {
    position: relative;
    width: 100vw;
    height: 100vh;
    background: #4B79A1;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, rgba(39, 43, 54, 0.8), rgba(72, 78, 90, 0.8));  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right,rgba(39, 43, 54, 0.8), rgba(72, 78, 90, 0.8)); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

#app {
    padding: 10px;
}
@media (max-width: 100px) {
    #app{
        padding: 0 !important;
    }
}

.nav {
    display: flex;
    justify-items: center;
    gap: 10px;
    list-style: none;
    font-size: 13px;
}

.nav > span {
    cursor: pointer;
    padding: 2px 5px;
    border-radius: 5px;
    color: #FFFFFF;
    flex-shrink: 0;
}

:root {
    --selBg: #52555E;
}

.nav > li:hover {
    background: var(--selBg);
}

.sel {
    background: var(--selBg);
}


.topList {
    margin-top: 10px;
    position: relative;
    overflow: scroll;
    font-size: 13px;
    height: calc(100vh - 52px);
    color: #e5e5e5;
}

.topList > li {
    padding: 0 5px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.topList > li:last-child {
    margin-bottom: 0;
}

.topList > li > a:nth-child(2) {
    margin-left: 10px;
}

.topList > li > span:nth-child(3) {
    margin-left: auto;
    flex-shrink: 0;
    padding-left: 10px;
}

.topList > li > span:nth-child(1) {
    color: #9b9b9b;
}

.topList > li:nth-child(1) > span:nth-child(1) {
    color: #FFFFFF;
}

.topList > li:nth-child(2) > span:nth-child(1) {
    color: #cccccc;
}

.aTag {
    text-decoration: none;
    color: inherit;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media screen and(max-width: 200px) {
    .aTag {
        width: calc(100% - 40px);
    }
}


.loading {
    position: absolute;
    z-index: 10;
    height: 100vh;
    background: rgba(19, 19, 19, 0.56);
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading-ico {
    width: 30px;
    height: 30px;
    animation: rotates 1s linear infinite;
}

.loading-ico > svg {
    width: 100%;
    height: 100%;
}

@keyframes rotates {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

[v-cloak]{
    opacity: 0;
}