index.wxss 542 B

12345678910111213141516171819202122232425262728293031323334353637
  1. .container {
  2. display: flex;
  3. flex-direction: column;
  4. align-items: center;
  5. justify-content: center;
  6. height: 100vh;
  7. background-color: #f5f5f5;
  8. }
  9. .role-info {
  10. font-size: 18px;
  11. color: #333;
  12. margin-bottom: 20px;
  13. }
  14. .form {
  15. width: 80%;
  16. }
  17. .input {
  18. width: 100%;
  19. margin-bottom: 20px;
  20. padding: 10px;
  21. border: 1px solid #ccc;
  22. border-radius: 4px;
  23. }
  24. .login-button {
  25. width: 100%;
  26. padding: 10px;
  27. background-color: #007AFF;
  28. color: white;
  29. text-align: center;
  30. border: none;
  31. border-radius: 4px;
  32. font-size: 16px;
  33. }