1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <template>
- <view class="container">
- <view class="logoContent">
- <view class="logoBorder">
- <image class="logoImg" src="/static/logos.png"></image>
- </view>
- </view>
- <view class="textContent">
- <view>章鱼养车平台是为车主提供洗车、美容、保养、维修等汽车服务的一站式O2O平台,平台拥有车主端,汽服门店端,合作商端等多个用户端,满足各种角色用户的使用,从而形成服务、信息的闭环,为车主提供全面优质的服务。</view>
- </view>
- </view>
- </template>
- <script>
- </script>
- <style lang="less">
- page{
- background: #FFFFFF;
- }
- .container{
- font-size: 32rpx;
- padding:0 50rpx;
- text-align: center;
- color:#666;
- .logoContent{
- .logoBorder{
- width:240rpx;
- height:240rpx;
- border:2px solid #eee;
- border-radius: 20rpx;
- margin:70rpx 0 25rpx 0;
- display: inline-block;
- position: relative;
- .logoImg{
- width:200rpx;
- height:200rpx;
- position: absolute;
- top:0;
- left:0;
- right:0;
- bottom:0;
- margin:auto;
- }
- }
- }
- .textContent{
- text-align: left;
- margin-top: 30rpx;
- font-size: 32rpx;
- .tetxTitle{
- margin-bottom: 10rpx;
- font-size: 32rpx;
- }
- > view{
- padding: 16rpx 0;
- line-height: 50rpx;
- text-indent: 60rpx;
- }
- }
- }
- </style>
|