sign_leave_in.wxss 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  1. /* dispatcher/pages/sweeped_books/sweeped_books.wxss */
  2. @import '../../../templates/loading/loading.wxss';
  3. @import '../../../templates/nodata/nodata.wxss';
  4. .list-title {
  5. margin: 20rpx auto;
  6. }
  7. .list-title-black {
  8. font-size: 36rpx;
  9. color: rgb(37, 36, 36);
  10. margin: 30rpx 30rpx 30rpx 0rpx;
  11. font-weight:700;
  12. }
  13. .list-title-gray {
  14. font-size: 30rpx;
  15. color: rgba(153, 153, 153, 1);
  16. }
  17. .li {
  18. display: flex;
  19. justify-content: flex-start;
  20. align-items: flex-start;
  21. margin: 0 auto;
  22. padding: 0;
  23. }
  24. .li-box {
  25. position: relative;
  26. min-height: 158rpx;
  27. }
  28. .li-img {
  29. position: absolute;
  30. top: 20rpx;
  31. left: 0;
  32. width: 88rpx;
  33. height: 88rpx;
  34. border-radius:50%;
  35. background: white;
  36. }
  37. .li-col {
  38. position: relative;
  39. left:110rpx;
  40. margin: 40rpx 0rpx;
  41. display: flex;
  42. justify-content: flex-start;
  43. align-items: flex-start;
  44. }
  45. .li-text-blue {
  46. color: #00B7FF;
  47. font-size: 32rpx;
  48. margin-right: 10rpx;
  49. }
  50. .li-text-yellow {
  51. color: #FF6464;
  52. font-size: 32rpx;
  53. margin-right: 10rpx;
  54. }
  55. .li-text-red {
  56. color: #FF80A8;
  57. font-size: 32rpx;
  58. }
  59. .li-text-gray {
  60. font-size: 30rpx;
  61. color: #ccc;
  62. width:300rpx;
  63. text-overflow: ellipsis;
  64. overflow: hidden;
  65. white-space: nowrap;
  66. }
  67. .foot-text-gray{
  68. height:28rpx;
  69. font-size:30rpx;
  70. font-family:PingFang SC;
  71. font-weight:500;
  72. color:rgba(65,65,76,1);
  73. line-height:36rpx;
  74. }
  75. .li-text-black {
  76. margin:0rpx 20rpx 0rpx 0rpx;
  77. height:32rpx;
  78. font-size:34rpx;
  79. font-family:PingFang SC;
  80. font-weight:bold;
  81. color:rgba(65,65,76,1);
  82. }
  83. .li-header-search {
  84. flex: 1;
  85. padding: 12rpx 20rpx 14rpx 20rpx;
  86. background:#F6F5FB;
  87. border-radius: 100rpx;
  88. text-align: center;
  89. cursor: pointer;
  90. }
  91. .li-header-search-icon {
  92. width: 28rpx;
  93. height: 28rpx;
  94. margin-right: 14rpx;
  95. vertical-align: middle;
  96. }
  97. .li-header-search-text {
  98. font-size: 28rpx;
  99. color: #999;
  100. vertical-align: middle;
  101. }
  102. .li-btn-blue {
  103. font-size: 24rpx;
  104. color: rgba(103,163,255,1);
  105. padding: 8rpx 10rpx;
  106. border-radius: 8rpx;
  107. border: 2rpx solid rgba(103,163,255,1);
  108. margin-top: 20rpx;
  109. }
  110. .li-circles {
  111. position:absolute;
  112. left:10%;
  113. color:#333333;
  114. }
  115. .li-circle {
  116. width: 40rpx;
  117. height: 40rpx;
  118. margin: 40rpx 40rpx 40rpx 0rpx;
  119. }
  120. .li-circle-label {
  121. width:160rpx;
  122. height:32rpx;
  123. font-size:34rpx;
  124. font-family:PingFang SC;
  125. font-weight:bold;
  126. color:rgba(65,65,76,1);
  127. line-height:36rpx;
  128. }
  129. .scan {
  130. position: fixed;
  131. right: 30rpx;
  132. bottom: 360rpx;
  133. width: 128rpx;
  134. height: 128rpx;
  135. border-radius: 200rpx;
  136. background: rgba(0,183,255,1);
  137. box-shadow: 0rpx 0rpx 20rpx 0rpx rgba(0,175,243,0.5);
  138. opacity: 0.7;
  139. display: flex;
  140. flex-direction: column;
  141. justify-content: center;
  142. align-items: center;
  143. z-index: 9;
  144. }
  145. .scan-icon {
  146. width: 46rpx;
  147. height: 46rpx;
  148. }
  149. .scan-text {
  150. margin-top: 10rpx;
  151. font-size: 24rpx;
  152. color: #fff;
  153. }
  154. .home {
  155. position: fixed;
  156. right: 30rpx;
  157. bottom: 200rpx;
  158. width: 128rpx;
  159. height: 128rpx;
  160. border-radius: 200rpx;
  161. background: rgba(0,183,255,1);
  162. box-shadow: 0rpx 0rpx 20rpx 0rpx rgba(0,175,243,0.5);
  163. opacity: 0.7;
  164. display: flex;
  165. flex-direction: column;
  166. justify-content: center;
  167. align-items: center;
  168. z-index: 9;
  169. }
  170. .home-icon {
  171. width: 46rpx;
  172. height: 46rpx;
  173. }
  174. .home-text {
  175. margin-top: 10rpx;
  176. font-size: 24rpx;
  177. color: #fff;
  178. }
  179. .list-contet{
  180. margin-bottom:120rpx;
  181. }
  182. .footer-box{
  183. height:10%;
  184. }
  185. .footer-box-btn{
  186. color:#333333;
  187. width:167rpx;
  188. height:66rpx;
  189. line-height:66rpx;
  190. padding:10rpx;
  191. border-radius:44rpx;
  192. position:absolute;
  193. right:10%;
  194. text-align:center;
  195. background: #FFD76C;
  196. }
  197. page {
  198. background-color: #fff;
  199. }
  200. .load{
  201. color: #999999;
  202. font-size: 26rpx;
  203. text-align: center;
  204. height: 60rpx;
  205. line-height:60rpx;
  206. margin-bottom: 160rpx;
  207. background-color: rgba(243, 239, 239, 0.984);
  208. }
  209. .load-img{
  210. width: 40rpx;
  211. height: 40rpx;
  212. animation: loading 3s linear infinite;
  213. }
  214. @keyframes loading {
  215. 0% {
  216. transform: rotate(0deg);
  217. }
  218. 100% {
  219. transform: rotate(360deg);
  220. }
  221. }