99 lines
1.3 KiB
Plaintext
99 lines
1.3 KiB
Plaintext
.tab{
|
|
display: flex;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
background-color: #fff;
|
|
z-index: 100;
|
|
border-bottom: 1px solid #DDD;
|
|
}
|
|
.tab-box{
|
|
flex: 1;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
font-size: 32rpx;
|
|
height: 100rpx;
|
|
}
|
|
.tab-box.active{
|
|
color: #f55054;
|
|
border-bottom: 1px solid #f55054;
|
|
}
|
|
.talk-container{
|
|
margin-top: 100rpx;
|
|
}
|
|
.talk{
|
|
border-bottom: 1px solid #DDD;
|
|
padding: 20rpx;
|
|
background-color: #fff;
|
|
}
|
|
.talk:last-child{
|
|
border-bottom: none;
|
|
}
|
|
.talk-user, .user-info{
|
|
display: flex;
|
|
justify-content: space-between;
|
|
margin-bottom: 10rpx;
|
|
}
|
|
.user-info image{
|
|
width: 80rpx;
|
|
height: 80rpx;
|
|
margin-right: 20rpx;
|
|
}
|
|
.good image{
|
|
width: 40rpx;
|
|
height: 40rpx;
|
|
margin-top: -8rpx;
|
|
vertical-align: middle;
|
|
}
|
|
.name{
|
|
font-size: 32rpx;
|
|
line-height: 50rpx;
|
|
}
|
|
.time{
|
|
font-size: 24rpx;
|
|
color: #888;
|
|
}
|
|
.good text{
|
|
line-height: 80rpx;
|
|
}
|
|
.talk-content{
|
|
font-size: 30rpx;
|
|
line-height: 40rpx;
|
|
}
|
|
.reply{
|
|
padding: 20rpx;
|
|
background-color: #eee;
|
|
margin-top: 10rpx;
|
|
}
|
|
.reply-content{
|
|
padding-left: 100rpx;
|
|
}
|
|
.photo-box{
|
|
width: 32%;
|
|
height: 150rpx;
|
|
overflow: hidden;
|
|
display: inline-block;
|
|
margin-right: 2%;
|
|
text-align: center;
|
|
}
|
|
.photo-box:nth-child(3n){
|
|
margin-right: 0;
|
|
}
|
|
.photo-box image{
|
|
height: 100%;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|