input::-webkit-scrollbar {/*滚动条整体样式*
/ 8px; /*高宽分别对应横竖滚动条的尺寸*/
height: 4px;
}
input::-webkit-scrollbar-thumb {/*滚动条里面小方块*/
border-radius: 5px;
background: rgba(0,0,0,0.2);
}
input::-webkit-scrollbar-track {/*滚动条里面轨道*/
border-radius: 0;
background: rgba(0,0,0,0);
}