16 lines
574 B
Vue
16 lines
574 B
Vue
<template>
|
||
<div>
|
||
<!-- 捐赠模块 -->
|
||
<section id="donate" class="py-16 text-center bg-[var(--color-primary)]">
|
||
<h3 class="text-2xl font-bold text-gray-900 mb-4">支持与捐赠</h3>
|
||
<p class="max-w-2xl mx-auto text-gray-700 mb-6">您的捐赠将用于奖学金、校园建设及校友活动发展。感谢您对母校的支持!</p>
|
||
<a href="#" class="bg-[var(--color-secondary)] text-white px-8 py-3 rounded-xl shadow hover:opacity-90">立即捐赠</a>
|
||
</section>
|
||
</div>
|
||
</template>
|
||
|
||
<script lang="ts" setup>
|
||
|
||
</script>
|
||
|
||
<style></style> |