/* pages/home/home.wxss */
|
.list {
|
width: 94%;
|
margin: 0 3%;
|
display: flex;
|
justify-content: space-between;
|
flex-wrap: wrap;
|
}
|
|
.list .item {
|
width: 48%;
|
height: 80px;
|
background-color: #fff;
|
border-radius: 5px;
|
font-size: 14px;
|
margin-bottom: 10px;
|
}
|
|
.list .item .title {
|
display: flex;
|
justify-content: space-between;
|
height: 30px;
|
background-color: #007CFE;
|
color: #fff;
|
line-height: 30px;
|
padding: 0 5px;
|
border-top-left-radius: 5px;
|
border-top-right-radius: 5px;
|
white-space:nowrap;
|
}
|
|
.list .item .content {
|
width: 90%;
|
margin: 0 5%;
|
height: 50px;
|
display: flex;
|
justify-content: space-between;
|
}
|
|
.list .item .content .left {
|
line-height: 50px;
|
|
}
|
.list .item .content .right {
|
padding-top: 5px;
|
text-align: right;
|
|
}
|
|
.list .item .add {
|
width: 40px;
|
height: 40px;
|
font-size: 50px;
|
color: #007CFE;
|
/* border: 1px solid #007CFE; */
|
/* border-radius: 50%; */
|
/* margin-top:5px;
|
margin-left: calc(50% - 20px); */
|
position: relative;
|
top: 5px;
|
left: calc(50% - 20px);
|
}
|