|
|
- <template>
- <view class="page">
- <navbar title="新闻中心" leftClick @leftClick="$utils.navigateBack" />
- <view class="card">
- <view class="card-img">
- <image src="../static/home/1.png" mode="aspectFill"></image>
- </view>
- <view>
- 三只青蛙周年庆
- </view>
- <view class="text">
- 文本内容文本内容文本内容文本内容文本内容文本内容文本内容
- </view>
- </view>
- </view>
- </template>
-
- <script>
- export default {
- data() {
- return {
-
- }
- },
- computed: {},
- methods: {}
- }
- </script>
-
- <style scoped lang="scss">
- .page {
- height: 100Vh;
- background-color: #F3F3F3;
-
- .card {
- margin: 20rpx;
- background-color: #fff;
- border-bottom-left-radius: 16rpx;
- border-bottom-right-radius: 16rpx;
-
- .card-img {
- height: 250rpx;
- width: 100%;
-
- image {
- width: 100%;
- height: 100%;
- }
- }
-
- view:nth-child(2) {
- font-size: 32rpx;
- color: #474747;
- padding: 20rpx;
- font-weight: 500;
- }
-
-
- .text {
- font-size: 24rpx;
- color: #A2A2A2;
- padding: 0rpx 20rpx 40rpx;
- }
-
- }
- }
- </style>
|