117 lines
1.8 KiB
Plaintext
117 lines
1.8 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 {
|
|
min-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;
|
|
min-height: 50rpx;
|
|
}
|
|
|
|
.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: 120px;
|
|
text-align: right;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.content-text {
|
|
min-height: 36rpx;
|
|
width: 100%;
|
|
color: #999;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.content-text image {
|
|
width: 11px;
|
|
height: 11px;
|
|
margin-right: 10px;
|
|
}
|
|
|
|
/* 列表页的操作按钮 */
|
|
.content-btn {
|
|
margin-top: 10rpx;
|
|
padding-top: 10px;
|
|
border-top: 2rpx solid #f5f5f5;
|
|
border-top: 2rpx solid #f5f5f5;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
flex-direction: row;
|
|
width: 100%;
|
|
}
|
|
|
|
.content-btn .inner-btn-box {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-left: 50rpx;
|
|
}
|
|
|
|
.content-btn .inner-btn-box image {
|
|
width: 23rpx;
|
|
height: 24rpx;
|
|
margin-right: 8rpx;
|
|
}
|
|
|
|
.content-btn .inner-btn-box text {
|
|
font-size: 24rpx;
|
|
font-weight: 300;
|
|
color: #069F99;
|
|
} |