*{
    margin: 0;
    padding: 0;
    font-family:"Source Han Sans CN";
}
*::-webkit-scrollbar{ 
    width: 0px;
    height: 0px;
    background-color: #ffffff; 
    /* height: 10px; */
}
/*定义滚动条轨道 内阴影+圆角*/
*::-webkit-scrollbar-track{ 
    -webkit-box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background-color: #ffffff; 
}	
/*定义滑块 内阴影+圆角*/
*::-webkit-scrollbar-thumb{
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(255,255,255,.3);
    background-color: #D8D8D8;
}	
body::-webkit-scrollbar { 
    width: 5px;
    height: 5px;
    background-color: #ffffff; 
}
input:-internal-autofill-previewed,
input:-internal-autofill-selected {
    /* -webkit-text-fill-color: #FFFFFF !important; */
    transition: background-color 5000s ease-in-out 0s !important;
}