partyItem.wxss 2.8 KB

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