73 lines
1.6 KiB
SCSS
73 lines
1.6 KiB
SCSS
.box {
|
|
// border-top: 1rpx solid #eaeaea;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
|
|
.card {
|
|
width: 690rpx;
|
|
height: 313rpx;
|
|
background-color: #47c877;
|
|
display: flex;
|
|
box-sizing: border-box;
|
|
padding: 50rpx;
|
|
font-size: 30rpx;
|
|
flex-direction: column;
|
|
color: #fff;
|
|
margin-top: 20rpx;
|
|
.user {
|
|
display: flex;
|
|
align-items: center;
|
|
.head {
|
|
width: 80rpx;
|
|
height: 80rpx;
|
|
margin-right: 32rpx;
|
|
border-radius: 50%;
|
|
background-color: #fff;
|
|
}
|
|
}
|
|
.balance {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-top: 52rpx;
|
|
}
|
|
}
|
|
.list {
|
|
display: flex;
|
|
width: 690rpx;
|
|
margin-top: 33rpx;
|
|
flex-direction: column;
|
|
|
|
.option {
|
|
width: 100%;
|
|
height: 80rpx;
|
|
margin-bottom: 15rpx;
|
|
box-sizing: border-box;
|
|
padding: 0 30rpx;
|
|
box-shadow: 2rpx 3rpx 16rpx 1rpx rgba(51, 51, 51, 0.1);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
.button {
|
|
width: 100%;
|
|
height: 80rpx;
|
|
margin-bottom: 15rpx;
|
|
box-sizing: border-box;
|
|
padding: 0 30rpx;
|
|
box-shadow: 2rpx 3rpx 16rpx 1rpx rgba(51, 51, 51, 0.1);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
border: 0;
|
|
outline: 0;
|
|
font-size: 30rpx;
|
|
font-weight: initial;
|
|
background-color: #fff;
|
|
&::after {
|
|
border: none;
|
|
}
|
|
}
|
|
}
|
|
}
|