index.scss 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. @import "../../components/My_card/index.scss";
  2. page {
  3. padding: 0 !important;
  4. overflow: hidden !important;
  5. }
  6. .user-item {
  7. display: flex;
  8. padding: 20rpx 30rpx;
  9. .user-img {
  10. display: flex;
  11. align-items: center;
  12. height: 130rpx;
  13. }
  14. .details {
  15. width: 507rpx;
  16. min-height: 130rpx;
  17. margin-left: 30rpx;
  18. .user-name {
  19. display: flex;
  20. height: 42rpx !important;
  21. font-size: 30rpx;
  22. font-family: PingFang SC-Bold, PingFang SC;
  23. font-weight: bold;
  24. color: #333333;
  25. .line-1 {
  26. max-width: 250rpx;
  27. }
  28. .position {
  29. font-size: 24rpx;
  30. font-family: PingFang SC-Bold, PingFang SC;
  31. font-weight: bold;
  32. color: #333333;
  33. margin-top: 6rpx;
  34. margin-left: 30rpx;
  35. }
  36. .icon {
  37. flex: 1;
  38. .iconfont {
  39. float: right;
  40. margin-top: 4rpx;
  41. }
  42. }
  43. }
  44. .base-msg {
  45. margin-top: 10rpx;
  46. min-height: 34rpx;
  47. line-height: 34rpx;
  48. font-size: 24rpx;
  49. font-family: PingFang SC-Regular, PingFang SC;
  50. color: #666666;
  51. .tag {
  52. margin-right: 4rpx;
  53. }
  54. .iconfont {
  55. margin-left: 60rpx;
  56. color: var(--assist);
  57. font-size: 26rpx;
  58. }
  59. }
  60. }
  61. }
  62. /* 角色 */
  63. .role-item {
  64. padding: 20rpx 30rpx;
  65. display: flex;
  66. justify-content: space-between;
  67. .role-l {
  68. height: 86rpx;
  69. width: 580rpx;
  70. .first-line {
  71. height: 42rpx;
  72. .label {
  73. display: inline-block;
  74. max-width: 250rpx;
  75. font-size: 30rpx;
  76. font-family: PingFang SC-Bold, PingFang SC;
  77. font-weight: bold;
  78. color: #333333;
  79. }
  80. .role {
  81. display: inline-block;
  82. max-width: 250rpx;
  83. font-size: 24rpx;
  84. font-family: PingFang SC-Regular, PingFang SC;
  85. color: #333333;
  86. margin-left: 20rpx;
  87. }
  88. }
  89. .creator {
  90. font-size: 24rpx;
  91. font-family: PingFang SC-Regular, PingFang SC;
  92. color: #666666;
  93. margin-top: 10rpx;
  94. }
  95. }
  96. .role-r {
  97. display: flex;
  98. align-items: center;
  99. height: 86rpx;
  100. width: 30rpx;
  101. text {
  102. font-size: 28rpx;
  103. }
  104. }
  105. }
  106. /* 订单 */
  107. .orderForm {
  108. position: relative;
  109. padding: 20rpx 30rpx;
  110. .label {
  111. line-height: 42rpx;
  112. font-size: 30rpx;
  113. font-family: PingFang SC-Bold, PingFang SC;
  114. font-weight: bold;
  115. color: #333333;
  116. margin-top: 0rpx;
  117. }
  118. view {
  119. line-height: 34rpx;
  120. font-size: 24rpx;
  121. color: #666666;
  122. margin-top: 10rpx;
  123. .price {
  124. color: #FF3B30;
  125. }
  126. }
  127. .status {
  128. display: block;
  129. position: absolute;
  130. top: 20rpx;
  131. right: 30rpx;
  132. width: 96rpx;
  133. height: 36rpx;
  134. line-height: 36rpx;
  135. text-align: center;
  136. border-radius: 4rpx;
  137. font-size: 20rpx;
  138. color: #FFFFFF;
  139. }
  140. }
  141. /* 吸底 */
  142. .footer {
  143. position: fixed;
  144. width: 100vw;
  145. text-align: center;
  146. padding: 20rpx 0;
  147. background-color: #ffffff;
  148. bottom: 0;
  149. .add-but {
  150. width: 500rpx;
  151. height: 90rpx;
  152. border-radius: 45rpx;
  153. }
  154. }