123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157 |
- <template>
- <view class="share-page">
- <headContent :showHead="false"></headContent>
- <view class="share-content">
- <view class="share-top">
- <image class="share-logo" src="../../static/share/img_02.png" mode=""></image>
- <text class="share-title">注册会员</text>
- <text class="share-title">获取高额奖励</text>
- <view class="share-list">
- <text class="share-list-item">· 安全的钱包技术</text>
- <text class="share-list-item">· 交易流畅顶级风控</text>
- <text class="share-list-item">· 丰富的加密资产业务</text>
- <text class="share-list-item">· 分布在世界各地的客户</text>
- </view>
- </view>
- <view class="share-footer">
- <image class="share-code" src="../../static/share/img_03.png" mode=""></image>
- <view class="share-btns">
- <view class="share-btn">
- 邀请您加入[币王]
- </view>
- <view class="share-btn-hint">
- <<< 长按识别二维码 </view>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- name: 'share',
- data() {
- return {
- // share
- }
- },
- methods: {
- }
- }
- </script>
- <style lang="scss" scoped>
- .share-page {
- width: 100%;
- min-height: 100vh;
- display: flex;
- flex-direction: column;
- .share-content {
- flex: 1;
- background-color: red;
- background: url("../../static/share/img_01.png") no-repeat center center;
- background-size: 100% 100%;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- padding: 40rpx 30rpx 50rpx;
- .share-top {
- display: flex;
- flex-direction: column;
- .share-logo {
- width: 506rpx;
- height: 126rpx;
- font-size: 0;
- margin-bottom: 14rpx;
- }
- .share-title {
- font-size: 60rpx;
- font-family: PingFang SC, PingFang SC-Bold;
- font-weight: 700;
- color: #ffffff;
- line-height: 84rpx;
- letter-spacing: 1.2px;
- }
- .share-list {
- width: 100%;
- padding-top: 20rpx;
- display: flex;
- flex-direction: column;
- .share-list-item {
- font-size: 28rpx;
- font-family: PingFang SC, PingFang SC-Regular;
- font-weight: 400;
- color: #ffffff;
- line-height: 40rpx;
- letter-spacing: 0.56rpx;
- margin-bottom: 5rpx;
- }
- }
- }
- .share-footer {
- width: 100%;
- display: flex;
- align-items: center;
- .share-code {
- width: 178rpx;
- height: 178rpx;
- }
- .share-btns {
- width: calc(100% - 178rpx);
- padding-left: 45rpx;
- .share-btn {
- width: 100%;
- height: 58rpx;
- background: linear-gradient(180deg, #faae3d, #f9d159);
- border-radius: 29rpx;
- text-align: center;
- line-height: 58rpx;
- font-size: 28rpx;
- font-family: PingFang SC, PingFang SC-Regular;
- font-weight: 400;
- color: #1a1a1a;
- letter-spacing: 0.56rpx;
- }
- .share-btn-hint {
- padding-top: 22rpx;
- font-size: 28rpx;
- font-family: PingFang SC, PingFang SC-Regular;
- font-weight: 400;
- text-align: center;
- color: #ffffff;
- line-height: 40rpx;
- letter-spacing: 0.56rpx;
- }
- }
- }
- // <view class="share-footer">
- // <image class="share-code" src="../../static/share/img_03.png" mode=""></image>
- // <view class="share-btns">
- // <view class="share-btn">
- // 邀请您加入[币王]
- // </view>
- // <view class="share-btn-hint">
- // <<< 长按识别二维码 </view>
- // </view>
- // </view>
- // </view>
- }
- }
- </style>
|