学员端小程序
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.

34 lines
602 B

1 year ago
  1. <template>
  2. <view class="pageBgImg">
  3. <topNavbar title="信息资讯"></topNavbar>
  4. <view class="pad">
  5. <view class="card">
  6. <view class="h2">最新免费开放日来啦</view>
  7. <view class="content">
  8. 内容
  9. </view>
  10. <view class="date">发布时间2023/08/06</view>
  11. </view>
  12. </view>
  13. </view>
  14. </template>
  15. <script>
  16. </script>
  17. <style lang="scss" scoped>
  18. .card {
  19. padding: 28rpx 24rpx;
  20. margin-top: 20rpx;
  21. .h2 {
  22. font-size: 28rpx;
  23. font-weight: 500;
  24. }
  25. .content {
  26. padding: 40rpx 0 100rpx;
  27. }
  28. .date {
  29. color: #686B73;
  30. font-size: 24rpx;
  31. }
  32. }
  33. </style>