contractdetail.wxss 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  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. /* uni.scss */
  15. /* 颜色变量 */
  16. /* 行为相关颜色 */
  17. /* 文字基本颜色 */
  18. /* 背景颜色 */
  19. /* 边框颜色 */
  20. /* 尺寸变量 */
  21. /* 文字尺寸 */
  22. /* 图片尺寸 */
  23. /* Border Radius */
  24. /* 水平间距 */
  25. /* 垂直间距 */
  26. /* 透明度 */
  27. /* 文章场景相关 */
  28. page {
  29. background-color: #F6F6F6 !important;
  30. }
  31. .headboxcon {
  32. margin: 20rpx 30rpx;
  33. background-color: #fff;
  34. border-radius: 20rpx;
  35. padding: 0 30rpx;
  36. box-sizing: border-box;
  37. }
  38. .headboxcon .tis {
  39. font-size: 36rpx;
  40. font-weight: 600;
  41. display: block;
  42. padding: 30rpx 0;
  43. padding-top: 50rpx;
  44. }
  45. .headboxcon .tipup {
  46. display: flex;
  47. padding-bottom: 30rpx;
  48. }
  49. .headboxcon .upbox {
  50. margin-left: 30rpx;
  51. }
  52. .headboxcon .yu {
  53. flex-shrink: 0;
  54. width: 130rpx;
  55. display: block;
  56. color: #BEBDBB;
  57. }
  58. .headboxcon .tip {
  59. padding-bottom: 30rpx;
  60. font-size: 28rpx;
  61. display: flex;
  62. justify-content: space-between;
  63. }
  64. .headboxcon .tip .yuna {
  65. text-align: right;
  66. word-break: break-word;
  67. }
  68. .searchbox {
  69. padding-left: 30rpx;
  70. box-sizing: border-box;
  71. background-color: #ECECEC;
  72. border-radius: 38rpx;
  73. flex: 1;
  74. height: 75rpx;
  75. margin: 0 auto;
  76. display: flex;
  77. align-items: center;
  78. justify-content: center;
  79. }
  80. .acpcardlist .acpcard {
  81. flex: 1;
  82. margin: 0 30rpx;
  83. background-color: #fff;
  84. border-radius: 20rpx;
  85. box-shadow: 0px 8rpx 20rpx 1rpx rgba(31, 36, 42, 0.08);
  86. }
  87. .acpcardlist .acpcard .allmsg {
  88. display: flex;
  89. padding: 40rpx 30rpx;
  90. box-sizing: border-box;
  91. width: 100%;
  92. }
  93. .acpcardlist .acpcard .allmsg .cicle {
  94. width: 28rpx;
  95. height: 28rpx;
  96. border-radius: 50%;
  97. background-color: #D8AB5A;
  98. margin-top: 8rpx;
  99. }
  100. .acpcardlist .acpcard .allmsg .acpcont {
  101. margin-left: 20rpx;
  102. width: 100%;
  103. }
  104. .acpcardlist .acpcard .allmsg .acpcont .acpname {
  105. box-sizing: border-box;
  106. display: flex;
  107. align-items: center;
  108. justify-content: space-between;
  109. padding-bottom: 30rpx;
  110. flex-grow: 1;
  111. width: 100%;
  112. font-size: 36rpx;
  113. font-weight: 600;
  114. }
  115. .acpcardlist .acpcard .allmsg .acpcont .acpname .ardydele {
  116. padding: 5rpx 8rpx;
  117. border-radius: 10rpx 0 10rpx 0;
  118. margin-left: 10rpx;
  119. box-sizing: border-box;
  120. background-color: #dbdbdb;
  121. font-size: 20rpx;
  122. color: #fff;
  123. }
  124. .acpcardlist .acpcard .allmsg .acpcont .acpname .tag {
  125. margin-left: 10rpx;
  126. font-weight: 500;
  127. border-radius: 10rpx;
  128. color: #BEBDBB;
  129. text-align: center;
  130. }
  131. .acpcardlist .acpcard .allmsg .acpinfo {
  132. border-top: 1rpx solid #E8E8E8;
  133. display: flex;
  134. flex: 1;
  135. flex-direction: column;
  136. font-size: 28rpx;
  137. color: #68625B;
  138. justify-content: space-between;
  139. box-sizing: border-box;
  140. }
  141. .acpcardlist .acpcard .allmsg .acpinfo .pt {
  142. padding-top: 20rpx;
  143. }
  144. .totalmanage {
  145. margin-top: 50rpx;
  146. margin-bottom: 100rpx;
  147. bottom: 0;
  148. display: flex;
  149. justify-content: space-between;
  150. align-items: center;
  151. width: 100%;
  152. padding: 0 30rpx;
  153. box-sizing: border-box;
  154. }
  155. .totalmanage .managebox {
  156. width: 23.8rpx;
  157. height: 29.7rpx;
  158. }
  159. .totalmanage .managebox image {
  160. width: 100%;
  161. height: 100%;
  162. }
  163. .totalmanage .maboxtitls {
  164. width: 160rpx;
  165. height: 60rpx;
  166. display: flex;
  167. align-items: center;
  168. justify-content: center;
  169. border-radius: 30rpx;
  170. background-color: #D9D9D9;
  171. font-size: 28rpx;
  172. box-sizing: border-box;
  173. }
  174. .newbill {
  175. background-color: #fff;
  176. position: fixed;
  177. bottom: 0;
  178. padding-top: 10rpx;
  179. padding-bottom: 40rpx;
  180. width: 100%;
  181. z-index: 999;
  182. }
  183. .newbill .newbillbtn {
  184. background: linear-gradient(to right, #FFE1AD, #D8AB5A);
  185. width: 474rpx;
  186. height: 88rpx;
  187. border-radius: 43rpx;
  188. box-shadow: 0 10rpx 20rpx 1rpx rgba(179, 116, 5, 0.2);
  189. line-height: 88rpx;
  190. color: #fff;
  191. text-align: center;
  192. }