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

48 lines
904 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="tit">2023年6月份江西省机动车驾驶培训机构考试合格</view>
  7. <view class="h2">二级标题二级标题二级标题二级标题二级标题二级标题</view>
  8. <view class="content">
  9. 内容详情
  10. </view>
  11. <view class="date">发布时间2023/08/06</view>
  12. </view>
  13. </view>
  14. </view>
  15. </template>
  16. <script>
  17. </script>
  18. <style lang="scss" scoped>
  19. .pageBgImg {
  20. min-height: 100vh;
  21. .pad {
  22. margin-top: 24rpx;
  23. }
  24. .card {
  25. padding: 28rpx 24rpx;
  26. .tit {
  27. font-size: 28rpx;
  28. font-weight: 500;
  29. }
  30. .h2 {
  31. margin: 8rpx 0 42rpx 0;
  32. color: #686B73;
  33. font-size: 24rpx;
  34. }
  35. .content {
  36. }
  37. .date {
  38. padding: 100rpx 0 40rpx 0;
  39. font-size: 20rpx;
  40. color: #686B73;
  41. }
  42. }
  43. }
  44. </style>