You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

110 lines
2.6 KiB

2 years ago
<template>
<view class="container-main">
<view class="text-top"
>辽宁省商业厅辽宁省财政厅关于印发推进全省早餐工程建设的实施意见的通知</view
>
<view class="text-middle">
<text class="text-middle-top">辽宁省商业厅辽宁省财务厅</text>
<text class="text-middle-bottom">辽商联发[2008]27 2008-09-24</text>
</view>
<view class="text-bottom">
<view class="text-headline"> 各市商业局()财政局: </view>
<view class="text-details">
为推进全省早餐工程建设, 更好地满足城市居民的早餐消费需求,
现将推进全省早餐工程建设的实施意见 印发给你们,请结合当地实际情况,
认真贯彻落实
</view>
<view class="text-base">
<view>辽宁省商业厅</view>
<view> 辽宁省财务厅</view>
<view>二OO八年十二月二十四日</view>
</view>
</view>
</view>
</template>
<script>
import fixedButton from "@/components/fixedButton/fixedButton.vue";
export default {
components: {
fixedButton,
},
data() {
return {};
},
methods: {},
};
</script>
<style lang="scss" scoped>
uni-page-body,
page {
background: rgba(245, 247, 250, 1);
}
.container-main {
margin: 20rpx 0 0 0;
padding: 49rpx 64rpx 0 64rpx;
background-color: #ffffff;
.text-top {
margin: 0 0 30rpx 0;
font-size: 40rpx;
font-family: PingFang SC-中粗体, PingFang SC;
font-weight: bold;
color: #34373b;
text-align: center;
line-height: 54rpx;
}
.text-middle {
width: 622rpx;
height: 96rpx;
margin: 0 0 40rpx 0;
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
.text-middle-top,
.text-middle-bottom {
font-size: 28rpx;
font-family: PingFang SC-常规体, PingFang SC;
font-weight: 400;
color: #b0b4bb;
}
}
.text-bottom {
padding: 40rpx 0 0 0;
border-top: 1rpx solid #dce3ec;
.text-headline {
margin: 0 0 21rpx 0;
font-size: 32rpx;
font-family: PingFang SC-常规体, PingFang SC;
font-weight: 400;
color: #34373b;
}
.text-details {
margin: 0 0 121rpx 0;
font-size: 32rpx;
font-family: PingFang SC-常规体, PingFang SC;
font-weight: 400;
color: #34373b;
line-height: 60rpx;
text-indent: 2em;
}
.text-base {
font-size: 28rpx;
font-family: PingFang SC-常规体, PingFang SC;
font-weight: 400;
color: #34373b;
line-height: 54rpx;
text-align: right;
}
}
}
</style>