single.module.less 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. .single {
  2. margin-bottom: 20px;
  3. }
  4. .introduction {
  5. font-size: 13px;
  6. color: #666666;
  7. line-height: 1.6;
  8. padding-bottom: 15px;
  9. }
  10. .videoList {
  11. display: flex;
  12. align-items: center;
  13. justify-content: space-between;
  14. flex-wrap: wrap;
  15. }
  16. .itemBg {
  17. position: absolute;
  18. top: 0;
  19. left: 0;
  20. bottom: 0;
  21. bottom: 0;
  22. width: 100%;
  23. height: 100%;
  24. z-index: 89;
  25. }
  26. .videoItem {
  27. width: 157px;
  28. height: 106px;
  29. background: #d8d8d8;
  30. border-radius: 10px;
  31. overflow: hidden;
  32. position: relative;
  33. margin-bottom: 10px;
  34. .icon-upload {
  35. position: absolute;
  36. top: 50%;
  37. left: 50%;
  38. transform: translate(-50%, -50%);
  39. color: #fff;
  40. z-index: 9;
  41. }
  42. .video {
  43. position: absolute;
  44. left: 0;
  45. top: 0;
  46. width: 100%;
  47. min-height: 100%;
  48. background-color: #ccc;
  49. }
  50. :global {
  51. .van-image {
  52. width: 100%;
  53. height: 100%;
  54. overflow: hidden;
  55. }
  56. }
  57. }
  58. .fansGroup {
  59. padding: 0 0 25px !important;
  60. &:last-child {
  61. padding-bottom: 12px !important;
  62. }
  63. :global {
  64. .van-cell__title,
  65. .van-cell__value {
  66. flex: 1 auto;
  67. }
  68. }
  69. p {
  70. font-size: 14px;
  71. color: #999999;
  72. line-height: 20px;
  73. width: 160px;
  74. }
  75. }
  76. .fansImage {
  77. width: 42px;
  78. height: 42px;
  79. border-radius: 50%;
  80. overflow: hidden;
  81. }
  82. .fansTitle {
  83. padding-left: 12px;
  84. font-size: 16px;
  85. color: #1a1a1a;
  86. line-height: 22px;
  87. .title {
  88. max-width: 160px;
  89. }
  90. }
  91. .videoGroup {
  92. width: 90%;
  93. line-height: 0;
  94. overflow: inherit;
  95. :global {
  96. .colVideo {
  97. border-radius: var(--van-popup-round-border-radius);
  98. overflow: hidden;
  99. }
  100. }
  101. }