53 lines
970 B
Plaintext
53 lines
970 B
Plaintext
/* 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;
|
|
justify-content: space-between;
|
|
align-items: flex-start;
|
|
width: 90%;
|
|
background-color: #fff;
|
|
border-radius: 15rpx;
|
|
min-height: 200rpx;
|
|
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;
|
|
}
|
|
|
|
.input-box input {
|
|
padding-left: 15rpx;
|
|
width: 100%;
|
|
} |