index.module.less 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. .videoItem {
  2. border-radius: 10px;
  3. background-color: #fff;
  4. overflow: hidden;
  5. width: 100%;
  6. margin-bottom: 12px;
  7. padding: 12px;
  8. display: flex;
  9. align-items: center;
  10. .viCover {
  11. height: 94px;
  12. width: 100%;
  13. border-radius: 6px;
  14. vertical-align: middle;
  15. overflow: hidden;
  16. }
  17. .viSection {
  18. margin-left: 10px;
  19. flex: 1 auto;
  20. }
  21. .viTitle {
  22. font-weight: 600;
  23. font-size: 15px;
  24. color: #131415;
  25. line-height: 21px;
  26. }
  27. .viUserNum {
  28. padding-top: 4px;
  29. color: #ff802c;
  30. font-size: 12px;
  31. background: rgba(255, 246, 240, 1);
  32. border-radius: 2px;
  33. padding: 3px 4px 2px;
  34. }
  35. .viPrice {
  36. display: flex;
  37. align-items: center;
  38. justify-content: space-between;
  39. font-size: 14px;
  40. color: #999;
  41. .priceNum {
  42. color: #F44541;
  43. font-size: 16px;
  44. font-weight: bold;
  45. i {
  46. font-size: 14px;
  47. font-style: normal;
  48. }
  49. }
  50. }
  51. .tags {
  52. padding: 8px 0;
  53. .label {
  54. margin-right: 4px;
  55. background: #F5F6FA;
  56. border-radius: 3px;
  57. font-size: 11px;
  58. color: #777777;
  59. line-height: 16px;
  60. padding: 1px 6px;
  61. display: inline-block;
  62. }
  63. }
  64. .subjectName {
  65. position: absolute;
  66. top: 4px;
  67. left: 4px;
  68. font-size: 10px;
  69. padding: 3px 5px 2px;
  70. color: #ffffff;
  71. line-height: 1;
  72. background: rgba(0,0,0,0.4);
  73. border-radius: 3px;
  74. }
  75. }