partyItem.wxss 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  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:calc(100% - 180rpx);
  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. height:100rpx
  41. }
  42. .tj_listItemMsg .tj_listItemTip {
  43. display: flex;
  44. align-items: center;
  45. height: 28rpx;
  46. margin: 10rpx 0 10rpx ;
  47. }
  48. .tj_listItemMsg .tj_listItemTip .tj_listItemTipText {
  49. font-size: 24rpx;
  50. color: #666;
  51. overflow: hidden;
  52. text-overflow: ellipsis;
  53. display: -webkit-box;
  54. -webkit-line-clamp: 1;
  55. -webkit-box-orient: vertical;
  56. padding-top:10px;
  57. }
  58. .tj_listItemMsg .tj_listItemTag {
  59. display: flex;
  60. align-items: center;
  61. margin: 14rpx 0 24rpx 0;
  62. }
  63. .tj_listItemMsg .tj_listItemTag .tagItem {
  64. font-size: 20rpx;
  65. color: #0075DC;
  66. padding: 2rpx 8rpx;
  67. background: rgba(0, 117, 220, 0.2);
  68. border-radius: 4rpx;
  69. margin-right: 8rpx;
  70. display: flex;
  71. align-items: center;
  72. justify-content: center;
  73. border-radius: 4rpx;
  74. }
  75. .tj_listItemMsg .tj_listItemTag .tagVr {
  76. position: relative;
  77. display: flex;
  78. align-items: center;
  79. justify-content: center;
  80. margin-right: 8rpx;
  81. width: 104rpx;
  82. height: 32rpx;
  83. border: 1px solid #0075DC;
  84. box-sizing: border-box;
  85. border-radius: 4rpx;
  86. }
  87. .tj_listItemMsg .tj_listItemTag .tagVr .tagItemIcon {
  88. background: #0075DC;
  89. width: 52rpx;
  90. height: 32rpx;
  91. display: flex;
  92. align-items: center;
  93. justify-content: center;
  94. }
  95. .tj_listItemMsg .tj_listItemTag .tagVr .tagItemIcon .tagItemIconImage {
  96. width: 28rpx;
  97. height: 18rpx;
  98. }
  99. .tj_listItemMsg .tj_listItemTag .tagVr .tip {
  100. width: 52rpx;
  101. height: 32rpx;
  102. color: #0075DC;
  103. display: flex;
  104. align-items: center;
  105. justify-content: center;
  106. /* padding: 2rpx 8rpx; */
  107. background: rgba(0, 117, 220, 0.2);
  108. font-size: 20rpx;
  109. }
  110. .tj_listItemMsg .tj_listItemPrice {
  111. display: flex;
  112. align-items: center;
  113. height: 28rpx;
  114. justify-content: space-between;
  115. }
  116. .tj_listItemMsg .tj_listItemPrice .unitPrice {
  117. font-size: 20rpx;
  118. color: #666;
  119. }
  120. .tj_listItemMsg .tj_listItemPrice .totalPrice{
  121. font-size: 28rpx;
  122. color: #0075DC;
  123. font-weight: bold;
  124. }