/**
 * 无播放地址提示框样式（独立拆分版）
 * 作用：未传入m3u8地址时显示友好提示，与其他样式无冲突
 * 新增：支持背景图/GIF，带半透明遮罩保证文字可读性
 */
.empty-tip-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* 核心修改：背景图 + 半透明黑遮罩 复合写法（推荐） */
    background: 
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), /* 半透明黑遮罩（关键），0.7可调整透明度（0-1） */
        url("https://wimg.588ku.com/gif620/25/11/25/ad8db32b2236980ed73d326c80fde24a.gif") no-repeat center center / cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff; /* 白色文字，清晰易读 */
    font-size: 16px;
    text-align: center;
    z-index: 10; /* 层级低于广告，仅无地址时显示 */
    padding: 0 20px; /* 移动端左右内边距，避免文字贴边 */
}
.empty-tip-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 12px;
}
.empty-tip-desc {
    margin: 6px 0;
    line-height: 1.5; /* 行高优化，提升可读性 */
}
.empty-tip-example {
    margin-top: 15px;
    padding: 8px 15px;
    background: #222; /* 浅黑背景区分示例文本 */
    border-radius: 4px;
    font-size: 14px;
    color: #ccc; /* 浅灰色文字，突出示例 */
    word-break: break-all; /* 适配长URL，自动换行 */
    max-width: 90%; /* 限制示例宽度，避免超出屏幕 */
}