live-review.component.scss 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. .live-page{
  2. height: 100%;
  3. background-color: #000000;
  4. .swiper {
  5. width: 100%;
  6. height: 100%;
  7. }
  8. .swiper-slide{
  9. position: relative;
  10. background-repeat: no-repeat;
  11. background-position: center top;
  12. background-size: 100% 100%;
  13. }
  14. .post-footer{
  15. position: absolute;
  16. bottom: 0;
  17. height: 380px;
  18. color: white;
  19. padding: 50px 10px 120px;
  20. width: 100%;
  21. display: flex;
  22. flex-direction: column;
  23. justify-content: space-between;
  24. align-items: center;
  25. background: linear-gradient(to top, #000000, rgba(255, 255, 255, 0));
  26. .user-dateil{
  27. display: flex;
  28. flex-direction: column;
  29. align-items: center;
  30. .avatar{
  31. width: 50px;
  32. height: 50px;
  33. border-radius: 50%;
  34. margin-bottom: 10px;
  35. }
  36. .btn{
  37. padding: 10px;
  38. border-radius: 30px;
  39. border: 1px solid;
  40. // margin:auto;
  41. }
  42. }
  43. .block{
  44. width: 100%;
  45. .tag{
  46. background: #fc4942;
  47. padding: 4px 6px;
  48. border-radius: 4px;
  49. display: inline-flex;
  50. align-items: center;
  51. img{
  52. width: 20px;
  53. }
  54. }
  55. .live-room{
  56. margin: 6px auto;
  57. font-weight: 600;
  58. }
  59. }
  60. }
  61. }