31 lines
623 B
Plaintext
31 lines
623 B
Plaintext
/* pages/mineContract/mineContract.wxss */
|
|
page{
|
|
background-color: #f5f5f5;
|
|
padding: 15px;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
.basic-info .container{
|
|
display: flex;
|
|
flex-direction: column;
|
|
border-radius: 10px;
|
|
margin-bottom: 10px;
|
|
}
|
|
.basic-info .container view{
|
|
background-color: #FFF;
|
|
padding: 15px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
color: #333;
|
|
font-size: 14px;
|
|
border-bottom: 0.5px solid #f5f5f5;
|
|
position: relative;
|
|
}
|
|
.basic-info view:last-child{
|
|
border-bottom: 0;
|
|
}
|
|
.basic-info view text:nth-child(1){
|
|
flex-shrink: 0;
|
|
margin-right: 10px;
|
|
} |