新版本官网优化完成

This commit is contained in:
2025-02-12 16:37:07 +08:00
parent 43a2e17a80
commit 3efdbfc662
547 changed files with 23001 additions and 28169 deletions

35
components/MContent.vue Normal file
View File

@@ -0,0 +1,35 @@
<script setup lang="ts">
const props = withDefaults(
defineProps<{
data?: any;
isMobile?: boolean;
}>(),
{}
);
</script>
<template>
<div class="content text-[16px]" v-html="data"></div>
</template>
<style lang="scss">
.content {
padding-top: 15px;
overflow: hidden;
color: #333131;
}
.content p{
padding: 0;
line-height: 2.2rem;
}
.content img{
padding: 8px 0;
max-width: 100%;
height: auto;
}
.content video {
width: 100%;
height: auto;
}
</style>