Files
aida_front/src/views/AwardPage/index.vue

114 lines
2.4 KiB
Vue
Raw Normal View History

2026-01-12 17:23:25 +08:00
<template>
2026-01-19 17:07:05 +08:00
<div class="award-page">
<div class="banner">
2026-01-30 17:21:11 +08:00
<video
src="@/assets/images/award/banner.mp4"
autoplay
muted
loop
class="banner-video"
playsinline
webkit-playsinline
x5-playsinline
></video>
2026-01-19 17:07:05 +08:00
<div
class="submit-btn flex flex-center"
@click="handleSubmitApplication"
>
<div>Submit your Application</div>
<img
src="@/assets/images/award/arrow_right.png"
alt=""
class="arrow"
/>
<div class="ddl">Application Deadline:15th March 2026</div>
</div>
</div>
2026-01-16 14:30:48 +08:00
2026-01-26 12:27:55 +08:00
<Slogan />
2026-01-20 16:41:37 +08:00
<Bloom />
<TimeLine />
2026-01-20 15:42:17 +08:00
<JudgesSection />
<PrizesSection />
<ApplySection />
<SelectionSection />
2026-01-19 17:07:05 +08:00
</div>
2026-01-12 17:23:25 +08:00
</template>
<script setup lang="ts">
2026-01-19 17:07:05 +08:00
import { ref } from 'vue'
import { useRouter } from 'vue-router'
2026-01-20 15:42:17 +08:00
import JudgesSection from './components/JudgesSection.vue'
import SelectionSection from './components/SelectionSection.vue'
import ApplySection from './components/ApplySection.vue'
import PrizesSection from './components/PrizesSection.vue'
2026-01-20 16:41:37 +08:00
import TimeLine from './components/TimeLine.vue'
import Bloom from './components/Bloom.vue'
2026-01-26 12:27:55 +08:00
import Slogan from './components/Slogan.vue'
2026-01-16 14:30:48 +08:00
2026-01-19 17:07:05 +08:00
const router = useRouter()
2026-01-16 14:30:48 +08:00
2026-01-19 17:07:05 +08:00
const handleSubmitApplication = () => {
2026-01-22 13:34:38 +08:00
router.push('/award/contestants')
2026-01-19 17:07:05 +08:00
}
2026-01-16 14:30:48 +08:00
</script>
<style lang="less" scoped>
2026-01-19 17:07:05 +08:00
.container {
height: 97rem;
}
2026-01-16 14:30:48 +08:00
2026-01-19 17:07:05 +08:00
.logo {
width: 2.4rem;
height: 2.4rem;
}
.banner {
height: 108rem;
2026-01-30 17:21:11 +08:00
// background: url('@/assets/images/award/banner.png') no-repeat;
// background-size: cover;
2026-01-19 17:07:05 +08:00
position: relative;
2026-01-30 17:21:11 +08:00
.banner-video {
width: 100%;
height: 100%;
object-fit: cover;
}
2026-01-19 17:07:05 +08:00
.submit-btn {
width: 41rem;
height: 6.394rem;
line-height: 6.394rem;
text-align: center;
border-radius: 3.2rem;
2026-01-26 13:26:46 +08:00
background-color: rgba(35, 35, 35, 0.7);
2026-01-19 17:07:05 +08:00
box-shadow: inset 0 0 1119px 0 rgba(255, 255, 255, 0.3),
inset -0.8px -2.4px 1.6px 0.4px rgba(255, 255, 255, 0.1),
inset 0.8px 2.4px 1.6px 0 rgba(255, 255, 255, 0.3);
color: #fff;
font-family: 'PoppinsBold';
font-weight: 600;
font-size: 2.4rem;
column-gap: 3.2rem;
position: absolute;
2026-01-26 13:26:46 +08:00
left: 42.1rem;
bottom: 15.7rem;
2026-01-19 17:07:05 +08:00
backdrop-filter: blur(5px);
cursor: pointer;
.arrow {
width: 3.83rem;
height: 3.83rem;
}
.ddl {
position: absolute;
bottom: -4rem;
left: 0;
text-align: center;
width: 41rem;
font-family: 'Arial';
font-weight: 400;
font-size: 2rem;
line-height: 2.2rem;
2026-01-30 17:21:11 +08:00
color: #232323e5;
2026-01-19 17:07:05 +08:00
}
}
}
2026-01-12 17:23:25 +08:00
</style>