1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- /* component/shar-dialog/shar-dialog.wxss */
- .share {
- position:fixed;
- left:0;
- top:0;
- width:100%;
- height:100%;
- background:rgba(0, 0, 0, .6);
- z-index:999999;
-
- }
- .btn {
- position: fixed;
- bottom: -300rpx;
- width: 100%;
- height: 290rpx;
- background: #fff;
- }
- .btn .bg {
- display: block;
- width: 500rpx;
- margin: 5% auto;
- height: 42rpx;
- }
- .btn text{
- font-size: 28rpx;
- }
- .share-btn {
- display: flex;
- justify-content: space-around;
- }
- .share-btn image {
- width: 68rpx;
- height: 68rpx;
- }
- .share-btn view {
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- align-items: center;
- font-size: 32rpx;
- height: 120rpx;
- width: 180rpx
- }
- .img {
- display: block;
- /* position: absolute; */
- /* left: 5rpx; */
- /* top: 30rpx; */
- width: 80%;
- height: 80%;
- margin: 50rpx auto;
- /* width: 375rpx; */
- /* height: 667rpx; */
- }
- .Preservation {
- position: absolute;
- left: 15%;
- top: 1020rpx;
- width: 536rpx;
- height: 80rpx;
- color: #fff;
- font-size: 36rpx;
- text-align: center;
- line-height: 80rpx;
- border-radius: 44rpx;
- z-index: 999;
- }
- .share-friend {
- background: #fff;
- display:flex;
- flex-direction:column;
- align-items: center;
- outline:none;
- padding:0;
- margin:0;
- border-radius:0;
- height: 140rpx;
- font-size:32rpx;
- width: 180rpx;
- }
- .share-friend image {
- width: 68rpx;
- height: 68rpx;
- }
- button::after{ border: none; }
|