index.css 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  1. body {
  2. margin: 0;
  3. padding: 0;
  4. height: 100vh;
  5. }
  6. .user-list-container {
  7. background-image: url("./image/frame_sphy@2x.png");
  8. background-size: contain;
  9. right: calc(10 / 576 * 1rem);
  10. top: calc(50% + calc(52 * 2 / 576 * 1rem));
  11. transform: translateY(calc(-50% - calc(52 / 576 * 1rem)));
  12. position: fixed;
  13. width: calc(943 / 576 * 1rem);
  14. height: calc(1579 / 576 * 1rem);
  15. }
  16. .user-list-container .user-action {
  17. margin-top: calc(150 / 576 * 1rem);
  18. text-align: center;
  19. }
  20. .user-list-container .user-action>div {
  21. background-image: url("./image/frame_meeting.png");
  22. background-size: cover;
  23. display: inline-block;
  24. /* padding: 0 calc(118 / 576 * 1rem); */
  25. width: calc(402 / 576 * 1rem);
  26. height: calc(130 / 576 * 1rem);
  27. line-height: calc(130 / 576 * 1rem);
  28. font-size: calc(40 / 576 * 1rem);
  29. color: #39d6fe;
  30. cursor: pointer;
  31. }
  32. .user-list-container .user-search {
  33. margin-top: calc(60 / 576 * 1rem);
  34. display: flex;
  35. }
  36. .user-list-container .user-search input {
  37. flex: 1;
  38. box-sizing: border-box;
  39. padding: calc(46 / 576 * 1rem);
  40. height: calc(88 / 576 * 1rem);
  41. border-radius: 44px;
  42. border: 0 none;
  43. outline: none;
  44. background: #ffffff;
  45. margin: 0 calc(58 / 576 * 1rem);
  46. font-size: calc(40 / 576 * 1rem);
  47. }
  48. input::placeholder {
  49. color: #c5c5c5;
  50. }
  51. .user-list-container .user-list {
  52. margin: 0 calc(58 / 576 * 1rem);
  53. margin-top: calc(60 / 576 * 1rem);
  54. }
  55. dl,
  56. dd,
  57. dt {
  58. margin: 0;
  59. padding: 0;
  60. }
  61. .user-list-container .user-list .user-dep {
  62. /* font-size: calc(46 / 576 * 1rem); */
  63. /* color: #ffffff; */
  64. }
  65. .user-list-container .user-list .user-dep .dep-title {
  66. font-size: calc(46 / 576 * 1rem);
  67. color: #ffffff;
  68. line-height: calc(96 / 576 * 1rem);
  69. }
  70. .user-list-container .user-list .user-dep .dep-user {
  71. line-height: calc(96 / 576 * 1rem);
  72. display: flex;
  73. justify-content: space-between;
  74. align-items: center;
  75. }
  76. .user-list-container .user-list .user-dep .dep-user .dep-user-info {
  77. display: flex;
  78. flex-direction: column;
  79. font-size: calc(40 / 576 * 1rem);
  80. color: #ffffff;
  81. }
  82. .user-list-container .user-list .user-dep .dep-user .dep-user-info>div:last-child {
  83. color: #39d6fe;
  84. }
  85. .user-list-container .user-list .user-dep .dep-user .dep-user-action>img {
  86. width: calc(80 / 576 * 1rem);
  87. height: calc(80 / 576 * 1rem);
  88. margin-left: calc(37 / 576 * 1rem);
  89. cursor: pointer;
  90. }
  91. .video-container {
  92. position: fixed;
  93. display: flex;
  94. left: 50%;
  95. top: 50%;
  96. transform: translate3d( calc(-2663 / 2 / 576 * 1rem), calc(-1275 / 2 / 576 * 1rem), 0);
  97. }
  98. .video-container .video-bar {
  99. width: calc(2123 / 576 * 1rem);
  100. height: calc(80 / 576 * 1rem);
  101. background: #06076b;
  102. display: flex;
  103. align-items: center;
  104. justify-content: flex-end;
  105. }
  106. .video-container .video-action {
  107. width: calc(192 / 576 * 1rem);
  108. height: calc(60 / 576 * 1rem);
  109. line-height: calc(60 / 576 * 1rem);
  110. text-align: center;
  111. background: linear-gradient(0deg, #f74447 0%, #ff6665 100%);
  112. color: #ffffff;
  113. font-size: calc(32 / 576 * 1rem);
  114. margin-right: calc(28 / 576 * 1rem);
  115. cursor: pointer;
  116. }
  117. .video-container #vPlayArea {
  118. width: calc(2123 / 576 * 1rem);
  119. height: calc(1195 / 576 * 1rem);
  120. background: #06076b;
  121. }
  122. .video-container .video-user-content {
  123. width: calc(540 / 576 * 1rem);
  124. background: #000157;
  125. display: flex;
  126. flex-direction: column;
  127. }
  128. .video-container .video-user-title {
  129. border-bottom: 2px solid #191a7d;
  130. height: calc(98 / 576 * 1rem);
  131. line-height: calc(98 / 576 * 1rem);
  132. padding-left: calc(30 / 576 * 1rem);
  133. color: #ffffff;
  134. font-size: calc(30 / 576 * 1rem);
  135. }
  136. .video-container .video-user-list {
  137. border-bottom: 2px solid #191a7d;
  138. padding-left: calc(32 / 576 * 1rem);
  139. color: #ffffff;
  140. font-size: calc(30 / 576 * 1rem);
  141. flex: 1;
  142. }
  143. .video-container .video-user-action {
  144. height: calc(80 / 576 * 1rem);
  145. padding: 0 calc(32 / 576 * 1rem);
  146. color: #ffffff;
  147. font-size: calc(32 / 576 * 1rem);
  148. display: flex;
  149. justify-content: space-between;
  150. align-items: center;
  151. }
  152. .video-container .video-user-action>div {
  153. height: calc(60 / 576 * 1rem);
  154. line-height: calc(60 / 576 * 1rem);
  155. border: 2px solid #39d6fe;
  156. padding: 0 calc(30 / 576 * 1rem);
  157. color: #39d6fe;
  158. cursor: pointer;
  159. }
  160. .video-container .video-user-action>div:last-child {
  161. border-color: #fff;
  162. color: #fff;
  163. }
  164. .video-container.only-video .video-user-content {
  165. display: none;
  166. }
  167. ::-webkit-scrollbar {
  168. width: 5px;
  169. height: 5px;
  170. }
  171. ::-webkit-scrollbar-track {
  172. background: transparent;
  173. }
  174. ::-webkit-scrollbar-thumb {
  175. background: #39d6fe;
  176. border-radius: 3px;
  177. }