page { height: 100%; background: #081120; } .wxroom-redirect { width: 100%; height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28rpx; color: #f4f8ff; background: radial-gradient(circle at 18% 12%, rgba(83, 214, 255, 0.14), transparent 28%), linear-gradient(180deg, #0d1b31 0%, #09121f 52%, #050b15 100%); } .wxroom-redirect__spinner { width: 72rpx; height: 72rpx; border-radius: 50%; border: 6rpx solid rgba(255, 255, 255, 0.1); border-top-color: #71c1ff; animation: wxroom-redirect-spin 0.9s linear infinite; } .wxroom-redirect__text { font-size: 30rpx; line-height: 1.4; } @keyframes wxroom-redirect-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }