/* 自己编写的CSS */

.link-title{
    color: darkgray;
    margin: 20px 1px 20px 25px;
    font-size: 24px;
    border-left: 3px solid #0084ff;
    padding-top: 10px;
    padding-bottom: 10px;
}
.tool-bar{
    margin: 20px 50px 20px 40px;
}
.tool-bar .menus{
    display: flex;
}
.tool-bar .menu-item{
    background: #f5f5f5;
    color: #667;
    border-radius: 13px;
    cursor: pointer;
    font-size: 15px;
    height: 26px;
    line-height: 27px;
    padding: 0 12px;
    margin-right: 10px;
}
.tool-bar .menu-item:hover{
    background-color: #eaeaea;
}
.tool-bar .active{
    color: #fff;
    background-color: #0084ff;
}

/* 修改样式 */

.banner-title.banner-title-index {
    height: 90px;
}

/* 滚动条样式 */
::-webkit-scrollbar {
    /*滚动条整体样式*/
    width : 5px;  /*高宽分别对应横竖滚动条的尺寸*/
    height: 1px;
}
::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    border-radius: 3px;
    box-shadow   : inset 0 0 5px rgba(0, 0, 0, 0.2);
    background   : #0084ff;
}
::-webkit-scrollbar-track {
    /*滚动条里面轨道*/
    box-shadow   : inset 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    background   : #ededed;
}
