message.vue 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <template>
  2. <view class="center">
  3. <view class="bg">
  4. <image src="" mode=""></image>
  5. </view>
  6. <view class="title">新闻大标题放在这里最多两排最多两排换行新闻大标题放在这里最多两排最多两排</view>
  7. <view class="time">时间,时分秒</view>
  8. <view class="content">
  9. 这里是文字内容这里是文字内容这里是文字内容这里是文字内容这里是文字内容这里是文字内容这里是文字内容这里是文字内容这里是文字内容这里是文字内容这里是文字内容这里是文字内容这里是文字内容这里是文字内容这里是文字内容这里是文字内容
  10. </view>
  11. </view>
  12. </template>
  13. <script>
  14. </script>
  15. <style lang="scss">
  16. .center{
  17. height: 100%;
  18. }
  19. .bg{
  20. background: #00BCD4;
  21. width: 100%;
  22. height: 474rpx;
  23. }
  24. .title {
  25. width: 90%;
  26. margin: 0 auto;
  27. font-size: 40rpx;
  28. font-weight: 500;
  29. color: #171313;
  30. text-overflow: -o-ellipsis-lastline;
  31. overflow: hidden;
  32. text-overflow: ellipsis;
  33. display: -webkit-box;
  34. -webkit-line-clamp: 2;
  35. -webkit-box-orient: vertical;
  36. }
  37. .time {
  38. width: 90%;
  39. margin: 0 auto;
  40. margin-top: 16rpx;
  41. font-size: 24rpx;
  42. font-weight: 500;
  43. color: #656B6C;
  44. }
  45. .content {
  46. width: 90%;
  47. margin: 0 auto;
  48. margin-top: 20rpx;
  49. font-size: 32rpx;
  50. font-weight: 500;
  51. color: #777777;
  52. }
  53. </style>