<!-- 举报中心 --> <template> <view class="center"> <Title /> <view class="back"> <view class="main"> <text>网络安全为人民</text> <text class="bottom-text">网络安全靠人民</text> </view> </view> </view> </template> <script> import Title from '../../components/base/title.vue'; export default { name: 'center', components: { Title }, data() { return { } }, methods: { } } </script> <style lang="scss" scoped> .center { width: 100%; height: 100%; padding-top: 160rpx; .back { padding: 40rpx; .main { display: flex; flex-direction: column; // justify-content: center; align-items: center; background: linear-gradient(to right, #153164 0%, #0f4ae0 100%); color: #fff; font-weight: 600; letter-spacing: 20rpx; border-radius: 20rpx; padding: 20rpx 0; .bottom-text { // margin-top: 20rpx; } } } } </style>