index.less 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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.2;
  10. overflow: hidden;
  11. z-index: 3;
  12. color: #fff;
  13. }
  14. /*对话框 */
  15. .attr_box {
  16. width: 100%;
  17. overflow: hidden;
  18. position: fixed;
  19. bottom: 0;
  20. left: 0;
  21. z-index: 4;
  22. background: #fff;
  23. border-top-left-radius: 30rpx;
  24. border-top-right-radius: 30rpx;
  25. padding-top: 20rpx;
  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. .share_selects {
  31. display: flex;
  32. align-items: center;
  33. justify-content: space-between;
  34. padding: 30rpx 150rpx;
  35. .share_select {
  36. text-align: center;
  37. .img {
  38. width: 90rpx;
  39. height: 90rpx;
  40. }
  41. .text {
  42. font-size: 28rpx;
  43. color: #333;
  44. }
  45. }
  46. }
  47. .share_cancel {
  48. padding: 30rpx 0rpx;
  49. border-top: 1px solid #97979763;
  50. text-align: center;
  51. font-size: 32rpx;
  52. letter-spacing: 4rpx;
  53. color: #666;
  54. }
  55. }