partyItem.wxss 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. /* component/roomItem/roomItem.wxss */
  2. .tj_listItem {
  3. display: flex;
  4. align-items: flex-start;
  5. justify-content: flex-start;
  6. padding: 20rpx 0;
  7. border-bottom: 2rpx solid #EDEDED;
  8. background: #fff;
  9. }
  10. .tj_listItem .tj_listItemCover {
  11. /* width: 210rpx;
  12. height: 210rpx; */
  13. width: 160rpx;
  14. height: 160rpx;
  15. border-radius: 8px;
  16. overflow: hidden;
  17. }
  18. .tj_listItem .tj_listItemCover .coverImage {
  19. /* width: 210rpx;
  20. height: 210rpx; */
  21. width: 160rpx;
  22. height: 160rpx;
  23. }
  24. .tj_listItemMsg {
  25. width: 456rpx;
  26. margin-left: 20rpx;
  27. /* padding-top: 10rpx;
  28. box-sizing: border-box; */
  29. }
  30. .tj_listItemMsg .tj_listItemTitle {
  31. font-size: 28rpx;
  32. color: #333;
  33. line-height: 40rpx;
  34. font-weight: bold;
  35. overflow: hidden;
  36. text-overflow: ellipsis;
  37. display: -webkit-box;
  38. -webkit-line-clamp: 2;
  39. -webkit-box-orient: vertical;
  40. }
  41. .tj_listItemMsg .tj_listItemTip {
  42. display: flex;
  43. align-items: center;
  44. height: 28rpx;
  45. margin: 10rpx 0 10rpx ;
  46. }
  47. .tj_listItemMsg .tj_listItemTip .tj_listItemTipText {
  48. font-size: 24rpx;
  49. color: #666;
  50. overflow: hidden;
  51. text-overflow: ellipsis;
  52. display: -webkit-box;
  53. -webkit-line-clamp: 1;
  54. -webkit-box-orient: vertical;
  55. }
  56. .tj_listItemMsg .tj_listItemTag {
  57. display: flex;
  58. align-items: center;
  59. margin: 14rpx 0 24rpx 0;
  60. }
  61. .tj_listItemMsg .tj_listItemTag .tagItem {
  62. font-size: 20rpx;
  63. color: #0075DC;
  64. padding: 2rpx 8rpx;
  65. background: rgba(0, 117, 220, 0.2);
  66. border-radius: 4rpx;
  67. margin-right: 8rpx;
  68. display: flex;
  69. align-items: center;
  70. justify-content: center;
  71. border-radius: 4rpx;
  72. }
  73. .tj_listItemMsg .tj_listItemTag .tagVr {
  74. position: relative;
  75. display: flex;
  76. align-items: center;
  77. justify-content: center;
  78. margin-right: 8rpx;
  79. width: 104rpx;
  80. height: 32rpx;
  81. border: 1px solid #0075DC;
  82. box-sizing: border-box;
  83. border-radius: 4rpx;
  84. }
  85. .tj_listItemMsg .tj_listItemTag .tagVr .tagItemIcon {
  86. background: #0075DC;
  87. width: 52rpx;
  88. height: 32rpx;
  89. display: flex;
  90. align-items: center;
  91. justify-content: center;
  92. }
  93. .tj_listItemMsg .tj_listItemTag .tagVr .tagItemIcon .tagItemIconImage {
  94. width: 28rpx;
  95. height: 18rpx;
  96. }
  97. .tj_listItemMsg .tj_listItemTag .tagVr .tip {
  98. width: 52rpx;
  99. height: 32rpx;
  100. color: #0075DC;
  101. display: flex;
  102. align-items: center;
  103. justify-content: center;
  104. /* padding: 2rpx 8rpx; */
  105. background: rgba(0, 117, 220, 0.2);
  106. font-size: 20rpx;
  107. }
  108. .tj_listItemMsg .tj_listItemPrice {
  109. display: flex;
  110. align-items: center;
  111. height: 28rpx;
  112. justify-content: space-between;
  113. }
  114. .tj_listItemMsg .tj_listItemPrice .unitPrice {
  115. font-size: 20rpx;
  116. color: #666;
  117. }
  118. .tj_listItemMsg .tj_listItemPrice .totalPrice{
  119. font-size: 28rpx;
  120. color: #0075DC;
  121. font-weight: bold;
  122. }