123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- .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%;
- }
- .shareBtns{
- /* margin-top: 30rpx; */
- display: flex;
- justify-content: space-around;
- padding: 0 30rpx;
- }
- .shareItem {
- width: 20%;
- text-align: center;
- }
- .shareName {
- height: 25rpx;
- font-size: 24rpx;
- color: #573A0C;
- }
- .btn-rechargeNow {
- display: flex;
- align-items: center;
- height: 70rpx;
- /* padding: 0 20rpx; */
- background-color: #fe7124;
- background: linear-gradient(to right, #ff7a21 0%, #feb25a 100%);
- color: #fff;
- border-radius: 16rpx;
- margin: 0 auto;
- font-size: 30rpx;
- }
- .btn-rechargeNow image{
- width: 28rpx;
- height: 24rpx;
- margin-right: 10rpx;
- }
- .faceToFace{
- margin-top: 10rpx;
- display: flex;
- align-items: center;
- width: 300rpx;
- margin: 0 auto;
- justify-content: space-between;
- margin-top: 20rpx;
- color: #fe7124;
- text-align: center;
- }
|