s-goods-column.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726
  1. <!-- 页面 -->
  2. <template>
  3. <view class="ss-goods-wrap">
  4. <!-- xs卡片:横向紧凑型,一行放两个,图片左内容右边 -->
  5. <view v-if="size === 'xs'" class="xs-goods-card ss-flex ss-col-stretch" :style="[elStyles]" @tap="onClick">
  6. <view v-if="tagStyle.show" class="tag-icon-box">
  7. <image class="tag-icon" :src="sheep.$url.cdn(tagStyle.src || tagStyle.imgUrl)"></image>
  8. </view>
  9. <image class="xs-img-box" :src="sheep.$url.cdn(data.image || data.picUrl)" mode="aspectFit"></image>
  10. <view v-if="goodsFields.title?.show || goodsFields.name?.show || goodsFields.price?.show"
  11. class="xs-goods-content ss-flex-col ss-row-around">
  12. <view v-if="goodsFields.title?.show || goodsFields.name?.show" class="xs-goods-title ss-line-1"
  13. :style="[{ color: titleColor, width: titleWidth ? titleWidth + 'rpx' : '' }]">
  14. {{ data.title || data.name }}
  15. </view>
  16. <view v-if="goodsFields.price?.show" class="xs-goods-price font-OPPOSANS"
  17. :style="[{ color: goodsFields.price.color }]">
  18. <text class="price-unit ss-font-24">{{ priceUnit }}</text>
  19. {{ isArray(data.price) ? fen2yuan(data.price[0]) : fen2yuan(data.price) }}
  20. </view>
  21. <view>
  22. <view class="origin-price-text" v-if="data.promotionFee >= 0">
  23. 数字权益:{{ fen2yuan(data.promotionFee ) }}
  24. </view>
  25. </view>
  26. </view>
  27. </view>
  28. <!-- sm卡片:竖向紧凑,一行放三个,图上内容下 -->
  29. <view v-if="size === 'sm'" class="sm-goods-card ss-flex-col" :style="[elStyles]" @tap="onClick">
  30. <view v-if="tagStyle.show" class="tag-icon-box">
  31. <image class="tag-icon" :src="sheep.$url.cdn(tagStyle.src || tagStyle.imgUrl)"></image>
  32. </view>
  33. <image class="sm-img-box" :src="sheep.$url.cdn(data.image || data.picUrl)" mode="aspectFill"></image>
  34. <view v-if="goodsFields.title?.show || goodsFields.name?.show || goodsFields.price?.show"
  35. class="sm-goods-content" :style="[{ color: titleColor, width: titleWidth ? titleWidth + 'rpx' : '' }]">
  36. <view v-if="goodsFields.title?.show || goodsFields.name?.show"
  37. class="sm-goods-title ss-line-1 ss-m-b-8">
  38. {{ data.title || data.name }}
  39. </view>
  40. <view v-if="goodsFields.price?.show" class="sm-goods-price font-OPPOSANS"
  41. :style="[{ color: goodsFields.price.color }]">
  42. <text class="price-unit ss-font-24">{{ priceUnit }}</text>
  43. {{ isArray(data.price) ? fen2yuan(data.price[0]) : fen2yuan(data.price) }}
  44. </view>
  45. <view class="origin-price-text" v-if="data.promotionFee >= 0">
  46. 数字权益:{{ fen2yuan(data.promotionFee ) }}
  47. </view>
  48. </view>
  49. </view>
  50. <!-- md卡片:竖向,一行放两个,图上内容下 -->
  51. <view v-if="size === 'md'" class="md-goods-card ss-flex-col" :style="[elStyles]" @tap="onClick">
  52. <view v-if="tagStyle.show" class="tag-icon-box">
  53. <image class="tag-icon" :src="sheep.$url.cdn(tagStyle.src || tagStyle.imgUrl)"></image>
  54. </view>
  55. <image class="md-img-box" :src="sheep.$url.cdn(data.image || data.picUrl)" mode="widthFix"></image>
  56. <view class="md-goods-content ss-flex-col ss-row-around ss-p-b-20 ss-p-t-20 ss-p-x-16" :id="elId">
  57. <view v-if="goodsFields.title?.show || goodsFields.name?.show" class="md-goods-title ss-line-1"
  58. :style="[{ color: titleColor, width: titleWidth ? titleWidth + 'rpx' : '' }]">
  59. {{ data.title || data.name }}
  60. </view>
  61. <view v-if="goodsFields.subtitle?.show || goodsFields.introduction?.show"
  62. class="md-goods-subtitle ss-m-t-16 ss-line-1"
  63. :style="[{ color: subTitleColor, background: subTitleBackground }]">
  64. {{ data.subtitle || data.introduction }}
  65. </view>
  66. <slot name="activity">
  67. <view v-if="data.promos?.length" class="tag-box ss-flex-wrap ss-flex ss-col-center">
  68. <view class="activity-tag ss-m-r-10 ss-m-t-16" v-for="item in data.promos" :key="item.id">
  69. {{ item.title }}
  70. </view>
  71. </view>
  72. </slot>
  73. <view class="ss-flex ss-col-center ss-m-t-16">
  74. <view v-if="goodsFields.price?.show" class="md-goods-price font-OPPOSANS ss-m-r-10"
  75. :style="[{ color: goodsFields.price.color }]">
  76. <text class="price-unit ss-font-24">{{ priceUnit }}</text>
  77. {{ isArray(data.price) ? fen2yuan(data.price[0]) : fen2yuan(data.price) }}
  78. </view>
  79. <view class="origin-price-text"
  80. v-if="data.promotionFee >= 0">
  81. 数字权益:{{ fen2yuan(data.promotionFee ) }}
  82. </view>
  83. </view>
  84. <view class="ss-m-t-32 ss-flex ss-col-center ss-flex-wrap">
  85. <view class="sales-text">{{ salesAndStock }}</view>
  86. </view>
  87. </view>
  88. <slot name="cart">
  89. <view class="cart-box ss-flex ss-col-center ss-row-center">
  90. <image class="cart-icon" src="/static/img/shop/tabbar/category2.png" mode="" />
  91. </view>
  92. </slot>
  93. </view>
  94. <!-- lg卡片:横向型,一行放一个,图片左内容右边 -->
  95. <view v-if="size === 'lg'" class="lg-goods-card ss-flex ss-col-stretch" :style="[elStyles]" @tap="onClick">
  96. <view v-if="tagStyle.show" class="tag-icon-box">
  97. <image class="tag-icon" :src="sheep.$url.cdn(tagStyle.src || tagStyle.imgUrl)"></image>
  98. </view>
  99. <view v-if="seckillTag" class="seckill-tag ss-flex ss-row-center"> 秒杀 </view>
  100. <view v-if="grouponTag" class="groupon-tag ss-flex ss-row-center">
  101. <view class="tag-icon">拼团</view>
  102. </view>
  103. <image class="lg-img-box" :src="sheep.$url.cdn(data.image || data.picUrl)" mode="aspectFill"></image>
  104. <view class="lg-goods-content ss-flex-1 ss-flex-col ss-row-between ss-p-b-10 ss-p-t-20">
  105. <view>
  106. <view v-if="goodsFields.title?.show || goodsFields.name?.show" class="lg-goods-title ss-line-2"
  107. :style="[{ color: titleColor }]">
  108. {{ data.title || data.name }}
  109. </view>
  110. <view v-if="goodsFields.subtitle?.show || goodsFields.introduction?.show"
  111. class="lg-goods-subtitle ss-m-t-10 ss-line-1"
  112. :style="[{ color: subTitleColor, background: subTitleBackground }]">
  113. {{ data.subtitle || data.introduction }}
  114. </view>
  115. </view>
  116. <view>
  117. <slot name="activity">
  118. <view v-if="data.promos?.length" class="tag-box ss-flex ss-col-center">
  119. <view class="activity-tag ss-m-r-10" v-for="item in data.promos" :key="item.id">
  120. {{ item.title }}
  121. </view>
  122. </view>
  123. </slot>
  124. <view class="ss-flex ss-col-bottom ss-m-b-10">
  125. <view v-if="goodsFields.price?.show"
  126. class="lg-goods-price ss-m-r-12 ss-flex ss-col-bottom font-OPPOSANS"
  127. :style="[{ color: goodsFields.price.color }]">
  128. <text class="ss-font-24">{{ priceUnit }}</text>
  129. {{ isArray(data.price) ? fen2yuan(data.price[0]) : fen2yuan(data.price) }}
  130. </view>
  131. </view>
  132. <view class="ss-flex ss-col-bottom ss-m-b-10">
  133. <view class="origin-price-text"
  134. v-if="data.promotionFee >= 0">
  135. 数字权益:{{ fen2yuan(data.promotionFee) }}
  136. </view>
  137. </view>
  138. <view class="ss-m-t-8 ss-flex ss-col-center ss-flex-wrap">
  139. <view class="sales-text">{{ salesAndStock }}</view>
  140. </view>
  141. </view>
  142. </view>
  143. <slot name="cart">
  144. <view class="buy-box ss-flex ss-col-center ss-row-center" v-if="buttonShow">
  145. 去购买
  146. </view>
  147. </slot>
  148. </view>
  149. <!-- sl卡片:竖向型,一行放一个,图片上内容下边 -->
  150. <view v-if="size === 'sl'" class="sl-goods-card ss-flex-col" :style="[elStyles]" @tap="onClick">
  151. <view v-if="tagStyle.show" class="tag-icon-box">
  152. <image class="tag-icon" :src="sheep.$url.cdn(tagStyle.src || tagStyle.imgUrl)"></image>
  153. </view>
  154. <image class="sl-img-box" :src="sheep.$url.cdn(data.image || data.picUrl)" mode="aspectFill"></image>
  155. <view class="sl-goods-content">
  156. <view>
  157. <view v-if="goodsFields.title?.show || goodsFields.name?.show" class="sl-goods-title ss-line-1"
  158. :style="[{ color: titleColor }]">
  159. {{ data.title || data.name }}
  160. </view>
  161. <view v-if="goodsFields.subtitle?.show || goodsFields.introduction?.show"
  162. class="sl-goods-subtitle ss-m-t-16"
  163. :style="[{ color: subTitleColor, background: subTitleBackground }]">
  164. {{ data.subtitle || data.introduction }}
  165. </view>
  166. </view>
  167. <view>
  168. <slot name="activity">
  169. <view v-if="data.promos?.length" class="tag-box ss-flex ss-col-center ss-flex-wrap">
  170. <view class="activity-tag ss-m-r-10 ss-m-t-16" v-for="item in data.promos" :key="item.id">
  171. {{ item.title }}
  172. </view>
  173. </view>
  174. </slot>
  175. <view v-if="goodsFields.price?.show" class="ss-flex ss-col-bottom font-OPPOSANS ss-m-t-10">
  176. <view class="sl-goods-price ss-m-r-12" :style="[{ color: goodsFields.price.color }]">
  177. <text class="price-unit ss-font-24">{{ priceUnit }}</text>
  178. {{ isArray(data.price) ? fen2yuan(data.price[0]) : fen2yuan(data.price) }}
  179. </view>
  180. <view class="origin-price-text"
  181. v-if="data.promotionFee >= 0">
  182. 数字权益:{{ fen2yuan(data.promotionFee) }}
  183. </view>
  184. </view>
  185. <view class="ss-m-t-16 ss-flex ss-flex-wrap">
  186. <view class="sales-text">{{ salesAndStock }}</view>
  187. </view>
  188. </view>
  189. </view>
  190. <slot name="cart">
  191. <view class="buy-box ss-flex ss-col-center ss-row-center">去购买</view>
  192. </slot>
  193. </view>
  194. </view>
  195. </template>
  196. <script setup>
  197. /**
  198. * 商品卡片
  199. *
  200. * @property {Array} size = [xs | sm | md | lg | sl ] - 列表数据
  201. * @property {String} tag - md及以上才有
  202. * @property {String} img - 图片
  203. * @property {String} background - 背景色
  204. * @property {String} topRadius - 上圆角
  205. * @property {String} bottomRadius - 下圆角
  206. * @property {String} title - 标题
  207. * @property {String} titleColor - 标题颜色
  208. * @property {Number} titleWidth = 0 - 标题宽度,默认0,单位rpx
  209. * @property {String} subTitle - 副标题
  210. * @property {String} subTitleColor - 副标题颜色
  211. * @property {String} subTitleBackground - 副标题背景
  212. * @property {String | Number} price - 价格
  213. * @property {String} priceColor - 价格颜色
  214. * @property {String | Number} originPrice - 原价/划线价
  215. * @property {String} originPriceColor - 原价颜色
  216. * @property {String | Number} sales - 销售数量
  217. * @property {String} salesColor - 销售数量颜色
  218. *
  219. * @slots activity - 活动插槽
  220. * @slots cart - 购物车插槽,默认包含文字,背景色,文字颜色 || 图片 || 行为
  221. *
  222. * @event {Function()} click - 点击卡片
  223. *
  224. */
  225. import {
  226. computed,
  227. reactive,
  228. getCurrentInstance,
  229. onMounted,
  230. nextTick
  231. } from 'vue';
  232. import sheep from '@/sheep';
  233. import {
  234. fen2yuan,
  235. formatSales
  236. } from '@/sheep/hooks/useGoods';
  237. import {
  238. formatStock
  239. } from '@/sheep/hooks/useGoods';
  240. import goodsCollectVue from '@/pages/user/goods-collect.vue';
  241. import {
  242. isArray
  243. } from 'lodash';
  244. // 数据
  245. const state = reactive({});
  246. // 接收参数
  247. const props = defineProps({
  248. goodsFields: {
  249. type: [Array, Object],
  250. default () {
  251. return {
  252. // 商品价格
  253. price: {
  254. show: true
  255. },
  256. // 库存
  257. stock: {
  258. show: true
  259. },
  260. // 商品名称
  261. name: {
  262. show: true
  263. },
  264. // 商品介绍
  265. introduction: {
  266. show: true
  267. },
  268. // 市场价
  269. promotionFee: {
  270. show: true
  271. },
  272. // 销量
  273. salesCount: {
  274. show: true
  275. },
  276. };
  277. },
  278. },
  279. tagStyle: {
  280. type: Object,
  281. default: {},
  282. },
  283. data: {
  284. type: Object,
  285. default: {},
  286. },
  287. size: {
  288. type: String,
  289. default: 'sl',
  290. },
  291. background: {
  292. type: String,
  293. default: '',
  294. },
  295. topRadius: {
  296. type: Number,
  297. default: 0,
  298. },
  299. bottomRadius: {
  300. type: Number,
  301. default: 0,
  302. },
  303. titleWidth: {
  304. type: Number,
  305. default: 0,
  306. },
  307. titleColor: {
  308. type: String,
  309. default: '#333',
  310. },
  311. priceColor: {
  312. type: String,
  313. default: '',
  314. },
  315. originPriceColor: {
  316. type: String,
  317. default: '#C4C4C4',
  318. },
  319. priceUnit: {
  320. type: String,
  321. default: '¥',
  322. },
  323. subTitleColor: {
  324. type: String,
  325. default: '#999999',
  326. },
  327. subTitleBackground: {
  328. type: String,
  329. default: '',
  330. },
  331. buttonShow: {
  332. type: Boolean,
  333. default: true,
  334. },
  335. seckillTag: {
  336. type: Boolean,
  337. default: false,
  338. },
  339. grouponTag: {
  340. type: Boolean,
  341. default: false,
  342. },
  343. });
  344. // 组件样式
  345. const elStyles = computed(() => {
  346. return {
  347. background: props.background,
  348. 'border-top-left-radius': props.topRadius + 'px',
  349. 'border-top-right-radius': props.topRadius + 'px',
  350. 'border-bottom-left-radius': props.bottomRadius + 'px',
  351. 'border-bottom-right-radius': props.bottomRadius + 'px',
  352. };
  353. });
  354. // 格式化销量、库存信息
  355. const salesAndStock = computed(() => {
  356. let text = [];
  357. if (props.goodsFields.salesCount?.show) {
  358. text.push(formatSales(props.data.sales_show_type, props.data.salesCount));
  359. }
  360. if (props.goodsFields.stock?.show) {
  361. text.push(formatStock(props.data.stock_show_type, props.data.stock));
  362. }
  363. return text.join(' | ');
  364. });
  365. // 返回事件
  366. const emits = defineEmits(['click', 'getHeight']);
  367. const onClick = () => {
  368. emits('click');
  369. };
  370. // 获取卡片实时高度
  371. const {
  372. proxy
  373. } = getCurrentInstance();
  374. const elId = `sheep_${Math.ceil(Math.random() * 10e5).toString(36)}`;
  375. function getGoodsPriceCardWH() {
  376. if (props.size === 'md') {
  377. const view = uni.createSelectorQuery().in(proxy);
  378. view.select(`#${elId}`).fields({
  379. size: true,
  380. scrollOffset: true
  381. });
  382. view.exec((data) => {
  383. let totalHeight = 0;
  384. const goodsPriceCard = data[0];
  385. if (props.data.image_wh) {
  386. totalHeight =
  387. (goodsPriceCard.width / props.data.image_wh.w) * props.data.image_wh.h +
  388. goodsPriceCard.height;
  389. } else {
  390. totalHeight = goodsPriceCard.width;
  391. }
  392. emits('getHeight', totalHeight);
  393. });
  394. }
  395. }
  396. onMounted(() => {
  397. nextTick(() => {
  398. getGoodsPriceCardWH();
  399. });
  400. });
  401. </script>
  402. <style lang="scss" scoped>
  403. .origin-price-text {
  404. font-size: 22rpx;
  405. font-weight: 400;
  406. color: $gray-c;
  407. font-family: OPPOSANS;
  408. background: #ffca3e;
  409. padding: 2px 8px;
  410. border-radius: 4px;
  411. display:inline-block;
  412. color: #597533;
  413. }
  414. .tag-icon-box {
  415. position: absolute;
  416. left: 0;
  417. top: 0;
  418. z-index: 2;
  419. .tag-icon {
  420. width: 72rpx;
  421. height: 44rpx;
  422. }
  423. }
  424. .seckill-tag {
  425. position: absolute;
  426. left: 0;
  427. top: 0;
  428. z-index: 2;
  429. width: 68rpx;
  430. height: 38rpx;
  431. background: linear-gradient(90deg, #ff5854 0%, #ff2621 100%);
  432. border-radius: 10rpx 0px 10rpx 0px;
  433. font-size: 24rpx;
  434. font-weight: 500;
  435. color: #ffffff;
  436. line-height: 32rpx;
  437. }
  438. .groupon-tag {
  439. position: absolute;
  440. left: 0;
  441. top: 0;
  442. z-index: 2;
  443. width: 68rpx;
  444. height: 38rpx;
  445. background: linear-gradient(90deg, #fe832a 0%, #ff6600 100%);
  446. border-radius: 10rpx 0px 10rpx 0px;
  447. font-size: 24rpx;
  448. font-weight: 500;
  449. color: #ffffff;
  450. line-height: 32rpx;
  451. }
  452. .goods-img {
  453. width: 100%;
  454. height: 100%;
  455. background-color: #f5f5f5;
  456. }
  457. .price-unit {
  458. margin-right: -4px;
  459. }
  460. .sales-text {
  461. display: table;
  462. font-size: 24rpx;
  463. transform: scale(0.8);
  464. margin-left: 0rpx;
  465. color: #c4c4c4;
  466. }
  467. .activity-tag {
  468. font-size: 20rpx;
  469. color: #ff0000;
  470. line-height: 30rpx;
  471. padding: 0 10rpx;
  472. border: 1px solid rgba(#ff0000, 0.25);
  473. border-radius: 4px;
  474. flex-shrink: 0;
  475. }
  476. .goods-origin-price {
  477. font-size: 20rpx;
  478. color: #c4c4c4;
  479. line-height: 36rpx;
  480. text-decoration: line-through;
  481. }
  482. // xs
  483. .xs-goods-card {
  484. overflow: hidden;
  485. // max-width: 375rpx;
  486. background-color: $white;
  487. position: relative;
  488. .xs-img-box {
  489. width: 128rpx;
  490. height: 128rpx;
  491. margin-right: 20rpx;
  492. }
  493. .xs-goods-title {
  494. font-size: 26rpx;
  495. color: #333;
  496. font-weight: 500;
  497. }
  498. .xs-goods-price {
  499. font-size: 30rpx;
  500. color: $red;
  501. }
  502. }
  503. // sm
  504. .sm-goods-card {
  505. overflow: hidden;
  506. // width: 223rpx;
  507. // width: 100%;
  508. background-color: $white;
  509. position: relative;
  510. .sm-img-box {
  511. // width: 228rpx;
  512. width: 100%;
  513. height: 208rpx;
  514. }
  515. .sm-goods-content {
  516. padding: 20rpx 16rpx;
  517. box-sizing: border-box;
  518. }
  519. .sm-goods-title {
  520. font-size: 26rpx;
  521. color: #333;
  522. }
  523. .sm-goods-price {
  524. font-size: 30rpx;
  525. color: $red;
  526. }
  527. }
  528. // md
  529. .md-goods-card {
  530. overflow: hidden;
  531. width: 100%;
  532. position: relative;
  533. z-index: 1;
  534. background-color: $white;
  535. position: relative;
  536. .md-img-box {
  537. width: 100%;
  538. }
  539. .md-goods-title {
  540. font-size: 26rpx;
  541. color: #333;
  542. width: 100%;
  543. }
  544. .md-goods-subtitle {
  545. font-size: 24rpx;
  546. font-weight: 400;
  547. color: #999999;
  548. }
  549. .md-goods-price {
  550. font-size: 30rpx;
  551. color: $red;
  552. line-height: 36rpx;
  553. }
  554. .cart-box {
  555. width: 54rpx;
  556. height: 54rpx;
  557. background: linear-gradient(90deg, #fe8900, #ff5e00);
  558. border-radius: 50%;
  559. position: absolute;
  560. bottom: 50rpx;
  561. right: 20rpx;
  562. z-index: 2;
  563. .cart-icon {
  564. width: 30rpx;
  565. height: 30rpx;
  566. }
  567. }
  568. }
  569. // lg
  570. .lg-goods-card {
  571. overflow: hidden;
  572. position: relative;
  573. z-index: 1;
  574. background-color: $white;
  575. height: 280rpx;
  576. .lg-img-box {
  577. width: 280rpx;
  578. height: 280rpx;
  579. margin-right: 20rpx;
  580. }
  581. .lg-goods-title {
  582. font-size: 28rpx;
  583. font-weight: 500;
  584. color: #333333;
  585. // line-height: 36rpx;
  586. // width: 410rpx;
  587. }
  588. .lg-goods-subtitle {
  589. font-size: 24rpx;
  590. font-weight: 400;
  591. color: #999999;
  592. // line-height: 30rpx;
  593. // width: 410rpx;
  594. }
  595. .lg-goods-price {
  596. font-size: 30rpx;
  597. color: $red;
  598. line-height: 36rpx;
  599. }
  600. .buy-box {
  601. position: absolute;
  602. bottom: 20rpx;
  603. right: 20rpx;
  604. z-index: 2;
  605. width: 120rpx;
  606. height: 50rpx;
  607. background: linear-gradient(90deg, #fe8900, #ff5e00);
  608. border-radius: 25rpx;
  609. font-size: 24rpx;
  610. color: #ffffff;
  611. }
  612. .tag-box {
  613. width: 100%;
  614. }
  615. }
  616. // sl
  617. .sl-goods-card {
  618. overflow: hidden;
  619. position: relative;
  620. z-index: 1;
  621. width: 100%;
  622. background-color: $white;
  623. .sl-goods-content {
  624. padding: 20rpx 20rpx;
  625. box-sizing: border-box;
  626. }
  627. .sl-img-box {
  628. width: 100%;
  629. height: 360rpx;
  630. }
  631. .sl-goods-title {
  632. font-size: 26rpx;
  633. color: #333;
  634. font-weight: 500;
  635. }
  636. .sl-goods-subtitle {
  637. font-size: 24rpx;
  638. font-weight: 400;
  639. color: #999999;
  640. line-height: 30rpx;
  641. }
  642. .sl-goods-price {
  643. font-size: 30rpx;
  644. color: $red;
  645. line-height: 36rpx;
  646. }
  647. .buy-box {
  648. position: absolute;
  649. bottom: 20rpx;
  650. right: 20rpx;
  651. z-index: 2;
  652. width: 148rpx;
  653. height: 50rpx;
  654. background: linear-gradient(90deg, #fe8900, #ff5e00);
  655. border-radius: 25rpx;
  656. font-size: 24rpx;
  657. color: #ffffff;
  658. }
  659. }
  660. </style>