154 lines
2.6 KiB
Plaintext
154 lines
2.6 KiB
Plaintext
/* pages/mine/mine.wxss */
|
|
.bg-container {
|
|
position: relative;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.bg-image {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: -1;
|
|
}
|
|
|
|
.content-container {
|
|
position: relative;
|
|
padding: 0rpx 10rpx 10rpx 10rpx;
|
|
z-index: 1;
|
|
color: white;
|
|
}
|
|
|
|
.container-content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 20rpx;
|
|
}
|
|
|
|
.container-box {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.box-up {
|
|
display: flex;
|
|
flex-direction: column;
|
|
background: linear-gradient(to right, #FFDBB4, #FFEDD2);
|
|
padding: 20rpx 40rpx;
|
|
color: #532A00;
|
|
border-top-right-radius: 20rpx;
|
|
border-top-left-radius: 20rpx;
|
|
}
|
|
|
|
.box-down {
|
|
display: flex;
|
|
flex-direction: column;
|
|
background: linear-gradient(to right, #FFF0DE, #FEEBD0);
|
|
padding: 10rpx 40rpx;
|
|
color: #532A00;
|
|
border-bottom-right-radius: 20rpx;
|
|
border-bottom-left-radius: 20rpx;
|
|
}
|
|
|
|
.balance-box {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.balance-btn {
|
|
padding: 10rpx 40rpx;
|
|
background-color: #4EAF79;
|
|
border-radius: 10rpx;
|
|
color: white;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
|
|
|
|
|
|
.arrow-down {
|
|
width: 0;
|
|
height: 0;
|
|
margin-left: 30rpx;
|
|
border-top: 14rpx solid transparent;
|
|
border-bottom: 14rpx solid transparent;
|
|
border-left: 14rpx solid #532A00;
|
|
}
|
|
|
|
.package-bag {
|
|
margin-top: 20rpx;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.package-bag-item {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.package-bag-item .icon {
|
|
width: 40rpx;
|
|
height: 40rpx;
|
|
}
|
|
|
|
.package-bag .title {
|
|
font-size: 24rpx;
|
|
line-height: 24rpx;
|
|
}
|
|
|
|
.package-bag .num {
|
|
margin-left: 10rpx;
|
|
font-size: 40rpx;
|
|
font-weight: 800;
|
|
}
|
|
|
|
.menu-box {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-top: 30rpx;
|
|
background: white;
|
|
border-radius: 20rpx;
|
|
padding-top: 20rpx;
|
|
}
|
|
|
|
.menu-item {
|
|
display: flex;
|
|
flex-direction: row;
|
|
padding: 30rpx 40rpx;
|
|
align-items: center;
|
|
border-bottom: 1rpx solid rgb(245, 244, 244);
|
|
margin-left: 20rpx;
|
|
margin-right: 20rpx;
|
|
}
|
|
|
|
.menu-icon {
|
|
width: 48rpx;
|
|
height: 48rpx;
|
|
}
|
|
|
|
.menu-title {
|
|
font-size: 28rpx;
|
|
color: black;
|
|
margin-left: 20rpx;
|
|
} |