index.scss 3.5 KB

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