/** Shopify CDN: Minification failed

Line 11:15 Unexpected "="
Line 13:8 Comments in CSS use "/* ... */" instead of "//"
Line 15:8 Comments in CSS use "/* ... */" instead of "//"
Line 22:0 Comments in CSS use "/* ... */" instead of "//"
Line 23:49 Unexpected ";"
Line 25:0 Comments in CSS use "/* ... */" instead of "//"

**/
const observer = new MutationObserver(function(mutations) {
    mutations.forEach(function(mutation) {
        // 查找所有具有 'data-testid="qv-review-date"' 属性的 div 元素
        const reviewDates = document.querySelectorAll('div[data-testid="qv-review-date"]');
        // 将这些元素全部隐藏
        reviewDates.forEach(function(date) {
            date.style.display = 'none';
        });
    });
});

// 配置 MutationObserver 监听子节点变化
const config = { childList: true, subtree: true };

// 开始观察整个文档的 DOM 变化
observer.observe(document.body, config);
