微信小店联盟带货小程序

qrcode.wxss 1.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. /* pages/promotion/qrcode.wxss */
  2. .container {
  3. min-height: 100vh;
  4. background: #f5f5f5;
  5. padding: 30rpx;
  6. padding-bottom: 120rpx;
  7. }
  8. /* 二维码卡片 */
  9. .qrcode-card {
  10. background: #fff;
  11. border-radius: 16rpx;
  12. padding: 40rpx;
  13. margin-bottom: 30rpx;
  14. box-shadow: 0 4rpx 16rpx rgba(0, 0, 0, 0.06);
  15. }
  16. .user-info {
  17. display: flex;
  18. flex-direction: column;
  19. align-items: center;
  20. margin-bottom: 40rpx;
  21. }
  22. .avatar {
  23. width: 120rpx;
  24. height: 120rpx;
  25. border-radius: 60rpx;
  26. margin-bottom: 16rpx;
  27. }
  28. .nickname {
  29. font-size: 32rpx;
  30. color: #333;
  31. font-weight: bold;
  32. margin-bottom: 8rpx;
  33. }
  34. .promotion-id {
  35. font-size: 26rpx;
  36. color: #666;
  37. }
  38. .qrcode-wrapper {
  39. display: flex;
  40. flex-direction: column;
  41. align-items: center;
  42. }
  43. .qrcode-image {
  44. width: 400rpx;
  45. height: 400rpx;
  46. margin-bottom: 20rpx;
  47. }
  48. .qrcode-tip {
  49. font-size: 28rpx;
  50. color: #666;
  51. }
  52. /* 操作按钮 */
  53. .action-buttons {
  54. display: flex;
  55. justify-content: space-between;
  56. margin-bottom: 40rpx;
  57. }
  58. .btn {
  59. flex: 1;
  60. height: 80rpx;
  61. margin: 0 10rpx;
  62. border-radius: 40rpx;
  63. display: flex;
  64. align-items: center;
  65. justify-content: center;
  66. font-size: 28rpx;
  67. }
  68. .btn .iconfont {
  69. font-size: 32rpx;
  70. margin-right: 8rpx;
  71. }
  72. .btn-save {
  73. background: #ff4d4f;
  74. color: #fff;
  75. }
  76. .btn-share {
  77. background: #52c41a;
  78. color: #fff;
  79. }
  80. /* 推广说明 */
  81. .promotion-guide {
  82. background: #fff;
  83. border-radius: 16rpx;
  84. padding: 30rpx;
  85. }
  86. .guide-title {
  87. font-size: 32rpx;
  88. color: #333;
  89. font-weight: bold;
  90. margin-bottom: 20rpx;
  91. }
  92. .guide-item {
  93. display: flex;
  94. align-items: center;
  95. margin-bottom: 16rpx;
  96. }
  97. .guide-item:last-child {
  98. margin-bottom: 0;
  99. }
  100. .item-dot {
  101. width: 12rpx;
  102. height: 12rpx;
  103. border-radius: 6rpx;
  104. background: #ff4d4f;
  105. margin-right: 16rpx;
  106. }
  107. .item-text {
  108. font-size: 28rpx;
  109. color: #666;
  110. line-height: 1.5;
  111. }