/* login.wxss */ .container { display: flex; flex-direction: column; align-items: center; justify-content: space-between; height: 100vh; padding: 60rpx 40rpx; box-sizing: border-box; background-color: #f8f8f8; } .logo-container { display: flex; flex-direction: column; align-items: center; margin-top: 80rpx; } .logo { width: 180rpx; height: 180rpx; margin-bottom: 20rpx; } .app-name { font-size: 36rpx; font-weight: bold; color: #333; } .login-container { width: 100%; display: flex; flex-direction: column; align-items: center; margin-bottom: 100rpx; } .login-title { font-size: 48rpx; font-weight: bold; color: #333; margin-bottom: 20rpx; } .login-subtitle { font-size: 28rpx; color: #666; margin-bottom: 80rpx; } .login-button { width: 80%; height: 88rpx; border-radius: 44rpx; font-size: 32rpx; display: flex; align-items: center; justify-content: center; } .login-button.loading { background-color: #8cc4ff; } .loading-container { display: flex; align-items: center; justify-content: center; } .loading-icon { width: 36rpx; height: 36rpx; margin-right: 10rpx; border: 4rpx solid #ffffff; border-radius: 50%; border-top-color: transparent; animation: spin 1s linear infinite; } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } .privacy-policy { margin-top: 40rpx; font-size: 24rpx; color: #999; } .policy-link { color: #1890ff; display: inline; }