index.css 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363
  1. .group-information-box {
  2. width: 100vw;
  3. background: #006EFF;
  4. }
  5. .group-box {
  6. display: inline-flex;
  7. width: 100%;
  8. box-sizing: border-box;
  9. padding: 34rpx 40rpx;
  10. }
  11. .group-ID {
  12. flex: 1;
  13. max-width: 50%;
  14. color: white;
  15. display: inline-block;
  16. text-overflow: ellipsis;
  17. white-space: nowrap;
  18. overflow: hidden;
  19. }
  20. .group-member {
  21. padding-left: 110rpx;
  22. color: white;
  23. }
  24. .icon-right {
  25. float: right;
  26. width: 32rpx;
  27. height: 32rpx;
  28. padding-top: 10rpx;
  29. padding-left: 4rpx;
  30. }
  31. .showdetail {
  32. display: flex;
  33. width: 100vw;
  34. height: 200rpx;
  35. background: #006EFF;
  36. }
  37. .box {
  38. width: 100rpx;
  39. height: 130rpx;
  40. padding-left: 35rpx;
  41. padding-top: 10rpx;
  42. display: flex;
  43. flex-direction: column;
  44. justify-content: center;
  45. align-items: center;
  46. }
  47. .left-box {
  48. display: flex;
  49. padding-left: 200rpx;
  50. padding-top: 10rpx;
  51. width: 250rpx;
  52. }
  53. .box-group {
  54. position: absolute;
  55. width: 80rpx;
  56. height: 80rpx;
  57. right: 160rpx;
  58. }
  59. .box-group-quit {
  60. position: absolute;
  61. right: 80rpx;
  62. width: 80rpx;
  63. height: 80rpx;
  64. }
  65. .quitgroup {
  66. display: block;
  67. width: 80rpx;
  68. height: 80rpx;
  69. padding-left: 28rpx;
  70. }
  71. .addmember {
  72. display: block;
  73. width: 80rpx;
  74. height: 80rpx;
  75. }
  76. .profile-box {
  77. width: 80rpx;
  78. height: 80rpx;
  79. flex-shrink: 0;
  80. z-index: 999
  81. }
  82. .addmember-text {
  83. display: flex;
  84. justify-content: center;
  85. align-items: center;
  86. font-family: PingFangSC-Regular;
  87. font-size: 10px;
  88. color: #FFFFFF;
  89. letter-spacing: 0;
  90. }
  91. .quitgroup-text {
  92. display: flex;
  93. justify-content: center;
  94. align-items: center;
  95. font-family: PingFangSC-Regular;
  96. font-size: 10px;
  97. color: #FFFFFF;
  98. letter-spacing: 0;
  99. padding-left: 20rpx;
  100. width: 100rpx;
  101. }
  102. .nick-box {
  103. margin-top: 10px;
  104. display: flex;
  105. justify-content: center;
  106. align-items: center;
  107. font-family: PingFangSC-Regular;
  108. font-size: 10px;
  109. color: #FFFFFF;
  110. letter-spacing: 0;
  111. white-space: nowrap;
  112. text-overflow: ellipsis;
  113. overflow: hidden;
  114. width: 100%;
  115. }
  116. .popup-mask {
  117. width: 100vw;
  118. height: 100vh;
  119. position: fixed;
  120. z-index: 10;
  121. top: 0;
  122. /* #ifdef H5 */
  123. top: calc(88rpx + constant(safe-area-inset-top));
  124. top: calc(88rpx + env(safe-area-inset-top));
  125. /* #endif */
  126. right: 0;
  127. background: rgba(0, 0, 0, 0.60);
  128. display: flex;
  129. align-items: flex-end;
  130. }
  131. .pop-main {
  132. max-height: 60%;
  133. width: 100%;
  134. padding-bottom: 120rpx;
  135. background: #FFFFFF;
  136. overflow: auto
  137. }
  138. .group-member-text {
  139. display: inline-block;
  140. padding-top: 40rpx;
  141. padding-left: 40rpx;
  142. opacity: 0.8;
  143. font-family: PingFangSC-Medium;
  144. font-size: 18px;
  145. letter-spacing: 0;
  146. line-height: 25px;
  147. }
  148. .close {
  149. padding-left: 460rpx;
  150. font-family: PingFangSC-Regular;
  151. font-size: 18px;
  152. color: #2B8BD5;
  153. letter-spacing: 0;
  154. line-height: 24px;
  155. }
  156. .quitpop-mask {
  157. width: 100vw;
  158. height: 100vh;
  159. position: fixed;
  160. z-index: 10;
  161. top: 0;
  162. /* #ifdef H5 */
  163. top: calc(88rpx + constant(safe-area-inset-top));
  164. top: calc(88rpx + env(safe-area-inset-top));
  165. /* #endif */
  166. right: 0;
  167. background: rgba(0, 0, 0, 0.60);
  168. display: flex;
  169. align-items: flex-end;
  170. }
  171. .quitpop {
  172. position: fixed;
  173. bottom: 0;
  174. width: 100%;
  175. height: 25%;
  176. background: #FFFFFF;
  177. z-index: 99999;
  178. }
  179. .text-box {
  180. display: flex;
  181. justify-content: center;
  182. align-items: center;
  183. height: 112rpx;
  184. }
  185. .confirmQuitgroup-text {
  186. display: inline-block;
  187. opacity: 0.4;
  188. font-family: PingFangSC-Regular;
  189. font-size: 14px;
  190. letter-spacing: 0;
  191. text-align: center;
  192. line-height: 18px;
  193. }
  194. .quitgroup-confirm {
  195. font-family: PingFangSC-Regular;
  196. font-size: 16px;
  197. color: #E85454;
  198. letter-spacing: 0;
  199. text-align: center;
  200. line-height: 22px;
  201. }
  202. .quitgroup-abandon {
  203. opacity: 0.8;
  204. font-family: PingFangSC-Regular;
  205. font-size: 16px;
  206. letter-spacing: 0;
  207. text-align: center;
  208. line-height: 22px;
  209. }
  210. .mask {
  211. position: absolute;
  212. top: 450rpx;
  213. left: 100rpx;
  214. width: 70%;
  215. height: 20%;
  216. background: #999999;
  217. z-index: 999;
  218. }
  219. .popup {
  220. background: #ffffff;
  221. border: 1px solid #eeeeee;
  222. }
  223. .popup-main {
  224. height: 56px;
  225. padding: 60rpx 0;
  226. text-align: center;
  227. font-family: PingFangSC-Regular;
  228. font-size: 14px;
  229. color: #999999;
  230. letter-spacing: 0;
  231. text-align: center;
  232. line-height: 18px;
  233. }
  234. .input-box {
  235. padding-top: 30rpx;
  236. }
  237. .popup-footer {
  238. display: flex;
  239. }
  240. .popup-footer-button {
  241. flex: 1;
  242. }
  243. .popup-footer .cancel {
  244. font-family: PingFangSC-Regular;
  245. font-size: 14px;
  246. color: #000000;
  247. letter-spacing: 0;
  248. text-align: center;
  249. line-height: 22px;
  250. height: 44px;
  251. }
  252. .popup-footer .submit {
  253. font-family: PingFangSC-Regular;
  254. font-size: 14px;
  255. color: #E85454;
  256. letter-spacing: 0;
  257. text-align: center;
  258. line-height: 22px;
  259. height: 44px;
  260. }
  261. .cancellation {
  262. margin-top: 68px;
  263. margin-left: 20px;
  264. margin-right: 20px;
  265. background-color: white;
  266. width: 280px;
  267. height: 46px;
  268. border: 1px solid #E85454;
  269. border-radius: 24px;
  270. border-radius: 24px;
  271. }
  272. .confirm-cancellation {
  273. margin-left: 110px;
  274. margin-top: 13px;
  275. font-family: PingFangSC-Regular;
  276. font-size: 16px;
  277. color: #E85454;
  278. letter-spacing: 0;
  279. }
  280. .image-list {
  281. padding-top: 40rpx;
  282. display: flex;
  283. flex-wrap: wrap;
  284. }
  285. .image-nick-box {
  286. width: 108rpx;
  287. height: 140rpx;
  288. padding-left: 32rpx;
  289. padding-top: 32rpx;
  290. }
  291. .image-box {
  292. width: 108rpx;
  293. height: 108rpx;
  294. padding-left: 32rpx;
  295. border-radius: 4px;
  296. border-radius: 4px;
  297. }
  298. .groupmembername {
  299. display: inline-block;
  300. font-family: PingFangSC-Regular;
  301. font-size: 12px;
  302. color: #999999;
  303. letter-spacing: 0;
  304. padding-left: 32rpx;
  305. white-space: nowrap;
  306. text-overflow: ellipsis;
  307. overflow: hidden;
  308. width: 80rpx;
  309. }
  310. .text-box-qiut {
  311. display: flex;
  312. justify-content: center;
  313. align-items: center;
  314. height: 112rpx;
  315. }
  316. .text-box-cancle {
  317. display: flex;
  318. justify-content: center;
  319. align-items: center;
  320. height: 112rpx;
  321. border-top: 16rpx solid #eeeeee;
  322. }