order-details.wxss 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  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. .details {
  33. padding-bottom: 130rpx;
  34. }
  35. .btn-hover {
  36. background: #ffffff;
  37. }
  38. .animation {
  39. /* transition: transform 0.3s ease;*/
  40. transition-property: -webkit-transform;
  41. transition-property: transform;
  42. transition-property: transform, -webkit-transform;
  43. transition-duration: 0.3s;
  44. transition-timing-function: ease;
  45. }
  46. .invoice-balance {
  47. width: 702rpx;
  48. height: auto;
  49. padding: 0 24rpx;
  50. background: #ffffff;
  51. float: left;
  52. margin-top: 24rpx;
  53. margin-bottom: 24rpx;
  54. }
  55. .invoice-balance .balabce-t {
  56. width: 100%;
  57. height: 86rpx;
  58. line-height: 86rpx;
  59. font-size: 28rpx;
  60. color: #333333;
  61. float: left;
  62. }
  63. .invoice-balance .balabce-t .balabce-t-le {
  64. float: left;
  65. font-weight: bold;
  66. }
  67. .invoice-balance .balabce-t .balabce-t-ri {
  68. float: right;
  69. display: flex;
  70. align-items: center;
  71. }
  72. .invoice-balance .balabce-t .balabce-t-ri .money {
  73. display: flex;
  74. float: left;
  75. }
  76. .invoice-balance .balabce-t .balabce-t-ri .checkbox-box {
  77. display: flex;
  78. width: 60rpx;
  79. float: left;
  80. height: 100%;
  81. font-size: 24rpx;
  82. }
  83. .invoice-balance .balabce-t .balabce-t-ri .checkbox-box .checkbox {
  84. width: 40rpx;
  85. text-align: right;
  86. box-sizing: border-box;
  87. text-align: center;
  88. text-decoration: none;
  89. border-radius: 0;
  90. -webkit-tap-highlight-color: transparent;
  91. overflow: hidden;
  92. }
  93. .invoice-balance .balabce-b {
  94. width: 100%;
  95. float: left;
  96. overflow: hidden;
  97. }
  98. .invoice-balance .balabce-b .balabce-b-text {
  99. width: 100%;
  100. line-height: 58rpx;
  101. font-size: 24rpx;
  102. color: #ff457b;
  103. text-align: right;
  104. float: right;
  105. }
  106. .invoice-balance .balabce-b.balabce-b--hide {
  107. padding: 0 0;
  108. height: 0px;
  109. line-height: 0px;
  110. }
  111. .clause {
  112. float: right;
  113. font-size: 24rpx;
  114. color: #999999;
  115. margin-top: 60rpx;
  116. margin-right: 24rpx;
  117. }
  118. .clause.noclick {
  119. pointer-events: none;
  120. }
  121. .clause .text {
  122. color: #1890f9;
  123. }
  124. .clause .text.color-bg {
  125. color: #333333;
  126. }
  127. .status-text {
  128. overflow: hidden;
  129. padding: 0 24rpx;
  130. background: #fff;
  131. font-size: 26rpx;
  132. }
  133. .status-text .view-type {
  134. float: left;
  135. color: #ff457b;
  136. }
  137. .tui-modal-custom-text {
  138. min-height: 300rpx;
  139. margin-bottom: 30rpx;
  140. }
  141. .tui-modal-custom-text .title {
  142. width: 100%;
  143. height: auto;
  144. font-size: 30rpx;
  145. text-align: justify;
  146. color: #333333;
  147. line-height: 40rpx;
  148. margin-bottom: 30rpx;
  149. }
  150. .tui-modal-custom-text .tui-modal-custom-list {
  151. width: 100%;
  152. height: 350rpx;
  153. overflow: hidden;
  154. }
  155. .tui-modal-custom-text .tui-modal-custom-list .custom-list {
  156. width: 100%;
  157. height: 117rpx;
  158. box-sizing: border-box;
  159. float: left;
  160. padding: 15rpx 0;
  161. }
  162. .tui-modal-custom-text .tui-modal-custom-list .custom-list .custom-list-image {
  163. width: 86rpx;
  164. height: 86rpx;
  165. float: left;
  166. border-radius: 6rpx;
  167. box-sizing: border-box;
  168. border: 1px solid #e1e1e1;
  169. }
  170. .tui-modal-custom-text .tui-modal-custom-list .custom-list .custom-list-image image {
  171. width: 84rpx;
  172. height: 84rpx;
  173. border-radius: 6rpx;
  174. display: block;
  175. }
  176. .tui-modal-custom-text .tui-modal-custom-list .custom-list .custom-list-name {
  177. width: 400rpx;
  178. height: 86rpx;
  179. float: right;
  180. line-height: 43rpx;
  181. font-size: 26rpx;
  182. color: #666666;
  183. text-overflow: ellipsis;
  184. overflow: hidden;
  185. display: -webkit-box;
  186. -webkit-line-clamp: 2;
  187. line-clamp: 2;
  188. -webkit-box-orient: vertical;
  189. }
  190. .tui-modal-button {
  191. width: 100%;
  192. height: 72rpx;
  193. display: flex;
  194. }
  195. .tui-modal-button .modal-button {
  196. width: 200rpx;
  197. height: 72rpx;
  198. line-height: 72rpx;
  199. border-radius: 36rpx;
  200. box-sizing: border-box;
  201. }
  202. .tui-modal-button .modal-button.cancel {
  203. border: 1px solid #b2b2b2;
  204. background: #ffffff;
  205. color: #333333;
  206. }
  207. .tui-modal-button .modal-button.confirm {
  208. background: linear-gradient(270deg, #f83c6c 0%, #fc32b4 100%);
  209. color: #ffffff;
  210. }