courses.less 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. .courses_container {
  2. width: 100%;
  3. height: 100%;
  4. background: #eee;
  5. .course_item {
  6. width: 100%;
  7. height: 400rpx;
  8. background: #fff;
  9. margin-bottom: 20rpx;
  10. padding-top: 20rpx;
  11. box-sizing: border-box;
  12. // display: flex;
  13. // flex-direction: column;
  14. // align-items: center;
  15. .course_icon {
  16. display: block;
  17. width: 704rpx;
  18. height: 290rpx;
  19. border-radius: 20rpx;
  20. margin: 0 auto;
  21. }
  22. .course_info {
  23. width: 704rpx;
  24. display: flex;
  25. flex-direction: row;
  26. align-items: center;
  27. justify-content: space-between;
  28. margin: 17rpx auto;
  29. .course_title {
  30. color: #373737;
  31. font-size: 30rpx;
  32. }
  33. .course_btn_wrapper{
  34. width: 290rpx;
  35. display: flex;
  36. align-items: center;
  37. justify-content: space-between;
  38. }
  39. .course_btn {
  40. // width: 270rpx;
  41. display: flex;
  42. align-items: center;
  43. // justify-content: space-between;
  44. .btn_icon {
  45. width: 48rpx;
  46. height: 46rpx;
  47. margin-right: 7rpx;
  48. }
  49. .btn_text {
  50. font-size: 28rpx;
  51. color: rgba(0, 0, 0, .6);
  52. }
  53. }
  54. }
  55. }
  56. }