apply.wxss 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  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. .item-title.data-v-5be4d0ee {
  27. font-size: 30rpx;
  28. font-weight: bold;
  29. color: #333333;
  30. }
  31. .refund-item.data-v-5be4d0ee {
  32. background-color: #fff;
  33. border-bottom: 1rpx solid #f5f5f5;
  34. padding: 30rpx;
  35. }
  36. .refund-item.data-v-5be4d0ee:last-child {
  37. border: none;
  38. }
  39. .refund-item .describe-box.data-v-5be4d0ee {
  40. width: 690rpx;
  41. background: #f9fafb;
  42. padding: 30rpx;
  43. box-sizing: border-box;
  44. border-radius: 20rpx;
  45. }
  46. .refund-item .describe-box .describe-content.data-v-5be4d0ee {
  47. height: 200rpx;
  48. font-size: 24rpx;
  49. font-weight: 400;
  50. color: #333;
  51. }
  52. .refund-item .input-box.data-v-5be4d0ee {
  53. height: 84rpx;
  54. background: #f9fafb;
  55. border-radius: 20rpx;
  56. }
  57. .goods-box.data-v-5be4d0ee {
  58. background: #fff;
  59. padding: 20rpx;
  60. margin-bottom: 20rpx;
  61. }
  62. .foot-wrap.data-v-5be4d0ee {
  63. height: 100rpx;
  64. width: 100%;
  65. }
  66. .foot_box.data-v-5be4d0ee {
  67. height: 100rpx;
  68. background-color: #fff;
  69. }
  70. .foot_box .sub-btn.data-v-5be4d0ee {
  71. width: 336rpx;
  72. line-height: 74rpx;
  73. border-radius: 38rpx;
  74. color: rgba(255, 255, 255, 0.9);
  75. font-size: 28rpx;
  76. }
  77. .foot_box .contcat-btn.data-v-5be4d0ee {
  78. width: 336rpx;
  79. line-height: 74rpx;
  80. background: #eeeeee;
  81. border-radius: 38rpx;
  82. font-size: 28rpx;
  83. font-weight: 400;
  84. color: #333333;
  85. }
  86. .modal-box.data-v-5be4d0ee {
  87. width: 750rpx;
  88. border-radius: 30rpx 30rpx 0 0;
  89. background: #fff;
  90. }
  91. .modal-box .modal-head.data-v-5be4d0ee {
  92. height: 100rpx;
  93. font-size: 30rpx;
  94. }
  95. .modal-box .modal-content.data-v-5be4d0ee {
  96. font-size: 28rpx;
  97. }
  98. .modal-box .modal-foot .close-btn.data-v-5be4d0ee {
  99. width: 710rpx;
  100. line-height: 80rpx;
  101. border-radius: 40rpx;
  102. color: rgba(255, 255, 255, 0.9);
  103. }
  104. .success-box.data-v-5be4d0ee {
  105. width: 600rpx;
  106. padding: 90rpx 0 64rpx 0;
  107. }
  108. .success-box .cicon-check-round.data-v-5be4d0ee {
  109. font-size: 96rpx;
  110. color: #04b750;
  111. }
  112. .success-box .success-title.data-v-5be4d0ee {
  113. font-weight: 500;
  114. color: #333333;
  115. font-size: 32rpx;
  116. }
  117. .success-box .success-btn.data-v-5be4d0ee {
  118. width: 492rpx;
  119. height: 70rpx;
  120. background: linear-gradient(90deg, var(--ui-BG-Main-gradient), var(--ui-BG-Main));
  121. border-radius: 35rpx;
  122. }