.container { padding: 40rpx; background-color: #f8f8f8; min-height: 100vh; } .header { text-align: center; margin-bottom: 60rpx; } .title { display: block; font-size: 48rpx; font-weight: bold; color: #333; margin-bottom: 20rpx; } .timestamp { font-size: 28rpx; color: #666; } .section { background-color: white; border-radius: 20rpx; padding: 40rpx; margin-bottom: 40rpx; box-shadow: 0 4rpx 20rpx rgba(0, 0, 0, 0.1); } .section-title { display: block; font-size: 32rpx; font-weight: bold; color: #333; margin-bottom: 30rpx; border-bottom: 2rpx solid #eee; padding-bottom: 20rpx; } .content-box { background-color: #f5f5f5; border-radius: 10rpx; padding: 30rpx; border-left: 8rpx solid #007aff; } .qr-content { font-size: 30rpx; color: #333; line-height: 1.6; word-break: break-all; font-family: monospace; } .raw-data { font-size: 24rpx; color: #666; line-height: 1.5; word-break: break-all; font-family: monospace; } .details-grid { display: flex; flex-direction: column; gap: 20rpx; } .detail-item { display: flex; justify-content: space-between; align-items: center; padding: 20rpx 0; border-bottom: 1rpx solid #eee; } .detail-item:last-child { border-bottom: none; } .label { font-size: 28rpx; color: #666; font-weight: 500; } .value { font-size: 28rpx; color: #333; font-weight: normal; font-family: monospace; } .actions { display: flex; flex-direction: column; gap: 30rpx; margin-top: 60rpx; } .action-btn { height: 90rpx; border-radius: 45rpx; font-size: 32rpx; font-weight: bold; border: none; } .action-btn.primary { background-color: #007aff; color: white; } .action-btn.secondary { background-color: white; color: #007aff; border: 2rpx solid #007aff; } .action-btn.primary:active { background-color: #005bb5; } .action-btn.secondary:active { background-color: #f0f8ff; }