app.wxss 341 B

12345678910111213141516171819202122232425
  1. /**app.wxss**/
  2. view{
  3. box-sizing: border-box;
  4. transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
  5. }
  6. .flex{
  7. display: flex;
  8. align-items: center;
  9. }
  10. .ju-c{
  11. justify-content: center;
  12. }
  13. .ju-b{
  14. justify-content: space-between;
  15. }
  16. .img-bgs{
  17. inset: 0;
  18. position: absolute;
  19. z-index: -1;
  20. width: 100%;
  21. height: 100%;
  22. }