12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- /* compontents/share/share.wxss */
- .share {
- position: absolute;
- left: 0;
- bottom: -342rpx;
- width:100%;
- border-radius:25rpx;
- padding:32rpx 24rpx;
- box-sizing:border-box;
- background:#fff;
- }
- .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;
- align-items: center;
- justify-content: space-around;
- margin-top: 44rpx;
- }
- .share-img view {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- }
- .share-img text {
- font-size: 32rpx;
- color: #3F3F3F;
- margin-top: 43rpx;
- }
- .download image {
- width: 82rpx;
- height: 86rpx;
- }
- .transmit image {
- width: 102rpx;
- height: 82rpx;
- }
|