12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- page {
- background: #f6f6f6;
- }
- .comments-wrapper {
- margin: 30rpx;
- padding: 10rpx 20rpx 20rpx;
- background: #ffffff;
- border-radius: 30rpx;
- }
- .comments-wrapper .order-row {
- display: flex;
- align-items: center;
- margin: 10rpx 0;
- padding: 10rpx 0;
- }
- .comments-wrapper .order-number {
- display: flex;
- justify-content: space-between;
- border-bottom: 0.5px solid #46a9a4;
- }
- .comments-wrapper .order-content {
- margin: 0;
- }
- .comments-wrapper .order-content .count {
- font-size: 24rpx;
- color: #ada8a8;
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical;
- }
- .comments-wrapper .order-content .avatar {
- width: 80rpx;
- height: 80rpx;
- margin-right: 20rpx;
- border-radius: 50%;
- }
- .comments-wrapper .order-content .order-shop-img {
- width: 120rpx;
- height: 90rpx;
- margin-right: 20rpx;
- }
- .comments-wrapper .order-content .order-user {
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .comments-wrapper .order-content .order-user .order-user-name {
- flex: 1;
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical;
- }
- .comments-wrapper .order-content .order-info {
- display: flex;
- align-items: center;
- justify-content: space-between;
- width: 100%;
- padding: 10rpx 20rpx;
- border: 1px solid #46a9a4;
- border-radius: 40rpx;
- }
- .comments-wrapper .order-content .order-comment-text {
- margin: 20rpx 0;
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical;
- color: #b5b0b0;
- }
- .comments-wrapper .order-footer {
- display: flex;
- flex-direction: row-reverse;
- }
- .comments-wrapper .order-footer .reply-btn text {
- color: #000000;
- letter-spacing: 4rpx;
- }
|