2021-09-01 16:55:20 +08:00
|
|
|
/* packagecard/purse/takecash.wxss */
|
|
|
|
.content-box {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
width: 100%;
|
|
|
|
background-color: #E6B980;
|
|
|
|
text-align: center;
|
|
|
|
min-height: 400rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content-box .money {
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content-box .hint {
|
|
|
|
font-size: 28rpx;
|
|
|
|
margin-top: 15rpx;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cash-box {
|
|
|
|
padding: 15rpx;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2021-09-06 09:18:46 +08:00
|
|
|
justify-content: space-around;
|
2021-09-01 16:55:20 +08:00
|
|
|
align-items: flex-start;
|
|
|
|
width: 90%;
|
|
|
|
background-color: #fff;
|
|
|
|
border-radius: 15rpx;
|
|
|
|
position: absolute;
|
|
|
|
top: 450rpx;
|
|
|
|
box-shadow: 0 4rpx 8rpx 0 #DFDBDB, 0 6rpx 20rpx 0 #DFDBDB;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cash-box .title {
|
|
|
|
font-size: 32rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.input-box {
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
2021-09-06 09:18:46 +08:00
|
|
|
font-size: 80rpx;
|
2021-09-01 16:55:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.input-box input {
|
|
|
|
width: 100%;
|
2021-09-06 09:18:46 +08:00
|
|
|
text-align: center;
|
|
|
|
line-height: 80rpx;
|
|
|
|
height: 80rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.title-box {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
width: 100%;
|
|
|
|
font-size: 32rpx;
|
2021-09-01 16:55:20 +08:00
|
|
|
}
|