feat: major update - MySQL, chat, wishlist, PWA, admin overhaul

This commit is contained in:
2026-03-21 20:22:00 +08:00
committed by 树萌芽
parent 48fb818b8c
commit 84874707f5
71 changed files with 13457 additions and 2031 deletions

View File

@@ -29,15 +29,53 @@
</div>
</div>
<form class="checkout-form" @submit.prevent="submitOrder" v-if="!orderResult">
<div class="checkout-form" v-if="!orderResult && product.requireLogin && !loggedIn">
<div class="require-login-block">
<p class="require-login-title">该商品需要登录后才能购买</p>
<a class="primary btn-inline" :href="loginUrl">立即登录</a>
</div>
</div>
<form class="checkout-form" @submit.prevent="submitOrder" v-else-if="!orderResult">
<div class="form-field">
<label>下单数量</label>
<input v-model.number="form.quantity" min="1" type="number" />
<input
v-model.number="form.quantity"
min="1"
:max="product.maxPerAccount > 0 ? product.maxPerAccount : undefined"
type="number"
/>
</div>
<p class="tag">预计总价¥ {{ totalPrice.toFixed(2) }}</p>
<p class="tag login-hint" v-if="!loggedIn">
提示<a :href="loginUrl">登录萌芽账号</a> 后下单可查看历史订单记录
<p class="tag limit-hint" v-if="product.maxPerAccount > 0">
该商品每个账户最多可购买 {{ product.maxPerAccount }}
</p>
<div class="form-field" v-if="product.showNote">
<label>备注选填</label>
<textarea v-model="form.note" placeholder="填写您的备注信息…" rows="3"></textarea>
</div>
<template v-if="product.showContact">
<div class="form-row contact-row">
<div class="form-field">
<label>手机号选填</label>
<input v-model="form.contactPhone" type="tel" placeholder="138xxxx0000" />
</div>
<div class="form-field">
<label>邮箱选填</label>
<input v-model="form.contactEmail" type="email" placeholder="you@example.com" />
</div>
</div>
</template>
<p class="tag login-hint" v-if="!loggedIn">
<a :href="loginUrl">登录萌芽账号</a> 后购买可享受历史订单记录专属优惠商品及更多购买权益
</p>
<div class="delivery-tip" v-if="product.deliveryMode === 'manual'">
<svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"/><line x1="12" y1="8" x2="12" y2="12"/><line x1="12" y1="16" x2="12.01" y2="16"/></svg>
该商品为手动发货付款后管理员将核验并处理您的订单
</div>
<button class="primary" type="submit" :disabled="submitting">
{{ submitting ? '生成中...' : '生成二维码下单' }}
</button>
@@ -66,6 +104,13 @@
<p class="tag">购买后内容</p>
<textarea class="delivery-box" readonly :value="deliveredCodes.join('\n')"></textarea>
</div>
<div v-else-if="isManualDelivery" class="manual-delivery-notice">
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14"/><path d="m12 5 7 7-7 7"/></svg>
<div>
<p class="manual-delivery-title">等待发货中</p>
<p class="tag">管理员将尽快处理您的订单并进行发货请关注您的邮箱或联系方式</p>
</div>
</div>
<p class="tag">感谢购买如有问题请联系售后邮箱</p>
</template>
</section>
@@ -108,8 +153,12 @@ const loggedIn = computed(() => isLoggedIn())
const loginUrl = computed(() => getLoginUrl())
const form = reactive({
quantity: 1
quantity: 1,
note: '',
contactPhone: '',
contactEmail: ''
})
const isManualDelivery = ref(false)
const renderMarkdown = (content) => md.render(content || '')
@@ -145,7 +194,11 @@ const submitOrder = async () => {
try {
const payload = {
productId: product.value.id,
quantity: form.quantity
quantity: form.quantity,
note: form.note || '',
contactPhone: form.contactPhone || '',
contactEmail: form.contactEmail || '',
notifyEmail: authState.email || ''
}
const token = isLoggedIn() ? authState.token : null
const response = await createOrder(payload, token)
@@ -166,6 +219,7 @@ const doConfirm = async () => {
try {
const result = await confirmOrder(orderResult.value.orderId)
deliveredCodes.value = result.deliveredCodes || []
isManualDelivery.value = result.isManual || result.deliveryMode === 'manual'
confirmed.value = true
} catch (err) {
confirmError.value = err?.response?.data?.error || '确认失败,请重试'
@@ -213,7 +267,7 @@ onMounted(async () => {
width: 140px;
height: 140px;
object-fit: cover;
border-radius: 12px;
border-radius: 8px;
}
.summary-content {
@@ -248,7 +302,7 @@ onMounted(async () => {
max-width: 320px;
margin: 12px auto;
width: 100%;
border-radius: 14px;
border-radius: 8px;
border: 1px solid var(--line);
}
@@ -266,7 +320,7 @@ onMounted(async () => {
border-radius: 999px;
background: linear-gradient(135deg, var(--accent), var(--accent-2));
color: white;
font-size: 13px;
font-size: 15px;
font-weight: 600;
margin-bottom: 12px;
}
@@ -283,18 +337,18 @@ onMounted(async () => {
width: min(520px, 100%);
min-height: 120px;
padding: 14px 16px;
border-radius: 14px;
border-radius: 8px;
border: 1px solid var(--line);
background: rgba(255, 255, 255, 0.9);
color: var(--text);
font-size: 14px;
font-size: 16px;
line-height: 1.7;
resize: none;
}
.error {
color: #d64848;
font-size: 13px;
font-size: 15px;
}
.status {
@@ -307,6 +361,87 @@ onMounted(async () => {
font-weight: 900;
}
.require-login-block {
display: flex;
flex-direction: column;
align-items: center;
gap: 16px;
padding: 32px 24px;
text-align: center;
border: 1px solid var(--line);
border-radius: 8px;
background: rgba(255, 255, 255, 0.6);
}
.require-login-title {
font-size: 18px;
font-weight: 600;
color: var(--text);
}
.btn-inline {
display: inline-block;
text-decoration: none;
padding: 10px 28px;
border-radius: 8px;
font-size: 16px;
font-weight: 700;
cursor: pointer;
}
.limit-hint {
color: var(--accent);
}
textarea {
width: 100%;
box-sizing: border-box;
padding: 10px 12px;
border-radius: 8px;
border: 1px solid var(--line);
font-size: 15px;
font-family: inherit;
background: rgba(255, 255, 255, 0.9);
color: var(--text);
resize: vertical;
}
.contact-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 12px;
}
.delivery-tip {
display: flex;
align-items: center;
gap: 6px;
padding: 10px 14px;
background: rgba(90, 120, 200, 0.08);
border: 1px solid rgba(90, 120, 200, 0.2);
border-radius: 8px;
color: #5a78c8;
font-size: 14px;
}
.manual-delivery-notice {
display: flex;
align-items: flex-start;
gap: 12px;
padding: 16px;
background: rgba(90, 180, 120, 0.08);
border: 1px solid rgba(90, 180, 120, 0.25);
border-radius: 8px;
color: var(--text);
}
.manual-delivery-title {
font-size: 16px;
font-weight: 600;
color: #3a9a68;
margin: 0 0 4px 0;
}
@media (max-width: 900px) {
.checkout-grid {
grid-template-columns: 1fr;
@@ -321,5 +456,9 @@ onMounted(async () => {
width: 100%;
height: 200px;
}
.contact-row {
grid-template-columns: 1fr;
}
}
</style>

View File

@@ -68,6 +68,15 @@
<div class="detail-actions">
<button class="buy-button" @click="goCheckout">立即下单</button>
<button
v-if="loggedIn"
class="ghost wishlist-action"
:class="{ 'wishlist-active': inWishlist }"
type="button"
@click="onToggleWishlist"
>
{{ inWishlist ? '★ 已收藏' : '☆ 加入收藏夹' }}
</button>
<button class="ghost" @click="goBack">返回商店首页</button>
</div>
</div>
@@ -91,6 +100,8 @@ import { computed, onMounted, ref, watch } from 'vue'
import { useRoute, useRouter } from 'vue-router'
import MarkdownIt from 'markdown-it'
import { fetchProducts, recordProductView } from '../shared/api'
import { isLoggedIn } from '../shared/auth'
import { isInWishlist, toggleWishlist } from '../shared/useWishlist'
const route = useRoute()
const router = useRouter()
@@ -140,6 +151,12 @@ const galleryImages = computed(() => {
return images
})
const loggedIn = computed(() => isLoggedIn())
const inWishlist = computed(() => product.value ? isInWishlist(product.value.id) : false)
const onToggleWishlist = () => {
if (product.value) toggleWishlist(product.value.id)
}
const goBack = () => {
router.push('/')
}
@@ -215,7 +232,7 @@ onMounted(async () => {
.detail-description {
display: block;
color: var(--text);
font-size: 15px;
font-size: 17px;
line-height: 1.8;
-webkit-line-clamp: initial;
-webkit-box-orient: initial;
@@ -231,7 +248,7 @@ onMounted(async () => {
.detail-gallery-main {
position: relative;
overflow: hidden;
border-radius: 18px;
border-radius: 10px;
border: 1px solid var(--line);
background: rgba(255, 255, 255, 0.45);
}
@@ -292,11 +309,11 @@ onMounted(async () => {
width: 100%;
height: 76px;
object-fit: cover;
border-radius: 10px;
border-radius: 6px;
}
.detail-thumb span {
font-size: 12px;
font-size: 14px;
color: var(--muted);
}
@@ -310,6 +327,16 @@ onMounted(async () => {
font-weight: 900;
}
.wishlist-action {
color: var(--muted);
}
.wishlist-action.wishlist-active {
color: #e8826a;
border-color: rgba(232, 130, 106, 0.35);
background: rgba(255, 240, 235, 0.6);
}
@media (max-width: 900px) {
.detail-thumb {
padding: 6px;

View File

@@ -1,91 +1,44 @@
<template>
<section class="page-card">
<div class="hero">
<div>
<h2>所有商品</h2>
<div class="filter-search-row">
<div class="filters">
<button
class="filter-btn"
:class="{ active: filter === 'all' }"
type="button"
@click="setFilter('all')"
>
全部
</button>
<button
class="filter-btn"
:class="{ active: filter === 'free' }"
type="button"
@click="setFilter('free')"
>
免费
</button>
</div>
<div class="search-row">
<input
v-model="searchQuery"
class="search-input"
type="text"
placeholder="搜索商品/标签"
/>
</div>
</div>
<h2>所有商品</h2>
<div class="filters">
<button
v-for="opt in VIEW_OPTIONS"
:key="opt.value"
class="filter-btn"
:class="{ active: viewMode === opt.value }"
type="button"
@click="setViewMode(opt.value)"
>
{{ opt.label }}
</button>
</div>
<input
v-model="searchQuery"
class="search-input"
type="text"
placeholder="搜索商品/标签"
/>
</div>
<div v-if="loading" class="status">加载中...</div>
<div v-else>
<div class="grid">
<div
<ProductCard
v-for="item in pagedProducts"
:key="item.id"
:class="['product-link', { 'is-disabled': isSoldOut(item) }]"
@click="handleCardClick(item)"
>
<article class="product-card">
<div class="cover-wrap">
<img :src="item.coverUrl" :alt="item.name" />
<div v-if="isSoldOut(item)" class="soldout-badge">已售空</div>
</div>
<div class="card-top">
<h3 class="card-name">{{ item.name }}</h3>
<div class="card-price">
<span v-if="isFree(item)" class="product-price free-price">免费</span>
<span
v-else-if="item.discountPrice > 0 && item.discountPrice < item.price"
class="product-price"
>
<span class="price-original">¥ {{ item.price.toFixed(2) }}</span>
<span class="price-discount">¥ {{ item.discountPrice.toFixed(2) }}</span>
</span>
<span v-else class="product-price">¥ {{ item.price.toFixed(2) }}</span>
</div>
</div>
<div class="card-mid">
<div class="markdown" v-html="renderMarkdown(item.description)"></div>
</div>
<div class="card-bottom">
<div class="meta-row">
<div class="tag">库存{{ item.quantity }}</div>
<div class="tag">浏览量{{ item.viewCount || 0 }}</div>
</div>
<div v-if="item.tags && item.tags.length" class="tag-row">
<span v-for="tag in item.tags" :key="tag" class="tag-chip">
{{ tag }}
</span>
</div>
</div>
</article>
</div>
:item="item"
@click="handleCardClick"
/>
</div>
<div class="pagination" v-if="totalPages > 1">
<button class="ghost" :disabled="page === 1" @click="page--">上一</button>
<span class="tag"> {{ page }} / {{ totalPages }} </span>
<button class="ghost" :disabled="page === totalPages" @click="page++">下一</button>
<button class="ghost pg-btn" :disabled="page === 1" @click="page = 1"></button>
<button class="ghost pg-btn" :disabled="page === 1" @click="page--">上一</button>
<span class="pg-info"> {{ page }} / {{ totalPages }} </span>
<button class="ghost pg-btn" :disabled="page === totalPages" @click="page++">下一页</button>
<button class="ghost pg-btn" :disabled="page === totalPages" @click="page = totalPages">末页</button>
</div>
</div>
</section>
@@ -94,38 +47,43 @@
<script setup>
import { computed, onMounted, onUnmounted, ref, watch } from 'vue'
import { useRouter } from 'vue-router'
import MarkdownIt from 'markdown-it'
import { fetchProducts } from '../shared/api'
import ProductCard from './components/ProductCard.vue'
const router = useRouter()
const VIEW_OPTIONS = [
{ value: 'all', label: '全部' },
{ value: 'free', label: '免费' },
{ value: 'newest', label: '新上架' },
{ value: 'most-sold', label: '最多购买' },
{ value: 'most-viewed', label: '最多浏览' },
{ value: 'price-high', label: '价格最高' },
{ value: 'price-low', label: '价格最低' }
]
const products = ref([])
const loading = ref(true)
const md = new MarkdownIt()
const page = ref(1)
const perPage = ref(20)
const filter = ref('all')
const viewMode = ref('all')
const searchQuery = ref('')
const renderMarkdown = (content) => md.render(content || '')
const updatePerPage = () => {
perPage.value = window.innerWidth <= 900 ? 6 : 20
perPage.value = window.innerWidth <= 900 ? 10 : 20
page.value = 1
}
const getPayPrice = (item) => {
if (!item) return 0
// 折扣规则:
// - 未填/无效折扣discountPrice <= 0 或 >= price => 不启用折扣
// - 只有当 discountPrice > 0 且小于原价,才用折扣价
// - 只有 price = 0实付价为 0才显示“免费”
// 折扣规则:discountPrice > 0 且小于原价时启用price = 0 时显示"免费"
if (item.price === 0) return 0
if (item.discountPrice > 0 && item.discountPrice < item.price) return item.discountPrice
return item.price
}
const isFree = (item) => getPayPrice(item) === 0
const isSoldOut = (item) => item && item.quantity === 0
const matchesSearch = (item) => {
const q = (searchQuery.value || '').trim().toLowerCase()
@@ -136,9 +94,32 @@ const matchesSearch = (item) => {
}
const filteredProducts = computed(() => {
let list = products.value
if (filter.value === 'free') list = list.filter((p) => isFree(p))
let list = [...products.value]
if (viewMode.value === 'free') list = list.filter((p) => isFree(p))
if ((searchQuery.value || '').trim()) list = list.filter((p) => matchesSearch(p))
switch (viewMode.value) {
case 'newest':
list.sort((a, b) => new Date(b.createdAt) - new Date(a.createdAt))
break
case 'most-sold':
list.sort((a, b) => (b.totalSold || 0) - (a.totalSold || 0))
break
case 'most-viewed':
list.sort((a, b) => (b.viewCount || 0) - (a.viewCount || 0))
break
case 'price-high':
list.sort((a, b) => getPayPrice(b) - getPayPrice(a))
break
case 'price-low':
list.sort((a, b) => getPayPrice(a) - getPayPrice(b))
break
default:
break
}
return list
})
@@ -151,17 +132,13 @@ const pagedProducts = computed(() => {
return filteredProducts.value.slice(start, start + perPage.value)
})
const isSoldOut = (item) => item && item.quantity === 0
const handleCardClick = (item) => {
if (!item || isSoldOut(item)) {
return
}
if (!item || isSoldOut(item)) return
router.push(`/product/${item.id}`)
}
const setFilter = (next) => {
filter.value = next
const setViewMode = (next) => {
viewMode.value = next
page.value = 1
}
@@ -175,13 +152,8 @@ onMounted(async () => {
}
})
watch(filter, () => {
page.value = 1
})
watch(searchQuery, () => {
page.value = 1
})
watch(viewMode, () => { page.value = 1 })
watch(searchQuery, () => { page.value = 1 })
onUnmounted(() => {
window.removeEventListener('resize', updatePerPage)
@@ -192,30 +164,17 @@ onUnmounted(() => {
.hero {
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
flex-wrap: wrap;
margin-bottom: 20px;
}
.filters {
display: flex;
gap: 12px;
margin-top: 0;
flex-wrap: wrap;
}
.filter-search-row {
display: flex;
align-items: center;
justify-content: flex-start;
gap: 16px;
flex-wrap: wrap;
margin-top: 12px;
}
.search-row {
margin-top: 0;
}
.search-input {
width: 320px;
max-width: 100%;
@@ -223,8 +182,8 @@ onUnmounted(() => {
border: 1px solid var(--line);
background: rgba(255, 255, 255, 0.7);
padding: 10px 14px;
font-family: 'Source Sans 3', sans-serif;
font-size: 14px;
font-family: 'KaiTi', 'STKaiti', '楷体', '楷体_GB2312', serif;
font-size: 16px;
outline: none;
}
@@ -233,30 +192,13 @@ onUnmounted(() => {
box-shadow: 0 0 0 3px rgba(180, 154, 203, 0.18);
}
.tag-row {
display: flex;
flex-wrap: wrap;
gap: 8px;
margin-top: 8px;
}
.tag-chip {
padding: 4px 10px;
border-radius: 999px;
font-size: 12px;
font-weight: 700;
color: var(--accent-2);
background: rgba(145, 168, 208, 0.08);
border: 1px solid rgba(145, 168, 208, 0.18);
}
.filter-btn {
padding: 8px 14px;
border-radius: 999px;
border: 1px solid var(--line);
background: rgba(255, 255, 255, 0.6);
color: var(--text);
font-size: 13px;
font-size: 15px;
font-weight: 700;
transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
@@ -272,140 +214,79 @@ onUnmounted(() => {
box-shadow: 0 10px 30px rgba(145, 168, 208, 0.35);
}
.free-price {
color: #3a9a68;
font-weight: 900;
}
.product-link {
display: block;
text-decoration: none;
color: inherit;
height: 100%;
}
.product-link.is-disabled {
opacity: 0.6;
cursor: not-allowed;
}
.product-card {
display: flex;
flex-direction: column;
flex: 1;
gap: 12px;
height: 100%;
}
.card-top {
display: flex;
align-items: baseline;
justify-content: space-between;
gap: 12px;
}
.card-name {
font-size: 16px;
font-weight: 700;
color: var(--text);
line-height: 1.2;
}
.card-price {
display: flex;
align-items: center;
justify-content: flex-end;
}
.card-mid {
flex: 1;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
}
.card-mid .markdown {
text-align: center;
}
.card-bottom {
display: flex;
flex-direction: column;
gap: 6px;
align-items: flex-start;
}
.meta-row {
display: flex;
gap: 10px;
align-items: center;
flex-wrap: wrap;
}
.cover-wrap {
position: relative;
border-radius: 12px;
overflow: hidden;
}
.cover-wrap img {
width: 100%;
height: 140px;
object-fit: cover;
display: block;
}
.soldout-badge {
position: absolute;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
background: rgba(20, 18, 22, 0.52);
backdrop-filter: blur(3px);
color: #fff;
font-family: 'Playfair Display', serif;
font-size: 22px;
font-weight: 600;
letter-spacing: 4px;
pointer-events: none;
}
.price-original {
text-decoration: line-through;
color: var(--muted);
margin-right: 6px;
font-size: 13px;
}
.price-discount {
color: var(--accent-2);
font-weight: 600;
}
.status {
padding: 24px 0;
color: var(--muted);
}
.tag {
font-size: 14px;
color: var(--muted);
}
.pagination {
display: flex;
align-items: center;
justify-content: center;
gap: 12px;
gap: 8px;
margin-top: 22px;
flex-wrap: wrap;
}
.pg-btn {
padding: 6px 14px;
font-size: 14px;
border-radius: 999px;
min-width: 60px;
}
.pg-btn:disabled {
opacity: 0.38;
cursor: not-allowed;
}
.pg-info {
font-size: 14px;
color: var(--muted);
padding: 0 6px;
}
@media (max-width: 900px) {
.filter-search-row {
.hero {
flex-direction: column;
align-items: stretch;
align-items: flex-start;
gap: 10px;
margin-bottom: 12px;
}
.hero h2 {
font-size: 20px;
}
/* Filter buttons: scrollable horizontal row, no wrap */
.filters {
flex-wrap: nowrap;
overflow-x: auto;
gap: 8px;
width: 100%;
padding-bottom: 4px;
scrollbar-width: none;
}
.filters::-webkit-scrollbar {
display: none;
}
.filter-btn {
flex-shrink: 0;
padding: 6px 10px;
font-size: 13px;
}
.search-input {
width: 100%;
font-size: 14px;
padding: 8px 12px;
}
}
</style>

View File

@@ -0,0 +1,342 @@
<template>
<div
:class="['product-link', { 'is-disabled': isSoldOut }]"
@click="$emit('click', item)"
>
<article class="product-card">
<div class="cover-wrap">
<img :src="item.coverUrl" :alt="item.name" />
<div v-if="isSoldOut" class="soldout-badge">已售空</div>
<div v-else-if="item.requireLogin" class="require-login-badge">需登录</div>
<button
v-if="loggedIn"
class="wishlist-btn"
:class="{ 'in-wishlist': inWishlist }"
type="button"
@click="onWishlistClick"
:title="inWishlist ? '取消收藏' : '加入收藏'"
>
{{ inWishlist ? '★' : '☆' }}
</button>
</div>
<div class="card-top">
<h3 class="card-name">{{ item.name }}</h3>
<div class="card-price">
<span v-if="isFree" class="product-price free-price">免费</span>
<span
v-else-if="item.discountPrice > 0 && item.discountPrice < item.price"
class="product-price"
>
<span class="price-original">¥ {{ item.price.toFixed(2) }}</span>
<span class="price-discount">¥ {{ item.discountPrice.toFixed(2) }}</span>
</span>
<span v-else class="product-price">¥ {{ item.price.toFixed(2) }}</span>
</div>
</div>
<div class="card-mid">
<div class="markdown" v-html="renderedDescription"></div>
</div>
<div class="card-bottom">
<div v-if="item.tags && item.tags.length" class="tag-row">
<span v-for="tag in item.tags" :key="tag" class="tag-chip">{{ tag }}</span>
</div>
<div class="meta-row">
<div class="tag">库存{{ item.quantity }}</div>
<div class="tag">浏览量{{ item.viewCount || 0 }}</div>
</div>
</div>
</article>
</div>
</template>
<script setup>
import { computed } from 'vue'
import MarkdownIt from 'markdown-it'
import { isLoggedIn } from '../../shared/auth'
import { isInWishlist, toggleWishlist } from '../../shared/useWishlist'
const md = new MarkdownIt()
const props = defineProps({
item: { type: Object, required: true }
})
const emit = defineEmits(['click'])
const inWishlist = computed(() => isInWishlist(props.item.id))
const loggedIn = computed(() => isLoggedIn())
const onWishlistClick = (e) => {
e.stopPropagation()
toggleWishlist(props.item.id)
}
const payPrice = computed(() => {
if (!props.item) return 0
if (props.item.price === 0) return 0
if (props.item.discountPrice > 0 && props.item.discountPrice < props.item.price) {
return props.item.discountPrice
}
return props.item.price
})
const isFree = computed(() => payPrice.value === 0)
const isSoldOut = computed(() => props.item && props.item.quantity === 0)
const renderedDescription = computed(() => md.render(props.item.description || ''))
</script>
<style scoped>
.product-link {
display: block;
text-decoration: none;
color: inherit;
height: 100%;
}
.product-link.is-disabled {
opacity: 0.6;
cursor: not-allowed;
}
.product-card {
display: flex;
flex-direction: column;
flex: 1;
gap: 12px;
height: 100%;
}
.card-top {
display: flex;
align-items: baseline;
justify-content: space-between;
gap: 12px;
}
.card-name {
font-size: 18px;
font-weight: 700;
color: var(--text);
line-height: 1.2;
}
.card-price {
display: flex;
align-items: center;
justify-content: flex-end;
}
.card-mid {
flex: 1;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
}
.card-mid .markdown {
text-align: center;
font-size: 15px;
color: var(--muted);
line-height: 1.6;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 3;
overflow: hidden;
}
.card-bottom {
display: flex;
flex-direction: column;
gap: 6px;
align-items: flex-start;
}
.meta-row {
display: flex;
gap: 10px;
align-items: center;
flex-wrap: wrap;
}
.cover-wrap {
position: relative;
border-radius: 6px;
overflow: hidden;
}
.cover-wrap img {
width: 100%;
height: 140px;
object-fit: cover;
display: block;
}
.soldout-badge {
position: absolute;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
background: rgba(20, 18, 22, 0.52);
backdrop-filter: blur(3px);
color: #fff;
font-family: 'KaiTi', 'STKaiti', '楷体', '楷体_GB2312', serif;
font-size: 22px;
font-weight: 600;
letter-spacing: 4px;
pointer-events: none;
}
.require-login-badge {
position: absolute;
top: 8px;
right: 8px;
padding: 3px 10px;
border-radius: 999px;
background: rgba(180, 154, 203, 0.85);
color: #fff;
font-size: 13px;
font-weight: 700;
pointer-events: none;
backdrop-filter: blur(4px);
letter-spacing: 0.5px;
}
.wishlist-btn {
position: absolute;
bottom: 8px;
right: 8px;
width: auto;
height: auto;
border-radius: 0;
border: none;
background: none;
backdrop-filter: none;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
font-size: 20px;
line-height: 1;
color: rgba(255, 255, 255, 0.9);
text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
transition: color 0.2s ease, transform 0.15s ease;
padding: 0;
box-shadow: none;
}
.wishlist-btn:hover {
transform: scale(1.2);
}
.wishlist-btn.in-wishlist {
color: #ffb347;
text-shadow: 0 1px 6px rgba(255, 140, 0, 0.6);
}
.tag-row {
display: flex;
flex-wrap: wrap;
gap: 8px;
margin-top: 8px;
}
.tag-chip {
padding: 4px 10px;
border-radius: 999px;
font-size: 14px;
font-weight: 700;
color: var(--accent-2);
background: rgba(145, 168, 208, 0.08);
border: 1px solid rgba(145, 168, 208, 0.18);
}
.tag {
font-size: 14px;
color: var(--muted);
}
.free-price {
color: #3a9a68;
font-weight: 900;
}
.price-original {
text-decoration: line-through;
color: var(--muted);
margin-right: 6px;
font-size: 15px;
}
.price-discount {
color: var(--accent-2);
font-weight: 600;
}
@media (max-width: 900px) {
.cover-wrap img {
height: 100px;
}
/* Name + price on one line, compressed */
.card-top {
flex-direction: row;
align-items: flex-start;
gap: 4px;
}
.card-name {
font-size: 14px;
line-height: 1.3;
flex: 1;
min-width: 0;
word-break: break-all;
}
.card-price {
flex-shrink: 0;
font-size: 13px;
}
.price-original {
font-size: 11px;
margin-right: 2px;
}
.free-price {
font-size: 13px;
}
.card-mid {
display: flex;
}
.card-mid .markdown {
font-size: 12px;
-webkit-line-clamp: 2;
}
.card-bottom {
gap: 4px;
font-size: 12px;
}
.tag-row {
display: flex;
gap: 4px;
margin-top: 4px;
}
.tag-chip {
font-size: 11px;
padding: 2px 7px;
}
.tag {
font-size: 11px;
}
}
</style>