aboutUs.vue 2.0 KB
<template>
	<view style="background-color: white; height: calc(100vh - 88rpx);">
		<view class="top">
		  <view class="header">
		    <view class="logo"><image src="/static/about.png"></image></view>
		    <view class="title">设备乐</view>
		    <view class="tips">v3.9.4.0</view>
		  </view>
		</view>
		
		
		<view class="setting">
			<p>在互联网商业发展史上,刚刚过去到2020年是浓墨重彩的一年。

无论是疫情之下的直播崛起,还是时隔多年社区团购之火重燃,抑或是微信视频号带来的新机遇,都让我们看到互联网商业无数的可能性。</p>
		</view>
	</view>
</template>

<script>
	export default {
		data() {
			return {
				
			}
		},
		methods: {
			
		}
	}
</script>

<style scoped>
/* pages/mine/about/about.wxss */


.top {
  position: relative;
width: 100%;
height: 510rpx;
opacity: 1;
/* background: linear-gradient(180deg, rgba(232,234,237,1) 0%, rgba(255,255,255,1) 100%); */
background: #fff;
}
.notLogin {
  margin-right: 32rpx;
  text-align: right;
  padding-top: 40rpx;
  right: 32rpx;
  opacity: 1;
  color: rgba(13,16,19,0.6);
  font-size: 28rpx;
  font-weight: 400;
  font-family: "PingFang SC";
  line-height: 40rpx;
  letter-spacing: 0.6rpx;
}
.header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 128rpx;
  left: 50%;
  transform: translateX(-50%);
}
.header image {
  width: 160rpx;
  height: 160rpx;
  border-radius: 50%;
}
.header .title {
  margin-top: 48rpx;
    opacity: 1;
    color: rgba(13,16,19,0.9);
    font-size: 32rpx;
    font-weight: 500;
    font-family: "PingFang SC";
    text-align: left;
    line-height: 64rpx;
}
.tips {
  color: rgba(13,16,19,0.4);
  margin-top: 16rpx;
  font-size: 26rpx;
}

.setting {
  margin-top: 48rpx;
  background: #fff;
  padding: 0 24rpx;
}

.setting>view {
  display: flex;
  justify-content: space-between;
  align-items: center;
   height: 136rpx;
   font-size: 28rpx;
   border-bottom: 1px solid #f3f2f2;
}
</style>