.waifu {
    position: fixed;
    bottom: 0;
    z-index: 1;
    font-size: 0;
    -webkit-transform: translateY(3px);
    transform: translateY(3px);
}

.waifu:hover {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.waifu-tips {
    opacity: 0;
    margin: -80px 20px;
    padding: 5px 10px;
    border: 1px solid rgba(224, 186, 140, 0.62);
    border-radius: 12px;
    background-color: rgba(236, 217, 188, 0.5);
    box-shadow: 0 3px 15px 2px rgba(191, 158, 118, 0.2);
    text-overflow: ellipsis;
    overflow: hidden;
    position: absolute;
    animation-delay: 5s;
    animation-duration: 50s;
    animation-iteration-count: infinite;
    animation-name: shake;
    animation-timing-function: ease-in-out;
    color: black;  /* 确保字体为黑色 */
}

.waifu-tool {
    display: none;
    color: black;  /* 确保字体为黑色 */
    top: 50px;
    right: 10px;
    position: absolute;
}

.waifu:hover .waifu-tool {
    display: block;
}

.waifu-tool span {
    display: block;
    cursor: pointer;
    color: #5b6c7d;
    transition: 0.2s;
}

.waifu-tool span:hover {
    color: #34495e;
}

.waifu #live2d {
    position: relative;
}

@keyframes shake {
    2% {
        transform: translate(0.5px, -1.5px) rotate(-0.5deg);
    }

    /* 省略其余的 keyframe 内容 */
    0%, 100% {
        transform: translate(0, 0) rotate(0);
    }
}

@font-face {
    font-family: 'Flat-UI-Icons';
    src: url('flat-ui-icons-regular.eot');
    src: url('flat-ui-icons-regular.eot?#iefix') format('embedded-opentype'), url('flat-ui-icons-regular.woff') format('woff'), url('flat-ui-icons-regular.ttf') format('truetype'), url('flat-ui-icons-regular.svg#flat-ui-icons-regular') format('svg');
}

[class^="fui-"],
[class*="fui-"] {
    font-family: 'Flat-UI-Icons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: black;  /* 确保图标颜色为黑色 */
}

.fui-cross:before {
    content: "\e609";
}

.fui-info-circle:before {
    content: "\e60f";
}

.fui-photo:before {
    content: "\e62a";
}

.fui-eye:before {
    content: "\e62c";
}

.fui-chat:before {
    content: "\e62d";
}

.fui-home:before {
    content: "\e62e";
}

.fui-user:before {
    content: "\e631";
}
