/* 按钮基础样式（默认状态） */
.vod-button {
    padding: 2px 20px;
    margin-right: 10px;
    background-color: #f9f9f9;
    border: 1px solid #e9e9e9;
    color: #555;
    cursor: pointer;
    font-size: 14px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: bold;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* 选中状态 */
.vod-button.selected {
    background-color: #ff3d2c;
    color: #fff;
    border: none;
    transform: scale(1.08); /* 让选中状态稍微变大 */
    box-shadow: 0 3px 8px rgba(255, 61, 44, 0.4);
}


/* 悬停状态（仅对未选中的按钮有效） */
.vod-button:not(.selected):hover {
    background-color: #e8e8e8;
    border-color: transparent;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

/* 点击状态 */
.vod-button:active {
    background-color: #d6d6d6;
    transform: scale(0.98);
}

/* 文字链接样式 */
.text_muted a {
    color: inherit;
    font-size: 14px;
    text-decoration: none;
}

.text_muted a:hover {
    text-decoration: underline;
}

/* 确保隐藏元素不可见 */
.hide {
    display: none !important;
}

.v_change_hot {
    display: none;
}


@media (max-width: 768px) {  /* 适用于手机端 */
    .vod-button {
        display: none !important;
    }
}
