ts_aimz/pages/mine/mineAccount/mineInfo/mineInfo.wxss
2025-05-13 15:06:17 +08:00

57 lines
1.0 KiB
Plaintext

.info-container {
height: 90vh;
background-color: white;
border-radius: 10px;
padding: 20px;
}
.item {
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: center;
padding: 10px 5px;
}
.item-title {
flex: .3;
}
.item-content {
flex: .7;
text-align: right;
padding: 15rpx;
border-radius: 15rpx;
background-color: var(--bg-gray-input-color);
font-size: 28rpx;
}
.bottom-box {
position: fixed;
left: 0;
bottom: 0;
width: 100vw;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.green-bottom-btn {
height: 42px;
width: 90vw;
line-height: 42px;
margin-bottom: 20px;
border-radius: 4px;
background-color: var(--btn-green-color);
color: rgba(255, 255, 255, 1);
font-size: 16px;
text-align: center;
font-family: PingFangSC-semiBold;
}
.green-bottom-btn:active {
background-color: var(--btn-green-color-active);
color: white;
}