index.wxss 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. page {
  2. background: #f6f6f6;
  3. }
  4. .comments-wrapper {
  5. margin: 30rpx;
  6. padding: 10rpx 20rpx 20rpx;
  7. background: #ffffff;
  8. border-radius: 30rpx;
  9. }
  10. .comments-wrapper .order-row {
  11. display: flex;
  12. align-items: center;
  13. margin: 10rpx 0;
  14. padding: 10rpx 0;
  15. }
  16. .comments-wrapper .order-number {
  17. display: flex;
  18. justify-content: space-between;
  19. border-bottom: 0.5px solid #46a9a4;
  20. }
  21. .comments-wrapper .order-content {
  22. margin: 0;
  23. }
  24. .comments-wrapper .order-content .count {
  25. font-size: 24rpx;
  26. color: #ada8a8;
  27. overflow: hidden;
  28. text-overflow: ellipsis;
  29. display: -webkit-box;
  30. -webkit-line-clamp: 2;
  31. -webkit-box-orient: vertical;
  32. }
  33. .comments-wrapper .order-content .avatar {
  34. width: 80rpx;
  35. height: 80rpx;
  36. margin-right: 20rpx;
  37. border-radius: 50%;
  38. }
  39. .comments-wrapper .order-content .order-shop-img {
  40. width: 120rpx;
  41. height: 90rpx;
  42. margin-right: 20rpx;
  43. }
  44. .comments-wrapper .order-content .order-user {
  45. display: flex;
  46. align-items: center;
  47. justify-content: space-between;
  48. }
  49. .comments-wrapper .order-content .order-user .order-user-name {
  50. flex: 1;
  51. overflow: hidden;
  52. text-overflow: ellipsis;
  53. display: -webkit-box;
  54. -webkit-line-clamp: 2;
  55. -webkit-box-orient: vertical;
  56. }
  57. .comments-wrapper .order-content .order-info {
  58. display: flex;
  59. align-items: center;
  60. justify-content: space-between;
  61. width: 100%;
  62. padding: 10rpx 20rpx;
  63. border: 1px solid #46a9a4;
  64. border-radius: 40rpx;
  65. }
  66. .comments-wrapper .order-content .order-comment-text {
  67. margin: 20rpx 0;
  68. overflow: hidden;
  69. text-overflow: ellipsis;
  70. display: -webkit-box;
  71. -webkit-line-clamp: 2;
  72. -webkit-box-orient: vertical;
  73. color: #b5b0b0;
  74. }
  75. .comments-wrapper .order-footer {
  76. display: flex;
  77. flex-direction: row-reverse;
  78. }
  79. .comments-wrapper .order-footer .reply-btn text {
  80. color: #000000;
  81. letter-spacing: 4rpx;
  82. }