indexCourseList.scss 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. .course_list {
  2. // width: 100%;
  3. padding: 0rpx 32rpx 32rpx 32rpx;
  4. box-shadow: 0px 10rpx 9rpx 1rpx rgba(165, 196, 239, 0.1);
  5. .titles {
  6. margin: 72rpx 0rpx 32rpx 10rpx;
  7. .code {
  8. width: 38rpx;
  9. height: 24rpx;
  10. }
  11. .title {
  12. font-size: 40rpx;
  13. font-family: OPPOSans-Bold, OPPOSans;
  14. font-weight: bold;
  15. color: #222222;
  16. margin-left: 14rpx;
  17. }
  18. }
  19. .list_item {
  20. padding: 24rpx;
  21. // height: 278rpx;
  22. background: #FFFFFF;
  23. box-shadow: 0rpx 0rpx 20rpx 1rpx rgba(1,99,235,0.1000);
  24. border-radius: 24rpx;
  25. background:#fff;
  26. margin-bottom: 32rpx;
  27. display: flex;
  28. align-items: center;
  29. .c_title {
  30. font-size: 32rpx;
  31. font-weight: bold;
  32. margin-bottom: 24rpx;
  33. font-weight: bold;
  34. color: #222222;
  35. }
  36. .c_downs {
  37. display: flex;
  38. }
  39. .img {
  40. position:relative;
  41. margin-right: 24rpx;
  42. border-radius: 16rpx ;
  43. overflow: hidden;
  44. width: 204rpx;
  45. height: 120rpx;
  46. image {
  47. width:100%;
  48. height:100%;
  49. }
  50. .time {
  51. position:absolute;
  52. bottom:0;
  53. right:0;
  54. width: 80rpx;
  55. height: 32rpx;
  56. background: rgba(1, 25, 45, 0.4);
  57. color:#fff;
  58. text-align: center;
  59. line-height: 32rpx;
  60. font-size: 24rpx;
  61. border-radius: 10rpx 0px 10rpx 0px;
  62. }
  63. }
  64. .text {
  65. width: 440rpx;
  66. position: relative;
  67. display: flex;
  68. flex-direction: column;
  69. justify-content: space-between;
  70. height: 120rpx;
  71. .joins {
  72. .people {
  73. width: 160rpx;
  74. font-size: 20rpx;
  75. color: #999999;
  76. padding: 0rpx 8rpx;
  77. text-align: center;
  78. height: 36rpx;
  79. line-height: 36rpx;
  80. background: #F6F7FB;
  81. border-radius: 4px;
  82. }
  83. }
  84. .desc {
  85. margin-top: 10rpx;
  86. display: flex;
  87. align-items: center;
  88. justify-content: space-between;
  89. width: 100%;
  90. .left {
  91. flex:1;
  92. color:#333;
  93. font-size: 26rpx;
  94. .mon_t {
  95. font-weight: bold;
  96. color: #FC3F3F;
  97. font-size: 36rpx;
  98. }
  99. .sale {
  100. color: #999999;
  101. font-size: 24rpx;
  102. margin-left: 8rpx;
  103. }
  104. .price_line {
  105. color: #999999;
  106. font-size: 24rpx;
  107. text-decoration:line-through;
  108. font-weight: 400;
  109. }
  110. }
  111. .right {
  112. font-size: 24rpx;
  113. font-weight: bold;
  114. .regiser_row {
  115. width: 144rpx;
  116. height: 52rpx;
  117. line-height: 52rpx;
  118. text-align: center;
  119. border-radius: 16rpx;
  120. background-color: #FC3F3F;
  121. color: #fff;
  122. font-weight: 500;
  123. font-size: 26rpx;
  124. }
  125. }
  126. }
  127. }
  128. }
  129. .course_content {
  130. width: 100%;
  131. }
  132. }