37 lines
688 B
CSS
37 lines
688 B
CSS
body,ul,li,h1,h2,h3,h4,h5,h6,p{
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
}
|
|
a {
|
|
text-decoration: none;
|
|
color: #000;
|
|
-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
|
|
-webkit-user-select: none;
|
|
-moz-user-focus: none;
|
|
-moz-user-select: none;
|
|
}
|
|
body,html,.content,.s-container,.s-wrapper {
|
|
height: 100%;
|
|
}
|
|
.swiper-dot {
|
|
background: #787777 !important;
|
|
}
|
|
.swiper-active {
|
|
background: #fb7299 !important;
|
|
}
|
|
|
|
.s-container {
|
|
overflow: hidden;
|
|
position: relative;
|
|
}
|
|
.s-wrapper {
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
.s-slide {
|
|
float: left;
|
|
height: calc(100% - 1.6rem - 1rem);
|
|
overflow-y: scroll;
|
|
margin-top: 1.6rem;
|
|
} |