123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <template>
- <div class="wechat-wrap">
- <div class="wechat-content">
- <text class="wechat-title">关注公众号方便您继续阅读</text>
- </div>
- </div>
- </template>
- <script>
- export default {
- data: {
- },
- onInit() {
- },
- }
- </script>
- <style lang="less" scoped>
- .wechat {
- &-wrap {
- position: fixed;
- top: 0;
- bottom: 0;
- left: 0;
- right: 0;
- background-color: rgba(0, 0, 0, 0.56);
- flex-direction: column;
- align-items: center;
- z-index: 2;
- justify-content: center;
- }
- &-content {
- width: 600px;
- height: 650px;
- background-color: #fff;
- flex-direction: column;
- align-items: center;
- }
- &-title {
- height: 120px;
- line-height: 120px;
- font-size: 32px;
- font-weight: bold;
- }
- }
- </style>
|