parent
68668bb793
commit
6b8e7676f3
@ -0,0 +1,72 @@
|
||||
/*去除默认样式*/
|
||||
::-webkit-scrollbar {
|
||||
width: 0;
|
||||
height: 1px
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb {
|
||||
border-radius: 5px;
|
||||
-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, .2);
|
||||
background: rgba(0, 0, 0, .2)
|
||||
}
|
||||
|
||||
body, ul, li {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
ul {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
a {
|
||||
color: black;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
text-decoration: none;
|
||||
color: black;
|
||||
}
|
||||
|
||||
/*正常的未被访问过的链接*/
|
||||
a:link {
|
||||
text-decoration: none;
|
||||
|
||||
}
|
||||
/*已经访问过的链接*/
|
||||
a:visited {
|
||||
text-decoration: none;
|
||||
color: black;
|
||||
}
|
||||
/*鼠标划过(停留)的链接*/
|
||||
a:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
/* 正在点击的链接,鼠标在元素上按下还没有松开*/
|
||||
a:active {
|
||||
text-decoration: none;
|
||||
}
|
||||
/* 获得焦点的时候 鼠标松开时显示的颜色*/
|
||||
a:focus {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
/* 轮播图 */
|
||||
.swiper-container {
|
||||
width: 100%;
|
||||
height: 350px;
|
||||
}
|
||||
|
||||
.carousel-img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.bg-gray {
|
||||
background-color: #EEEEEE;
|
||||
}
|
||||
|
||||
.p-10 {
|
||||
padding: 10px 0;
|
||||
}
|
Loading…
Reference in new issue