1v1.wxss 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266
  1. /* 1v1 视频电话模式 */
  2. .template-1v1 {
  3. width: 750rpx;
  4. height: 500rpx;
  5. position: relative;
  6. }
  7. .template-1v1 .pusher-container {
  8. width: 300rpx;
  9. height: 300rpx;
  10. position: absolute;
  11. right: 0rpx;
  12. top: 0rpx;
  13. z-index: 999999999;
  14. }
  15. .full_btn {
  16. position: absolute;
  17. right: -300rpx;
  18. top: 200rpx;
  19. transform: rotate(90deg);
  20. }
  21. /* .template-1v1 .pusher-container.fullscreen{
  22. width: 100vw;
  23. height: 100vh;
  24. top: 0;
  25. right: 0;
  26. } */
  27. /* .template-1v1 .loading {
  28. position: absolute;
  29. top: 40vh;
  30. left: 50vw;
  31. transform: translate(-50%, 0);
  32. width: 300rpx;
  33. height: 250rpx;
  34. border-radius: 12rpx;
  35. background: rgba(0,0,0,0.6);
  36. color: white;
  37. padding: 40rpx;
  38. display: flex;
  39. flex-direction: column;
  40. } */
  41. .template-1v1 .loading-img {
  42. height: 200rpx;
  43. display: flex;
  44. justify-content: center;
  45. align-items: center;
  46. animation: rotate 2s linear infinite;
  47. }
  48. .template-1v1 .rotate-img {
  49. width: 160rpx;
  50. height: 160rpx;
  51. }
  52. .template-1v1 .loading-text {
  53. width: 100%;
  54. padding-top: 40rpx;
  55. text-align: center;
  56. }
  57. @keyframes rotate {
  58. 0% {
  59. transform: rotate(0deg);
  60. }
  61. 50% {
  62. transform: rotate(180deg);
  63. }
  64. 100% {
  65. transform: rotate(360deg);
  66. }
  67. }
  68. .template-1v1 .player-container:nth-child(1) {
  69. width: 100%;
  70. height: 100%;
  71. }
  72. .template-1v1 .handle-btns {
  73. position: absolute;
  74. z-index: 3;
  75. bottom: 15vh;
  76. width: 100vw;
  77. display: flex;
  78. flex-direction: row;
  79. justify-content: space-around;
  80. }
  81. .template-1v1 .bottom-btns {
  82. position: absolute;
  83. z-index: 3;
  84. bottom: 3vh;
  85. width: 100vw;
  86. display: flex;
  87. flex-direction: row;
  88. justify-content: space-around;
  89. }
  90. /* .template-1v1 image {
  91. width: 4vh;
  92. height: 4vh;
  93. } */
  94. .template-1v1 .btn-normal {
  95. width: 8vh;
  96. height: 8vh;
  97. box-sizing: border-box;
  98. display: flex;
  99. background: white;
  100. justify-content: center;
  101. align-items: center;
  102. border-radius: 50%;
  103. }
  104. .template-1v1 .btn-hangup .btn-image,
  105. .template-1v1 .btn-normal .btn-image {
  106. width: 4vh;
  107. height: 4vh;
  108. }
  109. .template-1v1 .btn-hangup {
  110. width: 8vh;
  111. height: 8vh;
  112. background: #f75c45;
  113. box-sizing: border-box;
  114. display: flex;
  115. justify-content: center;
  116. align-items: center;
  117. border-radius: 50%;
  118. }
  119. .modol {
  120. width: 455rpx;
  121. height: 400rpx;
  122. margin: 50rpx auto;
  123. /* border: 1px solid red; */
  124. position: relative;
  125. background-color: rgba(0, 0, 0, 0.3);
  126. z-index: 100;
  127. }
  128. .modol1 {
  129. width: 455rpx;
  130. height: 400rpx;
  131. margin: 30vh 150rpx;
  132. /* border: 1px solid red; */
  133. position: relative;
  134. background-color: rgba(0, 0, 0, 0.3);
  135. z-index: 100;
  136. transform: rotate(90deg);
  137. }
  138. .lm {
  139. width: 455rpx;
  140. height: 400rpx;
  141. position: absolute;
  142. top: 0rpx;
  143. left: 0rpx;
  144. }
  145. .t1 {
  146. position: absolute;
  147. top: 150rpx;
  148. left: 100rpx;
  149. color: #000;
  150. font-size: 28rpx;
  151. font-weight: 900;
  152. }
  153. .t2 {
  154. position: absolute;
  155. top: 180rpx;
  156. left: 140rpx;
  157. color: #999999;
  158. font-size: 25rpx;
  159. font-weight: 900;
  160. }
  161. .t3 {
  162. color: #eb3f33;
  163. }
  164. .t4 {
  165. height: 60rpx;
  166. border-radius: 40rpx;
  167. font-size: 29rpx;
  168. font-weight: 600;
  169. color: #fff;
  170. background: #d7301d;
  171. text-align: center;
  172. position: absolute;
  173. top: 230rpx;
  174. left: 70rpx;
  175. line-height: 60rpx;
  176. }
  177. .t5 {
  178. height: 60rpx;
  179. border-radius: 40rpx;
  180. font-size: 29rpx;
  181. font-weight: 600;
  182. color: #666666;
  183. background: #e0e1e3;
  184. text-align: center;
  185. position: absolute;
  186. top: 300rpx;
  187. left: 70rpx;
  188. line-height: 60rpx;
  189. }
  190. /* .lm1 {
  191. width: 455rpx;
  192. height: 400rpx;
  193. position: absolute;
  194. top: 500rpx;
  195. right: 150rpx;
  196. transform:rotate(90deg);
  197. }
  198. .t11 {
  199. top: 170rpx;
  200. left: 250rpx;
  201. color: #000;
  202. font-size: 28rpx;
  203. font-weight: 900;
  204. transform:rotate(90deg);
  205. }
  206. .t21 {
  207. position: absolute;
  208. top: 210rpx;
  209. left: 300rpx;
  210. color: #999999;
  211. font-size: 25rpx;
  212. font-weight: 900;
  213. transform:rotate(90deg);
  214. }
  215. .t31 {
  216. color: #eb3f33;
  217. }
  218. .t41 {
  219. height: 67rpx;
  220. border-radius: 40rpx;
  221. font-size: 29rpx;
  222. font-weight: 600;
  223. color: #fff;
  224. background: #d7301d;
  225. text-align: center;
  226. position: absolute;
  227. top: 270rpx;
  228. left: 230rpx;
  229. line-height: 67rpx;
  230. transform:rotate(90deg);
  231. }
  232. .t51 {
  233. height: 67rpx;
  234. border-radius: 40rpx;
  235. font-size: 29rpx;
  236. font-weight: 600;
  237. color: #666666;
  238. background: #e0e1e3;
  239. text-align: center;
  240. position: absolute;
  241. top: 350rpx;
  242. left: 230rpx;
  243. line-height: 67rpx;
  244. transform:rotate(90deg);
  245. } */