index.wxss 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. @charset "UTF-8";
  2. /**
  3. * 这里是uni-app内置的常用样式变量
  4. *
  5. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  6. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  7. *
  8. */
  9. /**
  10. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  11. *
  12. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  13. */
  14. /* 颜色变量 */
  15. /* 行为相关颜色 */
  16. /* 文字基本颜色 */
  17. /* 背景颜色 */
  18. /* 边框颜色 */
  19. /* 尺寸变量 */
  20. /* 文字尺寸 */
  21. /* 图片尺寸 */
  22. /* Border Radius */
  23. /* 水平间距 */
  24. /* 垂直间距 */
  25. /* 透明度 */
  26. /* 文章场景相关 */
  27. page {
  28. background-color: #FFFFFF;
  29. }
  30. .bg {
  31. background-color: #FFFFFF;
  32. }
  33. .box {
  34. width: 690rpx;
  35. margin: 0 auto;
  36. height: 120rpx;
  37. background: rgba(255, 141, 26, 0.6);
  38. border-radius: 16rpx 16rpx 0px 0px;
  39. color: #333333;
  40. padding: 0rpx 30rpx;
  41. margin-top: 20rpx;
  42. }
  43. .orderbox {
  44. width: 690rpx;
  45. margin: 0 auto;
  46. height: 153rpx;
  47. background: #FAFAFA;
  48. border-radius: 16rpx;
  49. display: flex;
  50. align-items: center;
  51. justify-content: space-between;
  52. text-align: center;
  53. padding: 0rpx 30rpx;
  54. }
  55. .privacy {
  56. position: fixed;
  57. top: 0;
  58. right: 0;
  59. bottom: 0;
  60. left: 0;
  61. background: rgba(0, 0, 0, 0.5);
  62. z-index: 9999999;
  63. display: flex;
  64. align-items: center;
  65. justify-content: center;
  66. }
  67. .contentview {
  68. width: 632rpx;
  69. padding: 48rpx;
  70. box-sizing: border-box;
  71. background: #fff;
  72. border-radius: 16rpx;
  73. }
  74. .contentview .title {
  75. text-align: center;
  76. color: #333;
  77. font-weight: bold;
  78. font-size: 32rpx;
  79. }
  80. .contentview .des {
  81. font-size: 26rpx;
  82. color: #666;
  83. margin-top: 40rpx;
  84. text-align: justify;
  85. line-height: 1.6;
  86. }
  87. .contentview .des .link {
  88. color: #07c160;
  89. text-decoration: underline;
  90. }
  91. button::after {
  92. border: none;
  93. }
  94. .btns {
  95. margin-top: 48rpx;
  96. display: flex;
  97. }
  98. .btns .item {
  99. justify-content: space-between;
  100. width: 244rpx;
  101. height: 80rpx;
  102. display: flex;
  103. align-items: center;
  104. justify-content: center;
  105. border-radius: 16rpx;
  106. box-sizing: border-box;
  107. border: none;
  108. }
  109. .btns .reject {
  110. background: #f4f4f5;
  111. color: #909399;
  112. }
  113. .btns .agree {
  114. background: #07c160;
  115. color: #fff;
  116. }