1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- /* compontents/share/share.wxss */
- .container {
- position:fixed;
- left: 0;
- bottom: 0;
- width: 100%;
- height: 100%;
- z-index: 98;
- }
- .container:after {
- content:'';
- position:absolute;
- left: 0;
- bottom: 0;
- width: 100%;
- height: 100%;
- background: rgba(0,0,0,.5);
- filter: blur(15px);
- z-index: 99;
- }
- .share {
- position:fixed;
- left: 15rpx;
- bottom: 0;
- width: calc(100% - 30rpx);
- box-sizing:border-box;
- background: #C8C8C8;
- z-index: 100;
- }
- .share-img {
- display: flex;
- flex-direction: column;
- justify-content: center;
- }
- .download {
- width: 100%;
- text-align: center;
- background: #fff;
- border-bottom: 2rpx solid #C8C8C8;
- padding: 20rpx 0;
- box-sizing: border-box;
- }
- .share-img text {
- font-size: 32rpx;
- color: #3F3F3F;
- margin-top: 43rpx;
- }
- .share-img .color {
- color: red;
- }
- .deselect {
- background: #fff;
- margin-top: 30rpx;
- text-align: center;
- padding: 20rpx 0;
- }
|