courses.less 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. .courses_container {
  2. width: 100%;
  3. height: 100%;
  4. background: #444;
  5. .course_item {
  6. width: 100%;
  7. height: 400rpx;
  8. background: #fff;
  9. margin-top: 10rpx;
  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 {
  34. width: 270rpx;
  35. display: flex;
  36. align-items: center;
  37. justify-content: space-between;
  38. .btn_icon {
  39. width: 56rpx;
  40. height: 56rpx;
  41. }
  42. .btn_text {
  43. font-size: 28rpx;
  44. color: rgba(0, 0, 0, .6);
  45. }
  46. }
  47. }
  48. }
  49. }