index.less 684 B

1234567891011121314151617181920212223242526272829303132
  1. /*使屏幕变暗 */
  2. .background_screen {
  3. width: 100%;
  4. height: 100%;
  5. position: fixed;
  6. top: 0;
  7. left: 0;
  8. background: #000;
  9. opacity: 0.4;
  10. overflow: hidden;
  11. z-index: 99;
  12. color: #fff;
  13. }
  14. /*对话框 */
  15. .attr_box {
  16. width: 100%;
  17. max-height: 80vh;
  18. position: fixed;
  19. bottom: 0;
  20. left: 0;
  21. z-index: 99;
  22. border-radius: 40px 40px 0 0;
  23. border-radius: 40px 40px 0px 0px;
  24. border-top-left-radius: 30rpx;
  25. border-top-right-radius: 30rpx;
  26. box-sizing: border-box;
  27. /*兼容 IOS<11.2*/
  28. // padding-bottom: constant(safe-area-inset-bottom);
  29. /*兼容 IOS>11.2*/
  30. // padding-bottom: env(safe-area-inset-bottom);
  31. }