tongzhi.vue 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <template>
  2. <view class="page">
  3. <view class="">
  4. <view class="time">
  5. 2021-08-17 16:41:37
  6. </view>
  7. <view class="content">
  8. <text class="title">
  9. 积分变动通知
  10. </text>
  11. <view class="font">
  12. 恭喜亲通过观看直播预告获得1积分!
  13. </view>
  14. </view>
  15. </view>
  16. </view>
  17. </template>
  18. <script>
  19. export default {
  20. data() {
  21. return {
  22. };
  23. }
  24. }
  25. </script>
  26. <style lang="scss">
  27. .time {
  28. font-size: 26rpx;
  29. font-family: PingFang SC;
  30. font-weight: 400;
  31. line-height: 24rpx;
  32. color: #808080;
  33. text-align: center;
  34. margin-top: 20rpx;
  35. margin-bottom: 20rpx;
  36. }
  37. .title {
  38. font-size: 30rpx;
  39. font-family: PingFang SC;
  40. font-weight: 600;
  41. line-height: 24rpx;
  42. color: #323337;
  43. }
  44. .font {
  45. font-size: 30rpx;
  46. font-family: PingFang SC;
  47. font-weight: 500;
  48. line-height: 70rpx;
  49. color: #323337;
  50. border-top: 2rpx solid #C7C7C7;
  51. margin-top: 24rpx;
  52. padding-top: 42rpx;
  53. }
  54. .page {
  55. width: 750rpx;
  56. height: 100vh;
  57. background: rgba(246, 245, 250, 1);
  58. border: 1rpx solid rgba(0, 0, 0, 0);
  59. padding: 0 24rpx;
  60. }
  61. .content {
  62. width: 702rpx;
  63. height: 220rpx;
  64. background: rgba(255, 255, 255, 1);
  65. border-radius: 14rpx;
  66. padding: 24rpx 22rpx 46rpx;
  67. }
  68. </style>