index.scss 303 B

1234567891011121314151617181920212223242526
  1. page {
  2. background-color: #f1f2f3;
  3. }
  4. .panel{
  5. padding:10px;
  6. background-color: #fff;
  7. }
  8. .mt-10{
  9. margin-bottom: 10px;
  10. }
  11. .small {
  12. font-size: 26rpx;
  13. color: #333;
  14. line-height: 25px;
  15. }
  16. .mr-5{
  17. margin-right: 5px;
  18. }
  19. .mt-5{
  20. margin-bottom: 5px;
  21. }
  22. .flex-around{
  23. justify-content: space-around;
  24. }