index.less 796 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. page {
  2. background: #f6f6f6;
  3. padding: 20rpx 20rpx 20rpx 0;
  4. .box {
  5. margin: 20rpx;
  6. border-radius: 10rpx;
  7. background: #fff;
  8. padding: 15rpx 20rpx;
  9. .title {
  10. font-size: 36rpx;
  11. }
  12. .details {
  13. display: flex;
  14. margin-top: 20rpx;
  15. .image {
  16. width: 180rpx;
  17. height: 180rpx;
  18. border-radius: 18rpx;
  19. }
  20. .information {
  21. margin-left: 20rpx;
  22. .num {
  23. margin-bottom: 30rpx;
  24. }
  25. .time {
  26. font-size: 24rpx;
  27. color: #666666;
  28. margin-top: 10rpx;
  29. }
  30. }
  31. }
  32. }
  33. }