feat(display): add chairman speech page and refine layouts

This commit introduces a new page for the Chairman of the Board's speech and includes several visual refinements for the
event display.

- Add `speech/3.html` to display the chairman's video.
- Update the committee member list.
- Adjust font sizes, colors, and element positioning on the main and committee list pages for better visual
presentation.
- Fine-tune background video placement and scaling.
This commit is contained in:
xiaomai
2025-10-13 08:23:56 +08:00
parent eb4ca98763
commit d0442ea75f
6 changed files with 28 additions and 16 deletions

13
20251012/speech/3.html Normal file
View File

@@ -0,0 +1,13 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>理事会主席</title>
<script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>
<script src="../scripts/nav.js"></script>
</head>
<body>
<video src="../assets/理事会主席.mp4" class="w-full" autoplay loop muted></video>
</body>
</html>