index.scss 698 B

1234567891011121314151617181920212223242526272829303132333435
  1. .content{
  2. background: #F1F1F1;
  3. min-height: 100vh;
  4. padding: 0 32rpx;
  5. padding-top: 24rpx;
  6. padding-bottom: 24rpx;
  7. .item{
  8. // height: 432rpx;
  9. height: 300rpx;
  10. background: #FFFFFF;
  11. border-radius: 0rpx 24rpx 0rpx 24rpx;
  12. // margin-top: 24rpx;
  13. padding: 0 24rpx;
  14. display: flex;
  15. flex-direction: column;
  16. justify-content: space-around;
  17. margin-bottom: 24rpx;
  18. .line{
  19. display: flex;
  20. justify-content:space-between;
  21. .left{
  22. font-size: 28rpx;
  23. font-family: PingFang-SC-Medium, PingFang-SC;
  24. font-weight: 500;
  25. color: #666666;
  26. }
  27. .right{
  28. font-size: 32rpx;
  29. font-family: PingFang-SC-Medium, PingFang-SC;
  30. font-weight: 500;
  31. color: #333333;
  32. }
  33. }
  34. }
  35. }