<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>
|