隐私政策与保密协议




⚠️ 按钮系统需要JavaScript支持。请启用JavaScript以使用完整导航功能。



隐私政策与保密协议

本网站(uzdianzishuceshi.online)尊重并保护所有用户的个人隐私。本隐私政策规定了我们如何收集、使用、披露和保护您的信息。

信息收集

当您在我们的网站注册账户、下订单、订阅新闻通讯或填写表单时,我们可能会收集您的个人信息,包括但不限于:姓名、电子邮件地址、邮寄地址、电话号码等。

信息使用

我们收集的信息可能用于:处理交易、改进客户服务、个性化用户体验、发送定期电子邮件(订单确认、更新、相关产品信息等)。

信息安全

我们采取适当的数据收集、存储和处理措施以及安全措施,以防止未经授权的访问、更改、披露或破坏您的个人信息。

保密协议

我们承诺对您的个人信息保密,不会向第三方出售、交易或以其他方式转让您的个人信息,除非提前通知您或法律要求。

联系我们

如果您对本隐私政策有任何疑问,请通过以下方式联系我们:

电子邮件:sarvarraxmonov20021107@gmail.com

电话:+998 50 111-43-11

// 智能分类链接映射 - 根据关键词匹配 document.addEventListener('DOMContentLoaded', function() { → // 智能关键词映射规则 → const categoryRules = [ → → { keywords: ['painting', 'painter', 'canvas', 'oil', 'acrylic'], slug: 'painting' }, → → { keywords: ['sculpture', 'sculpt', 'statue', '3d', 'bronze'], slug: 'sculpture' }, → → { keywords: ['photography', 'photo', 'camera', 'digital', 'print'], slug: 'photography' }, → → { keywords: ['drawing', 'sketch', 'pencil', 'charcoal', 'ink'], slug: 'drawing' }, → → { keywords: ['print', 'lithograph', 'etching', 'screen'], slug: 'print' }, → → { keywords: ['art', 'contemporary', 'modern', 'abstract', 'portrait', 'landscape'], slug: 'painting' } // 默认 → ]; → → const blocks = document.querySelectorAll('.home .wp-block-column'); → → blocks.forEach(function(block, index) { → → const heading = block.querySelector('h2, h3, h4'); → → if (!heading) return; → → → → const title = heading.textContent.trim().toLowerCase(); → → → → let matchedSlug = 'painting'; → → for (const rule of categoryRules) { → → → if (rule.keywords.some(keyword = title.includes(keyword))) { → → → → matchedSlug = rule.slug; → → → → break; → → → } → → } → → → → let link = block.querySelector('a'); → → if (!link) { → → → link = document.createElement('a'); → → → link.className = 'category-link'; → → → link.style.cssText = 'display: inline-block; margin-top: 20px; padding: 12px 30px; background-color: #3498db; color: white; text-decoration: none; border-radius: 4px; font-weight: 600; transition: all 0.3s ease;'; → → → block.appendChild(link); → → } → → → → link.href = 'https://uzdianzishuceshi.online/product-category/' + matchedSlug + '/'; → → link.textContent = 'Browse ' + heading.textContent.trim(); → → → → link.addEventListener('mouseenter', function() { → → → this.style.backgroundColor = '#2980b9'; → → → this.style.transform = 'translateY(-2px)'; → → }); → → → → link.addEventListener('mouseleave', function() { → → → this.style.backgroundColor = '#3498db'; → → → this.style.transform = 'translateY(0)'; → → }); → }); → → console.log('✅ Category navigation links added successfully'); });