|
|
@ -1,8 +1,13 @@ |
|
|
|
<template> |
|
|
|
<view class="profile-container"> |
|
|
|
<view class="user-top" :style="{ |
|
|
|
backgroundImage: `url(${showImg('/uploads/20250728/4ad18fba010760a527d0cf5e24bcf467.png')})`, |
|
|
|
}"> |
|
|
|
<view |
|
|
|
class="user-top" |
|
|
|
:style="{ |
|
|
|
backgroundImage: `url(${showImg( |
|
|
|
'/uploads/20250728/4ad18fba010760a527d0cf5e24bcf467.png' |
|
|
|
)})`, |
|
|
|
}" |
|
|
|
> |
|
|
|
<!-- 状态栏占位 --> |
|
|
|
<view class="status-bar-placeholder"></view> |
|
|
|
<!-- 顶部导航 --> |
|
|
@ -17,8 +22,11 @@ |
|
|
|
<!-- 用户信息区域 --> |
|
|
|
<view class="user-section" @click="gotoProfile"> |
|
|
|
<view class="user-avatar"> |
|
|
|
<image :src="userInfo.avatar ? showImg(userInfo.avatar) : defaultAvatar" mode="aspectFill" |
|
|
|
class="avatar-img"></image> |
|
|
|
<image |
|
|
|
:src="userInfo.avatar ? showImg(userInfo.avatar) : defaultAvatar" |
|
|
|
mode="aspectFill" |
|
|
|
class="avatar-img" |
|
|
|
></image> |
|
|
|
</view> |
|
|
|
<view class="user-info"> |
|
|
|
<view class="username">{{ userInfo.nickname || "用户" }}</view> |
|
|
@ -63,10 +71,23 @@ |
|
|
|
<view class="agent-title">待激活的Agent</view> |
|
|
|
</view> |
|
|
|
<view class="agent-content"> |
|
|
|
<scroll-view class="agent-scroll" scroll-x="true" show-scrollbar="false"> |
|
|
|
<scroll-view |
|
|
|
class="agent-scroll" |
|
|
|
scroll-x="true" |
|
|
|
:show-scrollbar="false" |
|
|
|
:enhanced="true" |
|
|
|
> |
|
|
|
<view class="agent-avatars"> |
|
|
|
<view class="agent-avatar" v-for="(agent, index) in agentList" :key="index"> |
|
|
|
<image :src="agent.avatar" mode="aspectFill" class="agent-img"></image> |
|
|
|
<view |
|
|
|
class="agent-avatar" |
|
|
|
v-for="(agent, index) in agentList" |
|
|
|
:key="index" |
|
|
|
> |
|
|
|
<image |
|
|
|
:src="agent.avatar" |
|
|
|
mode="aspectFill" |
|
|
|
class="agent-img" |
|
|
|
></image> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
</scroll-view> |
|
|
@ -85,10 +106,18 @@ |
|
|
|
<!-- 数字资产权益 --> |
|
|
|
<view class="digital-assets"> |
|
|
|
<view class="asset-card"> |
|
|
|
<image :src="showImg('/uploads/20250729/42598a2dcf4c9a6f8c6e122e54b65c4f.png')" mode="aspectFill" |
|
|
|
class="digital-img"></image> |
|
|
|
<image |
|
|
|
:src=" |
|
|
|
showImg('/uploads/20250729/42598a2dcf4c9a6f8c6e122e54b65c4f.png') |
|
|
|
" |
|
|
|
mode="aspectFill" |
|
|
|
class="digital-img" |
|
|
|
></image> |
|
|
|
<view class="asset-actions"> |
|
|
|
<view class="asset-action active" @click="handleAssetAction('待核销')"> |
|
|
|
<view |
|
|
|
class="asset-action active" |
|
|
|
@click="handleAssetAction('待核销')" |
|
|
|
> |
|
|
|
<view class="action-icon red"></view> |
|
|
|
<text>待核销</text> |
|
|
|
</view> |
|
|
@ -111,10 +140,18 @@ |
|
|
|
<!-- 有感商品 --> |
|
|
|
<view class="feeling-goods"> |
|
|
|
<view class="goods-card"> |
|
|
|
<image :src="showImg('/uploads/20250729/a010feb51e3f195563fb440f9235cc8b.png')" mode="aspectFill" |
|
|
|
class="digital-img"></image> |
|
|
|
<image |
|
|
|
:src=" |
|
|
|
showImg('/uploads/20250729/a010feb51e3f195563fb440f9235cc8b.png') |
|
|
|
" |
|
|
|
mode="aspectFill" |
|
|
|
class="digital-img" |
|
|
|
></image> |
|
|
|
<view class="goods-actions"> |
|
|
|
<view class="goods-action active" @click="handleGoodsAction('购物车')"> |
|
|
|
<view |
|
|
|
class="goods-action active" |
|
|
|
@click="handleGoodsAction('购物车')" |
|
|
|
> |
|
|
|
<view class="action-icon red"></view> |
|
|
|
<text>购物车</text> |
|
|
|
</view> |
|
|
@ -143,16 +180,26 @@ |
|
|
|
</view> |
|
|
|
<view class="memorial-cards"> |
|
|
|
<view class="memorial-card" @click="handleMemorialClick(0)"> |
|
|
|
<image :src="showImg('/uploads/20250729/105755e9b2e570e46b96d54ed61abe51.png')" mode="aspectFill" |
|
|
|
class="memorial-img"></image> |
|
|
|
<image |
|
|
|
:src=" |
|
|
|
showImg('/uploads/20250729/105755e9b2e570e46b96d54ed61abe51.png') |
|
|
|
" |
|
|
|
mode="aspectFill" |
|
|
|
class="memorial-img" |
|
|
|
></image> |
|
|
|
<view class="memorial-info"> |
|
|
|
<text class="memorial-title">世界花园|凤景里的苏州</text> |
|
|
|
<text class="memorial-more">MORE</text> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
<view class="memorial-card" @click="handleMemorialClick(1)"> |
|
|
|
<image :src="showImg('/uploads/20250729/42fe2364167c2342076c4e094df3d288.png')" mode="aspectFill" |
|
|
|
class="memorial-img"></image> |
|
|
|
<image |
|
|
|
:src=" |
|
|
|
showImg('/uploads/20250729/42fe2364167c2342076c4e094df3d288.png') |
|
|
|
" |
|
|
|
mode="aspectFill" |
|
|
|
class="memorial-img" |
|
|
|
></image> |
|
|
|
<view class="memorial-info"> |
|
|
|
<text class="memorial-title">男神女神罗曼史</text> |
|
|
|
<text class="memorial-more">MORE</text> |
|
|
@ -163,7 +210,12 @@ |
|
|
|
|
|
|
|
<!-- 底部菜单 --> |
|
|
|
<view class="bottom-menu"> |
|
|
|
<view class="menu-item" v-for="(item, index) in menuItems" :key="index" @click="handleMenuClick(item)"> |
|
|
|
<view |
|
|
|
class="menu-item" |
|
|
|
v-for="(item, index) in menuItems" |
|
|
|
:key="index" |
|
|
|
@click="handleMenuClick(item)" |
|
|
|
> |
|
|
|
<text>{{ item.title }}</text> |
|
|
|
</view> |
|
|
|
</view> |
|
|
@ -174,55 +226,62 @@ |
|
|
|
</template> |
|
|
|
|
|
|
|
<script> |
|
|
|
import moment from "moment"; |
|
|
|
import CustomTabBar from "@/components/CustomTabBar.vue"; |
|
|
|
import MusicControl from "@/components/MusicControl.vue"; |
|
|
|
export default { |
|
|
|
import moment from "moment"; |
|
|
|
import CustomTabBar from "@/components/CustomTabBar.vue"; |
|
|
|
import MusicControl from "@/components/MusicControl.vue"; |
|
|
|
export default { |
|
|
|
components: { |
|
|
|
CustomTabBar, |
|
|
|
MusicControl |
|
|
|
MusicControl, |
|
|
|
}, |
|
|
|
data() { |
|
|
|
return { |
|
|
|
userInfo: {}, |
|
|
|
defaultAvatar: "https://changshu.js-dyyj.com/uploads/20250326/516242619f0772bee371a60684618c01.png", |
|
|
|
defaultAvatar: |
|
|
|
"https://changshu.js-dyyj.com/uploads/20250326/516242619f0772bee371a60684618c01.png", |
|
|
|
userStats: { |
|
|
|
following: "140", |
|
|
|
followers: "2462", |
|
|
|
likes: "5.4万", |
|
|
|
}, |
|
|
|
agentList: [{ |
|
|
|
avatar: "https://epic.js-dyyj.com/uploads/20250728/d27ef6e6c26877da7775664fed376c6f.png", |
|
|
|
agentList: [ |
|
|
|
{ |
|
|
|
avatar: |
|
|
|
"https://epic.js-dyyj.com/uploads/20250728/d27ef6e6c26877da7775664fed376c6f.png", |
|
|
|
}, |
|
|
|
{ |
|
|
|
avatar: "https://epic.js-dyyj.com/uploads/20250728/d7bf0dd2f3f272afba687b525a7c575c.png", |
|
|
|
avatar: |
|
|
|
"https://epic.js-dyyj.com/uploads/20250728/d7bf0dd2f3f272afba687b525a7c575c.png", |
|
|
|
}, |
|
|
|
{ |
|
|
|
avatar: "https://epic.js-dyyj.com/uploads/20250728/d27ef6e6c26877da7775664fed376c6f.png", |
|
|
|
avatar: |
|
|
|
"https://epic.js-dyyj.com/uploads/20250728/d27ef6e6c26877da7775664fed376c6f.png", |
|
|
|
}, |
|
|
|
{ |
|
|
|
avatar: "https://epic.js-dyyj.com/uploads/20250728/d7bf0dd2f3f272afba687b525a7c575c.png", |
|
|
|
avatar: |
|
|
|
"https://epic.js-dyyj.com/uploads/20250728/d7bf0dd2f3f272afba687b525a7c575c.png", |
|
|
|
}, |
|
|
|
], |
|
|
|
menuItems: [{ |
|
|
|
menuItems: [ |
|
|
|
{ |
|
|
|
title: "账号与安全", |
|
|
|
icon: "🔒" |
|
|
|
icon: "🔒", |
|
|
|
}, |
|
|
|
{ |
|
|
|
title: "购物车", |
|
|
|
icon: "🛒" |
|
|
|
icon: "🛒", |
|
|
|
}, |
|
|
|
{ |
|
|
|
title: "地址管理", |
|
|
|
icon: "📍" |
|
|
|
icon: "📍", |
|
|
|
}, |
|
|
|
{ |
|
|
|
title: "卡券中心", |
|
|
|
icon: "🎫" |
|
|
|
icon: "🎫", |
|
|
|
}, |
|
|
|
{ |
|
|
|
title: "帮助与客服", |
|
|
|
icon: "💬" |
|
|
|
icon: "💬", |
|
|
|
}, |
|
|
|
], |
|
|
|
}; |
|
|
@ -235,7 +294,8 @@ |
|
|
|
this.userInfo = |
|
|
|
(uni.getStorageSync("userInfo") && |
|
|
|
JSON.parse(uni.getStorageSync("userInfo"))) || |
|
|
|
this.$store.state.user.userInfo || {}; |
|
|
|
this.$store.state.user.userInfo || |
|
|
|
{}; |
|
|
|
console.log(this.userInfo); |
|
|
|
}, |
|
|
|
methods: { |
|
|
@ -282,7 +342,8 @@ |
|
|
|
case "帮助与客服": |
|
|
|
uni.showModal({ |
|
|
|
title: "客服电话", |
|
|
|
content: "0515-69186109\n服务时间:周一至周五\n9:00-12:00,13:00-18:00", |
|
|
|
content: |
|
|
|
"0515-69186109\n服务时间:周一至周五\n9:00-12:00,13:00-18:00", |
|
|
|
confirmText: "拨打", |
|
|
|
success: (res) => { |
|
|
|
if (res.confirm) { |
|
|
@ -377,37 +438,37 @@ |
|
|
|
} |
|
|
|
}, |
|
|
|
}, |
|
|
|
}; |
|
|
|
}; |
|
|
|
</script> |
|
|
|
|
|
|
|
<style scoped lang="scss"> |
|
|
|
view { |
|
|
|
view { |
|
|
|
box-sizing: border-box; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.profile-container { |
|
|
|
.profile-container { |
|
|
|
background: white; |
|
|
|
min-height: 100vh; |
|
|
|
padding-bottom: 200rpx; |
|
|
|
color: white; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
/* 状态栏占位 */ |
|
|
|
.status-bar-placeholder { |
|
|
|
/* 状态栏占位 */ |
|
|
|
.status-bar-placeholder { |
|
|
|
height: var(--status-bar-height); |
|
|
|
width: 100%; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
/* 顶部导航 */ |
|
|
|
.header { |
|
|
|
/* 顶部导航 */ |
|
|
|
.header { |
|
|
|
display: flex; |
|
|
|
justify-content: space-between; |
|
|
|
align-items: center; |
|
|
|
height: 40px; |
|
|
|
} |
|
|
|
height: 48px; |
|
|
|
} |
|
|
|
|
|
|
|
.back-btn, |
|
|
|
.more-btn { |
|
|
|
.back-btn, |
|
|
|
.more-btn { |
|
|
|
width: 60rpx; |
|
|
|
height: 60rpx; |
|
|
|
display: flex; |
|
|
@ -415,88 +476,88 @@ |
|
|
|
justify-content: center; |
|
|
|
font-size: 40rpx; |
|
|
|
color: white; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.dots { |
|
|
|
.dots { |
|
|
|
font-size: 32rpx; |
|
|
|
font-weight: bold; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
/* 用户信息区域 */ |
|
|
|
.user-section { |
|
|
|
/* 用户信息区域 */ |
|
|
|
.user-section { |
|
|
|
display: flex; |
|
|
|
align-items: center; |
|
|
|
padding: 0 40rpx 30rpx; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.user-avatar { |
|
|
|
.user-avatar { |
|
|
|
width: 120rpx; |
|
|
|
height: 120rpx; |
|
|
|
border-radius: 50%; |
|
|
|
overflow: hidden; |
|
|
|
margin-right: 30rpx; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.avatar-img { |
|
|
|
.avatar-img { |
|
|
|
width: 100%; |
|
|
|
height: 100%; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.user-info { |
|
|
|
.user-info { |
|
|
|
flex: 1; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.username { |
|
|
|
.username { |
|
|
|
font-size: 36rpx; |
|
|
|
font-weight: bold; |
|
|
|
color: white; |
|
|
|
margin-bottom: 10rpx; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.user-id { |
|
|
|
.user-id { |
|
|
|
font-size: 24rpx; |
|
|
|
color: rgba(255, 255, 255, 0.8); |
|
|
|
margin-bottom: 10rpx; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.location { |
|
|
|
.location { |
|
|
|
display: flex; |
|
|
|
align-items: center; |
|
|
|
font-size: 24rpx; |
|
|
|
color: rgba(255, 255, 255, 0.8); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.location-icon, |
|
|
|
.info-icon { |
|
|
|
.location-icon, |
|
|
|
.info-icon { |
|
|
|
margin-right: 8rpx; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
/* 城市艺术漫游 */ |
|
|
|
.city-art { |
|
|
|
/* 城市艺术漫游 */ |
|
|
|
.city-art { |
|
|
|
padding: 0 40rpx 20rpx; |
|
|
|
display: flex; |
|
|
|
align-items: center; |
|
|
|
justify-content: space-between; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.city-title { |
|
|
|
.city-title { |
|
|
|
display: flex; |
|
|
|
align-items: center; |
|
|
|
font-size: 28rpx; |
|
|
|
color: rgba(255, 255, 255, 0.9); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.pin-icon { |
|
|
|
.pin-icon { |
|
|
|
margin-right: 8rpx; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.city-name { |
|
|
|
.city-name { |
|
|
|
font-size: 28rpx; |
|
|
|
color: white; |
|
|
|
font-weight: bold; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.gender-icon { |
|
|
|
.gender-icon { |
|
|
|
width: 40rpx; |
|
|
|
height: 40rpx; |
|
|
|
background: rgba(255, 255, 255, 0.2); |
|
|
@ -505,40 +566,40 @@ |
|
|
|
align-items: center; |
|
|
|
justify-content: center; |
|
|
|
font-size: 24rpx; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
/* 统计数据 */ |
|
|
|
.stats-section { |
|
|
|
/* 统计数据 */ |
|
|
|
.stats-section { |
|
|
|
display: flex; |
|
|
|
justify-content: space-around; |
|
|
|
margin-top: 80rpx; |
|
|
|
padding-bottom: 50rpx; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.stat-item { |
|
|
|
.stat-item { |
|
|
|
text-align: center; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.stat-number { |
|
|
|
.stat-number { |
|
|
|
font-size: 32rpx; |
|
|
|
font-weight: bold; |
|
|
|
color: white; |
|
|
|
margin-bottom: 8rpx; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.stat-label { |
|
|
|
.stat-label { |
|
|
|
font-size: 24rpx; |
|
|
|
color: rgba(255, 255, 255, 0.8); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
/* 操作按钮 */ |
|
|
|
.action-buttons { |
|
|
|
/* 操作按钮 */ |
|
|
|
.action-buttons { |
|
|
|
display: flex; |
|
|
|
padding: 0 40rpx 40rpx; |
|
|
|
gap: 20rpx; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.follow-btn { |
|
|
|
.follow-btn { |
|
|
|
flex: 1; |
|
|
|
background: #ff4757; |
|
|
|
border-radius: 50rpx; |
|
|
@ -547,9 +608,9 @@ |
|
|
|
color: white; |
|
|
|
font-size: 28rpx; |
|
|
|
font-weight: bold; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.message-btn { |
|
|
|
.message-btn { |
|
|
|
flex: 1; |
|
|
|
background: rgba(255, 255, 255, 0.2); |
|
|
|
border-radius: 50rpx; |
|
|
@ -558,10 +619,10 @@ |
|
|
|
color: white; |
|
|
|
font-size: 28rpx; |
|
|
|
font-weight: bold; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
/* 待激活的Agent */ |
|
|
|
.agent-section { |
|
|
|
/* 待激活的Agent */ |
|
|
|
.agent-section { |
|
|
|
margin: 0 47rpx; |
|
|
|
border-radius: 20rpx; |
|
|
|
margin-bottom: 30rpx; |
|
|
@ -569,73 +630,76 @@ |
|
|
|
display: flex; |
|
|
|
align-items: center; |
|
|
|
padding: 30rpx 0; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.agent-header { |
|
|
|
.agent-header { |
|
|
|
margin-right: 30rpx; |
|
|
|
flex-shrink: 0; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.agent-title { |
|
|
|
.agent-title { |
|
|
|
font-size: 28rpx; |
|
|
|
color: #000000; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.agent-content { |
|
|
|
.agent-content { |
|
|
|
flex: 1; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.agent-scroll { |
|
|
|
.agent-scroll { |
|
|
|
width: 430rpx; |
|
|
|
white-space: nowrap; |
|
|
|
/* 微信小程序隐藏横向滚动条 */ |
|
|
|
overflow: hidden; |
|
|
|
/* Webkit浏览器 */ |
|
|
|
&::-webkit-scrollbar { |
|
|
|
display: none !important; |
|
|
|
width: 0 !important; |
|
|
|
height: 0 !important; |
|
|
|
} |
|
|
|
|
|
|
|
.agent-scroll::-webkit-scrollbar { |
|
|
|
display: none; |
|
|
|
} |
|
|
|
|
|
|
|
.agent-scroll { |
|
|
|
-ms-overflow-style: none; |
|
|
|
/* Firefox */ |
|
|
|
scrollbar-width: none; |
|
|
|
} |
|
|
|
/* IE和Edge */ |
|
|
|
-ms-overflow-style: none; |
|
|
|
} |
|
|
|
|
|
|
|
.agent-avatars { |
|
|
|
.agent-avatars { |
|
|
|
display: inline-flex; |
|
|
|
gap: 20rpx; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.agent-avatar { |
|
|
|
.agent-avatar { |
|
|
|
width: 104rpx; |
|
|
|
height: 104rpx; |
|
|
|
border-radius: 50%; |
|
|
|
overflow: hidden; |
|
|
|
flex-shrink: 0; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.agent-img { |
|
|
|
.agent-img { |
|
|
|
width: 100%; |
|
|
|
height: 100%; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
/* 数字资产权益 */ |
|
|
|
.digital-assets { |
|
|
|
/* 数字资产权益 */ |
|
|
|
.digital-assets { |
|
|
|
margin: 0 30rpx 0rpx; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.asset-card { |
|
|
|
.asset-card { |
|
|
|
border-radius: 20rpx; |
|
|
|
overflow: hidden; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.asset-bg { |
|
|
|
.asset-bg { |
|
|
|
padding: 40rpx 30rpx 30rpx; |
|
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); |
|
|
|
position: relative; |
|
|
|
overflow: hidden; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.asset-bg::before { |
|
|
|
content: ''; |
|
|
|
.asset-bg::before { |
|
|
|
content: ""; |
|
|
|
position: absolute; |
|
|
|
top: 0; |
|
|
|
left: 0; |
|
|
@ -643,25 +707,25 @@ |
|
|
|
bottom: 0; |
|
|
|
background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="85" cy="15" r="8" fill="rgba(255,255,255,0.1)"/><circle cx="15" cy="85" r="6" fill="rgba(255,255,255,0.08)"/><circle cx="70" cy="70" r="4" fill="rgba(255,255,255,0.06)"/></svg>'); |
|
|
|
pointer-events: none; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.asset-title { |
|
|
|
.asset-title { |
|
|
|
font-size: 32rpx; |
|
|
|
color: white; |
|
|
|
font-weight: 600; |
|
|
|
position: relative; |
|
|
|
z-index: 1; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.asset-actions { |
|
|
|
.asset-actions { |
|
|
|
display: flex; |
|
|
|
padding: 20rpx 0; |
|
|
|
|
|
|
|
background: white; |
|
|
|
font-size: 25rpx; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.asset-action { |
|
|
|
.asset-action { |
|
|
|
flex: 1; |
|
|
|
display: flex; |
|
|
|
flex-direction: column; |
|
|
@ -670,67 +734,67 @@ |
|
|
|
font-size: 24rpx; |
|
|
|
color: #666; |
|
|
|
position: relative; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.asset-action.active { |
|
|
|
.asset-action.active { |
|
|
|
color: #ff4757; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.action-icon { |
|
|
|
.action-icon { |
|
|
|
width: 36rpx; |
|
|
|
height: 36rpx; |
|
|
|
border-radius: 50%; |
|
|
|
margin-bottom: 12rpx; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.action-icon.red { |
|
|
|
.action-icon.red { |
|
|
|
background: #ff4757; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.action-icon.gray { |
|
|
|
.action-icon.gray { |
|
|
|
background: #ccc; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
/* 有感商品 */ |
|
|
|
.feeling-goods { |
|
|
|
/* 有感商品 */ |
|
|
|
.feeling-goods { |
|
|
|
margin: 20rpx 30rpx 30rpx; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.goods-card { |
|
|
|
.goods-card { |
|
|
|
border-radius: 20rpx; |
|
|
|
overflow: hidden; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.goods-bg { |
|
|
|
.goods-bg { |
|
|
|
padding: 40rpx 30rpx 20rpx; |
|
|
|
position: relative; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.goods-title { |
|
|
|
.goods-title { |
|
|
|
font-size: 32rpx; |
|
|
|
color: white; |
|
|
|
font-weight: bold; |
|
|
|
margin-bottom: 10rpx; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.goods-brand { |
|
|
|
.goods-brand { |
|
|
|
font-size: 36rpx; |
|
|
|
color: white; |
|
|
|
font-weight: bold; |
|
|
|
margin-bottom: 5rpx; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.goods-subtitle { |
|
|
|
.goods-subtitle { |
|
|
|
font-size: 24rpx; |
|
|
|
color: rgba(255, 255, 255, 0.8); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.goods-actions { |
|
|
|
.goods-actions { |
|
|
|
display: flex; |
|
|
|
background: white; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.goods-action { |
|
|
|
.goods-action { |
|
|
|
flex: 1; |
|
|
|
display: flex; |
|
|
|
flex-direction: column; |
|
|
@ -738,102 +802,103 @@ |
|
|
|
padding: 20rpx 10rpx; |
|
|
|
font-size: 24rpx; |
|
|
|
color: #666; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.goods-action.active { |
|
|
|
.goods-action.active { |
|
|
|
color: #ff4757; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
/* 数字资产纪念册 */ |
|
|
|
.memorial-section { |
|
|
|
/* 数字资产纪念册 */ |
|
|
|
.memorial-section { |
|
|
|
margin: 0 47rpx; |
|
|
|
margin-bottom: 30rpx; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.memorial-divider { |
|
|
|
.memorial-divider { |
|
|
|
display: flex; |
|
|
|
align-items: center; |
|
|
|
padding: 30rpx 0; |
|
|
|
margin-bottom: 30rpx; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.divider-line { |
|
|
|
.divider-line { |
|
|
|
flex: 1; |
|
|
|
height: 2rpx; |
|
|
|
background: #e0e0e0; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.divider-text { |
|
|
|
.divider-text { |
|
|
|
padding: 0 30rpx; |
|
|
|
font-size: 28rpx; |
|
|
|
color: #000000; |
|
|
|
font-weight: 500; |
|
|
|
white-space: nowrap; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.memorial-cards { |
|
|
|
.memorial-cards { |
|
|
|
display: flex; |
|
|
|
gap: 20rpx; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.memorial-card { |
|
|
|
.memorial-card { |
|
|
|
flex: 1; |
|
|
|
border-radius: 10rpx; |
|
|
|
overflow: hidden; |
|
|
|
background: white; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.memorial-img { |
|
|
|
.memorial-img { |
|
|
|
width: 100%; |
|
|
|
height: 425rpx; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.memorial-info { |
|
|
|
.memorial-info { |
|
|
|
padding: 20rpx 10rpx; |
|
|
|
display: flex; |
|
|
|
justify-content: space-between; |
|
|
|
align-items: center; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.memorial-title { |
|
|
|
.memorial-title { |
|
|
|
overflow: hidden; |
|
|
|
text-overflow: ellipsis; |
|
|
|
white-space: nowrap; |
|
|
|
font-size: 22rpx; |
|
|
|
color: #000000; |
|
|
|
flex: 1; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.memorial-more { |
|
|
|
.memorial-more { |
|
|
|
font-size: 14rpx; |
|
|
|
color: #999; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
/* 底部菜单 */ |
|
|
|
.bottom-menu { |
|
|
|
/* 底部菜单 */ |
|
|
|
.bottom-menu { |
|
|
|
padding: 40rpx 30rpx; |
|
|
|
background: white; |
|
|
|
margin: 0 30rpx; |
|
|
|
border-radius: 20rpx; |
|
|
|
margin-bottom: 30rpx; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.menu-item { |
|
|
|
.menu-item { |
|
|
|
padding: 30rpx 0; |
|
|
|
border-bottom: 1rpx solid #f5f5f5; |
|
|
|
font-size: 28rpx; |
|
|
|
color: #333; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.menu-item:last-child { |
|
|
|
.menu-item:last-child { |
|
|
|
border-bottom: none; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.user-top {} |
|
|
|
.user-top { |
|
|
|
} |
|
|
|
|
|
|
|
.digital-img { |
|
|
|
.digital-img { |
|
|
|
height: 265rpx; |
|
|
|
width: 100%; |
|
|
|
border-radius: 20rpx; |
|
|
|
} |
|
|
|
} |
|
|
|
</style> |