You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

61 lines
1.3 KiB
Vue

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<template>
<view class="container">
<view class="header">
<text class="page-title">关于我们</text>
</view>
<view class="content">
<text class="paragraph">
秦皇岛安尔然营销策划有限公司成立于2020年致力于为客户提供营销策划会议服务商务咨询庆典服务礼仪服务
</text>
<image src="/static/about.png" class="team-img" mode="widthFix" />
</view>
<view class="footer">
<text>秦皇岛安尔然营销策划有限公司</text>
</view>
</view>
</template>
<script setup>
// 可在此加载公司简介数据
</script>
<style scoped>
.container {
box-sizing: border-box; /* 关键! */
padding: 20rpx;
background: linear-gradient(to bottom, #1a365d, #2c5282);
height: 100vh;
}
.header {
text-align: center;
margin: 40rpx 0;
}
.page-title {
font-size: 44rpx;
font-weight: bold;
color: #fff;
}
.paragraph {
font-size: 30rpx;
line-height: 1.6;
color: #fff;
display: block;
margin-bottom: 30rpx;
}
.team-img {
width: 100%;
border-radius: 16rpx;
margin-top: 20rpx;
}
.footer {
text-align: center;
margin-top: 60rpx;
color: #94a3b8;
font-size: 24rpx;
position: absolute;
bottom: 60rpx;
width: 100%;
text-align: center;
}
</style>