42 lines
472 B
CSS
42 lines
472 B
CSS
body,
|
|
html,
|
|
ul,
|
|
li,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6,
|
|
h1,
|
|
p,
|
|
i {
|
|
margin: 0 ;
|
|
list-style: none;
|
|
padding: 0;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
color: #333;
|
|
user-select: none;
|
|
-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
|
|
}
|
|
|
|
input {
|
|
outline: none;
|
|
}
|
|
|
|
body, html {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
width: 0;
|
|
height: 0;
|
|
}
|
|
|
|
.swiper-wrapper .swiper-slide {
|
|
height: calc(100vh - 1.6rem - 1rem);
|
|
overflow-y: scroll;
|
|
} |