cardList.wxss 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. /* pages/cardList/cardList.wxss */
  2. .card-view {
  3. position: relative;
  4. width: 700rpx;
  5. height: 300rpx;
  6. margin: 20rpx auto;
  7. }
  8. .bg-img {
  9. position: absolute;
  10. width: 700rpx;
  11. height: 300rpx;
  12. border-radius: 50rpx;
  13. }
  14. .card-detail {
  15. color: #FFF;
  16. width: 700rpx;
  17. height: 300rpx;
  18. position: absolute;
  19. top: 0;
  20. z-index: 2;
  21. display: flex;
  22. flex-wrap: wrap;
  23. }
  24. .schoolName {
  25. font-size: 24rpx;
  26. width: 100%;
  27. margin-bottom: 20rpx;
  28. line-height: 40rpx;
  29. height: 40rpx;
  30. text-align: center;
  31. border-bottom: 1px dashed #999;
  32. padding: 10rpx 0;
  33. color: #CCC;
  34. }
  35. .phone-view {
  36. font-size: 24rpx;
  37. text-align: center;
  38. }
  39. .callPhone-font {
  40. color: blue;
  41. }
  42. .card-other {
  43. position: relative;
  44. top: -50rpx;
  45. text-indent: 30rpx;
  46. height: 60rpx;
  47. width: 70%;
  48. font-size: 32rpx;
  49. }
  50. .toUse {
  51. width: 30%;
  52. text-align: center;
  53. position: relative;
  54. top: -30rpx;
  55. height: 50rpx;
  56. left: 20rpx;
  57. }
  58. .toUse view {
  59. border: 1px solid #FFF;
  60. width: 150rpx;
  61. height: 50rpx;
  62. line-height: 50rpx;
  63. border-radius: 150rpx;
  64. font-size: 28rpx;
  65. }
  66. .cardNum {
  67. line-height: 60rpx;
  68. font-size: 28rpx;
  69. }
  70. .card-scan {
  71. display: flex;
  72. font-size: 24rpx;
  73. margin-top: 10rpx;
  74. }
  75. .bottom-view {
  76. font-size: 24rpx;
  77. width: 100%;
  78. text-align: center;
  79. position: absolute;
  80. bottom: 10rpx;
  81. border-top: 1px dashed #999;
  82. padding: 10rpx 0;
  83. color: #CCC;
  84. }
  85. .loading-view {
  86. margin-top: 96rpx;
  87. padding-bottom: 100rpx;
  88. width: 100%;
  89. text-align: center;
  90. font-size: 24rpx;
  91. color: rgba(197, 197, 197, 1);
  92. }
  93. .tip-view {
  94. position: fixed;
  95. top: 0;
  96. line-height: 60rpx;
  97. width: 100%;
  98. background: #FFF;
  99. height: 60rpx;
  100. z-index: 99;
  101. }
  102. /* .card-list{
  103. padding-top: 60rpx;
  104. } */
  105. .title-box-view {
  106. display: flex;
  107. width: 750rpx;
  108. height: 80rpx;
  109. line-height: 80rpx;
  110. position: relative;
  111. background: #FFF;
  112. padding-bottom: 20rpx;
  113. }
  114. .title-box-view view {
  115. width: 50%;
  116. font-size: 32rpx;
  117. text-align: center;
  118. }
  119. .curTitle {
  120. /* color: #EC3A4E; */
  121. color: #cc6031;
  122. }
  123. .title-line {
  124. width: 64rpx;
  125. height: 4rpx;
  126. /* background: #EC3A4E; */
  127. background: #cc6031;
  128. position: absolute;
  129. margin-left: -32rpx;
  130. margin-top: -20rpx;
  131. }
  132. .piano-box {
  133. width: 700rpx;
  134. margin: 25rpx;
  135. box-shadow: 0 0 10rpx #eee;
  136. background: #FFF;
  137. border-radius: 10rpx;
  138. }
  139. .piano-title {
  140. font-size: 32rpx;
  141. height: 80rpx;
  142. line-height: 80rpx;
  143. width: 650rpx;
  144. margin: 0 25rpx;
  145. }
  146. .piano-line {
  147. width: 100%;
  148. height: 6rpx;
  149. background: #f1f1f1;
  150. margin-bottom: 20rpx;
  151. }
  152. .piano-msg {
  153. width: 650rpx;
  154. margin: 0 25rpx;
  155. display: flex;
  156. height: 240rpx;
  157. margin-bottom: 40rpx;
  158. }
  159. .piano-img {
  160. width: 240rpx;
  161. height: 180rpx;
  162. margin-right: 20rpx;
  163. }
  164. .piano-img image {
  165. width: 100%;
  166. height: 100%;
  167. border-radius: 10rpx;
  168. }
  169. .piano-detail view {
  170. height: 40rpx;
  171. margin-bottom: 8rpx;
  172. color: #666;
  173. }
  174. .piano-btn-view {
  175. position: relative;
  176. width: 100%;
  177. height: 60rpx;
  178. }
  179. .piano-btn {
  180. width: 200rpx;
  181. height: 60rpx;
  182. line-height: 60rpx;
  183. text-align: center;
  184. border: 1px solid #ccc;
  185. border-radius: 50rpx;
  186. position: absolute;
  187. top: -20rpx;
  188. right: 25rpx;
  189. }
  190. page {
  191. background: #F9F9F9;
  192. }