index.less 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. @import '../../../../../styles/base.less';
  2. @yellow: #46a9a4;
  3. page {
  4. background: #f6f6f6;
  5. }
  6. .order-row {
  7. display: flex;
  8. align-items: center;
  9. margin:10rpx 0;
  10. padding: 10rpx 0;
  11. }
  12. .order-number {
  13. display: flex;
  14. justify-content: space-between;
  15. border-bottom: 0.5px solid @yellow;
  16. }
  17. .order-content {
  18. margin: 0;
  19. .avatar {
  20. width: 80rpx;
  21. height: 80rpx;
  22. margin-right: 20rpx;
  23. border-radius: 50%;
  24. }
  25. .order-shop-img{
  26. width:120rpx;
  27. height:90rpx;
  28. margin-right: 20rpx;
  29. }
  30. .order-user {
  31. display: flex;
  32. align-items: center;
  33. justify-content: space-between;
  34. .order-user-name {
  35. flex:1;
  36. overflow: hidden; //一定要写
  37. text-overflow: ellipsis; //超出省略号
  38. display: -webkit-box; //一定要写
  39. -webkit-line-clamp: 2; //控制行数
  40. -webkit-box-orient: vertical; //一定要写
  41. }
  42. }
  43. .order-info {
  44. display: flex;
  45. align-items: center;
  46. justify-content: space-between;
  47. width: 100%;
  48. padding:10rpx 20rpx;
  49. border: 1px solid #46a9a4;
  50. border-radius: 40rpx;
  51. }
  52. .order-comment-text {
  53. margin:20rpx 0;
  54. }
  55. }
  56. .comment-detail{
  57. // border-bottom: 1px solid @yellow;
  58. }
  59. .reply {
  60. margin-bottom: 80rpx;
  61. }
  62. .footer {
  63. padding: 20rpx;
  64. }
  65. .reply-modal {
  66. width: 100%;
  67. padding: 20rpx;
  68. .reply-textarea {
  69. box-sizing: border-box;
  70. width: 100%;
  71. height: 400rpx;
  72. padding: 20rpx;
  73. border: 1px solid #eee;
  74. border-radius: 20rpx;
  75. }
  76. }