main.scss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. $font-family: 12px/1.5 "Microsoft YaHei",tahoma,arial,"宋体";;
  2. $font-size: 10px !default;
  3. $mian-color:#fff;
  4. body,
  5. div,
  6. dl,
  7. dt,
  8. dd,
  9. ul,
  10. ol,
  11. li,
  12. h1,
  13. h2,
  14. h3,
  15. h4,
  16. h5,
  17. h6,
  18. pre,
  19. code,
  20. form,
  21. fieldset,
  22. legend,
  23. input,
  24. textarea,
  25. p,
  26. blockquote,
  27. th,
  28. td {
  29. margin: 0;
  30. padding: 0;
  31. color: #666;
  32. }
  33. table {
  34. border-collapse: collapse;
  35. border-spacing: 0
  36. }
  37. ::-webkit-scrollbar {
  38. width:8px; background:#f5f6f9;
  39. }
  40. ::-webkit-scrollbar-thumb {
  41. background:#d8dce5; border:1px solid #d8dce5; border-width:0 1px;
  42. }
  43. fieldset,
  44. img {
  45. border: 0
  46. }
  47. address,
  48. caption,
  49. cite,
  50. code,
  51. dfn,
  52. em,
  53. strong,
  54. th,
  55. var {
  56. font-style: normal;
  57. font-weight: 400
  58. }
  59. ol,
  60. ul,li {
  61. list-style: none
  62. }
  63. caption,
  64. th {
  65. text-align: left
  66. }
  67. h1,
  68. h2,
  69. h3,
  70. h4,
  71. h5,
  72. h6 {
  73. font-size: 100%;
  74. font-weight: 400
  75. }
  76. abbr,
  77. acronym {
  78. border: 0;
  79. font-variant: normal
  80. }
  81. sup {
  82. vertical-align: text-top
  83. }
  84. sub {
  85. vertical-align: text-bottom
  86. }
  87. input,
  88. textarea,
  89. select {
  90. font-family: inherit;
  91. font-size: inherit;
  92. font-weight: inherit
  93. }
  94. textarea {
  95. resize: none
  96. }
  97. legend {
  98. color: #000
  99. }
  100. a {
  101. color: #0068b7;
  102. outline: none;
  103. text-decoration: none
  104. }
  105. body {
  106. background: #fff;
  107. color: #333;
  108. font: $font-family ;
  109. }
  110. input::-ms-clear {
  111. display: none
  112. }
  113. :focus {
  114. outline: 0
  115. }
  116. .clearfix {
  117. :before,
  118. :after {
  119. content: "";
  120. display: table
  121. }
  122. :after {
  123. clear: both
  124. }
  125. }
  126. .ellipsics{ word-break: break-word;
  127. text-overflow: ellipsis;
  128. white-space: inherit;
  129. word-spacing: normal;
  130. overflow:hidden;
  131. }
  132. .y-row{
  133. flex: 1;
  134. display: flex;
  135. flex-direction: row;
  136. flex-wrap: nowrap;
  137. width: 100%;
  138. .column {
  139. flex: 1;
  140. display: block;
  141. }
  142. .initial{
  143. display: block;
  144. flex: initial;
  145. }
  146. }
  147. #drap_file{
  148. position: absolute;
  149. top: 0;
  150. left: 0;
  151. width: 100%;
  152. height: 100%;
  153. display: none;
  154. }