50 lines
681 B
Plaintext
50 lines
681 B
Plaintext
/* pages/mine.wxss */
|
|
page {
|
|
background: #FFFFFF;
|
|
}
|
|
|
|
.title-box {
|
|
width: 100%;
|
|
height: 120px;
|
|
background-color: #4985f8;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
padding: 0px 20px;
|
|
}
|
|
|
|
.title-box image {
|
|
width: 64px;
|
|
height: 64px;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.title-box .name {
|
|
color: #FFFFFF;
|
|
margin-left: 15px;
|
|
}
|
|
|
|
.row {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
padding: 10px;
|
|
}
|
|
|
|
.first {
|
|
border-bottom-color: #f2f1f6;
|
|
border-bottom-width: 1px;
|
|
border-bottom-style: solid;
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.row image {
|
|
width: 23px;
|
|
height: 23px;
|
|
}
|
|
|
|
.row .text {
|
|
margin-left: 5px;
|
|
} |