/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Oct 06 2025 | 01:36:22 */
/* Custom jQuery Tooltip Content */
.custom-tooltip-content {
    display: none; /* 默认隐藏 */
    position: absolute;
    bottom: 120%; /* 定位在图标上方 */
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: normal;
    white-space: nowrap;
    z-index: 10;
}