living.wxss 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341
  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. /* button自带样式清除 */
  28. .student-orther-icon button.data-v-471975a0::after {
  29. border: none !important;
  30. padding: 0 !important;
  31. margin: 0 !important;
  32. }
  33. .student-orther-icon button.data-v-471975a0 {
  34. background-color: transparent !important;
  35. padding: 0 !important;
  36. line-height: inherit !important;
  37. margin: 0 !important;
  38. width: auto !important;
  39. font-weight: 500 !important;
  40. border-radius: none !important;
  41. }
  42. .welcome-message.data-v-471975a0 {
  43. position: fixed;
  44. width: 100%;
  45. bottom: 120rpx;
  46. left: 50%;
  47. transform: translateX(-50%);
  48. color: white;
  49. padding: 10px 20px;
  50. border-radius: 20px;
  51. animation: fadeOut-471975a0 1s ease 1s forwards;
  52. z-index: 1000;
  53. }
  54. @keyframes fadeOut-471975a0 {
  55. from {
  56. opacity: 1;
  57. }
  58. to {
  59. opacity: 0;
  60. }
  61. }
  62. .talk-list.data-v-471975a0 {
  63. border-radius: 30rpx;
  64. background-color: rgba(33, 33, 33, 0.5);
  65. padding: 10rpx 30rpx;
  66. }
  67. .content.data-v-471975a0 {
  68. position: relative;
  69. z-index: 2;
  70. height: 100%;
  71. width: 100%;
  72. top: 0;
  73. left: 0;
  74. display: flex;
  75. flex-direction: column;
  76. justify-content: space-between;
  77. }
  78. .content .content-top.data-v-471975a0 {
  79. width: 100%;
  80. margin-top: 150rpx;
  81. display: flex;
  82. align-items: center;
  83. justify-content: space-between;
  84. padding: 0 24rpx;
  85. box-sizing: border-box;
  86. }
  87. .content .content-top .sum.data-v-471975a0 {
  88. width: 80rpx;
  89. height: 52rpx;
  90. background: rgba(0, 0, 0, 0.5);
  91. border-radius: 26rpx 26rpx 26rpx 26rpx;
  92. font-size: 24rpx;
  93. color: #FFFFFF;
  94. text-align: center;
  95. line-height: 52rpx;
  96. }
  97. .content .follow-btn.data-v-471975a0 {
  98. padding: 8rpx 16rpx;
  99. background: linear-gradient(270deg, #FF5C03 0%, #FFAC64 100%);
  100. border-radius: 26rpx;
  101. font-weight: 500;
  102. font-size: 26rpx;
  103. color: #FFFFFF;
  104. }
  105. .videolist.data-v-471975a0 {
  106. position: relative;
  107. }
  108. .video.data-v-471975a0 {
  109. height: 100vh;
  110. /* 占屏幕高度的80% */
  111. width: 100%;
  112. background-color: rgba(0, 0, 0, 0.8);
  113. }
  114. .videotop.data-v-471975a0 {
  115. width: 100%;
  116. height: 100%;
  117. }
  118. .video_row.data-v-471975a0 {
  119. width: 100%;
  120. max-height: 500rpx;
  121. overflow: hidden;
  122. margin-top: 300rpx;
  123. }
  124. .popup-video.data-v-471975a0 {
  125. position: absolute;
  126. top: 30%;
  127. height: 500rpx;
  128. display: flex;
  129. flex-direction: column;
  130. align-items: center;
  131. justify-content: center;
  132. width: 100%;
  133. color: #fff;
  134. z-index: 9;
  135. }
  136. .popup-video .more.data-v-471975a0 {
  137. background-color: #3280fe;
  138. border-radius: 80rpx;
  139. width: 280rpx;
  140. text-align: center;
  141. height: 60rpx;
  142. line-height: 60rpx;
  143. }
  144. .icon-bg.data-v-471975a0 {
  145. background-color: rgba(157, 157, 157, 0.8);
  146. border-radius: 50%;
  147. width: 72rpx;
  148. height: 72rpx;
  149. display: flex;
  150. justify-content: center;
  151. align-items: center;
  152. transition: transform 0.2s ease;
  153. }
  154. .list.data-v-471975a0 {
  155. width: 80%;
  156. margin-bottom: 20rpx;
  157. animation: xxxawdawd-471975a0 0.2s;
  158. }
  159. @keyframes xxxawdawd-471975a0 {
  160. from {
  161. margin-top: 0rpx;
  162. opacity: 0;
  163. }
  164. to {
  165. margin-top: 20rpx;
  166. opacity: 1;
  167. }
  168. }
  169. .shop-prompt.data-v-471975a0 {
  170. position: absolute;
  171. bottom: 600rpx;
  172. left: 24rpx;
  173. padding: 6rpx 20rpx;
  174. background: rgba(230, 154, 34, 0.7);
  175. border-radius: 24rpx;
  176. z-index: 9;
  177. font-weight: 500;
  178. font-size: 26rpx;
  179. color: #FFFFFF;
  180. transition: opacity 0.3s ease;
  181. }
  182. .siderow-group.data-v-471975a0 {
  183. position: absolute;
  184. top: 21%;
  185. right: 50rpx;
  186. z-index: 9;
  187. display: flex;
  188. flex-direction: column;
  189. align-items: center;
  190. }
  191. .siderow-group .side-item.data-v-471975a0 {
  192. font-weight: 500;
  193. font-size: 24rpx;
  194. color: #FFFFFF;
  195. margin-bottom: 32rpx;
  196. text-align: center;
  197. }
  198. .siderow-group .side-item button.data-v-471975a0 {
  199. background-color: transparent;
  200. margin: 0;
  201. line-height: 1;
  202. padding: 0;
  203. }
  204. .siderow-group .side-item image.data-v-471975a0 {
  205. width: 72rpx;
  206. height: 72rpx;
  207. }
  208. .side-group.data-v-471975a0 {
  209. position: absolute;
  210. top: 30%;
  211. right: 50rpx;
  212. z-index: 9;
  213. display: flex;
  214. flex-direction: column;
  215. align-items: center;
  216. }
  217. .side-group .side-item.data-v-471975a0 {
  218. font-weight: 500;
  219. font-size: 24rpx;
  220. color: #FFFFFF;
  221. margin-bottom: 32rpx;
  222. text-align: center;
  223. }
  224. .side-group .side-item button.data-v-471975a0 {
  225. background-color: transparent;
  226. margin: 0;
  227. line-height: 1;
  228. padding: 0;
  229. }
  230. .side-group .side-item image.data-v-471975a0 {
  231. width: 72rpx;
  232. height: 72rpx;
  233. }
  234. .shoppop.data-v-471975a0 {
  235. padding: 22rpx 16rpx;
  236. }
  237. .shoppop .shoppop-top.data-v-471975a0 {
  238. display: flex;
  239. justify-content: space-between;
  240. align-items: center;
  241. padding: 0 16rpx 22rpx;
  242. }
  243. .shoppop .shoppop-top .search-input.data-v-471975a0 {
  244. width: 414rpx;
  245. height: 76rpx;
  246. background: #FFFFFF;
  247. border-radius: 36rpx;
  248. margin-left: 20rpx;
  249. padding: 0 32rpx;
  250. box-sizing: border-box;
  251. font-size: 24rpx;
  252. margin-right: 24rpx;
  253. }
  254. .shoppop .shoppop-top .search-top.data-v-471975a0 {
  255. font-size: 18rpx;
  256. color: #222222;
  257. }
  258. .shoppop .shop-list.data-v-471975a0 {
  259. overflow: hidden;
  260. }
  261. .shoppop .shop-list .list-item.data-v-471975a0 {
  262. display: flex;
  263. align-items: center;
  264. padding: 20rpx 16rpx;
  265. background: #FFFFFF;
  266. border-radius: 16rpx;
  267. margin-bottom: 16rpx;
  268. }
  269. .shoppop .shop-list .list-item .goods-img.data-v-471975a0 {
  270. width: 200rpx;
  271. height: 200rpx;
  272. border-radius: 16rpx;
  273. overflow: hidden;
  274. position: relative;
  275. margin-right: 24rpx;
  276. }
  277. .shoppop .shop-list .list-item .goods-img image.data-v-471975a0 {
  278. width: 100%;
  279. height: 100%;
  280. }
  281. .shoppop .shop-list .list-item .goods-img .goods-label.data-v-471975a0 {
  282. position: absolute;
  283. top: 0;
  284. width: 64rpx;
  285. height: 40rpx;
  286. background: rgba(0, 0, 0, 0.5);
  287. border-radius: 16rpx 0rpx 16rpx 0rpx;
  288. text-align: center;
  289. font-weight: 500;
  290. font-size: 28rpx;
  291. color: #FFFFFF;
  292. }
  293. .shoppop .shop-list .list-item .goods-right.data-v-471975a0 {
  294. flex: 1;
  295. }
  296. .shoppop .shop-list .list-item .goods-right .goods-title.data-v-471975a0 {
  297. font-weight: 500;
  298. font-size: 28rpx;
  299. color: #000000;
  300. }
  301. .shoppop .shop-list .list-item .goods-right .goods-details.data-v-471975a0 {
  302. font-size: 24rpx;
  303. color: #999999;
  304. margin: 10rpx 0 20rpx;
  305. }
  306. .shoppop .shop-list .list-item .goods-right .goods-people.data-v-471975a0 {
  307. font-size: 22rpx;
  308. color: #E69A22;
  309. height: 56rpx;
  310. }
  311. .shoppop .shop-list .list-item .goods-right .goods-shop.data-v-471975a0 {
  312. display: flex;
  313. justify-content: space-between;
  314. }
  315. .shoppop .shop-list .list-item .goods-right .goods-shop .nummber.data-v-471975a0 {
  316. color: #FF5C03;
  317. font-size: 22rpx;
  318. font-weight: 500;
  319. }
  320. .shoppop .shop-list .list-item .goods-right .goods-shop .btn-group.data-v-471975a0 {
  321. text-align: center;
  322. line-height: 56rpx;
  323. }
  324. .shoppop .shop-list .list-item .goods-right .goods-shop .btn-group .collect-btn.data-v-471975a0 {
  325. width: 72rpx;
  326. background: #F5F7FA;
  327. border-radius: 8rpx 0rpx 0rpx 8rpx;
  328. }
  329. .shoppop .shop-list .list-item .goods-right .goods-shop .btn-group .shop-btn.data-v-471975a0 {
  330. width: 152rpx;
  331. background: linear-gradient(270deg, #FF5C03 0%, #FFAC64 100%);
  332. border-radius: 0rpx 8rpx 8rpx 0rpx;
  333. font-weight: 500;
  334. font-size: 26rpx;
  335. color: #FFFFFF;
  336. }
  337. .data-v-471975a0 .u-list-item {
  338. width: 100%;
  339. display: flex;
  340. align-items: center;
  341. }