common.css 630 B

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