aboutUs.vue 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <template>
  2. <view class="container">
  3. <view class="logoContent">
  4. <view class="logoBorder">
  5. <image class="logoImg" src="/static/logo.png"></image>
  6. </view>
  7. <view>智能巡店信息管理平台</view>
  8. </view>
  9. <view class="textContent">
  10. <view>陕西山海高科信息技术有限公司专注于汽车服务行业,成立于古城西安,是一家以先进云端互联网技术驱动的公司,致力于通过saas云门店管理系统为汽车综修厂、社区店以及大量的中小门店赋能。以解决汽车维修、美容、保养等业务中发生的一系列问题。</view>
  11. <view>智能巡店设计了一套完善的降本增效方案,在引流获客、员工提成、营销活动、财务报表、数据分析等方面获得客户一致认可。</view>
  12. <view>山海高科将通过持续的科技成果转化为推动汽后市场发展提供动力,帮助更多服务终端、供应链企业、主机厂商、银行以及保险等汽车后市场参与方转型升级。</view>
  13. </view>
  14. </view>
  15. </template>
  16. <script>
  17. </script>
  18. <style lang="less">
  19. page{
  20. background: #FFFFFF;
  21. }
  22. .container{
  23. font-size: 32rpx;
  24. padding:0 50rpx;
  25. text-align: center;
  26. color:#666;
  27. .logoContent{
  28. .logoBorder{
  29. width:200rpx;
  30. height:200rpx;
  31. border:2px solid #eee;
  32. border-radius: 20rpx;
  33. margin:50rpx 0 15rpx 0;
  34. display: inline-block;
  35. position: relative;
  36. .logoImg{
  37. width:135rpx;
  38. height:180rpx;
  39. position: absolute;
  40. top:0;
  41. left:0;
  42. right:0;
  43. bottom:0;
  44. margin:auto;
  45. }
  46. }
  47. }
  48. .textContent{
  49. text-align: left;
  50. margin-top: 30rpx;
  51. font-size: 32rpx;
  52. .tetxTitle{
  53. margin-bottom: 10rpx;
  54. font-size: 32rpx;
  55. }
  56. > view{
  57. padding: 16upx 0;
  58. line-height: 50upx;
  59. text-indent: 60rpx;
  60. }
  61. }
  62. }
  63. </style>