74 lines
1.2 KiB
Plaintext
74 lines
1.2 KiB
Plaintext
/* pages/meeting/meeting.wxss */
|
|
page {
|
|
background-color: #F5F5F5;
|
|
}
|
|
/* 头部筛选 start */
|
|
.select-list {
|
|
border-top: 0.5px solid #F5F5F5;
|
|
height: 40px;
|
|
font-size: 14px;
|
|
display: flex;
|
|
align-items: center;
|
|
background-color: #fff;
|
|
}
|
|
|
|
.select-item {
|
|
flex: 1;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.select-item image {
|
|
width: 11px;
|
|
height: 6px;
|
|
margin-left: 9px;
|
|
}
|
|
/* 头部筛选end */
|
|
/* 列表start */
|
|
.list{
|
|
padding: 15px;
|
|
}
|
|
.list-item{
|
|
height: 90px;
|
|
background-color: #fff;
|
|
border-radius: 5px;
|
|
padding: 10px 15px;
|
|
display: flex;
|
|
justify-content: space-around;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
}
|
|
.list-item:not(:first-child) {
|
|
margin-top: 10px;
|
|
}
|
|
.list-item .title{
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
.list-item .title text:nth-child(1){
|
|
font-size: 14px;
|
|
color: #333;
|
|
flex: 1;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
.list-item .title text:nth-child(2){
|
|
font-size: 12px;
|
|
color: #999;
|
|
width: 70px;
|
|
text-align: right;
|
|
flex-shrink: 0;
|
|
}
|
|
.content-text{
|
|
width: 100%;
|
|
color: #999;
|
|
font-size: 12px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|