courses.less 1.2 KB

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