public.css 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. html {
  2. color: #3E3E3E;
  3. font-family: "微软雅黑";
  4. cursor: default;
  5. }
  6. body, ul, ol, li, p, h1, h2, h3, h4, h5, h6, form, fieldset, table, td, img, div, dl, dt, dd, input, figure {
  7. /* margin: 0;
  8. padding: 0;*/
  9. }
  10. body {
  11. -webkit-overflow-scrolling: touch;
  12. text-align: left;
  13. max-height: 100%;
  14. }
  15. a, a:hover {
  16. text-decoration: none;
  17. outline: none;
  18. }
  19. li {
  20. list-style: none
  21. }
  22. img {
  23. border: none;
  24. max-width: 100%;
  25. }
  26. input, select, textarea {
  27. border: none;
  28. outline: none;
  29. background: none
  30. }
  31. em, i {
  32. font-style: normal
  33. }
  34. h1, h2, h3, h4, h5, h6 {
  35. font-weight: normal
  36. }
  37. span, p, h1, h2, h3, h4, h5, h6 {
  38. word-break: break-word;
  39. }
  40. ::-webkit-scrollbar {
  41. width: 8px;
  42. height: 8px;
  43. border-radius: 4px;
  44. background: #535353;
  45. }
  46. ::-webkit-scrollbar-thumb {/*滚动条里面小方块*/
  47. border-radius: 6px;
  48. background-color: #aaaaaa;
  49. }
  50. ::-webkit-scrollbar-track {/*滚动条里面轨道*/
  51. border-radius: 4px;
  52. background-color: #f6f6f6;
  53. }
  54. .ivu-progress-inner{
  55. background-color: rgba(255, 255, 255, 0.15);
  56. }