Files
FiDA_Front/src/views/404.vue
2026-02-10 16:56:11 +08:00

93 lines
1.8 KiB
Vue

<template>
<div class="view-404">
<!-- <p>404 Not Found</p> -->
<div class="demo">
<div></div>
<div></div>
<div></div>
</div>
</div>
</template>
<script setup lang="ts">
import { computed } from 'vue'
</script>
<style lang="less">
.view-404 {
width: 100%;
height: 100%;
text-align: center;
> p {
margin-top: 5rem;
font-weight: bold;
font-size: 3rem;
color: #0094ff;
}
> .demo {
position: absolute;
width: 127rem;
height: 72.6rem;
opacity: 0.8;
left: 50%;
bottom: 0;
transform: translateX(-50%) translateY(80%);
> div {
position: absolute;
border-radius: 50%;
}
> div:nth-child(1) {
width: 48.4rem;
height: 57.2rem;
top: 2.3rem;
left: 0rem;
background: linear-gradient(
130.72deg,
rgba(242, 171, 180, 0.2) 29.52%,
rgba(234, 133, 200, 0.2) 39.73%,
rgba(238, 64, 173, 0.2) 55.81%,
rgba(234, 133, 158, 0.2) 69.59%,
rgba(242, 171, 180, 0.2) 82.61%
);
transform: matrix(-0.16, -0.99, 0.97, -0.24, 0, 0);
filter: blur(11.5rem);
}
> div:nth-child(2) {
width: 44.6rem;
height: 56.8rem;
left: 56.6rem;
top: 0rem;
background: conic-gradient(
from 94.36deg at 71.77% 41.01%,
#f2abb4 0deg,
#ff6175 100.75deg,
#fe3b53 179.32deg,
#ff6175 252deg,
#f2abb4 360deg
);
transform: matrix(0.75, -0.66, 0.65, 0.76, 0, 0);
filter: blur(12.927rem);
}
> div:nth-child(3) {
width: 79.958rem;
height: 28.1rem;
left: 11.724rem;
top: 12.353rem;
background: linear-gradient(
87.58deg,
#f1c191 23.02%,
rgba(255, 178, 91, 0.97) 35.36%,
#ff8e69 56.32%,
#f2ad7e 67.34%,
#ffe8c8 82.74%
);
transform: matrix(-1, 0.05, -0.03, -1, 0, 0);
filter: blur(13.17rem);
}
}
}
</style>