uni.scss 712 B

123456789101112131415161718192021222324252627282930
  1. /**
  2. * 下方引入的为uView UI的集成样式文件,为scss预处理器,其中包含了一些"u-"开头的自定义变量
  3. * uView自定义的css类名和scss变量,均以"u-"开头,不会造成冲突,请放心使用
  4. */
  5. @import 'uview-ui/theme.scss';
  6. // .wrap{margin: 0 40rpx;position: relative;}
  7. .bottom-btn-wrap{
  8. height: 155rpx;
  9. }
  10. .bottom-btn{
  11. position: fixed;
  12. left: 40rpx;
  13. right: 40rpx;
  14. bottom: 47rpx;
  15. height: 85rpx;
  16. line-height: 85rpx;
  17. background: #3397FA;
  18. box-shadow: 0px 9rpx 9rpx 0px rgba(0, 0, 0, 0.03);
  19. border-radius: 10rpx;
  20. text-align: center;
  21. font-size: 28rpx;
  22. font-weight: 500;
  23. color: #FFF;
  24. letter-spacing: 1px;
  25. z-index: 99;
  26. }
  27. .bottom-btn.static{
  28. position: static;
  29. }