index.wxss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. /* invitationCode/index.wxss */
  2. page {
  3. overflow: hidden;
  4. }
  5. .main {
  6. height: 100vh;
  7. background-size: cover;
  8. background-position: center;
  9. box-sizing: border-box;
  10. padding: 46rpx 60rpx 150rpx 60rpx;
  11. }
  12. .main-content {
  13. height: 1110rpx;
  14. background-size: 100% 100%;
  15. background-repeat: no-repeat;
  16. position: relative;
  17. display: flex;
  18. flex-direction: column;
  19. justify-content: space-between;
  20. padding: 24rpx;
  21. }
  22. .main-content .user-info {
  23. display: flex;
  24. box-sizing: border-box;
  25. align-items: center;
  26. }
  27. .main-content .user-info .head {
  28. width: 99rpx;
  29. height: 99rpx;
  30. border: 4rpx solid #ffffff;
  31. border-radius: 50%;
  32. flex-shrink: 0;
  33. }
  34. .main-content .user-info .right {
  35. flex: 1;
  36. color: #ffffff;
  37. margin-left: 25rpx;
  38. font-size: 24rpx;
  39. font-family: PingFang SC, PingFang SC-Regular;
  40. font-weight: 400;
  41. }
  42. .main-content .user-info .right .name {
  43. margin-bottom: 13rpx;
  44. }
  45. .main-content .qrcode-info {
  46. text-align: center;
  47. color: #ffffff;
  48. font-size: 30rpx;
  49. font-family: PingFang SC, PingFang SC-Regular;
  50. font-weight: 400;
  51. }
  52. .main-content .qrcode-info .invitationCode{
  53. margin-bottom: 18rpx;
  54. width: 148rpx;
  55. border-radius: 10rpx;
  56. }
  57. .main-content .qrcode-info .invitationCode_view{
  58. text-align: center;
  59. min-height: 148rpx;
  60. }
  61. .bottom {
  62. position: fixed;
  63. width: 750rpx;
  64. left: 0;
  65. bottom: 0;
  66. display: flex;
  67. align-items: center;
  68. justify-content: space-between;
  69. padding: 30rpx;
  70. box-sizing: border-box;
  71. }
  72. .btn {
  73. width: 220rpx;
  74. height: 85rpx;
  75. line-height: 85rpx;
  76. border-radius: 44rpx;
  77. font-size: 30rpx;
  78. font-family: PingFang SC, PingFang SC-Regular;
  79. font-weight: 400;
  80. text-align: center;
  81. box-sizing: border-box;
  82. }
  83. .btn1 {
  84. background: #ffffff;
  85. border: 1px solid #cccccc;
  86. color: #333333;
  87. }
  88. .btn2 {
  89. background: #88bb26;
  90. color: #ffffff;
  91. border: 1px solid #88bb26;
  92. }
  93. .btn3 {
  94. background: #2b58a5;
  95. color: #ffffff;
  96. border: 1px solid #2b58a5;
  97. }