app.wxss 403 B

1234567891011121314151617181920212223242526272829
  1. /**app.wxss**/
  2. page,view,text,swiper,swiper-item,image,navigator{
  3. padding: 0;
  4. margin: 0;
  5. box-sizing: border-box;
  6. }
  7. page{
  8. /* 定义主题颜色 */
  9. --themeColor:#1296db;
  10. font-size: 28rpx;
  11. }
  12. ::-webkit-scrollbar{
  13. width: 0;
  14. height: 0;
  15. color: transparent;
  16. }
  17. image{
  18. width: 100%;
  19. height: 100%;
  20. }
  21. .float-left{
  22. float: left;
  23. }
  24. .float-right{
  25. float: right;
  26. }
  27. .flex-display{
  28. display:flex
  29. }