common.css 902 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. a {
  2. text-decoration: none;
  3. }
  4. ::-webkit-scrollbar {
  5. width: 7px;
  6. }
  7. ::-webkit-scrollbar-thumb {
  8. background: #b9b9b9;
  9. border-radius: 10px;
  10. }
  11. ::-webkit-scrollbar-track-piece {
  12. background: transparent;
  13. }
  14. /*自定义公共样式*/
  15. html, body {
  16. margin: 0;
  17. padding: 0;
  18. height: 100%;
  19. width: 100%;
  20. overflow: hidden;
  21. }
  22. .zy-module {
  23. overflow: hidden;
  24. box-sizing: border-box;
  25. border-radius: 5px;
  26. width: 100%;
  27. background: white;
  28. padding: 20px;
  29. margin-bottom: 20px;
  30. }
  31. .zy-template {
  32. width: 100%;
  33. }
  34. .zy-main-title {
  35. width: 100%;
  36. height: 20px;
  37. font-size: 15px;
  38. overflow: hidden;
  39. line-height: 20px;
  40. margin-bottom: 20px;
  41. box-sizing: border-box;
  42. }
  43. .zy-main-title::after {
  44. border-radius: 5px;
  45. content: "";
  46. width: 4px;
  47. height: 100%;
  48. background: #0054FE;
  49. float: left;
  50. margin-right: 10px;
  51. }