爱简收旧衣按件回收前端代码仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1453 lines
37 KiB

9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
  1. <template>
  2. <view class="container">
  3. <!-- 顶部banner -->
  4. <view class="banner">
  5. <image src="https://oss.budingxiaoshuo.com/upload/回收banner_1748252408016.png" mode=""></image>
  6. </view>
  7. <!-- 商品列表 -->
  8. <view class="goods-list">
  9. <!-- 左侧分类导航 -->
  10. <scroll-view class="category-nav" scroll-y>
  11. <view
  12. v-for="(category, index) in categories"
  13. :key="index"
  14. class="category-item"
  15. :class="{ active: currentCategory === index }"
  16. @tap="switchCategory(index)"
  17. >
  18. <view class="category-dot" v-if="getCategoryItemCount(index) > 0"></view>
  19. {{ category.name }}
  20. </view>
  21. </scroll-view>
  22. <!-- 右侧商品列表 -->
  23. <scroll-view class="goods-content" scroll-y>
  24. <view class="goods-section">
  25. <view class="goods-item" v-for="(item, index) in recycleList" :key="index">
  26. <image v-if="item.icon" :src="item.icon" class="goods-item-img" mode="aspectFit" />
  27. <view class="goods-info-wrap">
  28. <view class="goods-header">
  29. <text class="goods-name">{{item.name}}</text>
  30. <view class="rules-link" @tap="showRules(item)">
  31. <view class="rules">
  32. <text>回收规则</text>
  33. <uni-icons type="right" size="14" color="#999"></uni-icons>
  34. </view>
  35. </view>
  36. </view>
  37. <text class="goods-desc">{{item.desc}}</text>
  38. <view class="goods-info">
  39. <view class="price-info">
  40. <text class="price-symbol">¥</text>
  41. <text class="price-value">{{item.price}}</text>
  42. <text class="price-unit">/</text>
  43. </view>
  44. <view class="quantity-control">
  45. <button class="btn-minus" @tap="updateQuantity(index, -1)">-</button>
  46. <text class="quantity">{{item.quantity || 0}}</text>
  47. <button class="btn-plus" @tap="updateQuantity(index, 1)">+</button>
  48. </view>
  49. </view>
  50. <view class="brand-check" v-if="item.showBrandCheck" @tap="checkBrand(index)">
  51. <text>查看品牌</text>
  52. <uni-icons type="right" size="14" color="#ff7a0e"></uni-icons>
  53. </view>
  54. </view>
  55. </view>
  56. </view>
  57. <!-- 不可回收商品 -->
  58. <view class="other-unrecycle-card">
  59. <image class="other-unrecycle-img" src="/static/回收/衣物.png" mode="aspectFit" />
  60. <view class="other-unrecycle-info">
  61. <view class="other-unrecycle-title">其他上衣需咨询顾问暂不回收</view>
  62. <view class="other-unrecycle-desc">需连线回收顾问筛选</view>
  63. <view class="other-unrecycle-price-row">
  64. <text class="other-unrecycle-price">¥ /</text>
  65. </view>
  66. </view>
  67. <button class="other-unrecycle-btn" disabled>+</button>
  68. </view>
  69. </scroll-view>
  70. </view>
  71. <!-- 固定底部区域 -->
  72. <view class="fixed-bottom-wrap" v-if="!showDetailPanel" >
  73. <view class="green-tip-bar">
  74. 回收范围仅支持回收以上品类按件回收预计比称重回收多
  75. <text class="tip-highlight"> 3.76</text>
  76. </view>
  77. <view class="bottom-bar">
  78. <view class="bottom-left">
  79. <view class="summary-row">
  80. <text class="summary-label">已选 <text class="summary-count">{{totalCount}}</text> 预计回收可得</text>
  81. <uni-icons type="help" size="18" color="#b2b2b2" style="margin: 0 8rpx;" />
  82. </view>
  83. <view class="amount-row">
  84. <uni-icons :type="showDetailPanel ? 'up' : 'down'" size="18" color="#5e5e5e" style="margin-right: 8rpx;vertical-align: middle;" @tap="toggleDetailPanel" />
  85. <text class="amount">¥{{priceRange.min}}-{{priceRange.max}}</text>
  86. </view>
  87. </view>
  88. <button class="submit-btn" @tap="submitOrder">预约上门取件</button>
  89. </view>
  90. <view class="bottom-bar-divider"></view>
  91. </view>
  92. <!-- 明细弹窗遮罩和弹窗 -->
  93. <view v-if="showDetailPanel" class="detail-popup-mask" @tap.self="toggleDetailPanel">
  94. <view class="detail-popup" @tap.stop>
  95. <view class="detail-popup-close" @tap="toggleDetailPanel">×</view>
  96. <view class="green-tip-bar popup-green-tip">
  97. 回收范围仅支持回收以上品类按件回收预计比称重回收多
  98. <text class="tip-highlight"> 3.76</text>
  99. </view>
  100. <view class="panel-header">
  101. <text class="panel-title">已选商品明细</text>
  102. </view>
  103. <scroll-view class="panel-list popup-panel-list" scroll-y>
  104. <view v-for="(item, idx) in selectedProducts" :key="idx" class="panel-item">
  105. <image v-if="item.icon" :src="item.icon" class="panel-item-img" mode="aspectFit" />
  106. <view class="panel-item-info">
  107. <text class="panel-item-name">{{item.name}}</text>
  108. <text class="panel-item-desc">{{item.desc}}</text>
  109. <text class="panel-item-price">¥{{item.price}}/</text>
  110. </view>
  111. <view class="panel-quantity-control">
  112. <button class="btn-minus" @tap="updateQuantityByProduct(item, -1)">-</button>
  113. <text class="quantity">{{item.quantity}}</text>
  114. <button class="btn-plus" @tap="updateQuantityByProduct(item, 1)">+</button>
  115. </view>
  116. </view>
  117. </scroll-view>
  118. <view class="popup-bottom-bar">
  119. <view class="bottom-left">
  120. <view class="summary-row">
  121. <text class="summary-label">已选 <text class="summary-count">{{totalCount}}</text> 预计回收可得</text>
  122. <uni-icons type="help" size="18" color="#b2b2b2" style="margin: 0 8rpx;" />
  123. </view>
  124. <view class="amount-row">
  125. <uni-icons :type="showDetailPanel ? 'up' : 'down'" size="18" color="#5e5e5e" style="margin-right: 8rpx;vertical-align: middle;" @tap="toggleDetailPanel" />
  126. <text class="amount">¥{{priceRange.min}}-{{priceRange.max}}</text>
  127. </view>
  128. </view>
  129. <button class="submit-btn" @tap="submitOrder">预约上门取件</button>
  130. </view>
  131. </view>
  132. </view>
  133. <!-- 根据角色显示不同的导航栏 -->
  134. <uv-tabbar
  135. v-if="ishow"
  136. :value="value"
  137. :fixed="true"
  138. @change="changeTo"
  139. class="uv-tabbar"
  140. >
  141. <uv-tabbar-item text="首页" >
  142. <template v-slot:active-icon>
  143. <image class="icon" src="/static/home/首页-点击.png"></image>
  144. </template>
  145. <template v-slot:inactive-icon>
  146. <image class="icon" src="/static/home/首页-未点击.png"></image>
  147. </template>
  148. </uv-tabbar-item>
  149. <uv-tabbar-item text="回收" >
  150. <template v-slot:active-icon>
  151. <image class="icon" src="/static/home/回收-点击.png"></image>
  152. </template>
  153. <template v-slot:inactive-icon>
  154. <image class="icon" src="/static/home/回收-未点击.png"></image>
  155. </template>
  156. </uv-tabbar-item>
  157. <uv-tabbar-item text="我的" >
  158. <template v-slot:active-icon>
  159. <image class="icon" src="/static/home/我的-点击.png"></image>
  160. </template>
  161. <template v-slot:inactive-icon>
  162. <image class="icon" src="/static/home/我的-未点击.png"></image>
  163. </template>
  164. </uv-tabbar-item>
  165. </uv-tabbar>
  166. <!-- 品牌索引弹窗 -->
  167. <view v-if="showBrandPopup" class="brand-popup-mask" @tap.self="closeBrandPopup">
  168. <view class="brand-popup">
  169. <view class="brand-popup-header">
  170. <text class="brand-popup-close" @tap="closeBrandPopup">关闭</text>
  171. <text class="brand-popup-title">可回收的品牌</text>
  172. </view>
  173. <view class="brand-popup-search">
  174. <input class="brand-search-input" v-model="brandSearch" placeholder="请输入要查询的内容" />
  175. </view>
  176. <scroll-view class="brand-popup-list" scroll-y :scroll-into-view="scrollToView">
  177. <view v-for="letter in brandIndexList" :key="letter" :id="'brand-letter-' + letter">
  178. <view class="brand-letter">{{letter}}</view>
  179. <view v-for="brand in filteredBrandList.filter(b => b.letter === letter)" :key="brand.name" class="brand-item">
  180. <image :src="brand.logo" class="brand-logo" mode="aspectFit" />
  181. <text class="brand-name">{{brand.name}}</text>
  182. </view>
  183. </view>
  184. </scroll-view>
  185. <view class="brand-index-bar">
  186. <text v-for="letter in brandIndexList" :key="letter" :class="{active: currentLetter === letter}" @tap="scrollToLetter(letter)">{{letter}}</text>
  187. </view>
  188. </view>
  189. </view>
  190. <!-- 回收规则弹窗 -->
  191. <view v-if="showRulePopup" class="rule-popup-mask" @tap.self="closeRulePopup">
  192. <view class="rule-popup">
  193. <view class="rule-popup-title">回收规则</view>
  194. <scroll-view class="rule-popup-content" scroll-y>
  195. <view class="rule-popup-desc">请完整查看以下平台回收标准不符合回收标准的物品将无法获得现金结算</view>
  196. <view class="rule-popup-warning">以下品相问题不可回收</view>
  197. <image :src="ruleImgUrl" class="rule-popup-img" />
  198. </scroll-view>
  199. <button class="rule-popup-btn" @tap="closeRulePopup">我知道了</button>
  200. <view class="rule-popup-close" @tap="closeRulePopup">
  201. <uni-icons type="close" size="36" color="#fff" />
  202. </view>
  203. </view>
  204. </view>
  205. <!-- 预约上门取件弹窗 -->
  206. <view v-if="showPickupConfirm" class="pickup-confirm-mask">
  207. <view class="pickup-confirm-popup">
  208. <view class="pickup-confirm-title">温馨提示</view>
  209. <view class="pickup-confirm-content">
  210. 1.当前回收快递免费上门由于快递成本较高为避免不必要的成本及资源二次浪费不属于可回收品类或不符合回收标准的物品请勿寄出<br/><br/>
  211. 2.已通过的回收物品将正常结算不符合回收要求的物品可选择快递取回运费自付请在订单结算后48小时内联系在线客服安排取回逾期未联系将默认捐赠无法再次取回<br/><br/>
  212. 3.若用户寄出大量不可回收的物品平台有权限制下次回收权限或取消下次包邮服务<br/><br/>
  213. 4.对于合格率高的回收订单平台将根据实际情况给予额外回收奖励
  214. </view>
  215. <view class="pickup-confirm-btn-row">
  216. <button class="pickup-confirm-btn" @tap="handlePickupCancel">取消回收</button>
  217. <button class="pickup-confirm-btn agree" @tap="handlePickupAgree">我同意</button>
  218. </view>
  219. </view>
  220. </view>
  221. </view>
  222. </template>
  223. <script>
  224. import tabBarMixin from '../mixins/tabBarMixin.js'
  225. export default {
  226. mixins: [tabBarMixin],
  227. data() {
  228. return {
  229. value:1,
  230. ishow:true,
  231. // 静态数据
  232. staticCategories: [
  233. { id: 0, name: '羽绒服' },
  234. { id: 1, name: '鞋子' },
  235. { id: 2, name: '包包' },
  236. { id: 3, name: '床被' },
  237. { id: 4, name: '品牌服饰' },
  238. { id: 5, name: 'T恤衬衫' }
  239. ],
  240. staticAllProducts: {
  241. // ...原有静态商品数据(复制原allProducts内容)
  242. },
  243. // 动态数据
  244. categories: [],
  245. allProducts: {},
  246. currentCategory: 0,
  247. tabbarHeight: 0,
  248. showDetailPanel: false,
  249. showBrandPopup: false,
  250. showRulePopup: false,
  251. ruleImgUrl: '/static/回收/回收规则.png',
  252. showPickupConfirm: false,
  253. brandList: [
  254. { logo: '/static/brand/alexander.png', name: 'Alexander McQueen/亚历山大麦昆', letter: 'A' },
  255. { logo: '/static/brand/alexander.png', name: 'Alexander McQueen/亚历山大麦昆', letter: 'A' },
  256. // ... 可补充更多品牌 ...
  257. ],
  258. brandIndexList: ['A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z'],
  259. currentLetter: 'A',
  260. scrollToView: '',
  261. brandSearch: '',
  262. }
  263. },
  264. computed: {
  265. // 当前分类的商品列表
  266. recycleList() {
  267. return this.allProducts[this.currentCategory] || []
  268. },
  269. // 计算总数量
  270. totalCount() {
  271. return Object.values(this.allProducts).reduce((total, categoryItems) => {
  272. return total + categoryItems.reduce((sum, item) => sum + (item.quantity || 0), 0)
  273. }, 0)
  274. },
  275. // 计算总价格
  276. totalPrice() {
  277. const total = Object.values(this.allProducts).reduce((categoryTotal, categoryItems) => {
  278. return categoryTotal + categoryItems.reduce((sum, item) => sum + (item.quantity || 0) * Number(item.price), 0)
  279. }, 0)
  280. return total.toFixed(1)
  281. },
  282. // 计算价格范围
  283. priceRange() {
  284. if (this.totalCount === 0) {
  285. return {
  286. min: '0.0',
  287. max: '0.0'
  288. }
  289. }
  290. const total = Number(this.totalPrice)
  291. return {
  292. min: (total - 2.2).toFixed(1),
  293. max: (total + 2.2).toFixed(1)
  294. }
  295. },
  296. selectedProducts() {
  297. // 返回所有已选商品
  298. return this.recycleList.filter(item => item.quantity > 0)
  299. },
  300. filteredBrandList() {
  301. if (!this.brandSearch) return this.brandList
  302. const keyword = this.brandSearch.trim().toLowerCase()
  303. return this.brandList.filter(b => b.name.toLowerCase().includes(keyword))
  304. }
  305. },
  306. methods: {
  307. changeTo(e){
  308. this.value = e
  309. if(e==2){
  310. uni.reLaunch({
  311. url: '/pages/component/my'
  312. });
  313. }else if(e==0){
  314. console.log(e,'111')
  315. uni.reLaunch({
  316. url: '/pages/component/home'
  317. });
  318. }
  319. },
  320. fetchClassGoodsList() {
  321. this.$api('getClassGoodsList', {}, res => {
  322. if (res.code === 200 && Array.isArray(res.result) && res.result.length > 0) {
  323. this.categories = res.result.map(item => ({
  324. id: item.categoryId,
  325. name: item.categoryName
  326. }))
  327. this.allProducts = {}
  328. res.result.forEach(item => {
  329. this.allProducts[item.categoryId] = (item.goodsList || []).map(good => ({
  330. ...good,
  331. quantity: 0 // 初始化数量
  332. }))
  333. })
  334. this.currentCategory = this.categories.length > 0 ? this.categories[0].id : 0
  335. }
  336. // 否则继续用静态数据
  337. })
  338. },
  339. // 获取分类商品总数
  340. getCategoryItemCount(categoryId) {
  341. const categoryItems = this.allProducts[categoryId] || []
  342. return categoryItems.reduce((sum, item) => sum + (item.quantity || 0), 0)
  343. },
  344. // 切换分类
  345. switchCategory(categoryId) {
  346. this.currentCategory = categoryId
  347. // 先清空当前商品列表
  348. this.$set(this.allProducts, categoryId, [])
  349. // 拉取品牌商品接口
  350. this.$api('getGoodsBrandList', { iconId: categoryId }, res => {
  351. if (
  352. res.code === 200 &&
  353. res.result &&
  354. Array.isArray(res.result.records) &&
  355. res.result.records.length > 0
  356. ) {
  357. // 接口有数据
  358. this.$set(this.allProducts, categoryId, res.result.records.map(item => ({
  359. ...item,
  360. quantity: 0
  361. })))
  362. } else {
  363. // 接口无数据,兜底用静态
  364. if (this.staticAllProducts[categoryId]) {
  365. this.$set(this.allProducts, categoryId, JSON.parse(JSON.stringify(this.staticAllProducts[categoryId])))
  366. }
  367. }
  368. })
  369. },
  370. // 更新商品数量
  371. updateQuantity(index, delta) {
  372. const item = this.allProducts[this.currentCategory][index]
  373. const newQuantity = (item.quantity || 0) + delta
  374. if (newQuantity >= 0) {
  375. this.$set(item, 'quantity', newQuantity)
  376. }
  377. },
  378. // 显示回收规则
  379. showRules(item) {
  380. this.showRulePopup = true
  381. },
  382. showMore() {
  383. uni.showToast({
  384. title: '更多规则请咨询客服',
  385. icon: 'none'
  386. })
  387. },
  388. submitOrder() {
  389. if (this.totalCount === 0) {
  390. uni.showToast({
  391. title: '请选择要回收的物品',
  392. icon: 'none'
  393. })
  394. return
  395. }
  396. this.showPickupConfirm = true;
  397. },
  398. handlePickupCancel() {
  399. this.showPickupConfirm = false;
  400. },
  401. handlePickupAgree() {
  402. this.showPickupConfirm = false;
  403. uni.showLoading({
  404. title: '提交中...'
  405. })
  406. setTimeout(() => {
  407. uni.hideLoading()
  408. uni.showToast({
  409. title: '预约成功',
  410. icon: 'success'
  411. })
  412. this.goToPickup()
  413. }, 1500)
  414. },
  415. goToPickup() {
  416. // 获取所有选中的衣物
  417. const selectedItems = this.recycleList.filter(item => item.quantity > 0).map(item => ({
  418. name: item.name,
  419. icon: item.icon,
  420. quantity: item.quantity,
  421. unitPrice: item.price,
  422. desc: '允许脏破烂,160码以上'
  423. }))
  424. // 将选中的衣物信息转换为字符串
  425. const itemsStr = encodeURIComponent(JSON.stringify(selectedItems))
  426. // 跳转到预约页面
  427. uni.navigateTo({
  428. url: `/pages/subcomponent/pickup?fromRecycle=true&items=${itemsStr}`
  429. })
  430. },
  431. checkBrand(index) {
  432. this.showBrandPopup = true
  433. },
  434. closeBrandPopup() {
  435. this.showBrandPopup = false
  436. },
  437. scrollToLetter(letter) {
  438. this.currentLetter = letter
  439. this.scrollToView = 'brand-letter-' + letter
  440. },
  441. // 添加下拉刷新方法
  442. async refreshData() {
  443. try {
  444. // 这里可以添加刷新数据的逻辑,比如重新获取商品列表等
  445. // 示例:重新初始化数据
  446. this.currentCategory = 0
  447. Object.values(this.allProducts).forEach(categoryItems => {
  448. categoryItems.forEach(item => {
  449. item.quantity = 0
  450. })
  451. })
  452. // 模拟网络请求延迟
  453. await new Promise(resolve => setTimeout(resolve, 1000))
  454. uni.showToast({
  455. title: '刷新成功',
  456. icon: 'success'
  457. })
  458. } catch (error) {
  459. uni.showToast({
  460. title: '刷新失败',
  461. icon: 'none'
  462. })
  463. } finally {
  464. // 停止下拉刷新动画
  465. uni.stopPullDownRefresh()
  466. }
  467. },
  468. toggleDetailPanel() {
  469. this.showDetailPanel = !this.showDetailPanel
  470. },
  471. updateQuantityByProduct(item, delta) {
  472. if (!item.quantity) item.quantity = 0
  473. item.quantity += delta
  474. if (item.quantity < 0) item.quantity = 0
  475. this.updateTotal()
  476. },
  477. openRulePopup() {
  478. this.showRulePopup = true
  479. },
  480. closeRulePopup() {
  481. this.showRulePopup = false
  482. },
  483. },
  484. created() {
  485. // 初始化用静态数据
  486. this.categories = this.staticCategories
  487. this.allProducts = JSON.parse(JSON.stringify(this.staticAllProducts))
  488. this.currentCategory = this.categories[0].id
  489. this.fetchClassGoodsList()
  490. },
  491. mounted() {
  492. this.$nextTick(() => {
  493. const query = uni.createSelectorQuery().in(this)
  494. query.select('.uv-tabbar').boundingClientRect(rect => {
  495. if (rect && rect.height) {
  496. this.tabbarHeight = rect.height
  497. } else {
  498. this.tabbarHeight = uni.upx2px ? uni.upx2px(95) : 45
  499. }
  500. console.log(this.tabbarHeight,'tabbarHeight')
  501. }).exec()
  502. })
  503. },
  504. // 添加下拉刷新生命周期
  505. onPullDownRefresh() {
  506. this.refreshData()
  507. },
  508. onLoad() {
  509. this.fetchClassGoodsList()
  510. },
  511. }
  512. </script>
  513. <style lang="scss" scoped>
  514. .container {
  515. display: flex;
  516. flex-direction: column;
  517. min-height: 100vh;
  518. padding-bottom: calc(100rpx + env(safe-area-inset-bottom)); /* 底部导航栏高度 + 安全区域 */
  519. background-color: #f5f5f5;
  520. }
  521. .banner {
  522. background: linear-gradient(135deg, #ff9500,#ff5e00);
  523. position: relative;
  524. height: 240rpx;
  525. z-index: 1;
  526. height: 400rpx;
  527. image {
  528. width: 100%;
  529. height: 100%;
  530. }
  531. }
  532. .goods-list {
  533. flex: 1;
  534. display: flex;
  535. position: relative;
  536. height: calc(100vh - 200rpx - 100rpx - env(safe-area-inset-bottom)); /* 减去banner和底部栏的高度 */
  537. margin-top: -10rpx;
  538. z-index: 2;
  539. border-radius: 20rpx 20rpx 0 0;
  540. overflow: hidden;
  541. padding: 30rpx;
  542. box-shadow: 0 -4rpx 8rpx rgba(0, 0, 0, 0.05);
  543. background: linear-gradient(to bottom, #fff7e8, 20%,#ffffff);
  544. .category-nav {
  545. width: 20%;
  546. background: #ffffff;
  547. height: calc(100vh - 240rpx - 120rpx);
  548. border-right: 1rpx solid rgba(255, 126, 14, 0.1);
  549. margin: 1rpx;
  550. border-radius: 20rpx 0 0 0;
  551. margin-right: 20rpx;
  552. scrollbar-width: none; /* Firefox */
  553. -ms-overflow-style: none; /* IE and Edge */
  554. &::-webkit-scrollbar {
  555. width: 0 !important;
  556. display: none; /* Chrome, Safari, Opera */
  557. }
  558. .category-item {
  559. position: relative;
  560. padding: 30rpx 20rpx;
  561. text-align: center;
  562. font-family: PingFang SC;
  563. font-weight: 600;
  564. font-size: 14px;
  565. line-height: 100%;
  566. letter-spacing: 0px;
  567. color: #666;
  568. .category-dot {
  569. position: absolute;
  570. top: 15rpx;
  571. right: 15rpx;
  572. width: 12rpx;
  573. height: 12rpx;
  574. background: #ff7a0e;
  575. border-radius: 50%;
  576. }
  577. &.active {
  578. color: #ff7a0e;
  579. font-weight: bold;
  580. background: #fff7e8;
  581. position: relative;
  582. &::before {
  583. content: '';
  584. position: absolute;
  585. left: 0;
  586. top: 50%;
  587. transform: translateY(-50%);
  588. width: 6rpx;
  589. height: 36rpx;
  590. background: #ff7a0e;
  591. border-radius: 3rpx;
  592. }
  593. }
  594. }
  595. }
  596. .goods-content {
  597. flex: 1;
  598. height: calc(100vh - 140rpx - 120rpx);
  599. padding: 0 30rpx;
  600. background: #ffffff;
  601. width: 70%;
  602. margin: 1rpx;
  603. margin-left: 0;
  604. border-radius: 0 20rpx 0 0;
  605. scrollbar-width: none; /* Firefox */
  606. -ms-overflow-style: none; /* IE and Edge */
  607. &::-webkit-scrollbar {
  608. width: 0 !important;
  609. display: none; /* Chrome, Safari, Opera */
  610. }
  611. }
  612. }
  613. .goods-item {
  614. display: flex;
  615. align-items: flex-start;
  616. padding: 30rpx 0;
  617. border-bottom: 1rpx solid #f5f5f5;
  618. .goods-item-img {
  619. width: 120rpx;
  620. height: 120rpx;
  621. border-radius: 24rpx;
  622. background: #f8f8f8;
  623. margin-right: 28rpx;
  624. object-fit: contain;
  625. flex-shrink: 0;
  626. }
  627. .goods-info-wrap {
  628. flex: 1;
  629. display: flex;
  630. flex-direction: column;
  631. justify-content: center;
  632. min-width: 0;
  633. }
  634. .goods-header {
  635. display: flex;
  636. justify-content: space-between;
  637. align-items: center;
  638. margin-bottom: 10rpx;
  639. }
  640. .goods-name {
  641. font-family: PingFang SC;
  642. font-weight: 500;
  643. font-size: 14px;
  644. line-height: 140%;
  645. letter-spacing: 0%;
  646. vertical-align: middle;
  647. color: #333;
  648. font-weight: bold;
  649. }
  650. .goods-desc {
  651. font-size: 24rpx;
  652. color: #999;
  653. display: block;
  654. margin-bottom: 20rpx;
  655. }
  656. .goods-info {
  657. display: flex;
  658. justify-content: space-between;
  659. align-items: center;
  660. }
  661. .price-info {
  662. display: flex;
  663. align-items: baseline;
  664. .price-symbol {
  665. font-size: 24rpx;
  666. color: #ff7a0e;
  667. }
  668. .price-value {
  669. font-size: 36rpx;
  670. color: #ff7a0e;
  671. font-weight: bold;
  672. margin: 0 4rpx;
  673. }
  674. .price-unit {
  675. font-size: 24rpx;
  676. color: #999;
  677. }
  678. }
  679. .quantity-control {
  680. display: flex;
  681. align-items: center;
  682. button {
  683. width: 60rpx;
  684. height: 60rpx;
  685. padding: 0;
  686. margin: 0;
  687. display: flex;
  688. align-items: center;
  689. justify-content: center;
  690. font-size: 28rpx;
  691. color: #666;
  692. background: #f8f8f8;
  693. border: none;
  694. border-radius: 50%;
  695. &::after {
  696. border: none;
  697. }
  698. &:active {
  699. opacity: 0.8;
  700. }
  701. }
  702. .quantity {
  703. width: 80rpx;
  704. text-align: center;
  705. font-size: 32rpx;
  706. color: #333;
  707. }
  708. }
  709. .brand-check {
  710. // margin-top: 20rpx;
  711. // margin:0 auto;
  712. display: flex;
  713. flex-direction: row;
  714. align-items: center;
  715. // justify-content: center;
  716. border: 1px solid #f8a01d;
  717. width: 40%;
  718. // background: #fff7f0;
  719. border-radius: 8rpx;
  720. color: #ff7a0e;
  721. font-family: PingFang SC;
  722. font-weight: 400;
  723. font-size: 12px;
  724. line-height: 140%;
  725. letter-spacing: 0%;
  726. text {
  727. // margin-right: 8rpx;
  728. }
  729. }
  730. }
  731. .rules-link{
  732. .rules{
  733. font-family: PingFang SC;
  734. font-weight: 400;
  735. font-size: 12px;
  736. line-height: 140%;
  737. letter-spacing: 0%;
  738. }
  739. }
  740. .other-unrecycle-card {
  741. display: flex;
  742. align-items: center;
  743. background: #fff;
  744. border-radius: 24rpx;
  745. box-shadow: 0 4rpx 24rpx rgba(0,0,0,0.06);
  746. padding: 30rpx 30rpx 30rpx 30rpx;
  747. margin: 30rpx 0 0 0;
  748. }
  749. .other-unrecycle-img {
  750. width: 120rpx;
  751. height: 120rpx;
  752. border-radius: 24rpx;
  753. background: #f8f8f8;
  754. margin-right: 28rpx;
  755. object-fit: contain;
  756. flex-shrink: 0;
  757. }
  758. .other-unrecycle-info {
  759. flex: 1;
  760. display: flex;
  761. flex-direction: column;
  762. justify-content: center;
  763. min-width: 0;
  764. }
  765. .other-unrecycle-title {
  766. font-size: 30rpx;
  767. color: #222;
  768. font-weight: bold;
  769. margin-bottom: 8rpx;
  770. word-break: break-all;
  771. white-space: normal;
  772. overflow: visible;
  773. }
  774. .other-unrecycle-desc {
  775. font-size: 24rpx;
  776. color: #999;
  777. margin-bottom: 12rpx;
  778. text-overflow: ellipsis;
  779. overflow: hidden;
  780. white-space: nowrap;
  781. }
  782. .other-unrecycle-price-row {
  783. display: flex;
  784. align-items: center;
  785. }
  786. .other-unrecycle-price {
  787. font-size: 28rpx;
  788. color: #ff9c00;
  789. font-weight: bold;
  790. }
  791. .other-unrecycle-btn {
  792. width: 60rpx;
  793. height: 60rpx;
  794. margin-left: 24rpx;
  795. border-radius: 50%;
  796. background: #f5f5f5;
  797. color: #ccc;
  798. font-size: 36rpx;
  799. border: none;
  800. display: flex;
  801. align-items: center;
  802. justify-content: center;
  803. pointer-events: none;
  804. }
  805. .fixed-bottom-wrap {
  806. position: fixed;
  807. left: 0;
  808. right: 0;
  809. bottom: calc(v-bind('tabbarHeight + "px"') + env(safe-area-inset-bottom));
  810. width: 100vw;
  811. z-index: 1001;
  812. background: transparent;
  813. box-sizing: border-box;
  814. pointer-events: auto;
  815. }
  816. .bottom-bar-divider {
  817. width: 100%;
  818. height: 1px;
  819. background: #f0f0f0;
  820. position: absolute;
  821. left: 0;
  822. bottom: 0;
  823. z-index: 1;
  824. }
  825. .green-tip-bar {
  826. width: 100%;
  827. background: #eaffea;
  828. color: #13ac47;
  829. font-size: 20rpx;
  830. // padding: 16rpx 30rpx 0 30rpx;
  831. box-sizing: border-box;
  832. text-align: left;
  833. display: flex;
  834. align-items: center;
  835. justify-content: center;
  836. // flex-direction: r;
  837. .tip-highlight {
  838. color: #ff9c00;
  839. font-weight: bold;
  840. font-size: 20rpx;
  841. }
  842. }
  843. .bottom-bar {
  844. width: 100%;
  845. background-color: #fff;
  846. display: flex;
  847. align-items: center;
  848. justify-content: space-between;
  849. padding: 0 30rpx;
  850. box-shadow: 0 -2rpx 10rpx rgba(0, 0, 0, 0.05);
  851. height: 120rpx;
  852. border-top-left-radius: 0;
  853. border-top-right-radius: 0;
  854. border-bottom-left-radius: env(safe-area-inset-bottom);
  855. border-bottom-right-radius: env(safe-area-inset-bottom);
  856. .bottom-left {
  857. // flex: 1;
  858. display: flex;
  859. flex-direction: column;
  860. justify-content: center;
  861. .summary-row {
  862. display: flex;
  863. align-items: center;
  864. font-size: 26rpx;
  865. color: #333;
  866. .summary-label {
  867. color: #333;
  868. }
  869. .summary-count {
  870. color: #ff9c00;
  871. font-weight: bold;
  872. font-size: 28rpx;
  873. }
  874. }
  875. .amount-row {
  876. display: flex;
  877. align-items: center;
  878. margin-top: 4rpx;
  879. .amount {
  880. color: #ff9c00;
  881. font-size: 44rpx;
  882. font-weight: bold;
  883. vertical-align: middle;
  884. }
  885. }
  886. }
  887. .submit-btn {
  888. width: 300rpx;
  889. height: 88rpx;
  890. background: linear-gradient(to right, #ffd01e, #ff8917);
  891. border-radius: 44rpx;
  892. color: #fff;
  893. font-size: 32rpx;
  894. font-weight: bold;
  895. display: flex;
  896. align-items: center;
  897. justify-content: center;
  898. border: none;
  899. // margin-left: 0rpx;
  900. box-shadow: 0 4rpx 16rpx rgba(255, 156, 0, 0.08);
  901. &::after {
  902. border: none;
  903. }
  904. &:active {
  905. opacity: 0.9;
  906. }
  907. }
  908. }
  909. .detail-popup-mask {
  910. position: fixed;
  911. left: 0;
  912. right: 0;
  913. top: 0;
  914. bottom: calc(90rpx + env(safe-area-inset-bottom)); /* tabbar高度+安全区 */
  915. background: rgba(0,0,0,0.35);
  916. z-index: 8;
  917. display: flex;
  918. align-items: flex-end;
  919. justify-content: center;
  920. }
  921. .detail-popup {
  922. width: 100vw;
  923. max-width: none;
  924. background: #fff;
  925. border-radius: 48rpx 48rpx 0 0;
  926. box-shadow: 0 8rpx 48rpx rgba(0,0,0,0.18);
  927. display: flex;
  928. flex-direction: column;
  929. align-items: stretch;
  930. position: relative;
  931. padding: 0;
  932. overflow: hidden;
  933. min-height: 520rpx;
  934. max-height: 80vh;
  935. bottom: 0;
  936. }
  937. .detail-popup-close {
  938. position: absolute;
  939. right: 36rpx;
  940. top: 36rpx;
  941. font-size: 36rpx;
  942. color: #bbb;
  943. z-index: 2;
  944. }
  945. .popup-green-tip {
  946. border-radius: 48rpx 48rpx 0 0;
  947. font-size: 20rpx;
  948. padding: 24rpx 30rpx 0 30rpx;
  949. background: #eaffea;
  950. color: #13ac47;
  951. text-align: left;
  952. }
  953. .panel-header {
  954. display: flex;
  955. align-items: center;
  956. justify-content: center;
  957. font-size: 32rpx;
  958. font-weight: bold;
  959. padding: 40rpx 36rpx 0 36rpx;
  960. background: #fff;
  961. position: relative;
  962. }
  963. .panel-title {
  964. font-size: 32rpx;
  965. color: #222;
  966. font-weight: bold;
  967. text-align: center;
  968. flex: 1;
  969. }
  970. .popup-panel-list {
  971. flex: 1;
  972. overflow-y: auto;
  973. max-height: 36vh;
  974. padding: 0 24rpx;
  975. scrollbar-width: none; /* Firefox */
  976. -ms-overflow-style: none; /* IE and Edge */
  977. &::-webkit-scrollbar {
  978. width: 0 !important;
  979. display: none; /* Chrome, Safari, Opera */
  980. }
  981. }
  982. .panel-item {
  983. display: flex;
  984. align-items: center;
  985. justify-content: flex-start;
  986. padding: 24rpx 0;
  987. border-bottom: 1px solid #f0f0f0;
  988. }
  989. .panel-item-img {
  990. width: 100rpx;
  991. height: 100rpx;
  992. margin-right: 20rpx;
  993. border-radius: 16rpx;
  994. background: #f8f8f8;
  995. }
  996. .panel-item-info {
  997. flex: 1;
  998. display: flex;
  999. flex-direction: column;
  1000. justify-content: center;
  1001. min-width: 0;
  1002. }
  1003. .panel-item-name {
  1004. font-size: 30rpx;
  1005. color: #222;
  1006. font-weight: bold;
  1007. margin-bottom: 4rpx;
  1008. text-overflow: ellipsis;
  1009. overflow: hidden;
  1010. white-space: nowrap;
  1011. }
  1012. .panel-item-desc {
  1013. font-size: 24rpx;
  1014. color: #999;
  1015. margin-bottom: 4rpx;
  1016. text-overflow: ellipsis;
  1017. overflow: hidden;
  1018. white-space: nowrap;
  1019. }
  1020. .panel-item-price {
  1021. font-size: 26rpx;
  1022. color: #ff9c00;
  1023. margin-top: 2rpx;
  1024. }
  1025. .panel-quantity-control {
  1026. display: flex;
  1027. align-items: center;
  1028. margin-left: 20rpx;
  1029. }
  1030. .panel-quantity-control button {
  1031. width: 48rpx;
  1032. height: 48rpx;
  1033. padding: 0;
  1034. margin: 0 8rpx;
  1035. display: flex;
  1036. align-items: center;
  1037. justify-content: center;
  1038. font-size: 32rpx;
  1039. color: #666;
  1040. background: #f5f5f5;
  1041. border: none;
  1042. border-radius: 50%;
  1043. &::after {
  1044. border: none;
  1045. }
  1046. &:active {
  1047. opacity: 0.8;
  1048. }
  1049. }
  1050. .panel-quantity-control .quantity {
  1051. width: 40rpx;
  1052. text-align: center;
  1053. font-size: 28rpx;
  1054. color: #333;
  1055. }
  1056. .popup-bottom-bar {
  1057. width: 100%;
  1058. background-color: #fff;
  1059. display: flex;
  1060. align-items: center;
  1061. justify-content: space-between;
  1062. padding: 0 30rpx;
  1063. box-shadow: 0 -2rpx 10rpx rgba(0, 0, 0, 0.05);
  1064. height: 120rpx;
  1065. border-top: 1px solid #f0f0f0;
  1066. border-bottom-left-radius: 48rpx;
  1067. border-bottom-right-radius: 48rpx;
  1068. // padding-bottom: env(safe-area-inset-bottom);
  1069. .bottom-left {
  1070. display: flex;
  1071. flex-direction: column;
  1072. justify-content: center;
  1073. .summary-row {
  1074. display: flex;
  1075. align-items: center;
  1076. font-size: 26rpx;
  1077. color: #333;
  1078. .summary-label {
  1079. color: #333;
  1080. }
  1081. .summary-count {
  1082. color: #ff9c00;
  1083. font-weight: bold;
  1084. font-size: 28rpx;
  1085. }
  1086. }
  1087. .amount-row {
  1088. display: flex;
  1089. align-items: center;
  1090. margin-top: 4rpx;
  1091. .amount {
  1092. color: #ff9c00;
  1093. font-size: 44rpx;
  1094. font-weight: bold;
  1095. vertical-align: middle;
  1096. }
  1097. }
  1098. }
  1099. .submit-btn {
  1100. width: 300rpx;
  1101. height: 88rpx;
  1102. background: linear-gradient(to right, #ffd01e, #ff8917);
  1103. border-radius: 44rpx;
  1104. color: #fff;
  1105. font-size: 32rpx;
  1106. font-weight: bold;
  1107. display: flex;
  1108. align-items: center;
  1109. justify-content: center;
  1110. border: none;
  1111. box-shadow: 0 4rpx 16rpx rgba(255, 156, 0, 0.08);
  1112. &::after {
  1113. border: none;
  1114. }
  1115. &:active {
  1116. opacity: 0.9;
  1117. }
  1118. }
  1119. }
  1120. .brand-popup-mask {
  1121. position: fixed;
  1122. left: 0;
  1123. right: 0;
  1124. top: 0;
  1125. bottom: 0;
  1126. background: rgba(0,0,0,0.35);
  1127. z-index: 3000;
  1128. display: flex;
  1129. align-items: flex-end;
  1130. justify-content: center;
  1131. }
  1132. .brand-popup {
  1133. position: relative;
  1134. width: 100%;
  1135. max-width: 750px;
  1136. background: #fff;
  1137. border-radius: 32rpx 32rpx 0 0;
  1138. box-shadow: 0 -4rpx 24rpx rgba(0,0,0,0.08);
  1139. padding-bottom: 40rpx;
  1140. max-height: 90vh;
  1141. display: flex;
  1142. flex-direction: column;
  1143. overflow: hidden;
  1144. }
  1145. .brand-popup-header {
  1146. display: flex;
  1147. align-items: center;
  1148. justify-content: center;
  1149. padding: 32rpx 24rpx 0 24rpx;
  1150. font-size: 32rpx;
  1151. font-weight: bold;
  1152. position: relative;
  1153. }
  1154. .brand-popup-close {
  1155. position: absolute;
  1156. left: 24rpx;
  1157. font-size: 28rpx;
  1158. color: #888;
  1159. }
  1160. .brand-popup-title {
  1161. font-size: 32rpx;
  1162. color: #222;
  1163. font-weight: bold;
  1164. }
  1165. .brand-popup-search {
  1166. padding: 20rpx 24rpx 0 24rpx;
  1167. }
  1168. .brand-search-input {
  1169. width: 100%;
  1170. height: 60rpx;
  1171. border-radius: 30rpx;
  1172. background: #f5f5f5;
  1173. border: none;
  1174. padding-left: 40rpx;
  1175. font-size: 28rpx;
  1176. color: #888;
  1177. }
  1178. .brand-popup-list {
  1179. flex: 1;
  1180. overflow-y: auto;
  1181. max-height: 60vh;
  1182. padding: 0 24rpx;
  1183. scrollbar-width: none; /* Firefox */
  1184. -ms-overflow-style: none; /* IE and Edge */
  1185. &::-webkit-scrollbar {
  1186. width: 0 !important;
  1187. display: none; /* Chrome, Safari, Opera */
  1188. }
  1189. }
  1190. .brand-letter {
  1191. font-size: 28rpx;
  1192. color: #888;
  1193. margin: 24rpx 0 8rpx 0;
  1194. font-weight: bold;
  1195. }
  1196. .brand-item {
  1197. display: flex;
  1198. align-items: center;
  1199. padding: 16rpx 0;
  1200. border-bottom: 1px solid #f0f0f0;
  1201. }
  1202. .brand-logo {
  1203. width: 60rpx;
  1204. height: 60rpx;
  1205. margin-right: 20rpx;
  1206. border-radius: 8rpx;
  1207. background: #f8f8f8;
  1208. }
  1209. .brand-name {
  1210. font-size: 28rpx;
  1211. color: #222;
  1212. }
  1213. .brand-index-bar {
  1214. position: absolute;
  1215. right: 12rpx;
  1216. top: 120rpx;
  1217. width: 32rpx;
  1218. display: flex;
  1219. flex-direction: column;
  1220. align-items: center;
  1221. z-index: 10;
  1222. }
  1223. .brand-index-bar text {
  1224. font-size: 22rpx;
  1225. color: #bbb;
  1226. margin: 4rpx 0;
  1227. font-weight: bold;
  1228. &.active {
  1229. color: #ff9c00;
  1230. }
  1231. }
  1232. .rule-popup-mask {
  1233. position: fixed;
  1234. left: 0;
  1235. right: 0;
  1236. top: 0;
  1237. bottom: 0;
  1238. background: rgba(0,0,0,0.35);
  1239. z-index: 4000;
  1240. display: flex;
  1241. align-items: center;
  1242. justify-content: center;
  1243. }
  1244. .rule-popup {
  1245. width: 90vw;
  1246. max-width: 600rpx;
  1247. background: #fff;
  1248. border-radius: 48rpx;
  1249. box-shadow: 0 8rpx 32rpx rgba(0,0,0,0.12);
  1250. display: flex;
  1251. flex-direction: column;
  1252. align-items: center;
  1253. position: relative;
  1254. padding-bottom: 40rpx;
  1255. }
  1256. .rule-popup-title {
  1257. font-size: 36rpx;
  1258. color: #222;
  1259. font-weight: bold;
  1260. text-align: center;
  1261. margin-top: 48rpx;
  1262. margin-bottom: 16rpx;
  1263. }
  1264. .rule-popup-content {
  1265. width: 100%;
  1266. max-height: 420rpx;
  1267. padding: 0 40rpx;
  1268. box-sizing: border-box;
  1269. overflow-y: auto;
  1270. scrollbar-width: none; /* Firefox */
  1271. -ms-overflow-style: none; /* IE and Edge */
  1272. &::-webkit-scrollbar {
  1273. width: 0 !important;
  1274. display: none; /* Chrome, Safari, Opera */
  1275. }
  1276. }
  1277. .rule-popup-desc {
  1278. font-size: 26rpx;
  1279. color: #888;
  1280. text-align: center;
  1281. margin-bottom: 24rpx;
  1282. margin-top: 0;
  1283. }
  1284. .rule-popup-warning {
  1285. width: 100%;
  1286. border: 2rpx solid #ffb800;
  1287. color: #ffb800;
  1288. background: #fffbe6;
  1289. border-radius: 32rpx;
  1290. font-size: 28rpx;
  1291. text-align: center;
  1292. padding: 16rpx 0;
  1293. margin-bottom: 24rpx;
  1294. font-weight: bold;
  1295. }
  1296. .rule-popup-img {
  1297. display: block;
  1298. margin: 0 auto 24rpx auto;
  1299. max-width: 80%;
  1300. max-height: 300rpx;
  1301. border-radius: 16rpx;
  1302. object-fit: contain;
  1303. }
  1304. .rule-popup-btn {
  1305. width: 80%;
  1306. height: 88rpx;
  1307. background: linear-gradient(to right, #ffd01e, #ff8917);
  1308. border-radius: 44rpx;
  1309. color: #fff;
  1310. font-size: 32rpx;
  1311. font-weight: bold;
  1312. display: flex;
  1313. align-items: center;
  1314. justify-content: center;
  1315. border: none;
  1316. margin: 0 auto;
  1317. margin-top: 16rpx;
  1318. box-shadow: 0 4rpx 16rpx rgba(255, 156, 0, 0.08);
  1319. &::after {
  1320. border: none;
  1321. }
  1322. &:active {
  1323. opacity: 0.9;
  1324. }
  1325. }
  1326. .rule-popup-close {
  1327. position: absolute;
  1328. right: 32rpx;
  1329. bottom: 32rpx;
  1330. width: 72rpx;
  1331. height: 72rpx;
  1332. background: #ff5a5f;
  1333. border-radius: 50%;
  1334. display: flex;
  1335. align-items: center;
  1336. justify-content: center;
  1337. z-index: 10;
  1338. box-shadow: 0 2rpx 8rpx rgba(255,90,95,0.12);
  1339. }
  1340. /* 预约上门取件弹窗样式 */
  1341. .pickup-confirm-mask {
  1342. position: fixed;
  1343. left: 0;
  1344. right: 0;
  1345. top: 0;
  1346. bottom: 0;
  1347. background: rgba(0,0,0,0.35);
  1348. z-index: 5000;
  1349. display: flex;
  1350. align-items: center;
  1351. justify-content: center;
  1352. }
  1353. .pickup-confirm-popup {
  1354. width: 90vw;
  1355. max-width: 600rpx;
  1356. background: #fff;
  1357. border-radius: 48rpx;
  1358. box-shadow: 0 8rpx 32rpx rgba(0,0,0,0.12);
  1359. display: flex;
  1360. flex-direction: column;
  1361. align-items: center;
  1362. position: relative;
  1363. padding: 48rpx 36rpx 40rpx 36rpx;
  1364. }
  1365. .pickup-confirm-title {
  1366. font-size: 36rpx;
  1367. color: #222;
  1368. font-weight: bold;
  1369. text-align: center;
  1370. margin-bottom: 24rpx;
  1371. }
  1372. .pickup-confirm-content {
  1373. font-size: 26rpx;
  1374. color: #333;
  1375. text-align: left;
  1376. line-height: 1.7;
  1377. margin-bottom: 36rpx;
  1378. }
  1379. .pickup-confirm-btn-row {
  1380. width: 100%;
  1381. display: flex;
  1382. justify-content: space-between;
  1383. gap: 32rpx;
  1384. }
  1385. .pickup-confirm-btn {
  1386. flex: 1;
  1387. height: 88rpx;
  1388. border-radius: 44rpx;
  1389. font-size: 32rpx;
  1390. font-weight: bold;
  1391. display: flex;
  1392. align-items: center;
  1393. justify-content: center;
  1394. border: 2rpx solid #ffd01e;
  1395. background: #fff;
  1396. color: #ff9c00;
  1397. box-shadow: 0 4rpx 16rpx rgba(255, 156, 0, 0.08);
  1398. }
  1399. .pickup-confirm-btn:not(.agree) {
  1400. background: #fff0d2;
  1401. }
  1402. .pickup-confirm-btn.agree {
  1403. background: linear-gradient(to right, #ffd01e, #ff8917);
  1404. color: #fff;
  1405. border: none;
  1406. }
  1407. .uv-tabbar {
  1408. z-index: 1000;
  1409. }
  1410. </style>