index.wxss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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 225rpx 60rpx;
  11. }
  12. .main-content {
  13. height: 100%;
  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. .bottom {
  58. position: fixed;
  59. width: 750rpx;
  60. left: 0;
  61. bottom: 0;
  62. display: flex;
  63. align-items: center;
  64. justify-content: space-between;
  65. padding: 30rpx;
  66. box-sizing: border-box;
  67. }
  68. .btn {
  69. width: 220rpx;
  70. height: 85rpx;
  71. line-height: 85rpx;
  72. border-radius: 44rpx;
  73. font-size: 30rpx;
  74. font-family: PingFang SC, PingFang SC-Regular;
  75. font-weight: 400;
  76. text-align: center;
  77. box-sizing: border-box;
  78. }
  79. .btn1 {
  80. background: #ffffff;
  81. border: 1px solid #cccccc;
  82. color: #333333;
  83. }
  84. .btn2 {
  85. background: #88bb26;
  86. color: #ffffff;
  87. border: 1px solid #88bb26;
  88. }
  89. .btn3 {
  90. background: #2b58a5;
  91. color: #ffffff;
  92. border: 1px solid #2b58a5;
  93. }