index.wxss 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  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. /* Border Radius */
  23. /* 水平间距 */
  24. /* 垂直间距 */
  25. /* 透明度 */
  26. /* 文章场景相关 */
  27. page {
  28. background-color: #00b075;
  29. }
  30. .uni-icons {
  31. font-size: 40rpx !important;
  32. }
  33. .textbox {
  34. width: 100%;
  35. height: 100vh;
  36. padding: 20rpx 30rpx;
  37. box-sizing: border-box;
  38. border-top-left-radius: 80rpx;
  39. border-top-right-radius: 80rpx;
  40. margin-top: 30rpx;
  41. background-color: #f9f9f9;
  42. }
  43. .inputs .u-content {
  44. background-color: #fff !important;
  45. }
  46. .inputs .uni-input-wrapper {
  47. background-color: #fff !important;
  48. }
  49. .utabs_box {
  50. width: 100%;
  51. position: fixed;
  52. top: 88px;
  53. background-color: #ffffff;
  54. z-index: 100;
  55. }
  56. .utabs_box .utabs {
  57. width: 95%;
  58. margin: 0 auto;
  59. }
  60. .loading {
  61. position: fixed;
  62. top: 440px;
  63. width: 95%;
  64. left: 2.5%;
  65. text-align: center;
  66. }
  67. .loading .img {
  68. width: 300rpx;
  69. height: 40rpx;
  70. }
  71. .listbox {
  72. display: flex;
  73. justify-content: space-around;
  74. height: calc(100vh - 84px);
  75. margin-top: 20rpx;
  76. }
  77. .listbox .listbox_left {
  78. background-color: #fff;
  79. padding: 20rpx;
  80. width: 140rpx;
  81. }
  82. .listbox .listbox_left .listbox_left_item {
  83. height: 50rpx;
  84. width: 100%;
  85. margin-bottom: 20rpx;
  86. text-align: center;
  87. border-radius: 10rpx;
  88. line-height: 50rpx;
  89. overflow: hidden;
  90. white-space: nowrap;
  91. text-overflow: ellipsis;
  92. }
  93. .listbox .listbox_left .listbox_left_item_act {
  94. background-color: rgba(0, 176, 117, 0.2);
  95. color: #00b075;
  96. }
  97. .list {
  98. width: 70%;
  99. background-color: #fdfdfd;
  100. overflow-y: auto;
  101. }
  102. .list .list_item {
  103. width: 100%;
  104. margin: 0 auto 20rpx;
  105. padding: 20rpx 20rpx;
  106. box-sizing: border-box;
  107. position: relative;
  108. background-color: #ffffff;
  109. box-shadow: 0 0 10rpx #bcb9ca;
  110. }
  111. .list .list_item .list_item_top {
  112. display: flex;
  113. justify-content: space-between;
  114. }
  115. .list .list_item .list_item_top .p1 {
  116. height: 60rpx;
  117. line-height: 60rpx;
  118. font-size: 28rpx;
  119. }
  120. .list .list_item .list_item_top .p1 image {
  121. width: 40rpx;
  122. height: 40rpx;
  123. vertical-align: text-top;
  124. margin-right: 20rpx;
  125. }
  126. .list .list_item .list_item_top .p2 {
  127. height: 60rpx;
  128. line-height: 60rpx;
  129. font-size: 28rpx;
  130. color: #42b983;
  131. }
  132. .list .list_item .list_item_top .p_out {
  133. height: 60rpx;
  134. line-height: 60rpx;
  135. font-size: 28rpx;
  136. color: red;
  137. }
  138. .list .list_item .list_item_text {
  139. margin-top: 20rpx;
  140. }
  141. .list .list_item .list_item_text ._p {
  142. font-size: 24rpx;
  143. color: #636363;
  144. margin-top: 10rpx;
  145. }
  146. .list .list_item .list_item_text ._p:first-child {
  147. font-size: 28rpx;
  148. font-weight: 700;
  149. }
  150. .list .list_item .list_item_btn {
  151. width: 126rpx;
  152. color: #42b983;
  153. height: 40rpx;
  154. text-align: center;
  155. border: 1rpx solid #42b983;
  156. border-radius: 25rpx;
  157. font-size: 24rpx;
  158. line-height: 35rpx;
  159. position: absolute;
  160. bottom: 15rpx;
  161. right: 20rpx;
  162. }
  163. .top {
  164. position: fixed;
  165. right: 30px;
  166. bottom: 100px;
  167. z-index: 100;
  168. }
  169. .top image {
  170. width: 100rpx;
  171. height: 100rpx;
  172. }