index.wxss 336 B

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