app.wxss 615 B

1234567891011121314151617181920212223242526272829303132
  1. /* 初始化样式 */
  2. page,view,text,swiper,swiper-item,image,navigator{
  3. padding: 0;
  4. margin: 0;
  5. box-sizing: border-box;
  6. }
  7. /* 定义主题颜色 */
  8. page{
  9. --themeColor:#191B26;
  10. --nodateColor:#eeeeee;
  11. --envredColor:#ee595a;
  12. --envgreenColor:#69d8a6;
  13. --envyellowColor:#ffc400;
  14. --envblueColor:#479bef;
  15. }
  16. .flex_column{
  17. display: flex;
  18. flex-direction: column;
  19. justify-content: center;
  20. align-items: center;
  21. }
  22. .flex_row{
  23. display: flex;
  24. flex-direction: row;
  25. justify-content: center;
  26. align-items: center;
  27. }
  28. .one-line-text {
  29. overflow: hidden;
  30. text-overflow:ellipsis;
  31. white-space: nowrap;
  32. }