.neko {
    width: 64px;
    height: 64px;
    background-image: url(/skin/static/images/cat.png);
    position: absolute;
    right: 32px;
    background-repeat: no-repeat;
    display: block;
    background-size: contain;
    transform: translateX(50%);
    cursor: pointer;
    font-family: 'quyuanri25928b2fb22277f';
    font-weight: 600;
    font-size: 16px
}

.neko::after {
    display: none;
    width: 100px;
    height: 100px;
    background-image: url(/skin/static/images/hanashi.png);
    background-size: contain;
    z-index: 9999;
    position: absolute;
    right: 50%;
    text-align: center;
    line-height: 100px;
    top: -100%
}

.neko.showMsg::after {
    content: attr(data-msg);
    display: block;
    overflow: hidden;
    text-overflow: ellipsis
}

.neko:hover::after {
    content: attr(data-msg);
    display: block;
    overflow: hidden;
    text-overflow: ellipsis
}

.neko.fontColor::after {
    color: #333
}

#catalog-box {
    position: absolute;
    top: 32px;
    right: 64px;
    display: block;
    background-image: url(/skin/static/images/box.png);
    background-size: contain;
    width: 100px;
    height: 140px;
    background-repeat: no-repeat
}

.catalog-list {
    width: 100%;
    height: 100%;
    list-style: none;
    padding: 10px 15px;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: auto
}

.catalog-list::-webkit-scrollbar {
    width: 0 !important
}

.catalog-list-item:hover {
    border-bottom: 2px solid #57606f
}

.catalog-list-item,
.catalog-list-item a {
    width: 100%;
    height: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 12px;
    white-space: nowrap
}

.catalog-list-item a,
.catalog-list-item a:visited {
    color: #2f3542
}