123456789101112131415161718192021222324252627 |
- .show-more {
- position: fixed;
- bottom: 0;
- left: 0;
- z-index: 10;
- width: 100%;
- height: 100vh;
- background-color: rgba(0, 0, 0, 0.4);
- }
- .more-info {
- border-radius: 40rpx 40rpx 0rpx 0rpx;
- overflow: hidden;
- z-index: 100;
- position: fixed;
- bottom: 0;
- width: 100%;
- background: #F1F3F4;
- height: 600rpx;
- }
- .model-title{
- margin-bottom: 46rpx;
- padding: 40rpx 32rpx 0rpx 32rpx;
- font-weight: 600;
- font-size: 40rpx;
- color: #060809;
- }
|