123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- /* 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(255,255,255,.8);
- filter: blur(15px);
- z-index: 99;
- }
- .share {
- position:fixed;
- left: 15rpx;
- bottom: 0;
- width: calc(100% - 30rpx);
- border-radius:25rpx;
- padding:32rpx 24rpx;
- box-sizing:border-box;
- background:#fff;
- z-index: 100;
- }
- .share .title {
- font-size: 32rpx;
- font-weight: bolder;
- color: #3F3F3F;
- text-align: center;
- padding-bottom: 20rpx;
- border-bottom: 2rpx solid #C8C8C8;
-
- }
- .share-img {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- }
- .share-img text {
- font-size: 32rpx;
- color: #3F3F3F;
- margin-top: 43rpx;
- }
- .share-img .color {
- color: red;
- }
|