1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <template>
- <view class="container">
- <view class="logoContent">
- <view class="logoBorder">
- <image class="logoImg" src="/static/logo.png"></image>
- </view>
- <view>智能巡店信息管理平台</view>
- </view>
- <view class="textContent">
- <view>陕西山海高科信息技术有限公司专注于汽车服务行业,成立于古城西安,是一家以先进云端互联网技术驱动的公司,致力于通过saas云门店管理系统为汽车综修厂、社区店以及大量的中小门店赋能。以解决汽车维修、美容、保养等业务中发生的一系列问题。</view>
- <view>智能巡店设计了一套完善的降本增效方案,在引流获客、员工提成、营销活动、财务报表、数据分析等方面获得客户一致认可。</view>
- <view>山海高科将通过持续的科技成果转化为推动汽后市场发展提供动力,帮助更多服务终端、供应链企业、主机厂商、银行以及保险等汽车后市场参与方转型升级。</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:200rpx;
- height:200rpx;
- border:2px solid #eee;
- border-radius: 20rpx;
- margin:50rpx 0 15rpx 0;
- display: inline-block;
- position: relative;
- .logoImg{
- width:135rpx;
- height:180rpx;
- 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: 16upx 0;
- line-height: 50upx;
- text-indent: 60rpx;
- }
- }
- }
- </style>
|