You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
huazhiyu/pages/MyWallet/MyWallet.scss

174 lines
2.7 KiB

.page{
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: #FFFFFF;
}
.head-bg{
position: relative;
width: 100%;
height: 400rpx;
background: linear-gradient($base,$change-clor);
.head-user{
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 4%;
height: 100rpx;
.user{
display: flex;
align-items: center;
image{
width: 70rpx;
height: 70rpx;
border-radius: 100%;
}
text{
font-size: 28rpx;
color: #FFFFFF;
margin-left: 20rpx;
}
}
.exchange{
display: flex;
align-items: center;
text{
font-size: 28rpx;
color: #FFFFFF;
}
}
}
.wallet-balance{
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 200rpx;
.wallet{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text{
font-size: 30rpx;
color: #FFFFFF;
}
.number{
font-size: 60rpx;
margin-top: 10rpx;
// font-weight: bold;
}
}
}
.bg{
position: absolute;
left: 0;
bottom: 0;
width: 100%;
height: 40rpx;
image{
width: 100%;
height: 100%;
}
}
}
/* 钱包充值 */
.wallet-recharge{
width: 100%;
background-color: #FFFFFF;
.recharge-title{
display: flex;
align-items: center;
padding: 0 4%;
height: 100rpx;
text{
font-size: 30rpx;
font-weight: bold;
color: #222222;
}
}
.recharge-list{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
padding: 0 4% 100rpx;
.list{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 48%;
height: 200rpx;
background-color: #FFFFFF;
border: 2rpx solid #EEEEEE;
border-radius: 10rpx;
margin-bottom: 20rpx;
.price{
display: flex;
align-items: center;
justify-content: center;
width: 100%;
text{
font-size: 32rpx;
font-weight: bold;
color: #555555;
}
}
.give{
display: flex;
align-items: center;
justify-content: center;
width: 100%;
margin-top: 10rpx;
text{
font-size: 26rpx;
color: #959595;
}
}
}
.action{
background-color: $rgba-02;
border: 2rpx solid $base;
.price{
text{
color: $base;
}
}
.give{
text{
color: $base;
}
}
}
}
}
/* 充值按钮 */
.recharge-btn{
position: fixed;
left: 0;
bottom: 0;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 100rpx;
background-color: #FFFFFF;
.btn{
display: flex;
align-items: center;
justify-content: center;
width: 90%;
height: 70rpx;
color: #FFFFFF;
font-size: 28rpx;
background-color: $base;
border-radius: 70rpx;
box-shadow: 0 10rpx 10rpx $base;
}
}