index.scss 751 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. @import "./common.scss";
  2. @import "./btn.scss";
  3. // // @import "./scrollbar.scss";
  4. // @import "./scss/index-ic.css";
  5. // @import "./scss/iconFont.css";
  6. #app {
  7. height: 100%;
  8. width: 100%;
  9. background-color: #fff;
  10. position: fixed;
  11. width: 100%;
  12. height: 100%;
  13. overflow: hidden;
  14. }
  15. .box-home {
  16. width: 1196px;
  17. margin: 0 auto;
  18. }
  19. .scale-big {
  20. &:hover {
  21. transition: all 0.3s ease-in-out;
  22. transform: scale(1.05);
  23. }
  24. }
  25. .scale-big-img {
  26. &:hover {
  27. img {
  28. transition: all 0.6s ease-in-out;
  29. transform: scale(1.05);
  30. }
  31. }
  32. }
  33. input[type="number"] {
  34. -moz-appearance: textfield;
  35. }
  36. input[type="number"]::-webkit-inner-spin-button,
  37. input[type="number"]::-webkit-outer-spin-button {
  38. -webkit-appearance: none;
  39. margin: 0;
  40. }