login.wxss 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. /* 返回按钮 */
  2. .back-button.data-v-cdfe2409 {
  3. position: absolute;
  4. top: 80rpx;
  5. left: 30rpx;
  6. z-index: 10;
  7. display: flex;
  8. align-items: center;
  9. padding: 12rpx 24rpx;
  10. background: rgba(255, 255, 255, 0.2);
  11. border-radius: 50rpx;
  12. backdrop-filter: blur(10rpx);
  13. }
  14. .back-icon.data-v-cdfe2409 {
  15. font-size: 32rpx;
  16. color: #fff;
  17. margin-right: 8rpx;
  18. font-weight: bold;
  19. }
  20. .back-text.data-v-cdfe2409 {
  21. font-size: 28rpx;
  22. color: #fff;
  23. }
  24. .login-container.data-v-cdfe2409 {
  25. min-height: 100vh;
  26. background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  27. display: flex;
  28. flex-direction: column;
  29. align-items: center;
  30. justify-content: center;
  31. padding: 40rpx;
  32. position: relative;
  33. overflow: hidden;
  34. }
  35. /* 背景装饰 */
  36. .bg-decoration.data-v-cdfe2409 {
  37. position: absolute;
  38. top: 0;
  39. left: 0;
  40. right: 0;
  41. bottom: 0;
  42. z-index: 0;
  43. }
  44. .circle.data-v-cdfe2409 {
  45. position: absolute;
  46. border-radius: 50%;
  47. background: rgba(255, 255, 255, 0.1);
  48. }
  49. .circle-1.data-v-cdfe2409 {
  50. width: 400rpx;
  51. height: 400rpx;
  52. top: -100rpx;
  53. right: -100rpx;
  54. }
  55. .circle-2.data-v-cdfe2409 {
  56. width: 300rpx;
  57. height: 300rpx;
  58. bottom: -50rpx;
  59. left: -50rpx;
  60. }
  61. /* 头部 */
  62. .header.data-v-cdfe2409 {
  63. display: flex;
  64. flex-direction: column;
  65. align-items: center;
  66. margin-bottom: 120rpx;
  67. z-index: 1;
  68. }
  69. .logo.data-v-cdfe2409 {
  70. width: 160rpx;
  71. height: 160rpx;
  72. margin-bottom: 40rpx;
  73. border-radius: 30rpx;
  74. background: #fff;
  75. box-shadow: 0 10rpx 40rpx rgba(0, 0, 0, 0.1);
  76. }
  77. .title.data-v-cdfe2409 {
  78. font-size: 48rpx;
  79. font-weight: bold;
  80. color: #fff;
  81. margin-bottom: 16rpx;
  82. }
  83. .subtitle.data-v-cdfe2409 {
  84. font-size: 28rpx;
  85. color: rgba(255, 255, 255, 0.8);
  86. }
  87. /* 登录按钮区域 */
  88. .login-actions.data-v-cdfe2409 {
  89. width: 100%;
  90. z-index: 1;
  91. }
  92. .login-btn.data-v-cdfe2409 {
  93. width: 100%;
  94. height: 96rpx;
  95. border-radius: 48rpx;
  96. display: flex;
  97. align-items: center;
  98. justify-content: center;
  99. font-size: 32rpx;
  100. font-weight: 500;
  101. margin-bottom: 40rpx;
  102. border: none;
  103. box-shadow: 0 8rpx 24rpx rgba(0, 0, 0, 0.15);
  104. }
  105. .primary-btn.data-v-cdfe2409 {
  106. background: #fff;
  107. color: #667eea;
  108. }
  109. .btn-icon.data-v-cdfe2409 {
  110. font-size: 40rpx;
  111. margin-right: 16rpx;
  112. }
  113. .btn-text.data-v-cdfe2409 {
  114. font-size: 32rpx;
  115. }
  116. /* 用户协议 */
  117. .agreement.data-v-cdfe2409 {
  118. margin-top: 60rpx;
  119. }
  120. .agreement-label.data-v-cdfe2409 {
  121. display: flex;
  122. align-items: flex-start;
  123. }
  124. .agreement-text.data-v-cdfe2409 {
  125. font-size: 24rpx;
  126. color: rgba(255, 255, 255, 0.9);
  127. line-height: 1.6;
  128. margin-left: 12rpx;
  129. }
  130. .link.data-v-cdfe2409 {
  131. color: #fff;
  132. text-decoration: underline;
  133. }