html {    font-size: 100px;    overflow-x: hidden;}* {    padding: 0;    margin: 0;}a {    color: inherit;    text-decoration: none;}/* 滚动条整体部分 */::-webkit-scrollbar {    width: 6px; /* 对于垂直滚动条，设置宽度 */    height: 6px; /* 对于水平滚动条，设置高度 */}/* 滚动条的轨道部分 */::-webkit-scrollbar-track {    background: #f1f1f1; /* 轨道背景颜色 */}/* 滚动条的滑块部分 */::-webkit-scrollbar-thumb {    background: #888;    border-radius: 6px;    -webkit-border-radius: 6px;    -moz-border-radius: 6px;    -ms-border-radius: 6px;    -o-border-radius: 6px;}/* 当鼠标悬停在滑块上时 */::-webkit-scrollbar-thumb:hover {    background: #555; /* 改变悬停时的颜色 */}/* 设置滚动条的两端按钮（如果存在） */::-webkit-scrollbar-button {    background: #f1f1f1;    display: none;}/* 设置上下方的扩展部分 */::-webkit-scrollbar-corner {    background: #eee;}.hover-btn {    position: relative;    overflow: hidden;    z-index: 1;}.hover-btn::before {    content: '';    position: absolute;    top: 0;    left: 0;    width: 100%;    height: 100%;    background: radial-gradient(circle, rgba(0, 255, 248, 1), #006CFF);    opacity: 0;    transition: opacity 0.3s ease-in-out;    z-index: -1;    -webkit-transition: opacity 0.3s ease-in-out;    -moz-transition: opacity 0.3s ease-in-out;    -ms-transition: opacity 0.3s ease-in-out;    -o-transition: opacity 0.3s ease-in-out;}.hover-btn:hover::before {    opacity: 1;}