Privacy policy

/* 整体容器:限制宽度、居中、留白 */ .fashion-legal-container { max-width: 800px; margin: 60px auto; padding: 0 20px; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; color: #333; } /* 顶部前言部分样式 */ .fashion-legal-preamble { font-size: 14px; line-height: 1.8; color: #666; margin-bottom: 40px; } .fashion-legal-preamble p { margin-bottom: 15px; } /* 隐藏浏览器默认的下拉小三角 */ .fashion-legal-container details > summary { list-style: none; } .fashion-legal-container details > summary::-webkit-details-marker { display: none; } /* 折叠面板模块样式 */ .fashion-legal-details { border-bottom: 1px solid #eaeaea; } .fashion-legal-details:first-of-type { border-top: 1px solid #eaeaea; } /* 标题样式:大写、字间距、极简 */ .fashion-legal-summary { padding: 24px 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase; transition: color 0.3s ease; } .fashion-legal-summary strong { font-weight: 600; } /* 自定义 + 和 - 符号 */ .fashion-legal-summary::after { content: '+'; font-size: 20px; font-weight: 300; color: #999; } .fashion-legal-details[open] .fashion-legal-summary::after { content: '-'; color: #333; } /* 展开后的正文内容样式 */ .fashion-legal-content { padding-bottom: 30px; font-size: 14px; line-height: 1.8; color: #666; } .fashion-legal-content p { margin-bottom: 15px; } /* 正文内的列表和链接样式 */ .fashion-legal-content ul, .fashion-legal-content ol { margin: 15px 0 20px; padding-left: 20px; } .fashion-legal-content li { margin-bottom: 10px; } /* 统一全局链接样式 */ .fashion-legal-container a { color: #111; text-decoration: underline; text-underline-offset: 4px; transition: opacity 0.3s ease; } .fashion-legal-container a:hover { opacity: 0.7; }