123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- <template>
- <view class="box">
- <u-navbar title="省级政策" :autoBack="true" bgColor="#ffffff" :placeholder="true" titleStyle="font-weight:bold;color:#121212"></u-navbar>
- <view class="box_ban">
- <view class="box_left">
- <image style="width: 100%; height: 100%" src="https://huli-app.wenlvti.net/app_static/minnanhun/image/kctp.png"></image>
- </view>
- <view class="box_right">
- <view class="tit">中办国办印发《关于建立领导干部应知应会党内法规和国家法律清单制度的意见》改革方案》</view>
- <view class="btm">
- <view class="time">新华社</view>
- </view>
- </view>
- </view>
- <view class="text-wrapper_2-0" v-for="item in 3">
- <text lines="1" decode="true" class="text_6-0">中共中央国务院关于支持福建探索海峡两岸融合发展新路 建设两岸融合发展示范区的意见</text>
- <text lines="1" class="text_7-0">新华社</text>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {};
- },
- methods: {}
- };
- </script>
- <style>
- .box {
- height: auto;
- width: 100%;
- background-color: #f8f8f8;
- background-attachment: fixed;
- position: relative;
- display: flex;
- flex-direction: column;
- }
- .box_ban {
- display: flex;
- background-color: #ffffff;
- margin: 40rpx 32rpx 0 32rpx;
- }
- .box_left {
- width: 307rpx;
- height: 170rpx;
- border-radius: 10rpx;
- }
- .box_right {
- width: 340rpx;
- padding-top: 20rpx;
- margin-left: 18rpx;
- }
- .tit {
- width: 100%;
- height: 74rpx;
- font-size: 28rpx;
- color: #312520;
- margin-bottom: 20rpx;
- text-overflow: -o-ellipsis-lastline;
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- line-clamp: 2;
- -webkit-box-orient: vertical;
- }
- .btm {
- width: 96%;
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .time {
- font-size: 24rpx;
- color: #666666;
- }
- .text-wrapper_2-0 {
- background-color: rgba(255, 255, 255, 1);
- border-radius: 10rpx;
- width: 686rpx;
- margin: 40rpx 32rpx 0 32rpx;
- display: flex;
- flex-direction: column;
- }
- .text_6-0 {
- width: 642rpx;
- height: 74rpx;
- overflow-wrap: break-word;
- color: rgba(49, 37, 32, 1);
- font-size: 28rpx;
- font-family: SourceHanSansCN-Regular;
- font-weight: normal;
- text-align: left;
- line-height: 48rpx;
- margin: 23rpx 0 0 19rpx;
- }
- .text_7-0 {
- width: 71rpx;
- height: 23rpx;
- overflow-wrap: break-word;
- color: rgba(102, 102, 102, 1);
- font-size: 24rpx;
- font-family: SourceHanSansCN-Regular;
- font-weight: normal;
- text-align: left;
- white-space: nowrap;
- line-height: 24rpx;
- margin: 26rpx 0 24rpx 19rpx;
- }
- </style>
|