@import '../../../../../styles/base.less'; @yellow: #46a9a4; page { background: #f6f6f6; } .order-row { display: flex; align-items: center; margin:10rpx 0; padding: 10rpx 0; } .order-number { display: flex; justify-content: space-between; border-bottom: 0.5px solid @yellow; } .order-content { margin: 0; .avatar { width: 80rpx; height: 80rpx; margin-right: 20rpx; border-radius: 50%; } .order-shop-img{ width:120rpx; height:90rpx; margin-right: 20rpx; } .order-user { display: flex; align-items: center; justify-content: space-between; .order-user-name { flex:1; overflow: hidden; //一定要写 text-overflow: ellipsis; //超出省略号 display: -webkit-box; //一定要写 -webkit-line-clamp: 2; //控制行数 -webkit-box-orient: vertical; //一定要写 } } .order-info { display: flex; align-items: center; justify-content: space-between; width: 100%; padding:10rpx 20rpx; border: 1px solid #46a9a4; border-radius: 40rpx; } .order-comment-text { margin:20rpx 0; } } .comment-detail{ border-bottom: 1px solid @yellow; } .reply { margin-bottom: 80rpx; } .footer { padding: 20rpx; } .reply-modal { width: 100%; padding: 20rpx; .reply-textarea { box-sizing: border-box; width: 100%; height: 400rpx; padding: 20rpx; border: 1px solid #eee; border-radius: 20rpx; } }