index.wxss 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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. position: relative;
  36. padding: 32rpx 47rpx;
  37. display: flex;
  38. align-items: center;
  39. }
  40. .container .form .row .label {
  41. width: 150rpx;
  42. }
  43. .container .form .row .nickName {
  44. text-align: left;
  45. color: #666666;
  46. font-size: 26rpx;
  47. }
  48. .container .form .row .resetBtn {
  49. flex: 1;
  50. font-size: 26rpx;
  51. text-align: left;
  52. color: #555555;
  53. }
  54. .container .form .r1:before {
  55. position: absolute;
  56. content: "请输入姓名";
  57. bottom: -4rpx;
  58. left: 194rpx;
  59. color: red;
  60. }
  61. .container .form .r2:before {
  62. position: absolute;
  63. content: "请输入手机号";
  64. bottom: -4rpx;
  65. left: 194rpx;
  66. color: red;
  67. }
  68. .container .qrCodeBox {
  69. margin: 30rpx auto;
  70. width: 710rpx;
  71. box-sizing: border-box;
  72. padding: 65rpx 40rpx 37rpx;
  73. background: #FFFFFF;
  74. font-size: 30rpx;
  75. border-radius: 20rpx;
  76. text-align: center;
  77. }
  78. .container .qrCodeBox .qrCode {
  79. margin: 38rpx 0;
  80. width: 256rpx;
  81. height: 256rpx;
  82. padding: 20rpx;
  83. border-radius: 20rpx;
  84. background-color: #FFF7E1;
  85. }
  86. .container .qrCodeBox .content {
  87. margin-top: 20rpx;
  88. text-align: left;
  89. }
  90. .container .bottom {
  91. position: absolute;
  92. width: 100%;
  93. padding: 26rpx 0;
  94. bottom: 0;
  95. left: 0;
  96. background-color: white;
  97. }
  98. .container .bottom .btn {
  99. margin: 0 auto;
  100. width: 466rpx;
  101. padding: 14rpx 0;
  102. background: linear-gradient(180deg, #6EC8FF 0%, #31BDFE 100%);
  103. border-radius: 39rpx;
  104. color: white;
  105. }