health-care.css 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. .wrap {
  2. width: 100%;
  3. display: flex;
  4. flex-direction: column;
  5. padding: 20rpx 24rpx;
  6. box-sizing: border-box;
  7. }
  8. .module {
  9. width: 100%;
  10. display: flex;
  11. flex-wrap: wrap;
  12. background-color: #FFFFFF;
  13. border-radius: 16rpx;
  14. padding: 24rpx 24rpx 0;
  15. box-sizing: border-box;
  16. margin-bottom: 30rpx;
  17. }
  18. .tag-list {
  19. width: 100%;
  20. display: flex;
  21. justify-content: space-between;
  22. flex-wrap: wrap;
  23. }
  24. .tag-item {
  25. width: calc(50% - 11rpx);
  26. background-color: #F8F9FC;
  27. border-radius: 50rpx;
  28. min-height: 60rpx;
  29. display: flex;
  30. align-items: center;
  31. justify-content: center;
  32. color: #202020;
  33. font-size: 24rpx;
  34. margin-bottom: 24rpx;
  35. font-weight: 500;
  36. }
  37. .message-list {
  38. width: 100%;
  39. display: flex;
  40. flex-direction: column;
  41. padding-bottom: 24rpx;
  42. }
  43. .message-item {
  44. margin-bottom: 20rpx;
  45. }
  46. .message-item:last-child {
  47. margin-bottom: 0;
  48. }
  49. .message-item-name {
  50. width: 100%;
  51. color: #292929;
  52. font-size: 32rpx;
  53. font-weight: bold;
  54. margin-bottom: 8rpx;
  55. }
  56. .message-item-bottom {
  57. color: #A7A7A7;
  58. font-size: 26rpx;
  59. }
  60. .message-item-bottom text:first-child {
  61. color: #F2501A;
  62. font-size: 24rpx;
  63. }
  64. .message-item-bottom text {
  65. margin-right: 20rpx;
  66. }
  67. .product-list {
  68. width: 100%;
  69. display: flex;
  70. flex-direction: column;
  71. background-color: #FFFFFF;
  72. border-radius: 16rpx;
  73. overflow: hidden;
  74. }
  75. .product-item {
  76. width: 100%;
  77. display: flex;
  78. align-items: center;
  79. padding: 24rpx;
  80. box-sizing: border-box;
  81. border-bottom: 1px solid #F9F6F6;
  82. }
  83. .product-item:last-child {
  84. border-bottom: none;
  85. }
  86. .product-item-column-img {
  87. width: 220rpx;
  88. height: 180rpx;
  89. border-radius: 16rpx;
  90. margin-right: 24rpx;
  91. }
  92. .product-item-sidebar {
  93. flex: 1;
  94. height: 160rpx;
  95. display: flex;
  96. flex-direction: column;
  97. justify-content: space-between;
  98. }
  99. .product-item-sidebar-top {
  100. width: 100%;
  101. display: -webkit-box;
  102. -webkit-line-clamp: 2;
  103. overflow: hidden;
  104. text-overflow: ellipsis;
  105. -webkit-box-orient: vertical;
  106. }
  107. .product-tag-img {
  108. width: 106rpx;
  109. margin-right: 6rpx;
  110. vertical-align: middle;
  111. }
  112. .product-item-column-name {
  113. color: #202020;
  114. font-size: 28rpx;
  115. font-weight: bold;
  116. }
  117. .product-item-row-between {
  118. width: 100%;
  119. display: flex;
  120. justify-content: space-between;
  121. align-items: center;
  122. }
  123. .look-num {
  124. color: #919191;
  125. font-size: 26rpx;
  126. }
  127. .collect-btn {
  128. display: flex;
  129. align-items: center;
  130. font-size: 26rpx;
  131. color: #919191;
  132. background-color: initial;
  133. border-radius: initial;
  134. }
  135. .collect-btn>image {
  136. width: 35rpx;
  137. margin-right: 8rpx;
  138. }
  139. .video-module {
  140. width: 100%;
  141. display: flex;
  142. flex-direction: column;
  143. background-color: #FFFFFF;
  144. border-radius: 16rpx;
  145. overflow: hidden;
  146. margin-bottom: 20rpx;
  147. padding: 20rpx 24rpx 0;
  148. box-sizing: border-box;
  149. }
  150. .video-title {
  151. width: 100%;
  152. display: -webkit-box;
  153. -webkit-line-clamp: 1;
  154. overflow: hidden;
  155. text-overflow: ellipsis;
  156. -webkit-box-orient: vertical;
  157. height: 78rpx;
  158. line-height: 78rpx;
  159. color: #000000;
  160. font-size: 32rpx;
  161. font-weight: bold;
  162. }