auth-popup.acss 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. .auth-popup-wrap {
  2. padding: 24rpx 24rpx 100rpx;
  3. background-color: #fff;
  4. overflow: hidden;
  5. }
  6. .auth-popup-wrap .head-layout {
  7. display: flex;
  8. align-items: center;
  9. }
  10. .auth-popup-wrap .head-layout .pic {
  11. width: 48rpx;
  12. height: 48rpx;
  13. background-color: gray;
  14. overflow: hidden;
  15. border-radius: 50%;
  16. }
  17. .auth-popup-wrap .head-layout .name {
  18. margin-left: 16rpx;
  19. font-weight: 700;
  20. font-size: 30rpx;
  21. color: #333333;
  22. }
  23. .auth-popup-wrap .head-layout .shenqing {
  24. margin-left: 40rpx;
  25. font-weight: 400;
  26. font-size: 30rpx;
  27. color: #333333;
  28. }
  29. .auth-popup-wrap .head-layout .info {
  30. font-weight: 500;
  31. font-size: 32rpx;
  32. color: #999999;
  33. margin-right: 10rpx;
  34. }
  35. .auth-popup-wrap .title {
  36. color: #333333;
  37. font-weight: 700;
  38. font-size: 36rpx;
  39. margin-top: 40rpx;
  40. }
  41. .auth-popup-wrap .subtitle {
  42. color: #999999;
  43. font-weight: 400;
  44. font-size: 30rpx;
  45. margin-top: 4rpx;
  46. }
  47. .auth-popup-wrap .content-layout {
  48. background-color: #F5F5F5;
  49. border-radius: 16rpx;
  50. margin-top: 40rpx;
  51. padding: 20rpx 0 20rpx 48rpx;
  52. position: relative;
  53. }
  54. .auth-popup-wrap .content {
  55. color: #333333;
  56. font-weight: 400;
  57. font-size: 30rpx;
  58. }
  59. .auth-popup-wrap .content-layout .content::before {
  60. position: absolute;
  61. content: '';
  62. width: 8rpx;
  63. height: 8rpx;
  64. background-color: #999999;
  65. border-radius: 50%;
  66. top: 36rpx;
  67. left: 24rpx;
  68. }
  69. .auth-popup-wrap .confirm {
  70. color: #333333;
  71. font-weight: 400;
  72. font-size: 30rpx;
  73. margin-top: 36rpx;
  74. }
  75. .auth-popup-wrap .btn-layout {
  76. display: flex;
  77. margin-top: 38rpx;
  78. justify-content: space-between;
  79. }
  80. .auth-popup-wrap button {
  81. flex: auto;
  82. }