@charset "utf-8";
/* CSS Document */
/*<style  type="text/css">*/
/*包含body、footer两部分*/
body {
    background-color: aliceblue;
}

/* 滚动条 */
/*chorme浏览器,注意前面没有加类.pre-scrollable，修改的是全局的滚动条*/ 
::-webkit-scrollbar {
    width: 12px;
    height: 10px;
}
::-webkit-scrollbar-thumb {
    border-radius: 12px;
    background-color: #2BC2FF;
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
}
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
    background: #ededed;
    border-radius: 12px;
}
/*IE浏览器*/
.pre-scrollable {
    scrollbar-arrow-color: #2BC2FF;
    scrollbar-face-color: #95E0FF;
    scrollbar-3dlight-color: #2BC2FF;
    scrollbar-helight-color: red;
    scrollbar-shadow-color: gray;
    scrollbar-darkshadow-color: #2BC2FF;
    scrollbar-track-color: gray;
    scrollbar-base-color: gray;
}