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.
88 lines
1.4 KiB
88 lines
1.4 KiB
6 years ago
|
/* pages/topics/common/interactive/common/imageCell/index.wxss */
|
||
|
.cell {
|
||
|
border-bottom: 1px solid #E7E7E7;
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
padding: 10px 20px;
|
||
|
align-items: center;
|
||
|
}
|
||
|
.left{
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
width: 70%;
|
||
|
}
|
||
|
.leftActive{
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
width: 100%;
|
||
|
}
|
||
|
.left-bottom{
|
||
|
display: flex;
|
||
|
flex: row;
|
||
|
justify-content: space-between;
|
||
|
}
|
||
|
.left-bottom-userInfo{
|
||
|
display: flex;
|
||
|
flex: row;
|
||
|
align-items: center;
|
||
|
}
|
||
|
.user-icon{
|
||
|
width: 20px;
|
||
|
height: 20px;
|
||
|
border-radius: 50%;
|
||
6 years ago
|
background-color: #EEEEEE;
|
||
6 years ago
|
}
|
||
|
.userName{
|
||
|
margin: 0 5px 0 5px;
|
||
|
font-size: 12px;
|
||
|
color: #3B3B3B;
|
||
|
}
|
||
|
.left-bottom-comments{
|
||
|
display: flex;
|
||
|
flex: row;
|
||
|
align-items: center;
|
||
|
margin-right: 10px;
|
||
|
}
|
||
|
.comments-icon{
|
||
|
width: 20px;
|
||
|
height: 15px;
|
||
|
margin-right: 5px;
|
||
|
border-radius: 5px;
|
||
|
background-color: red;
|
||
|
}
|
||
|
.commentNum{
|
||
|
font-size: 12px;
|
||
|
color: #3B3B3B;
|
||
|
}
|
||
|
.right{
|
||
|
width: 30%;
|
||
|
height: 70px;
|
||
|
border-radius: 5px;
|
||
|
}
|
||
|
image{
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
border-radius: 5px;
|
||
|
}
|
||
|
.cell_title {
|
||
|
font-weight: 300;
|
||
|
font-size: 17px;
|
||
|
color: #000;
|
||
|
}
|
||
|
.cell_title_selected {
|
||
|
color: #9C9C9C;
|
||
|
}
|
||
|
.cell_info_meta {
|
||
|
padding-top: 10rpx;
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
align-items: center;
|
||
|
font-size: 12px;
|
||
|
line-height: 12px;
|
||
|
color: #D4D4D4;
|
||
|
}
|
||
|
.cell_info_top {
|
||
|
padding: 0 10px;
|
||
|
width: 20px;
|
||
|
height: 12px;
|
||
|
}
|