privacy.wxss 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /**
  2. * 这里是uni-app内置的常用样式变量
  3. *
  4. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  5. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  6. *
  7. */
  8. /**
  9. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  10. *
  11. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  12. */
  13. /* 颜色变量 */
  14. /* 行为相关颜色 */
  15. /* 文字基本颜色 */
  16. /* 背景颜色 */
  17. /* 边框颜色 */
  18. /* 尺寸变量 */
  19. /* 文字尺寸 */
  20. /* 图片尺寸 */
  21. /* Border Radius */
  22. /* 水平间距 */
  23. /* 垂直间距 */
  24. /* 透明度 */
  25. /* 文章场景相关 */
  26. .privacy-container.data-v-33d54784 {
  27. max-width: 800px;
  28. margin: 0 auto;
  29. padding: 2rem 1.5rem;
  30. font-family: "Segoe UI", sans-serif;
  31. }
  32. .privacy-container .page-title.data-v-33d54784 {
  33. color: #2c3e50;
  34. text-align: center;
  35. margin-bottom: 2rem;
  36. font-size: 1.8rem;
  37. }
  38. .privacy-container .section-title.data-v-33d54784 {
  39. color: #34495e;
  40. margin-top: 1.5rem;
  41. font-size: 1.3rem;
  42. border-bottom: 2px solid #e0e0e0;
  43. padding-bottom: 0.5rem;
  44. }
  45. .privacy-container .content.data-v-33d54784 {
  46. line-height: 1.8;
  47. color: #555;
  48. margin: 1rem 0;
  49. text-indent: 2em;
  50. }
  51. .privacy-container .content-list.data-v-33d54784 {
  52. padding-left: 2rem;
  53. list-style: disc;
  54. color: #555;
  55. margin: 1rem 0;
  56. }
  57. .privacy-container .content-list li.data-v-33d54784 {
  58. line-height: 1.6;
  59. margin: 0.5rem 0;
  60. }
  61. .privacy-container .update-notice.data-v-33d54784 {
  62. margin-top: 3rem;
  63. padding-top: 1rem;
  64. border-top: 1px solid #e0e0e0;
  65. font-size: 0.9rem;
  66. color: #7f8c8d;
  67. text-align: center;
  68. }