123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <template>
- <view class="page">
- <view class="">
- <view class="time">
- 2021-08-17 16:41:37
- </view>
- <view class="content">
- <text class="title">
- 积分变动通知
- </text>
- <view class="font">
- 恭喜亲通过观看直播预告获得1积分!
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- };
- }
- }
- </script>
- <style lang="scss">
- .time {
- font-size: 26rpx;
- font-family: PingFang SC;
- font-weight: 400;
- line-height: 24rpx;
- color: #808080;
- text-align: center;
- margin-top: 20rpx;
- margin-bottom: 20rpx;
- }
- .title {
- font-size: 30rpx;
- font-family: PingFang SC;
- font-weight: 600;
- line-height: 24rpx;
- color: #323337;
- }
- .font {
- font-size: 30rpx;
- font-family: PingFang SC;
- font-weight: 500;
- line-height: 70rpx;
- color: #323337;
- border-top: 2rpx solid #C7C7C7;
- margin-top: 24rpx;
- padding-top: 42rpx;
- }
- .page {
- width: 750rpx;
- height: 100vh;
- background: rgba(246, 245, 250, 1);
- border: 1rpx solid rgba(0, 0, 0, 0);
- padding: 0 24rpx;
- }
- .content {
- width: 702rpx;
- height: 220rpx;
- background: rgba(255, 255, 255, 1);
- border-radius: 14rpx;
- padding: 24rpx 22rpx 46rpx;
- }
- </style>
|