create.wxss 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  1. page {
  2. padding-bottom: 0 !important;
  3. overflow: hidden;
  4. }
  5. .box {
  6. display: flex;
  7. flex-direction: column;
  8. height: 100vh;
  9. overflow: hidden;
  10. }
  11. /* 群聊名称 */
  12. .group-name {
  13. display: flex;
  14. align-items: center;
  15. height: 84rpx;
  16. width: 100vw;
  17. background-color: #ffffff;
  18. flex-shrink: 0;
  19. }
  20. .group-name .name {
  21. position: relative;
  22. height: 44rpx;
  23. font-size: 32rpx;
  24. color: #000000;
  25. line-height: 44rpx;
  26. opacity: .47;
  27. margin-left: 40rpx;
  28. max-width: 630rpx;
  29. }
  30. .group-name .name input {
  31. position: absolute;
  32. width: 100%;
  33. height: 100%;
  34. top: 0;
  35. left: 0;
  36. background-color: #ffffff;
  37. }
  38. .group-name image {
  39. width: 26rpx;
  40. height: 32rpx;
  41. margin-left: 8rpx;
  42. }
  43. /* 搜索 */
  44. .search {
  45. display: flex;
  46. align-items: center;
  47. width: 100vw;
  48. height: 90rpx;
  49. background-color: #ffffff;
  50. margin-top: 10rpx;
  51. flex-shrink: 0;
  52. }
  53. .search image {
  54. width: 22rpx;
  55. height: 22rpx;
  56. margin: 0 6rpx 0 44rpx;
  57. }
  58. .search input {
  59. height: 40rpx;
  60. font-size: 28rpx;
  61. line-height: 40rpx;
  62. width: 635rpx;
  63. }
  64. /* 折叠面板 */
  65. .choose {
  66. flex: 1;
  67. display: flex;
  68. flex-direction: column;
  69. align-items: center;
  70. width: 100vw;
  71. background-color: #ffffff;
  72. margin-top: 10rpx;
  73. padding-top: 30rpx;
  74. }
  75. .choose .title {
  76. display: flex;
  77. align-items: center;
  78. width: 100vw;
  79. height: 44rpx;
  80. font-size: 32rpx;
  81. color: #000000;
  82. line-height: 44rpx;
  83. margin-bottom: 40rpx;
  84. padding-left: 40rpx;
  85. box-sizing: border-box;
  86. flex-shrink: 0;
  87. }
  88. .radio-group-class {
  89. margin-left: 20rpx;
  90. }
  91. .group-class {
  92. margin-top: 6rpx;
  93. }
  94. .van-radio-class {
  95. padding-left: 10rpx !important;
  96. font-size: 28rpx;
  97. font-weight: 400;
  98. color: #000000;
  99. opacity: .5;
  100. }
  101. .collapse-cus {
  102. width: 630rpx;
  103. margin: 0 auto;
  104. border: 0 !important;
  105. }
  106. .collapse-item {
  107. border: 0 !important;
  108. }
  109. .collapse-title {
  110. display: flex;
  111. align-items: center;
  112. height: 102rpx;
  113. font-size: 32rpx;
  114. color: #000000;
  115. }
  116. .collapse-icon {
  117. width: 28rpx;
  118. height: 28rpx;
  119. }
  120. /* 按钮 */
  121. .vanBut {
  122. width: 716rpx;
  123. height: 84rpx;
  124. background: #4BBECF !important;
  125. border-radius: 10rpx !important;
  126. border: 0 !important;
  127. font-size: 32rpx;
  128. font-family: PingFangSC-Medium, PingFang SC;
  129. color: #FFFFFF !important;
  130. flex-shrink: 0;
  131. margin-bottom: 60rpx;
  132. }
  133. /* 团队成员 */
  134. .user-list-custom {
  135. margin-bottom: 20rpx;
  136. }
  137. .user-list-checkbox {
  138. padding-left: 36rpx;
  139. }
  140. .user-item {
  141. display: flex;
  142. align-items: center;
  143. height: 70rpx;
  144. width: 500rpx;
  145. font-size: 32rpx;
  146. color: #000000;
  147. }
  148. .user-item image {
  149. width: 70rpx;
  150. height: 70rpx;
  151. border-radius: 50%;
  152. margin-right: 20rpx;
  153. }
  154. .all {
  155. position: absolute;
  156. height: 60rpx;
  157. display: flex;
  158. align-items: center;
  159. bottom: 0;
  160. left: 40rpx;
  161. width: 100%;
  162. background-color: #ffffff;
  163. }