Authorize.wxss 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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. /* crmeb颜色变量 */
  17. /* 背景颜色 */
  18. /* 边框颜色 */
  19. /* 尺寸变量 */
  20. /* 文字尺寸 */
  21. /* 图片尺寸 */
  22. /* Border Radius */
  23. /* 水平间距 */
  24. /* 垂直间距 */
  25. /* 透明度 */
  26. /* 文章场景相关 */
  27. .Popup.data-v-4147c09e {
  28. width: 500rpx;
  29. background-color: #fff;
  30. position: fixed;
  31. top: 50%;
  32. left: 50%;
  33. margin-left: -250rpx;
  34. -webkit-transform: translateY(-50%);
  35. transform: translateY(-50%);
  36. z-index: 320;
  37. }
  38. .Popup image.data-v-4147c09e {
  39. width: 150rpx;
  40. height: 150rpx;
  41. margin: -67rpx auto 0 auto;
  42. display: block;
  43. border: 8rpx solid #fff;
  44. border-radius: 50%;
  45. }
  46. .Popup .title.data-v-4147c09e {
  47. font-size: 28rpx;
  48. color: #000;
  49. text-align: center;
  50. margin-top: 30rpx;
  51. }
  52. .Popup .tip.data-v-4147c09e {
  53. font-size: 22rpx;
  54. color: #555;
  55. padding: 0 24rpx;
  56. margin-top: 25rpx;
  57. }
  58. .Popup .bottom .item.data-v-4147c09e {
  59. width: 50%;
  60. height: 80rpx;
  61. background-color: #eeeeee;
  62. text-align: center;
  63. line-height: 80rpx;
  64. font-size: 24rpx;
  65. color: #666;
  66. margin-top: 54rpx;
  67. }
  68. .Popup .bottom .item.on.data-v-4147c09e {
  69. width: 100%;
  70. }
  71. .flex.data-v-4147c09e {
  72. display: flex;
  73. }
  74. .Popup .bottom .item.grant.data-v-4147c09e {
  75. font-size: 28rpx;
  76. color: #fff;
  77. font-weight: bold;
  78. background-color: var(--view-theme);
  79. border-radius: 0;
  80. padding: 0;
  81. }
  82. .mask.data-v-4147c09e {
  83. position: fixed;
  84. top: 0;
  85. right: 0;
  86. left: 0;
  87. bottom: 0;
  88. background-color: rgba(0, 0, 0, 0.65);
  89. z-index: 310;
  90. }