grid.css 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. /* 9人 会议模版 */
  2. .template-grid{
  3. width: 100vw;
  4. height: 100vh;
  5. display: flex;
  6. flex-direction: row;
  7. flex-wrap: wrap;
  8. }
  9. .template-grid .view-container {
  10. position: relative;
  11. }
  12. .stream-0 .view-container{
  13. width: 100%;
  14. height: 100%;
  15. }
  16. .stream-1 .view-container{
  17. width: 100vw;
  18. height: 50vh;
  19. }
  20. .stream-2 .view-container{
  21. width: 50vw;
  22. height: 50vh;
  23. }
  24. .stream-2 .view-container:nth-child(1){
  25. width: 100vw;
  26. height: 50vh;
  27. }
  28. .stream-3 .view-container{
  29. width: 50vw;
  30. height: 50vh;
  31. }
  32. .stream-4 .view-container{
  33. width: 50vw;
  34. height: 33.3vh;
  35. }
  36. .stream-4 .view-container:nth-child(1){
  37. width: 100vw;
  38. height: 33.3vh;
  39. }
  40. .stream-5 .view-container {
  41. width: 50vw;
  42. height: 33.3vh;
  43. }
  44. .template-grid .operation-bar {
  45. position: absolute;
  46. bottom: 5%;
  47. width: 100%;
  48. display: none;
  49. flex-direction: row;
  50. justify-content: center;
  51. }
  52. .template-grid .volume-progress {
  53. width: 100%;
  54. position: absolute;
  55. bottom: 0;
  56. }
  57. .template-grid .btn-normal {
  58. width: 64rpx;
  59. height: 64rpx;
  60. margin: 0 16rpx;
  61. box-sizing: border-box;
  62. display: flex;
  63. background: white;
  64. justify-content: center;
  65. align-items: center;
  66. border-radius: 50%;
  67. }
  68. .template-grid .btn-normal image{
  69. width: 36rpx;
  70. height: 36rpx;
  71. }
  72. .template-grid .btn-hangup {
  73. background: #f75c45;
  74. }
  75. .template-grid .panel{
  76. position: absolute;
  77. background: rgba(0, 0, 0, 0.8);
  78. width: 80vw;
  79. height: auto;
  80. z-index: 999;
  81. top: 50vh;
  82. left: 50vw;
  83. transform: translate(-50%, -50%);
  84. color: white;
  85. display: flex;
  86. flex-direction: column;
  87. padding: 20rpx 0;
  88. border-radius: 10rpx;
  89. box-sizing: border-box;
  90. }
  91. .panel .close-btn {
  92. position: absolute;
  93. top: 0;
  94. right: 0;
  95. padding: 5px 10px;
  96. }
  97. .panel .panel-header{
  98. text-align: center;
  99. padding-bottom: 20rpx;
  100. }
  101. .panel .panel-tips {
  102. color: #999;
  103. text-align: center;
  104. }
  105. .panel .panel-body{
  106. flex: 1;
  107. height: 40vh;
  108. }
  109. .panel .panel-body .scroll-container{
  110. width: 100%;
  111. height: 100%;
  112. box-sizing: border-box;
  113. }
  114. .memberlist-panel .member-item {
  115. display: flex;
  116. /* border-bottom: 1px solid #999; */
  117. margin: 16rpx 16rpx 16rpx 32rpx;
  118. }
  119. .memberlist-panel .member-id {
  120. width: 30%;
  121. font-size: 12px;
  122. line-height: 64rpx;
  123. }
  124. .memberlist-panel .member-btns{
  125. width: 70%;
  126. display: flex;
  127. justify-content: flex-end;
  128. }
  129. .member-btns .btn-normal{
  130. margin-left: 0;
  131. }
  132. .member-btns button.btn{
  133. margin-right: 0;
  134. }
  135. .setting-panel .setting-option{
  136. display: flex;
  137. justify-content: space-between;
  138. margin: 16rpx 16rpx 16rpx 32rpx;
  139. /* box-sizing: border-box;
  140. padding: 12rpx 16rpx 12rpx 32rpx; */
  141. }
  142. .setting-panel .setting-option .label{
  143. line-height: 64rpx;
  144. }
  145. /* .setting-panel .setting-option .btn-normal{
  146. margin-right: 0;
  147. } */
  148. .setting-panel switch {
  149. transform:scale(0.8);
  150. }
  151. .template-grid .masker{
  152. position: absolute;
  153. width: 100vw;
  154. height: 100vh;
  155. background: rgba(0, 0, 0, 0.4);
  156. }