123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- .sharePopup {
- position: fixed;
- left: 0;
- right: 0;
- bottom: 0;
- top: 0;
- background: rgba(0, 0, 0, 0.7);
- display: flex;
- align-items: center;
- justify-content: center;
- z-index: 100;
- }
- .shareDialog {
- position: relative;
- width: 606rpx;
- height: 592rpx;
- display: flex;
- flex-direction: column;
- justify-content: center;
- padding-top: 50rpx;
- }
- .share_bg {
- position: absolute;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- z-index: -1;
- }
- .close_icon {
- position: absolute;
- right: -25rpx;
- top: 15rpx;
- width: 100rpx;
- height: 100rpx;
- }
- .close_icon:active {
- opacity: 0.9;
- }
- .shareInfo {
- text-align: center;
- }
- .shareInfo .num {
- color: red;
- }
- .shareInfo___top {
- font-size: 30rpx;
- color: #573A0C;
- margin-bottom: 10rpx;
- }
- .shareInfo___bottom {
- font-size: 26rpx;
- color: #CF8534;
- }
- .shareList {
- width: 528rpx;
- height: 186rpx;
- margin: 30rpx auto;
- display: flex;
- justify-content: space-evenly;
- align-items: center;
- background: #F3DCB7;
- }
- .user_placeholder {
- width: 76rpx;
- height: 76rpx;
- border-radius: 50%;
- }
- .shareItem {
- text-align: center;
- }
- .shareName {
- height: 25rpx;
- font-size: 24rpx;
- color: #573A0C;
- }
- .btn-rechargeNow {
- width: 328rpx;
- height: 70rpx;
- line-height: 70rpx;
- text-align: center;
- background-color: #fe7124;
- background: linear-gradient(to right, #ff7a21 0%, #feb25a 100%);
- text-align: center;
- color: #fff;
- border-radius: 16rpx;
- margin: 0 auto;
- margin-top: 40rpx;
- }
|