create.css 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. /* miniprogram/pages/TUI-Group/create-group/create.wxss */
  2. .container {
  3. background: #EEF0F3;
  4. background-repeat: no-repeat;
  5. background-size: cover;
  6. width: 100vw;
  7. height: 100vh;
  8. display: flex;
  9. flex-direction: column;
  10. justify-content: flex-start;
  11. align-items: center;
  12. box-sizing: border-box;
  13. }
  14. .item {
  15. display: flex;
  16. width: 100%;
  17. justify-content: left;
  18. align-items: center;
  19. }
  20. .icon-box {
  21. display: flex;
  22. }
  23. .icon {
  24. color: red;
  25. padding-top: 34rpx;
  26. }
  27. .group-type {
  28. background: #FFFFFF;
  29. position: relative;
  30. width: 100%;
  31. height: 56px;
  32. padding-left: 20px;
  33. border-bottom: 1px solid #EEF0F3;
  34. border-top: 8px solid #FFFFFF;
  35. }
  36. .group-ID {
  37. background: #FFFFFF;
  38. position: relative;
  39. width: 100%;
  40. height: 56px;
  41. padding-left: 20px;
  42. border-bottom: 1px solid #EEF0F3;
  43. border-top: 8px solid #FFFFFF;
  44. }
  45. .listimage {
  46. width: 16px;
  47. height: 16px;
  48. position: absolute;
  49. top: 20px;
  50. right: 10px;
  51. }
  52. .group-name {
  53. background: #FFFFFF;
  54. display: flex;
  55. width: 100%;
  56. height: 56px;
  57. padding-left: 20px;
  58. border-bottom: 1px solid #EEF0F3;
  59. border-top: 8px solid #FFFFFF;
  60. }
  61. .aside-left {
  62. display: flex;
  63. align-items: center;
  64. float: left;
  65. font-family: PingFangSC-Regular;
  66. font-size: 16px;
  67. color: #333333;
  68. letter-spacing: 0;
  69. line-height: 56px;
  70. }
  71. .aside-right {
  72. font-family: PingFangSC-Regular;
  73. font-size: 16px;
  74. color: black;
  75. letter-spacing: 0;
  76. padding-left: 130px;
  77. line-height: 56px;
  78. z-index: 999;
  79. }
  80. .input {
  81. float: right;
  82. font-family: PingFangSC-Regular;
  83. font-size: 16px;
  84. color: #999999;
  85. letter-spacing: 0;
  86. text-align: right;
  87. line-height: 56px;
  88. padding-top: 19px;
  89. padding-right: 48px;
  90. width: 70%;
  91. /* z-index: 999; */
  92. }
  93. .inputname {
  94. font-family: PingFangSC-Regular;
  95. font-size: 16px;
  96. color: #999999;
  97. letter-spacing: 0;
  98. text-align: right;
  99. line-height: 56px;
  100. padding-left: 180rpx;
  101. padding-top: 19px;
  102. width: 50%;
  103. }
  104. .group-create {
  105. position: absolute;
  106. display: flex;
  107. justify-content: center;
  108. align-items: center;
  109. bottom: 100rpx;
  110. width: 670rpx;
  111. height: 96rpx;
  112. background: #006EFF;
  113. color: #FFFFFF;
  114. border-radius: 48rpx;
  115. border-radius: 48rpx;
  116. line-height: 44rpx;
  117. font-size: 32rpx;
  118. }
  119. .pop-mask {
  120. width: 100vw;
  121. height: 100vh;
  122. position: fixed;
  123. z-index: 10;
  124. top: 0;
  125. /* #ifdef H5 */
  126. top: calc(88rpx + constant(safe-area-inset-top));
  127. top: calc(88rpx + env(safe-area-inset-top));
  128. /* #endif */
  129. right: 0;
  130. background: rgba(0, 0, 0, 0.60);
  131. display: flex;
  132. align-items: flex-end;
  133. }
  134. .popup-main {
  135. width: 100vw;
  136. height: 30%;
  137. background: #FFFFFF;
  138. padding: 32px 20px;
  139. }
  140. .group-type-list {
  141. width: 100vw;
  142. height: 112rpx
  143. }
  144. .list-type {
  145. font-family: PingFangSC-Regular;
  146. font-size: 16px;
  147. color: #333333;
  148. letter-spacing: 0;
  149. line-height: 22px;
  150. }
  151. .type-active {
  152. color: #006EFF;
  153. }