index.wxss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. .container {
  2. position: relative;
  3. width: 750rpx;
  4. height: 100vh;
  5. background: linear-gradient(158deg, #FDD65D 0%, #FFD55D 17%, #FDCB4E 38%, #FE9F16 100%);
  6. }
  7. .container .black {
  8. padding: 10rpx 30rpx;
  9. transform: rotate(180deg);
  10. width: 18rpx;
  11. height: 36rpx;
  12. opacity: 0.8;
  13. }
  14. .container .titleBox {
  15. text-align: center;
  16. color: #570D07;
  17. font-size: 30rpx;
  18. }
  19. .container .titleBox .t1 {
  20. margin: 10rpx 0;
  21. font-weight: 500;
  22. }
  23. .container .titleBox .t2 {
  24. font-size: 20rpx;
  25. opacity: 0.9;
  26. }
  27. .container .form {
  28. margin: 36rpx auto;
  29. width: 710rpx;
  30. background: #FFFFFF;
  31. border-radius: 20rpx;
  32. font-size: 28rpx;
  33. }
  34. .container .form .row {
  35. padding: 32rpx 47rpx;
  36. display: flex;
  37. align-items: center;
  38. }
  39. .container .form .row .label {
  40. width: 150rpx;
  41. }
  42. .container .form .row .nickName {
  43. text-align: left;
  44. color: #666666;
  45. font-size: 26rpx;
  46. }
  47. .container .form .row .resetBtn {
  48. flex: 1;
  49. font-size: 26rpx;
  50. text-align: left;
  51. color: #555555;
  52. }
  53. .container .qrCodeBox {
  54. margin: 30rpx auto;
  55. width: 710rpx;
  56. box-sizing: border-box;
  57. padding: 65rpx 40rpx 37rpx;
  58. background: #FFFFFF;
  59. font-size: 30rpx;
  60. border-radius: 20rpx;
  61. text-align: center;
  62. }
  63. .container .qrCodeBox .qrCode {
  64. margin: 38rpx 0;
  65. width: 256rpx;
  66. height: 256rpx;
  67. padding: 20rpx;
  68. border-radius: 20rpx;
  69. background-color: #FFF7E1;
  70. }
  71. .container .qrCodeBox .content {
  72. margin-top: 20rpx;
  73. text-align: left;
  74. }
  75. .container .bottom {
  76. position: absolute;
  77. width: 100%;
  78. padding: 26rpx 0;
  79. bottom: 0;
  80. left: 0;
  81. background-color: white;
  82. }
  83. .container .bottom .btn {
  84. margin: 0 auto;
  85. width: 466rpx;
  86. padding: 14rpx 0;
  87. background: linear-gradient(180deg, #6EC8FF 0%, #31BDFE 100%);
  88. border-radius: 39rpx;
  89. color: white;
  90. }