create.css 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. .TUI-Create-conversation-container {
  2. width: 100vw;
  3. height: 100vh;
  4. background-color: #F4F5F9;
  5. }
  6. .tui-navigatorbar {
  7. position: absolute;
  8. top: 0;
  9. width: 750rpx;
  10. height: 176rpx;
  11. background-color: #006EFF;
  12. }
  13. .tui-navigatorbar-back {
  14. position: absolute;
  15. width: 48rpx;
  16. height: 48rpx;
  17. left: 24rpx;
  18. bottom: 20rpx;
  19. }
  20. .conversation-title {
  21. position: absolute;
  22. width: 350rpx;
  23. height: 88rpx;
  24. line-height: 56rpx;
  25. font-size: 36rpx;
  26. color: #FFFFFF;
  27. z-index: 100;
  28. bottom: 0;
  29. left: 200rpx;
  30. display: flex;
  31. justify-content: center;
  32. align-items: center;
  33. }
  34. .tui-search-area {
  35. position: absolute;
  36. top: 176rpx;
  37. width: 750rpx;
  38. background-color: #006EFF;
  39. }
  40. .tui-showID {
  41. padding-left: 80rpx;
  42. ine-height: 40rpx;
  43. font-size: 28rpx;
  44. color: white;
  45. height: 50rpx;
  46. padding-top: 18rpx;
  47. }
  48. .tui-search-bar {
  49. display: flex;
  50. flex-wrap: nowrap;
  51. align-items: center;
  52. margin-left: 40rpx;
  53. margin-top: 32rpx;
  54. width: 670rpx;
  55. height: 80rpx;
  56. background: #FFFFFF;
  57. border-radius: 40rpx;
  58. border-radius: 40rpx;
  59. }
  60. .tui-searchcion {
  61. display: inline-block;
  62. margin-left: 24rpx;
  63. width: 48rpx;
  64. height: 48rpx;
  65. }
  66. .tui-search-bar-input {
  67. margin-left: 16rpx;
  68. line-height: 40rpx;
  69. font-size: 28rpx;
  70. width: 100%;
  71. display: inline-block;
  72. }
  73. .tui-person-to-invite {
  74. position: absolute;
  75. top: 360rpx;
  76. display: flex;
  77. flex-wrap: nowrap;
  78. width: 750rpx;
  79. height: 150rpx;
  80. background-color: #FFFFFF;
  81. }
  82. .tui-normal-choose {
  83. margin-left: 40rpx;
  84. margin-right: 40rpx;
  85. margin-top: 52rpx;
  86. margin-bottom: 50rpx;
  87. width: 48rpx;
  88. height: 48rpx;
  89. }
  90. .tui-person-profile {
  91. width: 622rpx;
  92. display: flex;
  93. align-items: center;
  94. }
  95. .tui-person-profile-avatar {
  96. width: 96rpx;
  97. height: 96rpx;
  98. margin-right: 24rpx;
  99. }
  100. .tui-person-profile-nick {
  101. color: #333333;
  102. line-height: 50rpx;
  103. font-size: 36rpx;
  104. margin-bottom: 4rpx;
  105. }
  106. .tui-person-profile-userID {
  107. color: #999999;
  108. line-height: 40rpx;
  109. font-size: 28rpx;
  110. }
  111. .tui-confirm-btn {
  112. position: absolute;
  113. display: flex;
  114. justify-content: center;
  115. align-items: center;
  116. bottom: 100rpx;
  117. width: 670rpx;
  118. height: 96rpx;
  119. background: #006EFF;
  120. color: #FFFFFF;
  121. border-radius: 48rpx;
  122. border-radius: 48rpx;
  123. margin-left: 40rpx;
  124. line-height: 44rpx;
  125. font-size: 32rpx;
  126. }