create-order.wxss 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  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. /* 图片尺寸 */
  23. /* Border Radius */
  24. /* 水平间距 */
  25. /* 垂直间距 */
  26. /* 透明度 */
  27. /* 文章场景相关 */
  28. page {
  29. height: auto;
  30. background: #F7F7F7;
  31. }
  32. .btn-hover {
  33. background: #FFFFFF;
  34. }
  35. .animation {
  36. /* transition: transform 0.3s ease;*/
  37. transition-property: -webkit-transform;
  38. transition-property: transform;
  39. transition-property: transform, -webkit-transform;
  40. transition-duration: 0.3s;
  41. transition-timing-function: ease;
  42. }
  43. .invoice-freight {
  44. width: 702rpx;
  45. padding: 0 24rpx;
  46. height: 86rpx;
  47. line-height: 86rpx;
  48. font-size: 28rpx;
  49. color: #333333;
  50. background: #FFFFFF;
  51. float: left;
  52. font-weight: bold;
  53. }
  54. .invoice-freight .freight-left {
  55. float: left;
  56. }
  57. .invoice-freight .freight-left .icon-yunfeishuoming {
  58. height: 100%;
  59. padding: 0 15rpx;
  60. color: #FF457B;
  61. font-weight: normal;
  62. }
  63. .invoice-freight .freight-right {
  64. float: right;
  65. color: #2A81FF;
  66. }
  67. .invoice-balance {
  68. width: 702rpx;
  69. height: auto;
  70. padding: 0 24rpx;
  71. background: #FFFFFF;
  72. float: left;
  73. margin-top: 24rpx;
  74. margin-bottom: 24rpx;
  75. }
  76. .invoice-balance .balabce-t {
  77. width: 100%;
  78. height: 86rpx;
  79. line-height: 86rpx;
  80. font-size: 28rpx;
  81. color: #333333;
  82. float: left;
  83. }
  84. .invoice-balance .balabce-t .balabce-t-le {
  85. float: left;
  86. font-weight: bold;
  87. }
  88. .invoice-balance .balabce-t .balabce-t-ri {
  89. float: right;
  90. display: flex;
  91. align-items: center;
  92. }
  93. .invoice-balance .balabce-t .balabce-t-ri .money {
  94. display: flex;
  95. float: left;
  96. }
  97. .invoice-balance .balabce-t .balabce-t-ri .checkbox-box {
  98. display: flex;
  99. width: 60rpx;
  100. float: left;
  101. height: 100%;
  102. font-size: 24rpx;
  103. }
  104. .invoice-balance .balabce-t .balabce-t-ri .checkbox-box .checkbox {
  105. width: 40rpx;
  106. text-align: right;
  107. box-sizing: border-box;
  108. text-align: center;
  109. text-decoration: none;
  110. border-radius: 0;
  111. -webkit-tap-highlight-color: transparent;
  112. overflow: hidden;
  113. color: #FF457B;
  114. padding: 5rpx;
  115. }
  116. .invoice-balance .balabce-b {
  117. width: 100%;
  118. float: left;
  119. overflow: hidden;
  120. }
  121. .invoice-balance .balabce-b .balabce-b-text {
  122. width: 100%;
  123. line-height: 58rpx;
  124. font-size: 24rpx;
  125. color: #FF2A2A;
  126. text-align: right;
  127. float: right;
  128. }
  129. .invoice-balance .balabce-b.balabce-b--hide {
  130. padding: 0 0;
  131. height: 0px;
  132. line-height: 0px;
  133. }
  134. .footer {
  135. position: fixed;
  136. left: 0;
  137. bottom: 0;
  138. z-index: 995;
  139. display: flex;
  140. align-items: center;
  141. width: 100%;
  142. height: 110rpx;
  143. line-height: 110rpx;
  144. justify-content: space-between;
  145. font-size: 28rpx;
  146. background-color: #FFFFFF;
  147. z-index: 998;
  148. color: #333333;
  149. }
  150. .footer .footer-le {
  151. width: 570rpx;
  152. height: 100%;
  153. float: left;
  154. }
  155. .footer .footer-count {
  156. float: left;
  157. padding-left: 24rpx;
  158. width: 170rpx;
  159. box-sizing: border-box;
  160. font-size: 26rpx;
  161. }
  162. .footer .footer-price {
  163. float: right;
  164. text-align: right;
  165. color: #333333;
  166. padding-right: 20rpx;
  167. box-sizing: border-box;
  168. width: 370rpx;
  169. }
  170. .footer .footer-price .sum {
  171. width: 100%;
  172. height: 110rpx;
  173. line-height: 110rpx;
  174. float: left;
  175. }
  176. .footer .footer-price .sum .price {
  177. font-size: 32rpx;
  178. color: #FF457B;
  179. }
  180. .footer .footer-submit {
  181. display: flex;
  182. align-items: center;
  183. justify-content: center;
  184. width: 210rpx;
  185. height: 100%;
  186. box-sizing: border-box;
  187. padding: 15rpx 5rpx;
  188. }
  189. .footer .footer-submit .btn {
  190. width: 100%;
  191. height: 100%;
  192. color: #FFFFFF;
  193. background: linear-gradient(270deg, #f83c6c 0%, #fc32b4 100%);
  194. font-size: 26rpx;
  195. text-align: center;
  196. line-height: 80rpx;
  197. border-radius: 40rpx;
  198. }
  199. .footer .footer-submit .btn.disabled {
  200. background: #e4e8eb;
  201. color: #999999;
  202. }
  203. .Rebate {
  204. width: 702rpx;
  205. height: auto;
  206. padding: 0 24rpx;
  207. background: #FFFFFF;
  208. float: left;
  209. margin-bottom: 24rpx;
  210. margin-bottom: 24rpx;
  211. line-height: 86rpx;
  212. }
  213. .Rebate .rebate-title {
  214. float: left;
  215. font-weight: bold;
  216. color: #333333;
  217. font-size: 28rpx;
  218. }
  219. .Rebate .iconfont {
  220. float: right;
  221. color: #b2b2b2;
  222. font-size: 40rpx;
  223. }
  224. .Rebate .iconfont.icon-yixuanze {
  225. color: #FF457B;
  226. }