sweeped_books.wxss 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  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: 34rpx;
  9. color: rgba(51, 51, 51, 1);
  10. margin-right: 20rpx;
  11. }
  12. .list-title-gray {
  13. font-size: 30rpx;
  14. color: rgba(153, 153, 153, 1);
  15. }
  16. .li {
  17. display: flex;
  18. justify-content: flex-start;
  19. align-items: flex-start;
  20. margin: 50rpx auto;
  21. padding: 0;
  22. }
  23. .li-box {
  24. position: relative;
  25. width: 154rpx;
  26. min-height: 158rpx;
  27. }
  28. .li-img {
  29. position: absolute;
  30. top: -20rpx;
  31. left: 0;
  32. width: 154rpx;
  33. height: 178rpx;
  34. background: white;
  35. }
  36. .li-col {
  37. margin: 20rpx 30rpx;
  38. flex: 1;
  39. display: flex;
  40. flex-direction: column;
  41. justify-content: flex-start;
  42. align-items: flex-start;
  43. }
  44. .li-text-blue {
  45. color: #00B7FF;
  46. font-size: 32rpx;
  47. margin-right: 10rpx;
  48. }
  49. .li-text-yellow {
  50. color: #FF6464;
  51. font-size: 32rpx;
  52. margin-right: 10rpx;
  53. }
  54. .li-text-red {
  55. color: #FF80A8;
  56. font-size: 32rpx;
  57. }
  58. .li-text-gray {
  59. font-size: 30rpx;
  60. color: #666;
  61. }
  62. .li-text-black {
  63. font-size: 34rpx;
  64. color: #333;
  65. flex: 1;
  66. }
  67. .li-btn-blue {
  68. font-size: 24rpx;
  69. color: rgba(103,163,255,1);
  70. padding: 8rpx 10rpx;
  71. border-radius: 8rpx;
  72. border: 2rpx solid rgba(103,163,255,1);
  73. margin-top: 20rpx;
  74. }
  75. .li-circle {
  76. width: 40rpx;
  77. height: 40rpx;
  78. margin: 40rpx 30rpx;
  79. }
  80. .li-circle-label {
  81. font-size: 30rpx;
  82. color: #ccc;
  83. margin-right: 30rpx;
  84. }
  85. .scan {
  86. position: fixed;
  87. right: 30rpx;
  88. bottom: 360rpx;
  89. width: 128rpx;
  90. height: 128rpx;
  91. border-radius: 200rpx;
  92. background: rgba(0,183,255,1);
  93. box-shadow: 0rpx 0rpx 20rpx 0rpx rgba(0,175,243,0.5);
  94. opacity: 0.7;
  95. display: flex;
  96. flex-direction: column;
  97. justify-content: center;
  98. align-items: center;
  99. z-index: 9;
  100. }
  101. .scan-icon {
  102. width: 46rpx;
  103. height: 46rpx;
  104. }
  105. .scan-text {
  106. margin-top: 10rpx;
  107. font-size: 24rpx;
  108. color: #fff;
  109. }
  110. .home {
  111. position: fixed;
  112. right: 30rpx;
  113. bottom: 200rpx;
  114. width: 128rpx;
  115. height: 128rpx;
  116. border-radius: 200rpx;
  117. background: rgba(0,183,255,1);
  118. box-shadow: 0rpx 0rpx 20rpx 0rpx rgba(0,175,243,0.5);
  119. opacity: 0.7;
  120. display: flex;
  121. flex-direction: column;
  122. justify-content: center;
  123. align-items: center;
  124. z-index: 9;
  125. }
  126. .home-icon {
  127. width: 46rpx;
  128. height: 46rpx;
  129. }
  130. .home-text {
  131. margin-top: 10rpx;
  132. font-size: 24rpx;
  133. color: #fff;
  134. }