index.scss 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. .group-item {
  2. height: 124rpx;
  3. width: 100vw;
  4. background-color: #ffffff;
  5. padding-left: 30rpx;
  6. box-sizing: border-box;
  7. .main {
  8. display: flex;
  9. width: 100%;
  10. height: 100%;
  11. border-bottom: 1px solid #ddd;
  12. padding: 20rpx 0rpx;
  13. box-sizing: border-box;
  14. .portrait {
  15. position: relative;
  16. width: 80rpx;
  17. height: 80rpx;
  18. font-size: 0;
  19. flex-shrink: 0;
  20. margin-right: 30rpx;
  21. .iconfont {
  22. position: absolute;
  23. color: #F5D400;
  24. bottom: 0;
  25. right: 0;
  26. font-size: 26rpx;
  27. }
  28. image,
  29. .alt {
  30. width: 100%;
  31. height: 100%;
  32. border-radius: 50%;
  33. }
  34. .alt {
  35. line-height: 80rpx;
  36. text-align: center;
  37. font-size: 28rpx;
  38. font-family: PingFang SC-Regular, PingFang SC;
  39. color: #FFFFFF;
  40. background: #3874F6;
  41. }
  42. }
  43. .content {
  44. flex: 1;
  45. width: 0;
  46. .title {
  47. width: 100%;
  48. height: 42rpx;
  49. line-height: 42rpx;
  50. font-size: 30rpx;
  51. font-family: PingFang SC-Regular, PingFang SC;
  52. color: #333333;
  53. }
  54. .role {
  55. width: 100%;
  56. height: 34rpx;
  57. line-height: 34rpx;
  58. font-size: 24rpx;
  59. font-family: PingFang SC-Regular, PingFang SC;
  60. color: #999999;
  61. margin-top: 8rpx;
  62. }
  63. }
  64. .delete-box {
  65. flex-shrink: 0;
  66. color: #999999;
  67. font-size: 32rpx;
  68. padding: 0 30rpx;
  69. }
  70. }
  71. }
  72. .van-swipe-cell__right {
  73. width: 400rpx;
  74. display: flex;
  75. flex: 1;
  76. navigator {
  77. height: 124rpx;
  78. display: flex;
  79. align-items: center;
  80. justify-content: center;
  81. font-size: 28rpx;
  82. font-family: PingFang SC, PingFang SC;
  83. color: #FFFFFF;
  84. }
  85. .edit {
  86. flex: 1;
  87. background-color: #F29C37;
  88. }
  89. .delete {
  90. width: 160rpx;
  91. background-color: #FF3B30;
  92. }
  93. }
  94. .popup-title {
  95. font-size: 28rpx;
  96. font-family: PingFang SC, PingFang SC;
  97. color: #333333;
  98. text-align: center;
  99. width: 100%;
  100. font-weight: bold;
  101. padding: 30rpx 0;
  102. }
  103. .popup-explain {
  104. height: 34rpx;
  105. font-size: 24rpx;
  106. font-family: PingFang SC, PingFang SC;
  107. color: #888888;
  108. margin-left: 30rpx;
  109. }
  110. .popup-item {
  111. width: 100%;
  112. box-sizing: border-box;
  113. padding: 30rpx;
  114. .label {
  115. display: flex;
  116. font-size: 28rpx;
  117. font-family: PingFang SC, PingFang SC;
  118. color: #333333;
  119. font-weight: bold;
  120. }
  121. .value {
  122. font-size: 24rpx;
  123. font-family: PingFang SC, PingFang SC;
  124. color: #888888;
  125. margin-top: 10rpx;
  126. margin-left: 50rpx;
  127. }
  128. }
  129. .button-box {
  130. display: flex;
  131. justify-content: space-between;
  132. width: 690rpx;
  133. margin: 30rpx auto 30rpx;
  134. .but {
  135. width: 328rpx;
  136. height: 90rpx;
  137. border-radius: 8rpx;
  138. font-size: 28rpx;
  139. }
  140. .cancel {
  141. background: #FFFFFF;
  142. border: 1rpx solid #CCCCCC;
  143. color: #666666;
  144. }
  145. .confirm {
  146. background: #3874F6;
  147. color: #fff;
  148. border: 0;
  149. }
  150. }