/**
 * 我的消息悬浮按钮样式
 * @author haocheng01
 * @date 2026-05-12 12:00:00
 * @since CSS样式文件
 */

/* 我的消息悬浮按钮容器 */
.index-msg-float {
    width: 100%;
    height: 145px;
    font-size: 16px;
    color: white;
    border-radius: 50px;
    text-align: center;
    background: linear-gradient(180deg, #165DFF 0%, #5186FF 100%);
    border: 1px solid #FFFFFF;
    cursor: pointer;
    position: relative;
    margin-bottom: 12px;
}

/* cherry主题 */
.index-msg-float.cherry-theme {
    background: linear-gradient(180deg, #A21217 0%, #ED363D 100%);
}

/* 我的消息图标 */
.index-msg-float i {
    display: inline-block;
    padding: 9px;
    background: #FFF;
    border-radius: 50%;
    margin: 3px 3px 6px 3px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 22px;
    color: #165DFF;
}

/* cherry主题图标颜色 */
.index-msg-float.cherry-theme i {
    color: #A21217;
}

/* 我的消息文字 */
.index-msg-float-text {
    writing-mode: vertical-lr;
    line-height: 3;
    letter-spacing: 4px;
}

/* 消息数量角标 */
.index-msg-float-count {
    position: absolute;
    top: 8px;
    right: 8px;
    min-width: 18px;
    height: 18px;
    line-height: 18px;
    padding: 0 4px;
    font-size: 12px;
    color: #FFF;
    background: #F53F3F;
    border-radius: 9px;
    text-align: center;
    display: inline-block;
}

/* 调整悬浮容器位置，增加间距 */
.index-aside {
    width: 48px;
    position: fixed;
    right: 12px;
    bottom: 20%;
    cursor: pointer;
    z-index: 201;
    display: flex;
    flex-direction: column;
    gap: 12px;
}