common.css 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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,
  16. body {
  17. margin: 0;
  18. padding: 0;
  19. height: 100%;
  20. width: 100%;
  21. overflow: hidden;
  22. }
  23. /* 表格样式 */
  24. .zy-table-header-cell {
  25. height: 55px !important;
  26. color: #8A8F99 !important;
  27. font-size: 14px !important;
  28. font-weight: normal !important;
  29. background: #f5f7fa !important;
  30. }
  31. .zy-table-cell {
  32. font-size: 14px !important;
  33. color: #1F2533 !important;
  34. }
  35. .zy-table-pagination {
  36. float: right;
  37. margin-top: 30px;
  38. }
  39. /* 模块通用样式 */
  40. .zy-module {
  41. overflow: hidden;
  42. box-sizing: border-box;
  43. border-radius: 5px;
  44. width: 100%;
  45. background: white;
  46. padding: 20px;
  47. margin-bottom: 20px;
  48. }
  49. .zy-template {
  50. width: 100%;
  51. }
  52. /* 小标题 */
  53. .zy-main-title {
  54. width: 100%;
  55. height: 20px;
  56. font-size: 15px;
  57. overflow: hidden;
  58. line-height: 20px;
  59. margin-bottom: 20px;
  60. box-sizing: border-box;
  61. }
  62. .zy-main-title::after {
  63. border-radius: 5px;
  64. content: "";
  65. width: 4px;
  66. height: 100%;
  67. background: #0054FE;
  68. float: left;
  69. margin-right: 10px;
  70. }
  71. /* 搜索框中表单样式 */
  72. .zy-search-form-item {
  73. width: 250px;
  74. display: inline-block;
  75. margin-right: 30px;
  76. margin-bottom: 10px !important;
  77. }
  78. /*颜色*/
  79. .green {
  80. color: #39b54a;
  81. }
  82. .red {
  83. color: #F56C6C;
  84. }
  85. .warning {
  86. color: #E6A23C;
  87. }