point.scss 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. .el-carousel {
  2. width: 100%;
  3. margin: 0 auto;
  4. }
  5. .el-carousel__item {
  6. .imgCon {
  7. width: 1920px;
  8. /*图片宽度*/
  9. position: absolute;
  10. left: 50%;
  11. margin-left: -960px;
  12. display: flex;
  13. justify-content: center;
  14. background: #636551;
  15. }
  16. }
  17. #sld_point_wrap {
  18. width: $min-home-width;
  19. margin: 0 auto;
  20. overflow-x: hidden;
  21. .secoCategory {
  22. margin-top: 10px;
  23. border: 1px solid #f1f1f1;
  24. display: flex;
  25. margin-bottom: 11px;
  26. position: relative;
  27. .cate_title {
  28. width: 120px;
  29. background: #f8f8f8;
  30. font-size: 14px;
  31. //font-family: Microsoft YaHei;
  32. font-weight: 400;
  33. color: #999999;
  34. line-height: 60px;
  35. text-align: center;
  36. }
  37. .cate_list {
  38. zoom: 1;
  39. max-width: 950px;
  40. flex-wrap: wrap;
  41. .cate_item {
  42. font-size: 14px;
  43. //font-family: Microsoft YaHei;
  44. font-weight: 400;
  45. line-height: 60px;
  46. padding-left: 17px;
  47. padding-right: 17px;
  48. cursor: pointer;
  49. &:hover {
  50. color: $colorMain;
  51. }
  52. }
  53. .zip_block {
  54. width: 104px;
  55. text-overflow: ellipsis;
  56. white-space: nowrap;
  57. overflow: hidden;
  58. }
  59. }
  60. .one_line {
  61. height: 60px;
  62. overflow: hidden;
  63. }
  64. .sld_more {
  65. position: relative;
  66. right: 0;
  67. font-size: 14px;
  68. //font-family: Microsoft YaHei;
  69. font-weight: 400;
  70. line-height: 60px;
  71. height: 60px;
  72. width: 100px;
  73. padding-left: 20px;
  74. padding-right: 20px;
  75. cursor: pointer;
  76. i {
  77. margin-left: 5px;
  78. }
  79. }
  80. }
  81. }
  82. .goods_list {
  83. display: flex;
  84. justify-content: space-between;
  85. flex-wrap: wrap;
  86. align-content: flex-start;
  87. .goods_container {
  88. cursor: pointer;
  89. border: 1px solid #eeeeee;
  90. border-radius: 2px;
  91. width: 282px;
  92. margin-bottom: 20px;
  93. &:hover {
  94. border: 1px solid #b64cfb;
  95. }
  96. .goods_img {
  97. width: 280px;
  98. height: 280px;
  99. img {
  100. width: 100%;
  101. height: 100%;
  102. }
  103. }
  104. .goods_desc {
  105. padding: 20px;
  106. height: 184px;
  107. position: relative;
  108. .goods_name {
  109. font-size: 13px;
  110. //font-family: Microsoft YaHei;
  111. font-weight: 400;
  112. color: #333333;
  113. line-height: 18px;
  114. overflow: hidden;
  115. text-overflow: ellipsis;
  116. display: -webkit-box;
  117. -webkit-line-clamp: 2;
  118. -webkit-box-orient: vertical;
  119. }
  120. .goods_brief {
  121. margin-top: 2px;
  122. font-size: 12px;
  123. //font-family: Microsoft YaHei;
  124. font-weight: 400;
  125. color: #666666;
  126. line-height: 18px;
  127. overflow: hidden;
  128. text-overflow: ellipsis;
  129. white-space: nowrap;
  130. }
  131. .desc_bottom {
  132. position: absolute;
  133. bottom: 20px;
  134. }
  135. .market_price {
  136. font-size: 12px;
  137. //font-family: Microsoft YaHei;
  138. font-weight: 400;
  139. text-decoration: line-through;
  140. color: #999999;
  141. }
  142. .point_price {
  143. display: inline-block;
  144. background: #b64cfb;
  145. border-radius: 3px;
  146. margin-top: 18px;
  147. padding: 10px 11px 11px 13px;
  148. color: #ffffff;
  149. span:first-child {
  150. font-size: 14px;
  151. //font-family: Microsoft YaHei;
  152. font-weight: bold;
  153. color: #ffffff;
  154. }
  155. span:nth-child(2) {
  156. font-size: 14px;
  157. //font-family: Microsoft YaHei;
  158. color: #ffffff;
  159. }
  160. }
  161. }
  162. }
  163. .empty_fill {
  164. width: 282px;
  165. }
  166. }