/* pages/distribution/qrcode.wxss */ .container { min-height: 100vh; background: #F5F5F5; display: flex; flex-direction: column; } /* 二维码容器 */ .qrcode-container { background: #FFFFFF; margin: 24rpx 32rpx; border-radius: 16rpx; padding: 32rpx; box-shadow: 0 4rpx 16rpx rgba(0, 0, 0, 0.04); } .qrcode-header { text-align: center; margin-bottom: 32rpx; } .header-title { font-size: 36rpx; font-weight: 500; color: #262626; display: block; margin-bottom: 12rpx; } .header-desc { font-size: 28rpx; color: #8C8C8C; display: block; } .qrcode-content { display: flex; flex-direction: column; align-items: center; } .qrcode-wrapper { display: flex; flex-direction: column; align-items: center; margin-bottom: 32rpx; } .qrcode-image { width: 480rpx; height: 480rpx; background: #F5F5F5; border-radius: 16rpx; margin-bottom: 16rpx; } .qrcode-tip { font-size: 24rpx; color: #8C8C8C; } .user-info { display: flex; flex-direction: column; align-items: center; } .user-avatar { width: 128rpx; height: 128rpx; border-radius: 50%; margin-bottom: 16rpx; border: 4rpx solid #F5F5F5; } .user-nickname { font-size: 32rpx; color: #262626; font-weight: 500; margin-bottom: 8rpx; } .user-id { font-size: 24rpx; color: #8C8C8C; } /* 操作按钮 */ .action-buttons { display: flex; justify-content: space-between; margin: 32rpx; } .btn { flex: 1; display: flex; align-items: center; justify-content: center; height: 88rpx; border-radius: 44rpx; font-size: 28rpx; font-weight: 500; } .btn .iconfont { margin-right: 16rpx; font-size: 36rpx; } .btn-primary { background: #FF4D4F; color: #FFFFFF; margin-right: 24rpx; } .btn-secondary { background: #F5F5F5; color: #262626; } /* 推广说明 */ .promotion-guide { background: #FFFFFF; margin: 0 32rpx 32rpx; border-radius: 16rpx; padding: 32rpx; box-shadow: 0 4rpx 16rpx rgba(0, 0, 0, 0.04); } .guide-title { font-size: 32rpx; font-weight: 500; color: #262626; margin-bottom: 24rpx; } .guide-content { display: flex; flex-direction: column; } .guide-content text { font-size: 28rpx; color: #595959; margin-bottom: 16rpx; line-height: 1.6; }