61 lines
1.1 KiB
Vue
61 lines
1.1 KiB
Vue
<template>
|
||
<view class="top-bg-content">
|
||
<view class="top-item1">
|
||
<view class="top-item1-left">
|
||
<image src="/static/hello_xiaomu_icon@2x.png"></image>
|
||
<text>2025/02/10 多云 -3~6℃</text>
|
||
</view>
|
||
<view class="top-item1-right">
|
||
<image src="/static/hello_logo_icon@2x.png" ></image>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</template>
|
||
|
||
<script setup>
|
||
|
||
</script>
|
||
|
||
<style lang="scss" scoped>
|
||
.top-bg-content {
|
||
display: flex;
|
||
justify-content: flex-end;
|
||
align-items: stretch;
|
||
flex-direction: column;
|
||
}
|
||
|
||
.top-item1 {
|
||
display: flex;
|
||
flex-direction: row;
|
||
justify-content: space-between;
|
||
margin: 0 46px 0 32px;
|
||
|
||
.top-item1-left {
|
||
display: flex;
|
||
flex-direction: column;
|
||
justify-content: flex-end;
|
||
|
||
image {
|
||
width: 118px;
|
||
height: 52px;
|
||
}
|
||
text {
|
||
font-family: PingFang SC, PingFang SC;
|
||
font-weight: 400;
|
||
font-size: 12px;
|
||
color: #1E4C69;
|
||
line-height: 24px;
|
||
text-align: justify;
|
||
font-style: normal;
|
||
text-transform: none;
|
||
}
|
||
}
|
||
|
||
.top-item1-right {
|
||
image {
|
||
width: 96px;
|
||
height: 96px;
|
||
}
|
||
}
|
||
}
|
||
</style> |