:root{
    --black: rgb(11, 14, 17);
    --green: rgb(112, 228, 80);
    --gray: rgb(55, 55, 55);
    --light: rgb(125, 125, 125);
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a{
    text-decoration: none;
    color: inherit;
}

body{
    width: 100%;
    height: 100%;
    background-color: var(--black);
    color: #eee;
    padding-bottom: 50px;
}

body::-webkit-scrollbar{
    display: none;
}

#top-bar{
    padding: 10px 30px;
    width: 100%;
    height: 65px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    /* border: 1px solid white; */
}

#top-bar #top-icon-area{
    display: flex;
    flex-direction: row;
    transform: translate(15px);
}

#top-bar #top-icon-area i,
#top-bar #top-icon-area a{
    padding: 8px;
    margin-left: 20px;
    /* border: 1px solid white; */
}

.user-frame{
    width: 120px;
    height: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    border: 1px solid #888;
    border-radius: 5px;
    padding: 2px;
}

.user-frame .user-avatar{
    width: 26px;
    height: 26px;
    border-radius: 3px;
    overflow: hidden;
}

.user-frame .user-avatar img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-frame .user-avatar i{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-frame .user-name{
    width: 75px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    /* border: 1px solid white; */
}

#bottom-bar{
    width: 100%;
    height: 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    /* border: 1px solid white; */
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 3000000;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
}

#bottom-bar a{
    opacity: 0.7;
    color: inherit;
    text-decoration: none;
}

.weixin-btn-bar{
    width: 100%;
    display: flex;
    height: 45px;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    /* border: 1px solid; */
}

.weixin-btn{
    text-decoration: none;
    color: var(--green);
    border: 2px solid;
    padding: 2px 8px;
    border-radius: 5px;
    font-family: Verdana;
}

.weixin-btn i{
    text-shadow: 0 0 2px var(--green);
    margin-right: 4px;
}

.weixin-btn.inactive{
    text-decoration: line-through;
    color: var(--light);
}

/* list bar */
.list-bar{
    width: 100%;
    height: 60px;
    display: flex;
    flex-direction: row;
    align-items: center;
    overflow-x: auto;
    /* border: 1px solid white; */
    padding-left: 30px;
}

.list-bar::-webkit-scrollbar{
    display: none;
}

.list-bar .list-item{
    display: block;
    width: 90px;
    min-width: 90px;
    height: 36px;
    border-radius: 15px;
    color: #ddd;
    background-color: var(--gray);
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    margin-right: 8px;
    user-select: none;
}

.list-bar.list-bar-sub .list-item{
    width: unset !important;
    min-width: unset !important;
    height: unset !important;
    padding: 6px 12px;
    border-radius: 20px;
    border: 2px solid;
    border-color: var(--green);
    background-color: transparent !important;   
}

.list-bar.list-bar-sub .list-item span{
    margin-left: 3px;
    font-size: 0.85em;
    font-family: Georgia;
}

.list-bar .list-item.active{
    box-shadow: 0 0 3px #fff;
    color: #fff;
}

#text-bar{
    padding: 5px 15px 15px 15px;
    text-indent: 1em;
}

#title-bar{
    margin-top: 5px;
    text-indent: 0.75em;
    font-family: Arial;
    text-align: center;
    /* white-space: nowrap; */
    text-overflow: ellipsis;
}

#no-stuff{
    display: none;
    letter-spacing: 1px;
    font-size: 1.5em;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    flex-direction: column;
    font-family: Arial;
    opacity: 0.8;
    /* border: 1px solid; */
}

#no-stuff span:nth-child(2){
    font-size: 0.5em;
}

/* search */
#search-bar{
    padding: 10px 30px;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
    /* border: 1px solid white; */
}

#search-bar input#target-input{
    width: 100%;
    height: 30px;
    font-size: 20px;
    border: 1px solid #fff;
    outline: none;
    padding: 0 3px;
    color: #fff;
    background-color: transparent;
    border-radius: 5px;
}

#search-bar input#target-input:focus{
    box-shadow: 0 0 5px #fff;
}

/* collect */
.row-center{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 5px 0;
    padding: 5px 0;
}