12345678910111213141516171819202122232425262728 |
- .background_screen {
- width: 100%;
- height: 100%;
- position: fixed;
- top: 0;
- left: 0;
- background: rgba(0, 0, 0, 0.7);
- overflow: hidden;
- z-index: 99;
- color: #fff;
- }
- .attr_box {
- width: 100%;
- max-height: 80vh;
- position: fixed;
- bottom: 0;
- left: 0;
- z-index: 99;
- border-radius: 40px 40px 0 0;
- border-radius: 40px 40px 0px 0px;
- border-top-left-radius: 30rpx;
- border-top-right-radius: 30rpx;
- box-sizing: border-box;
-
-
- }
|