ZhangXianQiang
2024-06-05 7edbe9d7e6cbeb116d3d6d9b00da09dc5047aa99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<template>
  <div class="exam-container w-screen h-screen relative overflow-hidden">
    <div class="top-bg bg-blue-400"></div>
    <div class="exam-content flex flex-col ">
      <div class="exam-header">
        <div class="title-container">
          测试测试测试
        </div>
      </div>
      <div class="exam-main flex-1"></div>
    </div>
  </div>
</template>
 
<script setup>
 
</script>
 
<style lang="scss" scoped>
.top-bg {
  width: 130%;
  height: 200px;
  position: absolute;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
}
.exam-content {
  width: 100%;
  height: 100%;
}
</style>