cloudPrintTask.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. * {
  2. padding: 0;
  3. border: 0;
  4. margin: 0;
  5. }
  6. ul,
  7. ol,
  8. li {
  9. list-style: none;
  10. }
  11. .hgc_tableWrap {
  12. width: 100%;
  13. display: flex;
  14. border: 1px solid #ddd;
  15. font-size: 14px;
  16. user-seletct: none;
  17. -webkit-user-seletct: none;
  18. -moz-user-seletct: none;
  19. -ms-user-seletct: none;
  20. overflow: hidden;
  21. }
  22. .hgc_tableWrap li {
  23. display: flex;
  24. }
  25. .hgc_tableWrap li:nth-child(2n-1) span {
  26. background: #F9F9F9;
  27. }
  28. .hgc_tableWrap li.title span {
  29. background: #F2F2F2;
  30. border-bottom: 2px solid #ddd;
  31. }
  32. .hgc_tableWrap li span {
  33. padding-left: 10px;
  34. box-sizing: border-box;
  35. height: 40px;
  36. border-right: 1px solid #ddd;
  37. border-bottom: 1px solid #ddd;
  38. color: #707070;
  39. overflow: hidden;
  40. text-overflow: ellipsis;
  41. -webkit-line-clamp: 2;
  42. -webkit-box-orient: vertical;
  43. display: -webkit-box;
  44. word-break: break-all;
  45. }
  46. .hgc_tableWrap li span a {
  47. flex: 1;
  48. }
  49. .hgc_tableWrap .fixedLeft {
  50. width: 400px;
  51. position: relative;
  52. overflow-x: hidden;
  53. overflow-y: hidden;
  54. box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  55. }
  56. .hgc_tableWrap .fixedLeft li span {
  57. text-align: center;
  58. width: 45%;
  59. }
  60. .hgc_tableWrap .fixedLeft li span:nth-child(1) {
  61. width: 10%;
  62. }
  63. .hgc_tableWrap .fixedLeft li span:nth-child(1) input {
  64. float: none;
  65. }
  66. .hgc_tableWrap .content {
  67. flex: 1;
  68. overflow: auto;
  69. }
  70. .hgc_tableWrap .content::-webkit-scrollbar {
  71. display: none;
  72. }
  73. .hgc_tableWrap .content ul li span {
  74. flex: none;
  75. width: 150px;
  76. text-align: center;
  77. }
  78. .hgc_tableWrap .fixedRight {
  79. width: 240px;
  80. position: relative;
  81. overflow-x: hidden;
  82. overflow-y: hidden;
  83. box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  84. }
  85. .hgc_tableWrap .fixedRight li span {
  86. flex: 1;
  87. text-align: center;
  88. }
  89. .hgc_tableWrap .scrollBar {
  90. position: fixed;
  91. width: 100%;
  92. bottom: 0;
  93. left: 0;
  94. height: 20px;
  95. }
  96. .hgc_tableWrap .scrollBar .barTip {
  97. position: fixed;
  98. left: 0;
  99. bottom: 0;
  100. height: 20px;
  101. width: 200px;
  102. border-radius: 20px;
  103. background: #999;
  104. }