123456789101112131415161718192021222324252627282930313233 |
- page {
- background: #f6f6f6;
- padding: 20rpx 20rpx 20rpx 0;
- }
- page .box {
- margin: 20rpx;
- border-radius: 10rpx;
- background: #fff;
- padding: 15rpx 20rpx;
- }
- page .box .title {
- font-size: 36rpx;
- }
- page .box .details {
- display: flex;
- margin-top: 20rpx;
- }
- page .box .details .image {
- width: 180rpx;
- height: 180rpx;
- border-radius: 18rpx;
- }
- page .box .details .information {
- margin-left: 20rpx;
- }
- page .box .details .information .num {
- margin-bottom: 30rpx;
- }
- page .box .details .information .time {
- font-size: 24rpx;
- color: #666666;
- margin-top: 10rpx;
- }
|