course-template.wxss 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. .flex-box{
  2. display: flex;
  3. }
  4. .flex-btn{
  5. flex: 1;
  6. }
  7. .list{
  8. border-bottom: 1rpx solid #e5e5e5;
  9. padding: 30rpx;
  10. position: relative;
  11. }
  12. .list-img{
  13. width: 130rpx;
  14. height: 180rpx;
  15. /* margin-right: 20rpx; */
  16. position: relative;
  17. display:flex;
  18. align-items:center;
  19. }
  20. .list-img .img{
  21. width:120rpx;
  22. height:137rpx;
  23. }
  24. .list-play{
  25. position: absolute;
  26. left: 45rpx;
  27. top: 70rpx;
  28. width: 40rpx;
  29. height: 40rpx;
  30. }
  31. .list-title{
  32. height: 52rpx;
  33. }
  34. .list-title text{
  35. font-size: 18px;
  36. line-height: 52rpx;
  37. color: #000;
  38. }
  39. .list-brief{
  40. font-size: 12px;
  41. line-height: 56rpx;
  42. color: #666;
  43. overflow: hidden;
  44. text-overflow: ellipsis;
  45. white-space: nowrap;
  46. width: 400rpx;
  47. }
  48. .list-brief .sale{
  49. border:1px solid #D7D7D7;
  50. padding:0 4px;
  51. margin-left:8rpx;
  52. }
  53. .list-brief .price{
  54. font-size: 18px;
  55. color:#EC2E26;
  56. font-family:PingFang-SC-Bold;
  57. font-weight: bold;
  58. }
  59. .list-brief .txt{
  60. font-size: 13px;
  61. color:#EC2E26;
  62. font-family:PingFang-SC-Bold;
  63. }
  64. .list-brief .sale{
  65. padding-right: 8rpx;
  66. }
  67. .list-main{
  68. position: relative;
  69. padding-left: 8rpx;
  70. }
  71. .list-sale{
  72. position: absolute;
  73. right: 10rpx;
  74. top: 139rpx;
  75. }
  76. .list-sale text{
  77. padding: 10rpx 18rpx;
  78. border: 1rpx solid #FFDE00;
  79. font-size: 14px;
  80. color: #292929;
  81. border-radius: 25rpx;
  82. background: #FFDE00
  83. }