<template> <div class="publicContainerA"> <div class="partTitleHM">项目展示列表</div> <div class="ConstrucClass"> <div class="WaterAccumulation">积水分析_icon</div> <div class="WaterList">111</div> </div> </div> </template> <script setup></script> <style lang="scss" scoped> .publicContainerA { margin-top: 10px; } .ConstrucClass { width: 100%; height: calc(100vh - 580px); background: #07347f; .WaterAccumulation { width: 100%; height: 200px; // background: yellow; } .WaterList { margin-top: 10px; height: calc(100% - 210px); // background: red; } } </style>