| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- <template>
- <view class="login-content" @touchmove.stop.prevent>
- <view class="content-data">
- <view class="data">
- <view class="data-img">
- <image class="img" src="@/static/img/login/2.jpg" mode="aspectFill"></image>
- </view>
- <view class="data-text">
- ICOCO是为了人们摆脱自己单身的生活 而去结交 认识他人的过程一个网络交友平台
- </view>
- <view class="data-but">
- <view class="but-text">开始ICOCO</view>
- </view>
- <view class="data-agreement"></view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- name: "loginContent",
- components: {},
- props: {},
- data() {
- return {}
- },
- watch: {},
- mounted() {
- },
- methods: {}
- }
- </script>
- <style scoped>
- .login-content{
- z-index: 100;
- position: fixed;
- left: 0;
- top: 0;
- right: 0;
- bottom: 0;
- background-color: rgba(0, 0, 0, 0);
- }
- .content-data{
- width: 100vw;
- height: 100vh;
- position: relative;
- }
- .content-data .data{
- position: absolute;
- width: 100vw;
- height: calc(528rpx + env(safe-area-inset-bottom)) ;
- bottom: 0;
- left: 0;
- }
- .content-data .data .data-img{
- height: 124rpx;
- border-radius: 24rpx;
- }
- .content-data .data-img .img{
- margin: auto auto;
- height: 124rpx;
- width: 124rpx;
- }
- .content-data .data .data-text{
- margin-top: 24rpx;
- padding: 0 78rpx;
- font-size: 28rpx;
- line-height: 44rpx;
- color: #FFFFFF;
- }
- .content-data .data .data-but{
- margin:64rpx 78rpx 0 78rpx ;
- border-radius: 200rpx;
- background:#FFFFFF ;
- height: 88rpx;
- line-height: 88rpx;
- }
- .data-but .but-text{
- background: #000;
- color: #000;
- font-size: 28rpx;
- font-weight: 600;
- text-align: center;
- height: 88rpx;
- line-height: 88rpx;
- -webkit-background-clip: text;
- -webkit-text-fill-color: transparent;
- }
- </style>
|