Footer.scss 507 B

123456789101112131415161718
  1. .footer1 {
  2. position: fixed;
  3. left: 0;
  4. right: 0;
  5. bottom: 0;
  6. z-index: 100;
  7. // height: 120px;
  8. flex-direction: column;
  9. display: flex;
  10. align-items: center;
  11. padding-top: 46px;
  12. padding-bottom: constant(safe-area-inset-bottom);
  13. /* 兼容 iOS < 11.2 */
  14. padding-bottom: env(safe-area-inset-bottom);
  15. /* 兼容 iOS >= 11.2 */
  16. // background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #000000 100%);
  17. // background: linear-gradient(180deg, red, blue);
  18. }