app.wxss 531 B

1234567891011121314151617181920212223242526272829303132333435
  1. /**app.wxss**/
  2. .container {
  3. box-sizing: border-box;
  4. background-color: #f4f4f4;
  5. font-family: PingFangSC-Light,helvetica,'Heiti SC';
  6. }
  7. view,image,text,navigator{
  8. box-sizing: border-box;
  9. padding:0;
  10. margin:0;
  11. }
  12. view,text{
  13. font-family: PingFangSC-Light,helvetica,'Heiti SC';
  14. font-size: 29rpx;
  15. color: #333;
  16. }
  17. button::after {
  18. display: none;
  19. }
  20. .display-none {
  21. display: none !important;
  22. }
  23. ::-webkit-scrollbar {
  24. width: 5px;
  25. background-color: #f5f5f5;
  26. }
  27. ::-webkit-scrollbar-thumb {
  28. background-color: #999;
  29. }