index.wxss 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. .auth-content {
  2. width: 520rpx;
  3. height: 660rpx;
  4. background: #fff;
  5. border-radius: 24rpx;
  6. position: relative;
  7. display: flex;
  8. flex-direction: column;
  9. align-items: center;
  10. justify-content: flex-end;
  11. }
  12. .auth-content .bg {
  13. width: 520rpx;
  14. height: 354rpx;
  15. position: absolute;
  16. top: 0;
  17. left: 0;
  18. }
  19. .auth-content .h1 {
  20. color: #444;
  21. font-size: 32rpx;
  22. margin-bottom: 20rpx;
  23. }
  24. .auth-content .h2 {
  25. font-size: 24rpx;
  26. line-height: 36rpx;
  27. color: #999;
  28. width: 408rpx;
  29. margin-bottom: 44rpx;
  30. }
  31. .auth-content .h2 .p {
  32. text-align: center;
  33. display: block;
  34. }
  35. .auth-content .confirm {
  36. width: 432rpx;
  37. height: 72rpx;
  38. color: #fff;
  39. background: linear-gradient(to left, #ff2756, #ff2f30);
  40. font-size: 32rpx;
  41. line-height: 72rpx;
  42. border-radius: 12rpx;
  43. margin: 0 0 30rpx;
  44. }
  45. .auth-content .close {
  46. position: absolute;
  47. right: 28rpx;
  48. top: 28rpx;
  49. width: 40rpx;
  50. height: 40rpx;
  51. display: flex;
  52. align-items: center;
  53. justify-content: center;
  54. z-index: 9;
  55. }
  56. .auth-content .close .close-img {
  57. width: 26rpx;
  58. height: 26rpx;
  59. }