style.scss 538 B

123456789101112131415161718192021222324252627282930313233
  1. .container {
  2. padding: 0 16px;
  3. .cell-item {
  4. margin-top: 16px;
  5. .cell-label {
  6. font-size: 14px;
  7. font-weight: 500;
  8. text-align: left;
  9. span {
  10. color: #ff0000;
  11. }
  12. }
  13. .cell-input {
  14. height: 44px;
  15. background: #f9f9f9;
  16. border-radius: 10px;
  17. margin-top: 12px;
  18. padding: 2px 10px;
  19. box-sizing: border-box;
  20. }
  21. }
  22. .submit {
  23. height: 50px;
  24. background: #05a9e2;
  25. border-radius: 25px;
  26. font-size: 16px;
  27. font-weight: 500;
  28. color: #ffffff;
  29. text-align: center;
  30. line-height: 50px;
  31. margin-top: 44px;
  32. }
  33. }