| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <template>
- <view class="intent">
- <view class="bgimg"><image src="../../static/images/yxs.png"></image></view>
- <view class="name">赵秋安</view>
- <view class="erweima">
-
- </view>
- </view>
- </template>
- <script></script>
- <style lang="scss" scoped>
- page {
- height: 100%;
- }
- .intent {
- width: 100%;
- height: 100%;
- position: relative;
- }
- .bgimg {
- width: 100%;
- height: 100%;
- image {
- width: 100%;
- height: 100%;
- }
- }
- .name {
- width: 14.5vw;
- background-color: red;
- // height: 20rpx;
- position: absolute;
- top: 33.5vh;
- left: 26.5vw;
- text-align: center;
- }
- .erweima {
- width: 156rpx;
- height: 156rpx;
- background-color: red;
- position: absolute;
- bottom: 138rpx;
- right: 118rpx;
- // right: 0;
-
- }
- </style>
|