hookehuyr

style(StudentInfo): 移除注释代码并调整查看更多按钮的上边距

<!--
* @Date: 2025-11-10 18:12:23
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2025-11-12 17:07:59
* @LastEditTime: 2025-11-12 20:26:46
* @FilePath: /stdj_h5/src/views/StudentInfo.vue
* @Description: 戒子详情页
-->
......@@ -11,8 +11,9 @@
<div class="item-card">
<img :src="student_info.src" :alt="student_info.title" class="item-image" />
<div class="item-content">
<div class="item-role">{{ student_info.name }}</div>
<div class="item-name" v-html="formatNameWithSuperscript(student_info.courtesy_name)"></div>
<!-- <div class="item-role">{{ student_info.name }}</div> -->
<!-- <div class="item-name" v-html="formatNameWithSuperscript(student_info.courtesy_name)"></div> -->
<div class="item-name">{{ student_info.name }}</div>
<div class="item-group-title">{{ student_info.group_title }}</div>
<div class="item-desc" v-html="student_info.desc"></div>
</div>
......@@ -209,6 +210,7 @@ const viewMore = () => {
.more-button {
position: static;
margin: 1rem auto;
margin-top: 4rem;
height: 2.5rem;
width: 8rem;
display: flex;
......