video-item.module.less 1.4 KB

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