index.less 680 B

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