<template> <div class="longYW"> <div class="partTitleHM">宣传培训</div> <div class="ConstrucClass"> <div class="PublicityContent"> <div class="PublicityContentZP">照片</div> <div class="PublicityContentlR"> <div class="PublicityContentXM"> <span>开封市打造出一批海绵城市示范项目</span> </div> <div class="PublicityContentTime"> <span>发布时间</span> <span>2024-06-22 15:16:18</span> </div> </div> </div> </div> </div> </template> <script setup></script> <style lang="scss" scoped> .longYW { margin-top: 10px; width: 100%; height: 30%; background: #07347f; .ConstrucClass { height: calc(100% - 18%); // background: red; } .PublicityContent { margin: auto; width: 95%; height: 90px; background: #123f86; position: relative; top: 5px; display: flex; // margin-top: 10px; .PublicityContentZP { width: 20%; height: 90px; background: yellow; } .PublicityContentlR { width: 80%; height: 90px; // background: blueviolet; .PublicityContentXM { width: 100%; height: 60%; // background: blue; display: flex; align-items: center; // justify-content: center; span { font-size: 16px; color: #e4f5ff; } } .PublicityContentTime { width: 100%; height: 40%; font-size: 15px; // background: yellowgreen; color: #5b93eb; line-height: 20px; } } } } </style>