12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- .item {
- width: 100vw;
- background-color: #ffffff;
- margin-bottom: 20rpx;
- .content {
- padding: 20rpx 0;
- padding-left: 30rpx;
- border-bottom: 1px solid #DDD;
- box-sizing: border-box;
- .user {
- display: flex;
- width: 100%;
- .portrait {
- width: 64rpx;
- height: 64rpx;
- text-align: center;
- line-height: 64rpx;
- background: #3874F6;
- border-radius: 50%;
- margin-top: 12rpx;
- margin-right: 16rpx;
- flex-shrink: 0;
- font-size: 24rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #FFFFFF;
- }
- .right {
- flex: 1;
- .title {
- height: 42rpx;
- line-height: 42rpx;
- font-size: 30rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #333333;
- text {
- margin-left: 20rpx;
- font-size: 24rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #999999;
- }
- }
- .exp {
- font-size: 24rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #333333;
- }
- }
- }
- }
- .editor {
- display: flex;
- justify-content: space-between;
- align-items: center;
- width: 100%;
- height: 80rpx;
- .icon-but {
- padding-right: 30rpx;
- navigator {
- display: inline-block;
- width: 60rpx;
- height: 60rpx;
- line-height: 60rpx;
- text-align: center;
- margin-left: 30rpx;
- width: 32px;
- color: #707070;
- }
- }
- }
- }
|