index.scss 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  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. 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. height: 34rpx;
  47. line-height: 34rpx;
  48. font-size: 24rpx;
  49. font-family: PingFang SC-Regular, PingFang SC;
  50. color: #666666;
  51. .iconfont {
  52. margin-left: 60rpx;
  53. color: var(--assist);
  54. font-size: 26rpx;
  55. }
  56. }
  57. }
  58. }
  59. /* 角色 */
  60. .role-item {
  61. padding: 20rpx 30rpx;
  62. display: flex;
  63. justify-content: space-between;
  64. .role-l {
  65. height: 86rpx;
  66. width: 580rpx;
  67. .first-line {
  68. height: 42rpx;
  69. .label {
  70. display: inline-block;
  71. max-width: 250rpx;
  72. font-size: 30rpx;
  73. font-family: PingFang SC-Bold, PingFang SC;
  74. font-weight: bold;
  75. color: #333333;
  76. }
  77. .role {
  78. display: inline-block;
  79. max-width: 250rpx;
  80. font-size: 24rpx;
  81. font-family: PingFang SC-Regular, PingFang SC;
  82. color: #333333;
  83. margin-left: 20rpx;
  84. }
  85. }
  86. .creator {
  87. font-size: 24rpx;
  88. font-family: PingFang SC-Regular, PingFang SC;
  89. color: #666666;
  90. margin-top: 10rpx;
  91. }
  92. }
  93. .role-r {
  94. display: flex;
  95. align-items: center;
  96. height: 86rpx;
  97. width: 30rpx;
  98. text {
  99. font-size: 28rpx;
  100. }
  101. }
  102. }
  103. /* 订单 */
  104. .orderForm {
  105. position: relative;
  106. padding: 20rpx 30rpx;
  107. .label {
  108. line-height: 42rpx;
  109. font-size: 30rpx;
  110. font-family: PingFang SC-Bold, PingFang SC;
  111. font-weight: bold;
  112. color: #333333;
  113. margin-top: 0rpx;
  114. }
  115. view {
  116. line-height: 34rpx;
  117. font-size: 24rpx;
  118. color: #666666;
  119. margin-top: 10rpx;
  120. .price {
  121. color: #FF3B30;
  122. }
  123. }
  124. .status {
  125. display: block;
  126. position: absolute;
  127. top: 20rpx;
  128. right: 30rpx;
  129. width: 96rpx;
  130. height: 36rpx;
  131. line-height: 36rpx;
  132. text-align: center;
  133. border-radius: 4rpx;
  134. font-size: 20rpx;
  135. color: #FFFFFF;
  136. }
  137. }
  138. /* 吸底 */
  139. .footer {
  140. position: fixed;
  141. width: 100vw;
  142. text-align: center;
  143. padding: 20rpx 0;
  144. background-color: #ffffff;
  145. bottom: 0;
  146. .add-but {
  147. width: 500rpx;
  148. height: 90rpx;
  149. border-radius: 45rpx;
  150. }
  151. }