2023-08-31 10:43:26 +08:00
|
|
|
/* pages/index/mine.wxss */
|
|
|
|
.mine_wrap{
|
|
|
|
width: 100%;
|
|
|
|
height: 100vh;
|
|
|
|
box-sizing: border-box;
|
|
|
|
overflow-y: auto;
|
|
|
|
background-color: #f3f1f1;
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
.mine_item{
|
|
|
|
box-sizing: border-box;
|
|
|
|
border-radius: 4px;
|
|
|
|
background-color: #fff;
|
|
|
|
}
|
|
|
|
.mine_item_title{
|
|
|
|
width: 25%;
|
|
|
|
height: 32px;
|
|
|
|
line-height: 32px;
|
|
|
|
font-size: 32rpx;
|
|
|
|
font-weight: bold;
|
|
|
|
background-color: #5199FF;
|
|
|
|
color: #fff;
|
|
|
|
box-sizing: border-box;
|
|
|
|
padding-left: 10px;
|
|
|
|
border-bottom-right-radius: 10px;
|
|
|
|
}
|
|
|
|
.mine_item_list{
|
|
|
|
width: 100%;
|
|
|
|
box-sizing: border-box;
|
|
|
|
padding: 10px;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
|
|
|
.list_item{
|
2023-09-15 14:19:45 +08:00
|
|
|
width: 45%;
|
2023-08-31 10:43:26 +08:00
|
|
|
margin: 10px 5px;
|
|
|
|
font-size: 30rpx;
|
|
|
|
}
|