flaunt-web/src/views/About.vue

64 lines
1.8 KiB
Vue
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<div>
<div class="about-box">
<div class="title">关于我们</div>
<p>我们是一群爱搞怪也爱帮忙的年轻人日常最爱做的事就是用微信模拟器帮朋友解决场面尴尬</p>
<p>我们不鼓励撒谎但我们支持用幽默化解小尴尬 每一个功能都做到真实不穿帮只为在你需要的时候帮你圆一个小小的场开一个无伤大雅的玩笑或者逗笑一个不开心的人</p>
<p>有点皮有点暖你的面子急救队随时在线</p>
</div>
<AppFooter />
</div>
</template>
<script setup>
import AppFooter from '@/components/common/AppFooter.vue'
</script>
<style lang="scss" scoped>
.about-box {
width: 1200px;
min-width: 1200px;
margin: 0 auto;
padding: 20px;
background: url('/src/public/about-bg.jpg');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
padding: 100px 56px 200px;
.title {
position: relative;
font-weight: 700;
font-size: 40px;
color: #1A1A1A;
line-height: 46px;
margin-bottom: 88px;
&::after {
content: '';
display: inline-block;
width: 120px;
height: 33px;
background-image: url('@/public/index/decoration1.png');
background-size: 100%;
background-repeat: no-repeat;
position: absolute;
left: 26px;
bottom: -34px;
opacity: 50%;
}
}
p {
width: 745px;
margin-top: 50px;
font-family: 'Source Han Sans', 'Microsoft YaHei', sans-serif;
font-size: 25px;
color: #1A1A1A;
line-height: 37px;
font-weight: 500;
}
}
</style>