60 lines
1.1 KiB
Plaintext
60 lines
1.1 KiB
Plaintext
/* pages/mine/mineAccount/mineInfo/mineInfo.wxss */
|
|
page {
|
|
background: linear-gradient(to bottom, #F0F0F0, #FFFFFF);
|
|
background-size: 100% 100vh;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
.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;
|
|
} |