12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <template>
- <view class="aboutUs-content">
- <view class="aboutUs-content-info">
- <u-image src="/static/log.png" width="144" height="144" class="logo"></u-image>
- <view class="content-title">关于安孜皛白净</view>
- <view class="content-version">Version 1.0.0</view>
- </view>
- <view>安孜皛白净是国内首创的皮肤科智慧平台,致力于为所有亚洲白的追求者与皮肤色素问题的困扰者提供皮肤色素问题精准解决方案。</view>
- </view>
- </template>
- <script>
- </script>
- <style lang="less">
- .aboutUs-content{
- width: 100%;
- height: 100vh;
- padding: 0 60upx;
- > view{
- margin-bottom: 30upx;
- line-height: 50upx;
- }
- .aboutUs-content-info{
- text-align: center;
- .logo{
- display: inline-block;
- margin: 100upx auto 60upx;
- // text-align: center;
- }
- .content-title{
- font-size: 38upx;
- // text-align: center;
- }
- .content-version{
- // text-align: center;
- font-size: 32upx;
- color:#666E75;
- margin: 10upx 0 80upx;
- }
- }
- .content-text{
- color:#666E75;
- // font-size: 28upx;
- margin-bottom: 50upx;
- text-indent:2em
- }
- // .last-text{
- // margin-bottom: 0;
- // }
- }
- </style>
|