index.module.less 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. .course-preview {
  2. // padding: 0 14px;
  3. background-color: #f6f8f9;
  4. max-height: 500px;
  5. overflow-y: auto;
  6. overflow-x: hidden;
  7. }
  8. .createSubmit {
  9. // margin-bottom: 12px;
  10. .introduction {
  11. color: #7a7a7a;
  12. line-height: 23px;
  13. padding-bottom: 8px;
  14. }
  15. }
  16. .userDetail {
  17. .banner {
  18. width: 100%;
  19. height: 210px;
  20. overflow: hidden;
  21. vertical-align: middle;
  22. }
  23. .userInfo {
  24. overflow: hidden;
  25. border-top: 1px solid #ebebeb;
  26. display: flex;
  27. justify-content: space-between;
  28. .avatar {
  29. width: 24px;
  30. height: 24px;
  31. border-radius: 50%;
  32. overflow: hidden;
  33. }
  34. .name {
  35. padding-left: 8px;
  36. font-size: 16px;
  37. font-weight: 600;
  38. color: #333333;
  39. line-height: 22px;
  40. display: flex;
  41. align-items: center;
  42. }
  43. .buyNum {
  44. color: #ff802c;
  45. font-size: 14px;
  46. display: flex;
  47. align-items: center;
  48. &::before {
  49. content: ' ';
  50. display: inline-block;
  51. width: 1px;
  52. height: 12px;
  53. margin: 0 8px;
  54. background: #d3d3d3;
  55. }
  56. }
  57. .buyNumInfo {
  58. font-size: 12px;
  59. color: #6a6a6a;
  60. display: flex;
  61. align-items: center;
  62. .iconBuy {
  63. margin-right: 5px;
  64. }
  65. }
  66. .info {
  67. font-size: 16px;
  68. font-weight: 400;
  69. color: var(--van-primary);
  70. line-height: 17px;
  71. }
  72. .userTitle {
  73. font-size: 18px;
  74. color: #1a1a1a;
  75. font-weight: 600;
  76. display: block !important;
  77. }
  78. }
  79. }
  80. .videoImg {
  81. width: 100px;
  82. height: 70px;
  83. position: relative;
  84. border-radius: 4px;
  85. overflow: hidden;
  86. .videoStop {
  87. position: absolute;
  88. top: 50%;
  89. right: 0;
  90. left: 50%;
  91. bottom: 0;
  92. margin-top: -13px;
  93. margin-left: -13px;
  94. display: flex;
  95. align-items: center;
  96. justify-content: center;
  97. }
  98. }
  99. .videoTitle {
  100. padding-left: 8px;
  101. font-size: 13px;
  102. display: flex;
  103. flex-direction: column;
  104. height: 100%;
  105. justify-content: space-around;
  106. .videoTitleText {
  107. font-size: 15px;
  108. color: #333;
  109. max-width: 210px;
  110. }
  111. .videoTitleContent {
  112. color: #7a7a7a;
  113. line-height: 18px;
  114. display: -webkit-box;
  115. overflow: hidden;
  116. text-overflow: ellipsis;
  117. -webkit-line-clamp: 2;
  118. -webkit-box-orient: vertical;
  119. }
  120. }