木邻有你前端代码仓库
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.

90 lines
2.4 KiB

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