2025-04-10 11:11:46 +08:00
|
|
|
|
<script setup>
|
2025-06-12 00:24:14 +08:00
|
|
|
|
import { ref, onMounted } from "vue";
|
2025-07-02 17:21:44 +08:00
|
|
|
|
import Container from "@/components/Container.vue";
|
2025-05-01 16:17:51 +08:00
|
|
|
|
import AppFooter from "@/components/AppFooter.vue";
|
|
|
|
|
|
import AppBackground from "@/components/AppBackground.vue";
|
2025-05-01 21:38:35 +08:00
|
|
|
|
import UserHeader from "@/components/UserHeader.vue";
|
2025-06-12 00:24:14 +08:00
|
|
|
|
import SModal from "@/components/SModal.vue";
|
2025-06-15 15:53:57 +08:00
|
|
|
|
import Signin from "@/components/Signin.vue";
|
2025-06-26 23:41:23 +08:00
|
|
|
|
import {
|
|
|
|
|
|
getAppConfig,
|
|
|
|
|
|
getHomeData,
|
|
|
|
|
|
getMyDevicesAPI,
|
|
|
|
|
|
getRankListAPI,
|
|
|
|
|
|
} from "@/apis";
|
|
|
|
|
|
import { topThreeColors } from "@/constants";
|
2025-05-26 16:28:13 +08:00
|
|
|
|
import useStore from "@/store";
|
2025-05-25 23:51:10 +08:00
|
|
|
|
import { storeToRefs } from "pinia";
|
2025-05-26 16:28:13 +08:00
|
|
|
|
const store = useStore();
|
2025-06-27 10:50:09 +08:00
|
|
|
|
const { updateConfig, updateUser, updateDevice, updateRank } = store;
|
2025-05-25 23:51:10 +08:00
|
|
|
|
// 使用storeToRefs,用于UI里显示,保持响应性
|
2025-06-28 22:44:30 +08:00
|
|
|
|
const { user, device, rankData } = storeToRefs(store);
|
2025-06-12 00:24:14 +08:00
|
|
|
|
const showModal = ref(false);
|
2025-06-15 22:01:06 +08:00
|
|
|
|
const isIos = ref(true);
|
2025-05-07 23:34:15 +08:00
|
|
|
|
|
2025-06-12 00:24:14 +08:00
|
|
|
|
const toPage = (path) => {
|
|
|
|
|
|
if (!user.value.id) {
|
|
|
|
|
|
showModal.value = true;
|
2025-06-15 22:38:28 +08:00
|
|
|
|
return;
|
2025-05-30 16:14:17 +08:00
|
|
|
|
}
|
2025-06-15 22:38:28 +08:00
|
|
|
|
if (
|
|
|
|
|
|
"/pages/first-try,/pages/practise,/pages/friend-battle".indexOf(path) !== -1
|
|
|
|
|
|
) {
|
|
|
|
|
|
if (!device.value.deviceId) {
|
|
|
|
|
|
return uni.showToast({
|
|
|
|
|
|
title: "请先绑定设备",
|
|
|
|
|
|
icon: "none",
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
uni.navigateTo({
|
|
|
|
|
|
url: path,
|
|
|
|
|
|
});
|
2025-05-08 22:05:53 +08:00
|
|
|
|
};
|
2025-05-10 22:25:06 +08:00
|
|
|
|
|
2025-06-17 12:01:44 +08:00
|
|
|
|
const toRankListPage = () => {
|
|
|
|
|
|
uni.navigateTo({
|
2025-06-26 13:51:41 +08:00
|
|
|
|
url: "/pages/rank-list",
|
2025-06-17 12:01:44 +08:00
|
|
|
|
});
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2025-06-02 14:42:07 +08:00
|
|
|
|
onMounted(async () => {
|
2025-05-10 22:25:06 +08:00
|
|
|
|
try {
|
2025-06-15 22:01:06 +08:00
|
|
|
|
const deviceInfo = uni.getDeviceInfo();
|
|
|
|
|
|
isIos.value = deviceInfo.osName === "ios";
|
2025-05-25 23:51:10 +08:00
|
|
|
|
const config = await getAppConfig();
|
2025-06-27 10:50:09 +08:00
|
|
|
|
updateConfig(config);
|
2025-05-25 23:51:10 +08:00
|
|
|
|
console.log("全局配置:", config);
|
2025-06-26 23:41:23 +08:00
|
|
|
|
const rankList = await getRankListAPI();
|
2025-06-27 10:50:09 +08:00
|
|
|
|
updateRank(rankList);
|
2025-06-22 02:39:03 +08:00
|
|
|
|
const token = uni.getStorageSync("token");
|
|
|
|
|
|
if (token) {
|
|
|
|
|
|
const result = await getHomeData();
|
|
|
|
|
|
if (result.user) {
|
|
|
|
|
|
updateUser(result.user);
|
|
|
|
|
|
const devices = await getMyDevicesAPI();
|
|
|
|
|
|
if (devices.bindings && devices.bindings.length) {
|
|
|
|
|
|
updateDevice(
|
|
|
|
|
|
devices.bindings[0].deviceId,
|
|
|
|
|
|
devices.bindings[0].deviceName
|
|
|
|
|
|
);
|
|
|
|
|
|
}
|
2025-06-15 15:53:57 +08:00
|
|
|
|
}
|
2025-06-22 02:39:03 +08:00
|
|
|
|
console.log("首页数据:", result);
|
2025-06-08 13:55:09 +08:00
|
|
|
|
}
|
2025-05-10 22:25:06 +08:00
|
|
|
|
} catch (error) {
|
2025-05-25 23:51:10 +08:00
|
|
|
|
console.error("获取配置失败:", error);
|
2025-05-10 22:25:06 +08:00
|
|
|
|
}
|
|
|
|
|
|
});
|
2025-06-24 13:18:03 +08:00
|
|
|
|
|
|
|
|
|
|
const comingSoon = () => {
|
|
|
|
|
|
uni.showToast({
|
|
|
|
|
|
title: "敬请期待",
|
|
|
|
|
|
icon: "none",
|
|
|
|
|
|
});
|
|
|
|
|
|
};
|
2025-04-10 11:11:46 +08:00
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<template>
|
2025-07-02 17:21:44 +08:00
|
|
|
|
<Container :isHome="true">
|
|
|
|
|
|
<view class="container" :style="{ paddingTop: isIos ? '100rpx' : '70rpx' }">
|
|
|
|
|
|
<UserHeader showRank :onSignin="() => (showModal = true)" />
|
|
|
|
|
|
<view :style="{ padding: '12px 10px' }">
|
|
|
|
|
|
<view class="feature-grid">
|
|
|
|
|
|
<view class="bow-card">
|
2025-05-01 16:17:51 +08:00
|
|
|
|
<image
|
2025-07-02 17:21:44 +08:00
|
|
|
|
src="../static/bow-bg.png"
|
2025-05-01 16:17:51 +08:00
|
|
|
|
mode="widthFix"
|
2025-07-02 17:21:44 +08:00
|
|
|
|
@click="() => toPage('/pages/my-device')"
|
2025-05-01 16:17:51 +08:00
|
|
|
|
/>
|
2025-07-02 17:21:44 +08:00
|
|
|
|
|
|
|
|
|
|
<text v-if="!user.id">我的弓箭</text>
|
|
|
|
|
|
<text v-if="user.id && !device.deviceId">请绑定设备</text>
|
|
|
|
|
|
<text v-if="user.id && device.deviceId">{{
|
|
|
|
|
|
device.deviceName
|
|
|
|
|
|
}}</text>
|
2025-05-01 16:17:51 +08:00
|
|
|
|
<image
|
2025-07-02 17:21:44 +08:00
|
|
|
|
src="../static/a2@2x.png"
|
2025-05-01 16:17:51 +08:00
|
|
|
|
mode="widthFix"
|
2025-07-02 17:21:44 +08:00
|
|
|
|
@click="() => toPage('/pages/first-try')"
|
2025-05-01 16:17:51 +08:00
|
|
|
|
/>
|
2025-07-02 17:21:44 +08:00
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
|
|
<view class="practice-card" @click="() => toPage('/pages/practise')">
|
|
|
|
|
|
<image src="../static/a2@2x(1).png" mode="widthFix" />
|
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
|
|
<view
|
|
|
|
|
|
class="friend-card"
|
|
|
|
|
|
@click="() => toPage('/pages/friend-battle')"
|
|
|
|
|
|
>
|
|
|
|
|
|
<image src="../static/a3@2x.png" mode="widthFix" />
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<view class="ranking-section">
|
|
|
|
|
|
<image src="../static/a4@2x.png" mode="widthFix" />
|
|
|
|
|
|
<button
|
|
|
|
|
|
class="into-btn"
|
|
|
|
|
|
@click="() => toPage('/pages/ranking')"
|
|
|
|
|
|
hover-class="none"
|
|
|
|
|
|
></button>
|
|
|
|
|
|
<view class="ranking-players" @click="toRankListPage">
|
|
|
|
|
|
<img src="../static/juezhanbang.png" mode="widthFix" />
|
|
|
|
|
|
<view class="divide-line"></view>
|
|
|
|
|
|
<view class="player-avatars">
|
|
|
|
|
|
<block v-for="i in 6" :key="i">
|
|
|
|
|
|
<block v-if="rankData.rank && rankData.rank[i - 1]">
|
|
|
|
|
|
<view
|
|
|
|
|
|
class="player-avatar"
|
|
|
|
|
|
:style="{
|
|
|
|
|
|
zIndex: 8 - i,
|
|
|
|
|
|
borderColor: topThreeColors[i - 1] || '#000',
|
|
|
|
|
|
}"
|
|
|
|
|
|
>
|
|
|
|
|
|
<image v-if="i === 1" src="../static/champ1.png" />
|
|
|
|
|
|
<image v-if="i === 2" src="../static/champ2.png" />
|
|
|
|
|
|
<image v-if="i === 3" src="../static/champ3.png" />
|
|
|
|
|
|
<view v-if="i > 3">{{ i }}</view>
|
|
|
|
|
|
<image
|
|
|
|
|
|
:src="rankData.rank[i - 1].avatar"
|
|
|
|
|
|
mode="aspectFill"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</block>
|
|
|
|
|
|
</block>
|
|
|
|
|
|
<view class="more-players">
|
|
|
|
|
|
<text>{{ rankData.rank.length }}</text>
|
|
|
|
|
|
</view>
|
2025-05-01 16:17:51 +08:00
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
2025-07-02 17:21:44 +08:00
|
|
|
|
<view class="region-stats">
|
|
|
|
|
|
<view
|
|
|
|
|
|
v-for="(region, index) in [
|
|
|
|
|
|
'广东',
|
|
|
|
|
|
'湖南',
|
|
|
|
|
|
'内蒙',
|
|
|
|
|
|
'海南',
|
|
|
|
|
|
'四川',
|
|
|
|
|
|
]"
|
|
|
|
|
|
:key="index"
|
|
|
|
|
|
class="region-item"
|
|
|
|
|
|
@click="comingSoon"
|
|
|
|
|
|
>
|
|
|
|
|
|
<image src="../static/region-bg.png" mode="widthFix" />
|
|
|
|
|
|
<image
|
|
|
|
|
|
v-if="index === 0"
|
|
|
|
|
|
src="../static/region-1.png"
|
|
|
|
|
|
mode="widthFix"
|
|
|
|
|
|
/>
|
|
|
|
|
|
<image
|
|
|
|
|
|
v-if="index === 1"
|
|
|
|
|
|
src="../static/region-2.png"
|
|
|
|
|
|
mode="widthFix"
|
|
|
|
|
|
/>
|
|
|
|
|
|
<image
|
|
|
|
|
|
v-if="index === 2"
|
|
|
|
|
|
src="../static/region-3.png"
|
|
|
|
|
|
mode="widthFix"
|
|
|
|
|
|
/>
|
|
|
|
|
|
<image
|
|
|
|
|
|
v-if="index === 3"
|
|
|
|
|
|
src="../static/region-4.png"
|
|
|
|
|
|
mode="widthFix"
|
|
|
|
|
|
/>
|
|
|
|
|
|
<image
|
|
|
|
|
|
v-if="index === 4"
|
|
|
|
|
|
src="../static/region-5.png"
|
|
|
|
|
|
mode="widthFix"
|
|
|
|
|
|
/>
|
|
|
|
|
|
<text>{{ region }}</text>
|
|
|
|
|
|
<view>
|
|
|
|
|
|
<text :style="{ color: '#fff', marginRight: '2px' }">2323</text>
|
|
|
|
|
|
<text>分</text>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<view class="region-more" @click="comingSoon">
|
|
|
|
|
|
<image src="../static/region-more.png" mode="widthFix" />
|
|
|
|
|
|
<text>...</text>
|
|
|
|
|
|
<text>更多</text>
|
|
|
|
|
|
</view>
|
2025-05-01 16:17:51 +08:00
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
2025-07-02 17:21:44 +08:00
|
|
|
|
<SModal :show="showModal" :onClose="() => (showModal = false)">
|
|
|
|
|
|
<Signin :onClose="() => (showModal = false)" />
|
|
|
|
|
|
</SModal>
|
2025-05-01 16:17:51 +08:00
|
|
|
|
</view>
|
2025-06-15 20:55:34 +08:00
|
|
|
|
<AppFooter :signin="() => (showModal = true)" />
|
2025-07-02 17:21:44 +08:00
|
|
|
|
</Container>
|
2025-04-10 11:11:46 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<style scoped>
|
2025-05-01 16:17:51 +08:00
|
|
|
|
.container {
|
2025-07-02 17:21:44 +08:00
|
|
|
|
width: 100%;
|
2025-05-01 16:17:51 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.feature-grid {
|
|
|
|
|
|
display: grid;
|
|
|
|
|
|
grid-template-columns: 1fr 1fr;
|
|
|
|
|
|
grid-template-areas: "bow practice" "bow friend";
|
|
|
|
|
|
row-gap: 5px;
|
|
|
|
|
|
column-gap: 10px;
|
|
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.bow-card {
|
|
|
|
|
|
grid-area: bow;
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.feature-grid > view > image {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.bow-card > text {
|
|
|
|
|
|
position: absolute;
|
2025-05-23 20:58:24 +08:00
|
|
|
|
top: 67%;
|
2025-05-01 16:17:51 +08:00
|
|
|
|
left: 50%;
|
|
|
|
|
|
transform: translate(-50%, -50%);
|
2025-06-16 22:43:39 +08:00
|
|
|
|
white-space: nowrap;
|
2025-05-01 16:17:51 +08:00
|
|
|
|
font-size: 13px;
|
|
|
|
|
|
color: #b3b3b3;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.bow-card > image:first-child {
|
2025-05-23 20:58:24 +08:00
|
|
|
|
transform: scaleY(1.08) translateY(9px);
|
2025-05-01 16:17:51 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.bow-card > image:last-child {
|
2025-05-23 20:58:24 +08:00
|
|
|
|
transform: translateY(12px);
|
2025-05-01 16:17:51 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.practice-card {
|
|
|
|
|
|
grid-area: practice;
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.friend-card {
|
|
|
|
|
|
grid-area: friend;
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ranking-section {
|
|
|
|
|
|
border-radius: 15px;
|
|
|
|
|
|
padding: 15px;
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ranking-section > image {
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
top: 0;
|
|
|
|
|
|
left: 0;
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
z-index: -1;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-06-19 01:55:40 +08:00
|
|
|
|
.into-btn {
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
top: 40px;
|
|
|
|
|
|
left: calc(50% - 100px);
|
|
|
|
|
|
width: 200px;
|
|
|
|
|
|
height: 100px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-05-01 16:17:51 +08:00
|
|
|
|
.ranking-players {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
padding-bottom: 20px;
|
2025-05-23 20:58:24 +08:00
|
|
|
|
margin-top: 42%;
|
2025-05-01 16:17:51 +08:00
|
|
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ranking-players > image:first-child {
|
|
|
|
|
|
width: 28%;
|
2025-06-26 23:41:23 +08:00
|
|
|
|
transform: translateX(-10px) translateY(-8px);
|
2025-05-01 16:17:51 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.player-avatars {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-06-25 00:09:53 +08:00
|
|
|
|
.divide-line {
|
|
|
|
|
|
width: 1px;
|
|
|
|
|
|
height: 35px;
|
|
|
|
|
|
background-color: #80808033;
|
|
|
|
|
|
margin-right: 8px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-05-01 16:17:51 +08:00
|
|
|
|
.player-avatar,
|
|
|
|
|
|
.more-players {
|
2025-06-25 01:46:04 +08:00
|
|
|
|
width: 80rpx;
|
|
|
|
|
|
height: 80rpx;
|
2025-05-01 16:17:51 +08:00
|
|
|
|
border-radius: 50%;
|
|
|
|
|
|
margin-right: -10px;
|
2025-06-25 00:09:53 +08:00
|
|
|
|
border: 1px solid #000;
|
2025-05-01 16:17:51 +08:00
|
|
|
|
position: relative;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.player-avatar > image:first-child,
|
|
|
|
|
|
.player-avatar > view:first-child {
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
top: -10px;
|
2025-06-25 00:09:53 +08:00
|
|
|
|
left: 12px;
|
|
|
|
|
|
width: 16px;
|
|
|
|
|
|
height: 16px;
|
2025-05-01 16:17:51 +08:00
|
|
|
|
}
|
|
|
|
|
|
.player-avatar > view:first-child {
|
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
|
background: #777777;
|
|
|
|
|
|
text-align: center;
|
2025-06-25 00:09:53 +08:00
|
|
|
|
font-size: 10px;
|
|
|
|
|
|
line-height: 18px;
|
|
|
|
|
|
width: 18px;
|
|
|
|
|
|
height: 18px;
|
2025-05-01 16:17:51 +08:00
|
|
|
|
}
|
|
|
|
|
|
.player-avatar > image:last-child {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.more-players {
|
|
|
|
|
|
background: rgba(255, 255, 255, 0.2);
|
2025-06-25 00:09:53 +08:00
|
|
|
|
font-size: 9px;
|
2025-06-25 01:46:04 +08:00
|
|
|
|
line-height: 80rpx;
|
2025-06-25 00:09:53 +08:00
|
|
|
|
text-align: center;
|
2025-06-26 13:51:41 +08:00
|
|
|
|
z-index: 1;
|
2025-06-17 12:01:44 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.more-players > text {
|
2025-06-25 01:46:04 +08:00
|
|
|
|
margin-left: 2px;
|
2025-07-02 17:21:44 +08:00
|
|
|
|
color: #fff;
|
2025-05-01 16:17:51 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.region-stats {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
grid-template-columns: repeat(6, 1fr);
|
|
|
|
|
|
margin-top: 20px;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.region-item,
|
|
|
|
|
|
.region-more {
|
|
|
|
|
|
border-radius: 10px;
|
2025-04-10 11:11:46 +08:00
|
|
|
|
text-align: center;
|
2025-05-01 16:17:51 +08:00
|
|
|
|
position: relative;
|
|
|
|
|
|
width: 13vw;
|
|
|
|
|
|
height: 13vw;
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
align-items: center;
|
2025-06-25 01:46:04 +08:00
|
|
|
|
color: #c5c5c5;
|
2025-05-01 16:17:51 +08:00
|
|
|
|
font-size: 12px;
|
|
|
|
|
|
}
|
|
|
|
|
|
.region-item > text {
|
|
|
|
|
|
margin-top: 10px;
|
|
|
|
|
|
}
|
|
|
|
|
|
.region-more {
|
|
|
|
|
|
width: 8vw;
|
|
|
|
|
|
height: 13vw;
|
|
|
|
|
|
}
|
|
|
|
|
|
.region-item > image:first-child,
|
|
|
|
|
|
.region-more > image:first-child {
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
top: 0;
|
|
|
|
|
|
left: 0;
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
z-index: -1;
|
|
|
|
|
|
}
|
|
|
|
|
|
.region-item > image:nth-of-type(2) {
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
top: 0;
|
|
|
|
|
|
left: 0;
|
|
|
|
|
|
width: 18px;
|
|
|
|
|
|
}
|
|
|
|
|
|
.region-item > view:last-child {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
font-size: 10px;
|
|
|
|
|
|
}
|
|
|
|
|
|
.region-more > text:first-of-type {
|
|
|
|
|
|
font-size: 30px;
|
|
|
|
|
|
line-height: 20px;
|
|
|
|
|
|
margin-bottom: 5px;
|
2025-04-10 11:11:46 +08:00
|
|
|
|
}
|
|
|
|
|
|
</style>
|