123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <template>
- <view class="container">
- <view class="content">
- <text class="title">扫码关注</text>
- <text class="subtitle">获取更多信息</text>
-
- <image class="qr-code" src="https://leaseraycos.oss-cn-shanghai.aliyuncs.com/document/20240912211812_4192249.jpg" mode="aspectFit"></image>
-
- <text class="slogan-cn">沟通造纸的桥梁,分享知识的宝地</text>
- <text class="slogan-en">Paperbridge, the partner you can trust.</text>
- </view>
- </view>
- </template>
- <script setup>
- // 这里可以添加任何需要的逻辑
- </script>
- <style>
- .container {
- display: flex;
- flex-direction: column;
- height: 100vh;
- background-color: #1296db;
- color: white;
- }
- .header {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 20px;
- }
- .back-icon, .right-icons {
- font-size: 20px;
- }
- .content {
- flex: 1;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- padding: 0px 20px 60px 20px;
- }
- .title {
- font-size: 54px;
- font-weight: bold;
- margin-bottom: 10px;
- }
- .subtitle {
- font-size: 16px;
- margin-bottom: 30px;
- }
- .qr-code {
- width: 200px;
- height: 200px;
- margin-bottom: 30px;
- }
- .slogan-cn, .slogan-en {
- text-align: center;
- margin-bottom: 10px;
- }
- .slogan-en {
- font-size: 14px;
- }
- </style>
|