app.wxss 509 B

12345678910111213141516171819202122232425262728
  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. }
  12. .flex_column{
  13. display: flex;
  14. flex-direction: column;
  15. justify-content: center;
  16. align-items: center;
  17. }
  18. .flex_row{
  19. display: flex;
  20. flex-direction: row;
  21. justify-content: center;
  22. align-items: center;
  23. }
  24. .one-line-text {
  25. overflow: hidden;
  26. text-overflow:ellipsis;
  27. white-space: nowrap;
  28. }