<template> <!-- 直播暂停 --> <div class="pauseShow"> <p class="tit">主播暂时离开</p> </div> </template> <script type="text/ecmascript-6"> export default { name: "", data() { return {}; }, components: {}, computed: {}, created() {}, mounted() {}, methods: {} }; </script> <style lang="scss" scoped> .pauseShow { position: absolute; width: 70vw; top: 40%; left: 15vw; display: flex; flex-direction: column; justify-content: center; align-items: center; z-index: 2; .tit { font-size: 30px; font-weight: bold; color: #fff; } } </style>