|
|
@ -1,7 +1,47 @@ |
|
|
|
<template> |
|
|
|
<div>main</div> |
|
|
|
<div class="main_container"> |
|
|
|
<div class="top_wrap"> |
|
|
|
<div class="phote_oper_container"></div> |
|
|
|
<div class="heating_container"></div> |
|
|
|
<div class="temperature_zone"></div> |
|
|
|
</div> |
|
|
|
<div class="bottom_wrap"></div> |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
|
|
|
|
<script setup></script> |
|
|
|
|
|
|
|
<style lang="scss" scoped></style> |
|
|
|
<style lang="scss" scoped> |
|
|
|
.main_container { |
|
|
|
.top_wrap { |
|
|
|
display: flex; |
|
|
|
align-items: center; |
|
|
|
justify-content: space-between; |
|
|
|
margin-bottom: 20px; |
|
|
|
.phote_oper_container { |
|
|
|
width: 770px; |
|
|
|
height: 870px; |
|
|
|
border-radius: 16px; |
|
|
|
background: $theme-color; |
|
|
|
} |
|
|
|
.heating_container { |
|
|
|
width: 700px; |
|
|
|
height: 870px; |
|
|
|
border-radius: 16px; |
|
|
|
background: $theme-color; |
|
|
|
} |
|
|
|
.temperature_zone { |
|
|
|
width: 392px; |
|
|
|
height: 870px; |
|
|
|
border-radius: 16px; |
|
|
|
background: $theme-color; |
|
|
|
} |
|
|
|
} |
|
|
|
.bottom_wrap { |
|
|
|
width: 1910px; |
|
|
|
height: 377px; |
|
|
|
border-radius: 20px; |
|
|
|
background: $theme-color; |
|
|
|
} |
|
|
|
} |
|
|
|
</style> |