99 lines
1.7 KiB
Plaintext
99 lines
1.7 KiB
Plaintext
/* pages/mine/mine.wxss */
|
|
.container-content {
|
|
padding: 20rpx;
|
|
}
|
|
|
|
.container-box {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.box-up {
|
|
display: flex;
|
|
flex-direction: column;
|
|
background-color: #FFD100;
|
|
padding: 40rpx;
|
|
color: white;
|
|
border-top-right-radius: 20rpx;
|
|
border-top-left-radius: 20rpx;
|
|
}
|
|
|
|
.balance-box {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.balance-btn {
|
|
padding: 10rpx 20rpx;
|
|
background-color: yellowgreen;
|
|
border-radius: 10rpx;
|
|
}
|
|
|
|
.balance-desc {
|
|
font-size: 24rpx;
|
|
margin-top: 10rpx;
|
|
font-weight: 400;
|
|
}
|
|
|
|
.balance {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
font-size: 48rpx;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.box-down {
|
|
display: flex;
|
|
flex-direction: column;
|
|
background: linear-gradient(to right, #FFE880, #FFD30A);
|
|
padding: 40rpx;
|
|
color: white;
|
|
border-bottom-right-radius: 20rpx;
|
|
border-bottom-left-radius: 20rpx;
|
|
}
|
|
|
|
.arrow-down {
|
|
width: 0;
|
|
height: 0;
|
|
margin-left: 30rpx;
|
|
border-top: 14rpx solid transparent;
|
|
border-bottom: 14rpx solid transparent;
|
|
border-left: 14rpx solid white;
|
|
}
|
|
|
|
.package-bag {
|
|
margin-top: 20rpx;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.menu-box {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-top: 30rpx;
|
|
}
|
|
|
|
.menu-item {
|
|
display: flex;
|
|
flex-direction: row;
|
|
padding: 30rpx 40rpx;
|
|
align-items: center;
|
|
border-bottom: 1rpx solid rgb(238, 238, 238);
|
|
margin-left: 20rpx;
|
|
margin-right: 20rpx;
|
|
}
|
|
|
|
.menu-icon {
|
|
width: 48rpx;
|
|
height: 48rpx;
|
|
}
|
|
|
|
.menu-title {
|
|
font-size: 28rpx;
|
|
color: black;
|
|
margin-left: 20rpx;
|
|
} |