1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- html {
- color: #3E3E3E;
- font-family: "微软雅黑";
- cursor: default;
- }
- body, ul, ol, li, p, h1, h2, h3, h4, h5, h6, form, fieldset, table, td, img, div, dl, dt, dd, input, figure {
- /* margin: 0;
- padding: 0;*/
- }
- body {
- -webkit-overflow-scrolling: touch;
- text-align: left;
- max-height: 100%;
- }
- a, a:hover {
- text-decoration: none;
- outline: none;
- }
- li {
- list-style: none
- }
- img {
- border: none;
- max-width: 100%;
- }
- input, select, textarea {
- border: none;
- outline: none;
- background: none
- }
- em, i {
- font-style: normal
- }
- h1, h2, h3, h4, h5, h6 {
- font-weight: normal
- }
- span, p, h1, h2, h3, h4, h5, h6 {
- word-break: break-word;
- }
- ::-webkit-scrollbar {
- width: 8px;
- height: 8px;
- border-radius: 4px;
- background: #535353;
- }
- ::-webkit-scrollbar-thumb {/*滚动条里面小方块*/
- border-radius: 6px;
- background-color: #aaaaaa;
- }
- ::-webkit-scrollbar-track {/*滚动条里面轨道*/
- border-radius: 4px;
- background-color: #f6f6f6;
- }
- .ivu-progress-inner{
- background-color: rgba(255, 255, 255, 0.15);
- }
|