html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    background-color: #FFFFFF;
}

::-webkit-scrollbar {
    width: 8px;
    height: 5px;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 5px rgba(9, 9, 9, .2);
    background: #BBBBBB;
}

::-webkit-scrollbar-track {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 5px rgba(255, 255, 255, .2);
    background: none;
}

@font-face {
    font-family: 'iconfont';  /* Project id 4937207 */
    src: url('//at.alicdn.com/t/c/font_4937207_v6xxh5zb4mn.woff2?t=1751372822215') format('woff2'),
    url('//at.alicdn.com/t/c/font_4937207_v6xxh5zb4mn.woff?t=1751372822215') format('woff'),
    url('//at.alicdn.com/t/c/font_4937207_v6xxh5zb4mn.ttf?t=1751372822215') format('truetype');
}

i {
    font-family: "iconfont", serif !important;
    font-size: 16px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -webkit-text-stroke-width: 0.2px;
    -moz-osx-font-smoothing: grayscale;
}

.no-data {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999999;
    letter-spacing: 1px;
    margin-top: -10%;
}

.no-data img {
    width: 20%;
}

.header {
    width: 98%;
    height: 50px;
    overflow: hidden;
    padding: 0 1%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #FFFFFF;
}

.header .logo {
    height: 25px;
}

.header .operations {
    height: 100%;
    display: flex;
    align-items: center;
    line-height: 15px;
}

.header .operations .operation-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 90%;
    color: #666666;
    cursor: pointer;
    margin-bottom: -5px;
}

.header .operations .operation-item:hover {
    color: #000000;
    font-weight: 500;
}

.header .operations .operation-item img {
    height: 23px;
    margin-bottom: 5px;
}

.header .operations .avatar {
    width: 35px;
    height: 35px;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 15px;
    border: none;
}

.header .operations .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header .login-btn {
    height: 37px;
    padding: 0 15px;
    overflow: hidden;
    border-radius: 10px;
    background-color: #8D6DFC;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    margin: 0 15px;
    cursor: pointer;
}

.header .login-btn img {
    height: 20px;
    margin-right: 5px;
}

.header .login-btn:hover {
    background-color: #6c50bc;
}

.body {
    width: 100%;
    height: calc(100% - 70px);
    overflow: hidden;
    margin: 10px 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.body .navs {
    width: 8%;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.body .navs .nav-item {
    width: 80%;
    height: 40px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 20px;
    color: #999999;
    font-size: 16px;
    cursor: pointer;
}

.body .navs .nav-item:hover,
.body .navs .nav-item.active {
    color: #333333;
    background-color: #E8E8E8;
}

.body .navs .nav-item:hover span,
.body .navs .nav-item.active span {
    font-weight: bold;
}

.body .navs .nav-item i {
    font-size: 18px;
    margin-right: 10px;
}

.box {
    width: 91%;
    height: 400%;
    overflow: hidden;
    transition-duration: .3s;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    top: 0;
}

.box .main {
    width: 100%;
    height: 25%;
    overflow: hidden;
}

.list-dynamic {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

.list-dynamic .dynamic-item {
    width: calc((100% - 100px) / 5);
    overflow: hidden;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 0 20px 20px 0;
}

.list-dynamic .dynamic-item .thumb {
    width: 100%;
    height: 240px;
    overflow: hidden;
    border-radius: 13px;
    position: relative;
    cursor: pointer;
}

.list-dynamic .dynamic-item .thumb img.thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    outline: none;
    background-color: #F2F2F2;
    transition-duration: .3s;
}

.list-dynamic .dynamic-item .thumb:hover img.thumbnail {
    transform: scale(1.2);
}

.list-dynamic .dynamic-item .thumb .detail {
    position: absolute;
    width: 92%;
    min-height: 40px;
    overflow: hidden;
    padding: 10px 4% 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, .8), rgba(0, 0, 0, .5), rgba(9, 9, 9, 0));
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.list-dynamic .dynamic-item .info {
    width: 100%;
    padding: 10px 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 15px;
}

.list-dynamic .dynamic-item .info .title {
    width: 100%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    margin-bottom: 5px;
    cursor: pointer;
}

.list-dynamic .dynamic-item .info .group-name {
    width: 100%;
    height: 25px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: 5px;
    cursor: pointer;
}

.list-dynamic .dynamic-item .info .memo {
    width: 100%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    cursor: pointer;
    font-size: 90%;
    color: #999999;
}

.list-dynamic .dynamic-item .info .group-name:hover,
.list-dynamic .dynamic-item .info .title:hover,
.list-dynamic .dynamic-item .info .memo:hover {
    color: #8D6DFC;
}

.list-dynamic .dynamic-item .info .user {
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #999999;
    font-size: 90%;
}

.list-dynamic .dynamic-item .info .user:hover {
    color: #333333;
}

.list-dynamic .dynamic-item .info .user .avatar {
    width: 20px;
    height: 20px;
    overflow: hidden;
    border-radius: 50%;
    margin-right: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.list-dynamic .dynamic-item .info .user .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.list-dynamic .dynamic-item .info .user .time {
    margin-left: 5px;
}

.list-dynamic .dynamic-item .thumb .detail .type,
.list-dynamic .dynamic-item .thumb .detail .likes {
    display: flex;
    align-items: center;
}

.list-dynamic .dynamic-item .thumb .detail i {
    margin-right: 5px;
}

.list-dynamic .dynamic-item .thumb .detail .type .avatars {
    width: 100%;
    height: 25px;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-right: 5px;
}

.list-dynamic .dynamic-item .thumb .detail .type .avatars .avatar-item {
    width: 20px;
    height: 20px;
    overflow: hidden;
    border-radius: 50%;
    margin-left: -10px;
    border: rgba(141, 109, 252, .7) 2px solid;
    display: flex;
    align-items: center;
    justify-content: center;
}

.list-dynamic .dynamic-item .thumb .detail .type .avatars .avatar-item:first-child {
    margin-left: 0;
}

.list-dynamic .dynamic-item .thumb .detail .type .avatars .avatar-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.list-dynamic .dynamic-item .thumb .detail .west {
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0;
}

.list-dynamic .dynamic-item .thumb .detail .west .left {
    display: flex;
    align-items: center;
    font-size: 90%;
}

.list-dynamic .dynamic-item .thumb .detail .west .right {
    display: flex;
    align-items: center;
}

.list-dynamic .dynamic-item .thumb .detail .west .right .west-item {
    display: flex;
    align-items: center;
    margin-left: 10px;
    font-size: 90%;
}

.list-dynamic .dynamic-item .thumb .detail .west .right .west-item img {
    height: 15px;
    margin-right: 5px;
}

.list-box {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
}

.list-live {
    width: 100%;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

.list-live .live-item {
    width: calc(95% / 6);
    height: 350px;
    overflow: hidden;
    position: relative;
    margin: 0 1% 15px 0;
    border-radius: 10px;
}

.list-live .live-item:nth-child(6n) {
    margin-right: 0;
}

.list-live .live-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition-duration: .3s;
}

.list-live .live-item img:hover {
    transform: scale(1.2);
}

.list-live .live-item .datas {
    position: absolute;
    width: 92%;
    height: 40px;
    overflow: hidden;
    padding: 0 4%;
    top: 0;
    left: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(9, 9, 9, .6));
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: default;
}

.list-live .live-item .datas .data-item {
    display: flex;
    align-items: center;
}

.list-live .live-item .datas .data-item i {
    margin-right: 5px;
    color: #FF0000;
}

.list-live .live-item .datas .live-type {
    display: flex;
    align-items: center;
    padding: 5px 5px;
    line-height: 15px;
    border-radius: 5px;
    font-size: 80%;
    color: #FFFFFF;
    background-color: #FF5555;
}

.list-live .live-item .datas .live-type i {
    margin-right: 3px;
}

.list-live .live-item .datas .live-type.chat {
    background-color: #4abdf8;
}

.list-live .live-item .info {
    position: absolute;
    width: 92%;
    overflow: hidden;
    padding: 15px 4% 8px;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(9, 9, 9, .6));
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 90%;
    cursor: default;
}

.list-live .live-item .info .name {
    font-size: 120%;
}

.layui-flow-more {
    margin: 10px auto;
}

.layui-dropdown i {
    color: #666666;
    margin-right: 5px;
}

.layui-dropdown span {
    color: #666666;
}