/* 固定右下角按钮样式 */
#bottom-right-element {
    cursor: pointer;
    position: fixed;
    right: 50px;
    bottom: 20px;
    width: 150px;
    height: 60px;
    background-color: red;
    color: white;
    z-index: 1000;
    border-radius: 50px;
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 40px;
    white-space: nowrap;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 14px; /* 调整为合适的字体大小 */
}

#bottom-right-element img {
    max-width: 90%;
    max-height: 90%;
    width: auto;
    height: auto;
    display: block;
}

/* 小屏幕适配 */
@media screen and (max-width: 768px) {
    #bottom-right-element {
        width: 120px; /* 缩小按钮宽度 */
        height: 45px; /* 缩小按钮高度 */
        line-height: 30px; /* 调整文本行高 */
        font-size: 12px; /* 调整字体大小 */
    }

    /* 如果有图片，确保在手机端适应按钮 */
    #bottom-right-element img {
        max-width: 80%; /* 缩小图片大小 */
        max-height: 80%; /* 同时控制图片的高度 */
    }
}

/* 闪烁效果 */
@keyframes color-flash {
    0%, 100% {
        background-color: green;
    }
    50% {
        background-color: white;
    }
}

/* 圆形标记 */
.circle-dot {
    position: absolute;
    top: 3px;
    left: 121px;
    width: 15px;
    height: 15px;
    background-color: #07c160;
    border-radius: 50%;
    animation: color-flash 2s infinite;
}
