card-mini/packagecard/purse/takecash.wxss

82 lines
1.6 KiB
Plaintext
Raw Normal View History

2021-09-01 16:55:20 +08:00
/* packagecard/purse/takecash.wxss */
.content-box {
display: flex;
flex-direction: column;
justify-content: center;
2021-09-22 09:29:16 +08:00
align-items: flex-start;
2021-09-01 16:55:20 +08:00
width: 100%;
background-color: #E6B980;
2021-09-22 09:29:16 +08:00
border-radius: 10rpx;
color: #ffffff;
2021-09-01 16:55:20 +08:00
}
2021-09-22 09:29:16 +08:00
.content-bottom-box {
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
width: 100%;
background-color: #D6A970;
border-bottom-left-radius: 10rpx;
border-bottom-right-radius: 10rpx;
padding: 25rpx;
2021-09-01 16:55:20 +08:00
font-size: 28rpx;
2021-09-22 09:29:16 +08:00
margin-top: 25rpx;
2021-09-01 16:55:20 +08:00
}
.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;
2021-09-22 09:29:16 +08:00
width: 100%;
2021-09-01 16:55:20 +08:00
background-color: #fff;
2021-09-22 09:29:16 +08:00
border-radius: 5rpx;
2021-09-01 16:55:20 +08:00
box-shadow: 0 4rpx 8rpx 0 #DFDBDB, 0 6rpx 20rpx 0 #DFDBDB;
2021-09-22 09:29:16 +08:00
margin-top: 15rpx;
2021-09-01 16:55:20 +08:00
}
.cash-box .title {
font-size: 32rpx;
}
2021-09-22 09:29:16 +08:00
.cash-bottom-box {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
width: 100%;
border-top: 1rpx solid #f3f3f3;
padding: 20rpx 20rpx 0rpx 20rpx;
}
2021-09-01 16:55:20 +08:00
.input-box {
width: 100%;
display: flex;
flex-direction: row;
2021-09-22 09:29:16 +08:00
align-items: flex-end;
justify-content: flex-start;
2021-09-06 09:18:46 +08:00
font-size: 80rpx;
2021-09-22 09:29:16 +08:00
padding: 20rpx;
line-height: 80rpx;
2021-09-01 16:55:20 +08:00
}
.input-box input {
2021-09-22 09:29:16 +08:00
width: 80%;
text-align: left;
2021-09-06 09:18:46 +08:00
line-height: 80rpx;
height: 80rpx;
2021-09-22 09:29:16 +08:00
font-size: 80rpx;
padding-left: 15rpx;
2021-09-06 09:18:46 +08:00
}
.title-box {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
width: 100%;
font-size: 32rpx;
2021-09-22 09:29:16 +08:00
padding: 0rpx 20rpx 20rpx 20rpx;
2021-09-01 16:55:20 +08:00
}