.page-wrapper {
    width: 100vw;
    min-height: 100vh;
    overflow: hidden;
    background-image: url('../image/head_bg.png');
    background-position: top center;
    background-size: contain;
    background-repeat: no-repeat;
}
.tabs-box {
    display: flex;
    align-items: center;
    justify-content: center;
}
.tabs-box .tabs-item {
    flex: 1;
    text-align: center;
    line-height: 0.5rem;
    position: relative;
    color: #000;
}
.tabs-box .tabs-item .tabs-item-name {
    position: relative;
    z-index: 5;
}
.tabs-box .tabs-item.active {
    color: #000;
    font-size: 0.16rem;
}
.tabs-box .tabs-item.active::after {
    content: '';
    display: inline-block;
    width: 0.4rem;
    height: 0.08rem;
    border-radius: 1rem;
    background-image: linear-gradient(to right, rgba(252, 198, 86, 1), rgba(252, 198, 86, 0.2));
    position: absolute;
    left: 50%;
    bottom: 0.13rem;
    transform: translateX(-50%);
    z-index: 3;
}
.scroll-view {
    width: 100%;
    height: calc(100vh - 0.5rem);
    overflow-y: auto;
}
.scroll-view .scroll-body {
    padding: 0.1rem;
}
.user-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.15rem;
}
.user-item .user-info {
    flex: 1;
    padding-right: 0.1rem;
    display: flex;
    align-items: center;
}
.user-item .user-info .user-avatar-wrapper {
    position: relative;
}
.user-item .user-info .headimg {
    width: 0.54rem;
    height: 0.54rem;
    object-fit: cover;
    border-radius: 1rem;
}
.user-item .user-info .tag {
    color: #fff;
    width: 0.2rem;
    height: 0.2rem;
    font-size: 0.12rem;
    border-radius: 1rem;
    background: #fd3014;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 0;
}
.user-item .user-info .userinfo-box {
    flex: 1;
    padding-left: 0.1rem;
    height: 0.45rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.user-item .user-info .username {
    font-size: 0.15rem;
}
.user-item .user-info .chatmsg,
.user-item .times {
    font-size: 0.13rem;
}

/* 加载更多样式 */
.load-more {
    text-align: center;
    color: #999;
    font-size: 0.12rem;
}