style.scss 614 B

1234567891011121314151617181920212223242526272829303132333435363738
  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. .text {
  13. font-size: 14px;
  14. color: #666;
  15. margin-left: 6px;
  16. }
  17. }
  18. .cell-input {
  19. height: 44px;
  20. background: #f9f9f9;
  21. border-radius: 10px;
  22. margin-top: 12px;
  23. padding: 2px 10px;
  24. box-sizing: border-box;
  25. }
  26. }
  27. .submit {
  28. height: 50px;
  29. background: #05a9e2;
  30. border-radius: 25px;
  31. font-size: 16px;
  32. font-weight: 500;
  33. color: #ffffff;
  34. text-align: center;
  35. line-height: 50px;
  36. margin-top: 44px;
  37. }
  38. }