homepage.wxss 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  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. .headbgbox {
  32. background: url("https://t39.9026.com/web/uploads/thumbs/mall10000/20220629/35560a89a9d9da3e6843204476f7a8f8.png") no-repeat;
  33. background-size: 100%;
  34. }
  35. .headbgbox .msgtitle {
  36. text-align: center;
  37. padding-top: 50rpx;
  38. }
  39. .headbgbox .topmsgbox {
  40. padding: 25rpx 32rpx;
  41. padding-bottom: 50rpx;
  42. display: flex;
  43. align-items: center;
  44. justify-content: space-between;
  45. }
  46. .headbgbox .topmsgbox .call {
  47. font-size: 28rpx;
  48. color: #68625B;
  49. }
  50. .headbgbox .topmsgbox .callname {
  51. color: #1F242A;
  52. font-size: 36rpx;
  53. font-weight: 600;
  54. }
  55. .headbgbox .topmsgbox .topmsgzuo {
  56. display: flex;
  57. align-items: center;
  58. }
  59. .headbgbox .topmsgbox .topmsgzuo .userbox {
  60. padding-left: 15rpx;
  61. }
  62. .headbgbox .topmsgbox .topmsgzuo .myheadbox {
  63. width: 130rpx;
  64. height: 130rpx;
  65. border-radius: 50%;
  66. overflow: hidden;
  67. border: 6rpx solid #fff;
  68. }
  69. .headbgbox .topmsgbox .topmsgzuo .myheadbox image {
  70. width: 100%;
  71. height: 100%;
  72. }
  73. .searchbox {
  74. padding-left: 85rpx;
  75. box-sizing: border-box;
  76. background-color: #ECECEC;
  77. border-radius: 38rpx;
  78. width: 688rpx;
  79. height: 75rpx;
  80. margin: 0 auto;
  81. display: flex;
  82. align-items: center;
  83. justify-content: center;
  84. margin-top: -10rpx;
  85. }
  86. .cardlist {
  87. display: flex;
  88. justify-content: center;
  89. flex-direction: column;
  90. margin-top: 20rpx;
  91. }
  92. .card {
  93. margin: 0 auto;
  94. overflow: hidden;
  95. margin-top: 20rpx;
  96. width: 690rpx;
  97. height: 315rpx;
  98. border-radius: 20rpx;
  99. background-color: #fff;
  100. position: relative;
  101. box-shadow: 0px 8rpx 20rpx 1rpx rgba(31, 36, 42, 0.08);
  102. }
  103. .card .passreview {
  104. position: absolute;
  105. right: 30rpx;
  106. top: 30rpx;
  107. width: 141rpx;
  108. height: 123.5rpx;
  109. }
  110. .card .passreview image {
  111. width: 100%;
  112. height: 100%;
  113. }
  114. .card .innerbox {
  115. padding: 49rpx 0rpx;
  116. padding-bottom: 30rpx;
  117. margin: 0 30rpx;
  118. display: flex;
  119. align-items: center;
  120. border-bottom: 1rpx solid #E8E8E8;
  121. }
  122. .card .innerbox .listicon {
  123. width: 32rpx;
  124. height: 36rpx;
  125. }
  126. .card .innerbox .listicon image {
  127. width: 100%;
  128. height: 100%;
  129. }
  130. .card .cardtitle {
  131. font-size: 32rpx;
  132. font-weight: 600;
  133. padding-left: 10rpx;
  134. }
  135. .card .timebox {
  136. background-color: #FFF8E5;
  137. width: 100%;
  138. padding: 0 30rpx;
  139. box-sizing: border-box;
  140. color: #D8AB5A;
  141. font-size: 28rpx;
  142. height: 60rpx;
  143. line-height: 60rpx;
  144. }
  145. .card .contractmsg {
  146. padding: 30rpx;
  147. box-sizing: border-box;
  148. color: #68625B;
  149. font-size: 26rpx;
  150. }
  151. .upcontract {
  152. position: fixed;
  153. left: 0;
  154. right: 0;
  155. margin: 0 auto;
  156. bottom: 60rpx;
  157. width: 314rpx;
  158. height: 84rpx;
  159. line-height: 84rpx;
  160. color: #412900;
  161. text-align: center;
  162. border-radius: 43rpx;
  163. font-size: 30rpx;
  164. background: linear-gradient(to right, #FFE1AD, #D8AB5A);
  165. }