65 lines
1.1 KiB
Plaintext
65 lines
1.1 KiB
Plaintext
/* pages/meeting/meeting.wxss */
|
|
.text-label{
|
|
width: 80px !important;
|
|
}
|
|
/* 列表start */
|
|
.edit-text{
|
|
display: flex;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
padding-right: 15pt;
|
|
height: 40px;
|
|
justify-content: flex-end;
|
|
align-items: center;
|
|
color: #069F99;
|
|
}
|
|
.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;
|
|
}
|
|
.content-text image{
|
|
width: 11px;
|
|
height: 11px;
|
|
margin-right: 10px;
|
|
}
|
|
.btn-area button{
|
|
background-color: #069F99 !important;
|
|
} |