123456789101112131415161718192021222324252627282930313233343536373839404142 |
- @import "./common.scss";
- @import "./btn.scss";
- // // @import "./scrollbar.scss";
- // @import "./scss/index-ic.css";
- // @import "./scss/iconFont.css";
- #app {
- height: 100%;
- width: 100%;
- background-color: #fff;
- position: fixed;
- width: 100%;
- height: 100%;
- overflow: hidden;
- }
- .box-home {
- width: 1196px;
- margin: 0 auto;
- }
- .scale-big {
- &:hover {
- transition: all 0.3s ease-in-out;
- transform: scale(1.05);
- }
- }
- .scale-big-img {
- &:hover {
- img {
- transition: all 0.6s ease-in-out;
- transform: scale(1.05);
- }
- }
- }
- input[type="number"] {
- -moz-appearance: textfield;
- }
- input[type="number"]::-webkit-inner-spin-button,
- input[type="number"]::-webkit-outer-spin-button {
- -webkit-appearance: none;
- margin: 0;
- }
|