爱简收旧衣按件回收前端代码仓库
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.

88 lines
2.4 KiB

  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. .email-popup.data-v-96ecf657 {
  27. position: fixed;
  28. top: 0;
  29. left: 0;
  30. right: 0;
  31. bottom: 0;
  32. z-index: 999;
  33. }
  34. .email-popup .popup-mask.data-v-96ecf657 {
  35. position: absolute;
  36. top: 0;
  37. left: 0;
  38. right: 0;
  39. bottom: 0;
  40. background: rgba(0, 0, 0, 0.4);
  41. }
  42. .email-popup .popup-content.data-v-96ecf657 {
  43. position: absolute;
  44. left: 0;
  45. right: 0;
  46. bottom: 0;
  47. background: #fff;
  48. border-radius: 20rpx 20rpx 0 0;
  49. overflow: hidden;
  50. transform: translateY(0);
  51. transition: transform 0.3s ease-out;
  52. }
  53. .email-popup .popup-content .popup-header.data-v-96ecf657 {
  54. position: relative;
  55. height: 160rpx;
  56. display: flex;
  57. align-items: center;
  58. justify-content: center;
  59. border-bottom: 1rpx solid #f5f5f5;
  60. }
  61. .email-popup .popup-content .popup-header .title.data-v-96ecf657 {
  62. font-size: 34rpx;
  63. color: #333;
  64. font-weight: 500;
  65. }
  66. .email-popup .popup-content .popup-header .close.data-v-96ecf657 {
  67. position: absolute;
  68. left: 30rpx;
  69. font-size: 32rpx;
  70. color: #333;
  71. }
  72. .email-popup .popup-content .email-content.data-v-96ecf657 {
  73. height: 140rpx;
  74. display: flex;
  75. align-items: center;
  76. justify-content: center;
  77. padding: 0 40rpx;
  78. margin-bottom: env(safe-area-inset-bottom);
  79. }
  80. .email-popup .popup-content .email-content text.data-v-96ecf657 {
  81. font-size: 36rpx;
  82. color: #333;
  83. font-weight: 400;
  84. }
  85. .email-popup .popup-content .email-content .copy-icon.data-v-96ecf657 {
  86. background: #f5f5f5;
  87. padding: 20rpx;
  88. border-radius: 50%;
  89. }