book_month.wxss 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. /* president/pages/book_inventory/book_inventory.wxss */
  2. @import '../../../templates/nodata/nodata.wxss';
  3. @import '../../../templates/footer/footer.wxss';
  4. @import '../../../templates/loading/loading.wxss';
  5. .header {
  6. padding: 20rpx 30rpx;
  7. background: #F5F5F5;
  8. }
  9. .header-items {
  10. /* padding: 15rpx 30rpx; */
  11. background: #F5F5F5;
  12. border-radius: 18rpx;
  13. display:inline-block;
  14. /* margin-bottom: 40rpx; */
  15. }
  16. .li{
  17. padding: 0 !important;
  18. margin-top: 50rpx !important;
  19. }
  20. .month{
  21. background:rgba(255,255,255,1);
  22. border-radius:18rpx;
  23. color: #333333;
  24. font-size: 30rpx;
  25. height: 98rpx;
  26. line-height: 98rpx;
  27. display: flex;
  28. justify-content: space-between;
  29. margin: 20rpx;
  30. padding: 0 20rpx;
  31. }
  32. .header-item {
  33. margin: 16rpx;
  34. position: relative;
  35. padding-left: 20rpx;
  36. }
  37. .header-item::after {
  38. position: absolute;
  39. content: '';
  40. bottom: 14rpx;
  41. left: -10rpx;
  42. width: 10rpx;
  43. height: 10rpx;
  44. border-radius: 50%;
  45. background: #00B7FF
  46. }
  47. .header-item-active {
  48. padding-left: 20rpx;
  49. }
  50. .header-item-active::after {
  51. position: absolute;
  52. content: '';
  53. bottom: 14rpx;
  54. left: -10rpx;
  55. width: 10rpx;
  56. height: 10rpx;
  57. border-radius: 50%;
  58. background: #FF542B
  59. }
  60. .header-item-text {
  61. color: #333333;
  62. font-size: 34rpx;
  63. margin-right: 20rpx;
  64. }
  65. .header-item-num {
  66. color: #999999;
  67. font-size: 30rpx;
  68. }
  69. .header-item-num-active {
  70. color: #FF542B;
  71. }
  72. .apply-items{
  73. position:absolute;
  74. right:0;
  75. display:inline-block;
  76. text-align:center;
  77. height:60rpx;
  78. line-height:60rpx;
  79. width:200rpx;
  80. color:#9A5B11;
  81. background: linear-gradient(#FFD76C, #FFB424);
  82. border-radius: 34rpx 0rpx 0rpx 34rpx;
  83. padding:7rpx 0 7rpx 30rpx;
  84. }
  85. .linkicon-image{
  86. width:14rpx;
  87. height:24rpx;
  88. margin:auto 15rpx;
  89. }
  90. .list-btn {
  91. width: 100%;
  92. height: 88rpx;
  93. background: linear-gradient(90deg,rgba(81,206,255,1) 0%,rgba(0,183,255,1) 100%);
  94. line-height: 88rpx;
  95. text-align: center;
  96. color: #fff;
  97. font-size: 32rpx;
  98. position: fixed;
  99. bottom: 98rpx;
  100. left: 0;
  101. opacity: 0.9;
  102. z-index: 99;
  103. }
  104. .nav{
  105. background: linear-gradient(90deg,rgba(81,206,255,1) 0%,rgba(0,183,255,1) 100%);
  106. opacity: 0.9;
  107. color:#fff;
  108. position:fixed;
  109. bottom:100rpx;
  110. width:100%;
  111. z-index:99;
  112. }
  113. .nav-item-text-active {
  114. color:#fff;
  115. }
  116. .recommended-icon{
  117. width:50rpx;
  118. height:50rpx;
  119. }
  120. .book-footer {
  121. margin-top:65px;
  122. margin-right: 20rpx;
  123. display:flex;
  124. justify-content:space-between;
  125. align-items:center;
  126. }
  127. .book-images {
  128. top:-28rpx;
  129. position: relative;
  130. }
  131. .book-content{
  132. padding:15rpx;
  133. }
  134. .li-right-tips-items{
  135. margin: 10rpx 0;
  136. }
  137. .model-tips{
  138. width:436rpx;
  139. background:rgba(255,255,255,1);
  140. border-radius:10rpx;
  141. margin: auto;
  142. padding: 34rpx;
  143. position: fixed;
  144. top: 500rpx;
  145. left: 149rpx;
  146. }
  147. .model-tips-btn{
  148. width:182rpx;
  149. height:62rpx;
  150. background:linear-gradient(90deg,rgba(81,206,255,1) 0%,rgba(0,183,255,1) 100%);
  151. border-radius:36rpx;
  152. color: #fff;
  153. font-size: 28rpx;
  154. margin:auto;
  155. margin-top: 30rpx;
  156. line-height: 62rpx;
  157. }
  158. .model-grade{
  159. width:49rpx;
  160. height:87rpx;
  161. position: fixed;
  162. top: 143rpx;
  163. left: 218rpx;
  164. }
  165. .load{
  166. color: #999999;
  167. font-size: 26rpx;
  168. text-align: center;
  169. margin: 30rpx;
  170. }
  171. .load-img{
  172. width: 40rpx;
  173. height: 40rpx;
  174. animation: loading 3s linear infinite;
  175. }
  176. @keyframes loading {
  177. 0% {
  178. transform: rotate(0deg);
  179. }
  180. 100% {
  181. transform: rotate(360deg);
  182. }
  183. }