contractdetail.wxss 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  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. display: block;
  54. color: #BEBDBB;
  55. }
  56. .headboxcon .tip {
  57. padding-bottom: 30rpx;
  58. font-size: 28rpx;
  59. display: flex;
  60. justify-content: space-between;
  61. }
  62. .searchbox {
  63. padding-left: 30rpx;
  64. box-sizing: border-box;
  65. background-color: #ECECEC;
  66. border-radius: 38rpx;
  67. flex: 1;
  68. height: 75rpx;
  69. margin: 0 auto;
  70. display: flex;
  71. align-items: center;
  72. justify-content: center;
  73. }
  74. .acpcardlist .acpcard {
  75. flex: 1;
  76. margin: 0 30rpx;
  77. background-color: #fff;
  78. border-radius: 20rpx;
  79. box-shadow: 0px 8rpx 20rpx 1rpx rgba(31, 36, 42, 0.08);
  80. }
  81. .acpcardlist .acpcard .allmsg {
  82. display: flex;
  83. padding: 40rpx 30rpx;
  84. box-sizing: border-box;
  85. width: 100%;
  86. }
  87. .acpcardlist .acpcard .allmsg .cicle {
  88. width: 28rpx;
  89. height: 28rpx;
  90. border-radius: 50%;
  91. background-color: #D8AB5A;
  92. margin-top: 8rpx;
  93. }
  94. .acpcardlist .acpcard .allmsg .acpcont {
  95. margin-left: 20rpx;
  96. width: 100%;
  97. }
  98. .acpcardlist .acpcard .allmsg .acpcont .acpname {
  99. box-sizing: border-box;
  100. display: flex;
  101. align-items: center;
  102. justify-content: space-between;
  103. padding-bottom: 30rpx;
  104. flex-grow: 1;
  105. width: 100%;
  106. font-size: 36rpx;
  107. font-weight: 600;
  108. }
  109. .acpcardlist .acpcard .allmsg .acpcont .acpname .tag {
  110. margin-left: 10rpx;
  111. font-weight: 500;
  112. border-radius: 10rpx;
  113. color: #BEBDBB;
  114. text-align: center;
  115. }
  116. .acpcardlist .acpcard .allmsg .acpinfo {
  117. border-top: 1rpx solid #E8E8E8;
  118. display: flex;
  119. flex: 1;
  120. flex-direction: column;
  121. font-size: 28rpx;
  122. color: #68625B;
  123. justify-content: space-between;
  124. box-sizing: border-box;
  125. }
  126. .acpcardlist .acpcard .allmsg .acpinfo .pt {
  127. padding-top: 20rpx;
  128. }
  129. .totalmanage {
  130. margin-top: 50rpx;
  131. margin-bottom: 100rpx;
  132. bottom: 0;
  133. display: flex;
  134. justify-content: space-between;
  135. align-items: center;
  136. width: 100%;
  137. padding: 0 30rpx;
  138. box-sizing: border-box;
  139. }
  140. .totalmanage .managebox {
  141. width: 23.8rpx;
  142. height: 29.7rpx;
  143. }
  144. .totalmanage .managebox image {
  145. width: 100%;
  146. height: 100%;
  147. }
  148. .totalmanage .maboxtitls {
  149. width: 160rpx;
  150. height: 60rpx;
  151. display: flex;
  152. align-items: center;
  153. justify-content: center;
  154. border-radius: 30rpx;
  155. background-color: #D9D9D9;
  156. font-size: 28rpx;
  157. box-sizing: border-box;
  158. }
  159. .newbill {
  160. background-color: #fff;
  161. position: fixed;
  162. bottom: 0;
  163. padding-top: 10rpx;
  164. padding-bottom: 40rpx;
  165. width: 100%;
  166. z-index: 999;
  167. }
  168. .newbill .newbillbtn {
  169. background: linear-gradient(to right, #FFE1AD, #D8AB5A);
  170. width: 474rpx;
  171. height: 88rpx;
  172. border-radius: 43rpx;
  173. box-shadow: 0 10rpx 20rpx 1rpx rgba(179, 116, 5, 0.2);
  174. line-height: 88rpx;
  175. color: #fff;
  176. text-align: center;
  177. }