12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- .comment {
- overflow: hidden;
- }
- .comment .comment_item {
- padding-left: 46rpx;
- padding-right: 40rpx;
- border-bottom: 1px solid #fafafa;
- }
- .comment_info {
- height: 64rpx;
- margin: 38rpx 0;
- position: relative;
- overflow: hidden;
- }
- .comment_info .icon {
- width: 64rpx;
- height: 64rpx;
- margin-right: 20rpx;
- border-radius: 50%;
- float: left;
- overflow: hidden;
- }
- .comment_info .time {
- font-size: 24rpx;
- line-height: 64rpx;
- color: #999999;
- position: absolute;
- right: 0;
- top: 0;
- }
- .info {
- float: left;
- height: 64rpx;
- display: flex;
- align-items: flex-start;
- flex-direction: column;
- justify-content: space-between;
- }
- .info .info_name{
- line-height: 64rpx;
- font-size: 28rpx;
- color: #333333;
- letter-spacing: 0.6rpx;
- }
- .comment_content {
- font-size: 26rpx;
- padding-bottom: 32rpx;
- color: #333333;
- }
|