1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- @import '../../styles/base.less';
- .comments-header{
- display: flex;
- justify-content: space-between;
- .more {
- width: 100rpx;
- text-align: right;
- }
- }
- .comment {
- .comment-header {
- display: flex;
- align-items: center;
- justify-content: space-between;
- .header-text {
- flex: 1;
- padding:0 10rpx;
- }
- .header-avatar {
- width: 80rpx;
- height: 80rpx;
- .header-avatar-image {
- width: 100%;
- height: 100%;
- margin: 0 auto;
- border-radius: 50%;
- }
- }
- }
- .comment-content {
- .comment-text {
- padding: 10rpx 0;
- }
- .comment-images {
- display: flex;
- flex-wrap: wrap;
- }
- .comment-image {
- width: 210rpx;
- height: 210rpx;
- margin: 6rpx;
- background: #222222;
- }
- }
- .merchant-reply {
- font-size: 26rpx;
- .reply-title {
- color: #ffe300;
- }
- .reply-content {
- text-indent: 2em;
- padding: 10px 0;
- }
- }
-
-
- }
- .comments-footer {
- text-align: center;
- }
|