auth.wxss 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. /* component/auth/auth.wxss */
  2. .auth-layer {
  3. position: fixed;
  4. height: calc(612rpx + env(safe-area-inset-bottom));
  5. background: #FFFFFF;
  6. border-radius: 8px 8px 0px 0px;
  7. bottom: 0;
  8. left: 0;
  9. width: 100%;
  10. z-index: 99999999999999;
  11. padding: 52rpx 36rpx 32rpx;
  12. box-sizing: border-box;
  13. display: flex;
  14. flex-direction: column;
  15. padding-bottom: calc(env(safe-area-inset-bottom) + 36rpx);
  16. }
  17. .auth-bg {
  18. width: 100vw;
  19. height: 100vh;
  20. background-color: rgba(0, 0, 0, 0.3);
  21. z-index: 9999999999;
  22. position: fixed;
  23. left: 0;
  24. top: 0;
  25. }
  26. .auth-layer .title {
  27. font-size: 30rpx;
  28. color: #111111;
  29. line-height: 42rpx;
  30. }
  31. .auth-layer .content {
  32. height: 406rpx;
  33. display: flex;
  34. flex-direction: column;
  35. align-items: center;
  36. }
  37. .auth-layer .content cover-image {
  38. width: 165rpx;
  39. height: 120rpx;
  40. }
  41. .auth-layer .content .text {
  42. font-size: 26rpx;
  43. color: #111111;
  44. padding: 28rpx 0 36rpx;
  45. }
  46. .xian {
  47. align-self: stretch;
  48. height: 1px;
  49. background-color: rgba(0, 0, 0, 0.1);
  50. }
  51. .auth-layer .authul {
  52. align-self: stretch;
  53. flex: 1;
  54. }
  55. .auth-layer .authul .authli {
  56. text-align: center;
  57. font-size: 26rpx;
  58. color: #79868F;
  59. margin-top: 30rpx;
  60. }
  61. .auth-layer .button {
  62. line-height: 80rpx;
  63. font-size: 30rpx;
  64. color: #fff;
  65. background: #07C563;
  66. opacity: 1;
  67. border-radius: 4px;
  68. width: 100%;
  69. text-align: center;
  70. }