/* Add here all your css styles (customizations) */



::-webkit-input-placeholder { /* WebKit browsers */
    color: #a3a3a3;
}

::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #a3a3a3;
}

:-ms-input-placeholder { /* Internet Explorer 10+ */
    color: #a3a3a3;
}
/*滚动条开始*/
/* ::-webkit-scrollbar {
                  width: 15px;
            }  这是针对缺省样式 (必须的)*/

/* Let's get this party started */
::-webkit-scrollbar {
    width: 6px;
}

/* Track */
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(255,255,255,0.3);
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: rgba(250, 250, 250,0.5);
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
}

    ::-webkit-scrollbar-thumb:window-inactive {
        background: rgba(0,0,0,0.4);
    }
/*滚动条结束*/