/* WordPress页面特定的提示样式 */
.scroll-box-row .fixed-left {
    position: relative;
    display: flex;
    align-items: center;
}

.scroll-box-row .tooltip {
    margin-left: 8px;
}

/* 移动端适配 */
@media screen and (max-width: 768px) {
    .scroll-box-row .tooltip {
        margin-left: 5px;
    }
    
    .scroll-box-row .tooltip-text {
        width: 200px;
        left: auto;
        right: 0;
        margin-left: 0;
    }
    
    .scroll-box-row .tooltip-text::after {
        left: auto;
        right: 10px;
    }
}