You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
/* pages/resource/list/index.wxss */
|
|
|
|
@import '../../../style/font.wxss';
|
|
|
|
.container{
|
|
|
|
display: flex;
|
|
|
|
width: 100%;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
background-color: white;
|
|
|
|
/* margin-top:10px; */
|
|
|
|
}
|
|
|
|
.column{
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
width: 90%;
|
|
|
|
height: 90px;
|
|
|
|
border-bottom: 2px solid whitesmoke;
|
|
|
|
}
|
|
|
|
|
|
|
|
.left{
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.right{
|
|
|
|
width: 15px;
|
|
|
|
text-align:right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.articleImg{
|
|
|
|
width: 55px;
|
|
|
|
height: 55px;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
/* border-radius: 50%; */
|
|
|
|
}
|
|
|
|
|
|
|
|
.roomImg{
|
|
|
|
width: 70px;
|
|
|
|
height: 55px;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content{
|
|
|
|
margin-left: 15px;
|
|
|
|
margin-right: 20px;
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.title{
|
|
|
|
width: 100%;
|
|
|
|
display: -webkit-box;
|
|
|
|
-webkit-line-clamp: 1;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
word-break: break-all;
|
|
|
|
font-weight:1000;
|
|
|
|
}
|
|
|
|
|
|
|
|
.r_type{
|
|
|
|
font-size: 13px;
|
|
|
|
}
|
|
|
|
.tips{
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
.tips-con{
|
|
|
|
width: 90%;
|
|
|
|
height: 90;
|
|
|
|
}
|
|
|
|
|
|
|
|
.page_empty {
|
|
|
|
width: 100%;
|
|
|
|
height: 100px;
|
|
|
|
margin-top: 20px;
|
|
|
|
font-size: 14px;
|
|
|
|
color: #aaa;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.publish{
|
|
|
|
position: fixed;
|
|
|
|
width: 50px;
|
|
|
|
height: 50px;
|
|
|
|
right: 20px;
|
|
|
|
bottom: 40px;
|
|
|
|
background-color: #fa4646;
|
|
|
|
border-radius: 50%;
|
|
|
|
color:white;
|
|
|
|
display:flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
font-size: 15px;
|
|
|
|
}
|