app.scss 691 B

12345678910111213141516171819202122232425262728293031323334353637
  1. .footer-fixed {
  2. position: fixed;
  3. z-index: 999;
  4. width: 100%;
  5. bottom: 0;
  6. left: 0;
  7. }
  8. .footer-fixed.foot-pb {
  9. padding-bottom: calc(env(safe-area-inset-bottom) / 2);
  10. }
  11. .theme-bg-color {
  12. background-color: #5a3ee8;
  13. }
  14. .theme-color {
  15. color: #5a3ee8;
  16. }
  17. .text-cut-2 {
  18. overflow: hidden;
  19. text-overflow: ellipsis;
  20. display: -webkit-box;
  21. -webkit-line-clamp: 2;
  22. -webkit-box-orient: vertical;
  23. }
  24. .homeBtn {
  25. width: 100upx;
  26. height: 80upx;
  27. border-radius: 50upx 0 0 50upx;
  28. position: fixed;
  29. bottom: 200upx;
  30. right: 0;
  31. z-index: 999;
  32. display: flex;
  33. justify-content: center;
  34. align-items: center;
  35. background: #ffffff;
  36. box-shadow: -4upx -4upx 30upx #888888;
  37. }