live.wxss 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. /**
  2. * 这里是uni-app内置的常用样式变量
  3. *
  4. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  5. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  6. *
  7. */
  8. /**
  9. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  10. *
  11. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  12. */
  13. /* 颜色变量 */
  14. /* 行为相关颜色 */
  15. /* 文字基本颜色 */
  16. /* 背景颜色 */
  17. /* 边框颜色 */
  18. /* 尺寸变量 */
  19. /* 文字尺寸 */
  20. /* 图片尺寸 */
  21. /* Border Radius */
  22. /* 水平间距 */
  23. /* 垂直间距 */
  24. /* 透明度 */
  25. /* 文章场景相关 */
  26. /*自定义主题色 */
  27. .welcome-message.data-v-281d25f3 {
  28. position: fixed;
  29. width: 100%;
  30. bottom: 120rpx;
  31. left: 50%;
  32. transform: translateX(-50%);
  33. color: #666;
  34. padding: 10px 20px;
  35. border-radius: 20px;
  36. animation: fadeOut-281d25f3 1s ease 1s forwards;
  37. /* 1秒后开始淡出 */
  38. z-index: 1000;
  39. }
  40. @keyframes fadeOut-281d25f3 {
  41. from {
  42. opacity: 1;
  43. }
  44. to {
  45. opacity: 0;
  46. }
  47. }
  48. .live.data-v-281d25f3 {
  49. height: 100%;
  50. overflow: hidden;
  51. }
  52. .list.data-v-281d25f3 {
  53. width: 80%;
  54. margin-bottom: 20rpx;
  55. animation: xxxawdawd-281d25f3 0.2s;
  56. }
  57. @keyframes xxxawdawd-281d25f3 {
  58. from {
  59. margin-top: 0rpx;
  60. opacity: 0;
  61. }
  62. to {
  63. margin-top: 20rpx;
  64. opacity: 1;
  65. }
  66. }
  67. .vedio.data-v-281d25f3 {
  68. height: 500rpx;
  69. width: 100%;
  70. background-color: rgba(0, 0, 0, 0.6);
  71. position: relative;
  72. }
  73. .videotop.data-v-281d25f3 {
  74. width: 100%;
  75. height: 100%;
  76. }
  77. .popup-video.data-v-281d25f3 {
  78. position: absolute;
  79. top: 0;
  80. height: 500rpx;
  81. display: flex;
  82. flex-direction: column;
  83. align-items: center;
  84. justify-content: center;
  85. width: 100%;
  86. color: #fff;
  87. background-color: rgba(0, 0, 0, 0.6);
  88. }
  89. .popup-video .more.data-v-281d25f3 {
  90. background-color: #3280fe;
  91. border-radius: 80rpx;
  92. width: 280rpx;
  93. text-align: center;
  94. height: 60rpx;
  95. line-height: 60rpx;
  96. }
  97. .textscll.data-v-281d25f3 {
  98. position: absolute;
  99. top: 0;
  100. z-index: 999;
  101. }
  102. .reflash.data-v-281d25f3 {
  103. border: 2rpx solid #888;
  104. border-radius: 80rpx;
  105. padding: 4rpx 16rpx;
  106. color: #888;
  107. }
  108. .talktext.data-v-281d25f3 {
  109. border-radius: 8rpx;
  110. }
  111. .talktext view.data-v-281d25f3 {
  112. width: 100%;
  113. }
  114. .bot_talk.data-v-281d25f3 {
  115. width: calc(100% - 40rpx);
  116. display: flex;
  117. justify-content: space-between;
  118. align-items: center;
  119. position: fixed;
  120. bottom: 0;
  121. padding: 20rpx;
  122. }
  123. .bot_talk .sent.data-v-281d25f3 {
  124. width: 120rpx;
  125. text-align: center;
  126. height: 60rpx;
  127. line-height: 60rpx;
  128. background-color: #3280fe;
  129. color: #fff;
  130. border-radius: 40rpx;
  131. font-size: 24rpx;
  132. }
  133. .invite-member.data-v-281d25f3 {
  134. height: 55px;
  135. width: 50px;
  136. position: fixed;
  137. bottom: 80px;
  138. right: 10px;
  139. cursor: pointer;
  140. }
  141. .invite-member .weimg.data-v-281d25f3 {
  142. position: relative;
  143. }
  144. .invite-member .addwe.data-v-281d25f3 {
  145. position: absolute;
  146. left: -7%;
  147. bottom: 4rpx;
  148. color: #fff;
  149. background-color: #fc285c;
  150. font-size: 24rpx;
  151. border-radius: 20rpx;
  152. padding: 4rpx 12rpx;
  153. }
  154. .addchat.data-v-281d25f3 {
  155. height: 450rpx;
  156. }