1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| <script setup>
| import CommonTitle from '@/components/CommonTitle.vue';
| </script>
|
| <template>
| <CommonTitle title="事件概况" />
| <div class="eventOverview"></div>
| </template>
|
| <style scoped lang="scss">
| .eventOverview {
| width: 390px;
| height: hToV(445);
| background: linear-gradient(
| 270deg,
| #1f3e7a 0%,
| rgba(31, 62, 122, 0.35) 79%,
| rgba(31, 62, 122, 0) 100%
| );
| border-radius: 0px 0px 0px 0px;
| opacity: 0.85;
| margin: hToV(3) 0 0 0;
| }
| </style>
|
|