ts_aimz/pages/mine/mineAccount/mineInfo/mineInfo.wxss

55 lines
908 B
Plaintext
Raw Normal View History

2025-04-03 17:40:39 +08:00
.info-container {
height: 100vh;
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;
}
.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: rgba(255, 169, 0, 1);
color: rgba(255, 255, 255, 1);
font-size: 16px;
text-align: center;
font-family: PingFangSC-semiBold;
}
.green-bottom-btn:active {
background-color: rgba(255, 169, 0, 0.3);
color: white;
}