* {
    box-sizing: border-box;
}

/* 整体滚动条样式 */
::-webkit-scrollbar {
    width: 6px; /* 滚动条的宽度 */
    height: 6px; /* 横向滚动条的高度 */
}

/* 轨道样式 */
::-webkit-scrollbar-track {
    background: #00000008; /* 轨道的背景颜色 */
    border-radius: 3px; /* 轨道的圆角 */
    width: 6px; /* 滚动条的宽度 */
}

/* 滑块样式 */
::-webkit-scrollbar-thumb {
    background: #00000020; /* 滑块颜色 */
    border-radius: 3px; /* 滑块的圆角 */
}

    /* 滑块悬停样式 */
    ::-webkit-scrollbar-thumb:hover {
        background: #00000040; /* 滑块悬停时的背景颜色 */
    }

/* 可选：角落样式 */
::-webkit-scrollbar-corner {
    background: #00000000; /* 滚动条角落的背景颜色 */
}

/* 可选：按钮样式 */
::-webkit-scrollbar-button {
    background: #00000000; /* 滚动条按钮的背景颜色 */
    height: 0px;
    width: 0px;
}

input:focus {
    outline: none; /* 移除焦点时的轮廓 */
}

textarea:focus {
    outline: none; /* 移除焦点时的轮廓 */
}

select:focus {
    outline: none; /* 移除焦点时的轮廓 */
}

div:focus {
    outline: none; /* 移除焦点时的轮廓 */
}

img:focus {
    outline: none; /* 移除焦点时的轮廓 */
}

/* 超链接标签 */
.linkLabel{
    color:dodgerblue;
    cursor:pointer;
}
    .linkLabel:hover {
        text-decoration: underline; /* 鼠标悬浮时添加下划线 */
    }