ChooseScenario.wxss 1.6 KB

12345678910111213141516171819202122232425262728
  1. /*!*************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  2. !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[0].use[2]!./node_modules/resolve-url-loader/index.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[0].use[4]!./src/components/Footer.scss ***!
  3. \*************************************************************************************************************************************************************************************************************************************************************************************************************************/
  4. @charset "UTF-8";
  5. .footer1 {
  6. position: fixed;
  7. left: 0;
  8. right: 0;
  9. bottom: 0;
  10. z-index: 1000;
  11. -webkit-flex-direction: column;
  12. -ms-flex-direction: column;
  13. flex-direction: column;
  14. display: -webkit-flex;
  15. display: -ms-flexbox;
  16. display: flex;
  17. -webkit-align-items: center;
  18. -ms-flex-align: center;
  19. align-items: center;
  20. padding-top: 46rpx;
  21. padding-bottom: constant(safe-area-inset-bottom);
  22. /* 兼容 iOS < 11.2 */
  23. padding-bottom: env(safe-area-inset-bottom);
  24. /* 兼容 iOS >= 11.2 */
  25. background: -webkit-gradient(linear, left top, left bottom, from(red), to(blue));
  26. background: -webkit-linear-gradient(top, red, blue);
  27. background: linear-gradient(180deg, red, blue);
  28. }