You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
// 引入清除浏览器默认样式文件
|
|
|
|
@import './reset.scss';
|
|
|
|
.banner{
|
|
|
|
width: 100%;
|
|
|
|
height: 410px;
|
|
|
|
background: url('../assets/images/banner2.png') no-repeat;
|
|
|
|
background-size: cover
|
|
|
|
}
|
|
|
|
/* 设置滚动条的宽度和颜色 */
|
|
|
|
::-webkit-scrollbar {
|
|
|
|
width: 10px; /* 滚动条宽度 */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* 设置滚动条的轨道背景色 */
|
|
|
|
::-webkit-scrollbar-track {
|
|
|
|
background-color: #f1f1f1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* 设置滚动条上下按钮的样式 */
|
|
|
|
::-webkit-scrollbar-button {
|
|
|
|
background-color: #ccc;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* 设置滚动条的滑块样式 */
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
|
|
background-color: #ccc;
|
|
|
|
border-radius: 5px; /* 滑块圆角 */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* 设置滑块在hover状态下的样式 */
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
|
|
background-color: #555;
|
|
|
|
}
|