木邻有你前端代码仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

96 lines
2.5 KiB

1 month ago
1 month ago
1 month ago
  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. .popup-overlay.data-v-4813ce2e {
  28. position: fixed;
  29. inset: 0;
  30. width: 100%;
  31. height: 100%;
  32. background: #00000050;
  33. z-index: 999;
  34. }
  35. .popup-overlay .popup-content.data-v-4813ce2e {
  36. position: relative;
  37. top: 50%;
  38. left: 50%;
  39. width: 632rpx;
  40. padding: 0;
  41. height: 830rpx;
  42. }
  43. .popup-overlay .popup-content .popup-bg.data-v-4813ce2e {
  44. position: absolute;
  45. inset: 0;
  46. z-index: -1;
  47. width: 632rpx;
  48. height: 830rpx;
  49. }
  50. .popup-overlay .popup-content .popup-title.data-v-4813ce2e {
  51. position: absolute;
  52. top: 44rpx;
  53. left: 88rpx;
  54. height: 100rpx;
  55. width: 254rpx;
  56. }
  57. .popup-overlay .popup-content .popup-btn.data-v-4813ce2e {
  58. position: absolute;
  59. bottom: 30rpx;
  60. left: 50%;
  61. -webkit-transform: translateX(-50%);
  62. transform: translateX(-50%);
  63. width: 432rpx;
  64. height: 94rpx;
  65. border-radius: 20.5px;
  66. font-size: 14px;
  67. line-height: 94rpx;
  68. color: #ffffff;
  69. }
  70. .popup-overlay .popup-content .success.data-v-4813ce2e {
  71. background: #1488db;
  72. }
  73. .popup-overlay .popup-content .fail.data-v-4813ce2e {
  74. background: #e54b4b;
  75. }
  76. .popup-overlay .popup-content .popup-text.data-v-4813ce2e {
  77. font-size: 16px;
  78. position: absolute;
  79. top: 480rpx;
  80. left: 50%;
  81. -webkit-transform: translateX(-50%);
  82. transform: translateX(-50%);
  83. font-weight: 700;
  84. color: #000000;
  85. white-space: nowrap;
  86. }
  87. .popup-overlay .popup-content .popup-subtext.data-v-4813ce2e {
  88. position: absolute;
  89. bottom: 252rpx;
  90. left: 50%;
  91. -webkit-transform: translateX(-50%);
  92. transform: translateX(-50%);
  93. font-size: 14px;
  94. color: #999999;
  95. white-space: nowrap;
  96. }