home.wxss 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. Page {
  2. background-color: #f8f9fa;
  3. }
  4. .banner {
  5. display: block;
  6. width: 100%;
  7. height: 400rpx;
  8. }
  9. button::after {
  10. display: none;
  11. }
  12. .mate-wrap {
  13. padding-top: 200rpx;
  14. }
  15. .roommate-item {
  16. height: 108rpx;
  17. background: rgba(255, 255, 255, 1);
  18. border-radius: 50rpx;
  19. border: 1rpx solid rgba(232, 232, 232, 1);
  20. line-height: 108rpx;
  21. margin-bottom: 30rpx;
  22. font-size: 30rpx;
  23. color: #333;
  24. padding-left: 30rpx;
  25. }
  26. .roommate-item .icon {
  27. margin-right: 10rpx;
  28. font-size: 32rpx;
  29. }
  30. .card-content {
  31. display: flex;
  32. flex-direction: row;
  33. flex-wrap: wrap;
  34. justify-content: space-between;
  35. background-color: #fff;
  36. padding: 40rpx;
  37. margin-bottom: 16rpx;
  38. }
  39. .account-content {
  40. background: #fff;
  41. /* padding: 0 40rpx; */
  42. }
  43. .account-content .tag {
  44. width: 12rpx;
  45. height: 8rpx;
  46. }
  47. .account-content .name {
  48. font-size: 32rpx;
  49. font-weight: bold;
  50. padding: 28rpx 0;
  51. border-bottom: 1px solid #fafafa;
  52. }
  53. .account-content .time {
  54. font-size: 28rpx;
  55. color: #999;
  56. margin-left: 16rpx;
  57. }
  58. .account-content .item-content {
  59. flex-wrap: wrap;
  60. }
  61. .account-content .item {
  62. width: 50%;
  63. padding: 24rpx 0;
  64. box-sizing: border-box;
  65. text-align: center;
  66. }
  67. .account-content .item:nth-child(2n+1) {
  68. border-right: 2rpx solid #fafafa;
  69. }
  70. .account-content .item .title {
  71. font-size: 24rpx;
  72. color: #666;
  73. margin-top: 8rpx;
  74. }
  75. .account-content .item .num {
  76. font-size: 40rpx;
  77. color: #000;
  78. }
  79. .mask {
  80. position: fixed;
  81. top: 0;
  82. left: 0;
  83. bottom: 0;
  84. right: 0;
  85. background: rgba(0, 0, 0, 0.5);
  86. z-index: 9999999;
  87. }
  88. .canvas-conatiner {
  89. visibility: hidden;
  90. height: auto;
  91. background-color: transparent;
  92. }
  93. .mask-inner {
  94. position: fixed;
  95. left: 0;
  96. z-index: 19999999;
  97. bottom: 0rpx;
  98. right: 0;
  99. }
  100. .mask-inner button::before,
  101. .mask-inner button::after {
  102. display: none;
  103. }
  104. .mask-inner button {
  105. background: none;
  106. border: none;
  107. font-size: 32rpx;
  108. }
  109. .inner-item {
  110. background: #fff;
  111. font-size: 32rpx;
  112. text-align: center;
  113. line-height: 100rpx;
  114. display: flex;
  115. align-items: center;
  116. justify-content: center;
  117. height: 100rpx;
  118. border-bottom: 1px solid #f8f8f8;
  119. }
  120. .mask-hide {
  121. border-top: 5px solid rgba(0, 0, 0, 0.2);
  122. }
  123. .post-img {
  124. margin: 30rpx 30rpx 30rpx;
  125. width: 690rpx;
  126. height: 853rpx;
  127. }
  128. .post-qr-img {
  129. margin: 75rpx 75rpx 30rpx 75rpx;
  130. width: 600rpx;
  131. height: 600rpx;
  132. }
  133. .btns-content-row {
  134. display: flex;
  135. flex-direction: row;
  136. align-items: center;
  137. justify-content: space-between;
  138. margin: 0 30rpx;
  139. }
  140. .btns-content-col {
  141. display: flex;
  142. flex-direction: column;
  143. align-items: center;
  144. margin: 0 30rpx;
  145. }
  146. .btns-content-row .btn,
  147. .btns-content-col .btn {
  148. font-size: 40rpx;
  149. font-family: PingFangSC-Medium;
  150. font-weight: 500;
  151. color: rgba(255, 255, 255, 1);
  152. line-height: 100rpx;
  153. height: 100rpx;
  154. border-radius: 10rpx;
  155. flex: 1;
  156. }
  157. .btns-content-col .btn {
  158. width: 600rpx;
  159. }
  160. .btns-content-row .cancel-btn,
  161. .btns-content-col .cancel-btn {
  162. background: rgba(26, 32, 49, 1);
  163. border-color: rgba(26, 32, 49, 1);
  164. }
  165. .btns-content-row .save-btn,
  166. .btns-content-col .save-btn {
  167. background: rgba(255, 100, 58, 1);
  168. }
  169. .btns-content-row .save-btn {
  170. margin-left: 28rpx;
  171. }
  172. .loading-img {
  173. margin: auto;
  174. height: 120rpx;
  175. width: 90rpx;
  176. display: block;
  177. }