recommandDetail.wxss 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. page {
  2. background: #fff;
  3. display: flex;
  4. flex-direction: column;
  5. }
  6. .container {
  7. flex: 1;
  8. position: relative;
  9. }
  10. .imageContainer {
  11. width: 100%;
  12. height: 450rpx;
  13. }
  14. .card {
  15. width: 750rpx;
  16. position: absolute;
  17. left: 0;
  18. top: 430rpx;
  19. background: #fff;
  20. border-radius: 30rpx 30rpx 0 0;
  21. }
  22. .mrgin30 {
  23. margin: 30rpx;
  24. }
  25. .course-name {
  26. font-size: 36rpx;
  27. font-weight: bold;
  28. color: #333333;
  29. }
  30. .course-type {
  31. margin-top: 20rpx;
  32. font-size: 26rpx;
  33. color: #999999;
  34. display: flex;
  35. }
  36. .type-content {
  37. margin-left: 10rpx;
  38. color: #666666;
  39. }
  40. .title {
  41. font-size: 30rpx;
  42. color: #666666;
  43. }
  44. .content {
  45. margin-top: 20rpx;
  46. padding: 30rpx 20rpx;
  47. background: #F3F5F9;
  48. border-radius: 10rpx;
  49. font-size: 26rpx;
  50. color: #999999;
  51. }
  52. .bottom {
  53. padding: 20rpx 30rpx;
  54. width: 100%;
  55. position: fixed;
  56. left: 0;
  57. bottom: 0;
  58. background: #FFFFFF;
  59. box-shadow: 0 -5rpx 10rpx 0 rgba(153, 153, 153, 0.1);
  60. }
  61. .btn {
  62. display: flex;
  63. align-items: center;
  64. justify-content: center;
  65. font-size: 24rpx;
  66. width: 690rpx;
  67. }