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

33 lines
581 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. .h2 {
  21. font-size: 28rpx;
  22. font-weight: 500;
  23. }
  24. .content {
  25. padding: 40rpx 0 100rpx;
  26. }
  27. .date {
  28. color: #686B73;
  29. font-size: 24rpx;
  30. }
  31. }
  32. </style>