index.less 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. @import "~@less/mixin.less";
  2. .container {
  3. height: 100%;
  4. // background-color: @ipt-wrap-color;
  5. position: relative;
  6. .left {
  7. position: absolute;
  8. top: 0;
  9. left: 0;
  10. width: 762px;
  11. height: 100%;
  12. border-right: 1px solid #D8D8D8;
  13. }
  14. .right {
  15. position: absolute;
  16. right: 0;
  17. top: 0;
  18. width: 238px;
  19. height: 100%;
  20. }
  21. .modalTop {
  22. height: 46px;
  23. line-height: 46px;
  24. background-color: @ipt-bg-color;
  25. padding: 0 20px;
  26. }
  27. .items {
  28. .search {
  29. font-size: 12px;
  30. float: right;
  31. height: 26px;
  32. line-height: 24px;
  33. border: 1px solid #9C9C9C;
  34. border-radius: 4px;
  35. padding: 0 11px;
  36. margin-top: 10px;
  37. cursor: pointer;
  38. }
  39. .search:hover {
  40. background-color: @blue;
  41. border: 1px solid @blue;
  42. color: #fff;
  43. }
  44. .pubLi {
  45. float: left;
  46. margin-right: 5px;
  47. position: relative;
  48. span {
  49. font-size: 12px;
  50. }
  51. input {
  52. font-size: 12px;
  53. height: 26px;
  54. line-height: 26px;
  55. padding: 0 3px;
  56. box-sizing: border-box;
  57. cursor: pointer;
  58. }
  59. }
  60. .code{
  61. input {
  62. width: 74px;
  63. }
  64. }
  65. .name {
  66. input {
  67. width: 42px;
  68. }
  69. }
  70. .sex {
  71. input {
  72. width: 28px;
  73. }
  74. }
  75. .age {
  76. input {
  77. width: 28px;
  78. }
  79. }
  80. .time {
  81. .timeIpts{
  82. height: 26px;
  83. line-height: 26px;
  84. display: inline-block;
  85. background-color: #fff;
  86. }
  87. input.ipt {
  88. width: 126px;
  89. text-align: center;
  90. }
  91. }
  92. }
  93. .modalRightT{
  94. height: 46px;
  95. line-height: 46px;
  96. background-color: #F0F0F0;
  97. padding: 0 20px;
  98. position: absolute;
  99. width: 100%;
  100. span.tip {
  101. font-size: 12px;
  102. float: left;
  103. }
  104. span.btnS {
  105. font-size: 12px;
  106. float: right;
  107. width: 64px;
  108. height: 26px;
  109. line-height: 26px;
  110. margin-top: 10px;
  111. color: #fff;
  112. text-align: center;
  113. border-radius: 4px;
  114. background-color: @blue;
  115. cursor: pointer;
  116. }
  117. }
  118. .modalTable {
  119. .parentTable {
  120. height: 330px;
  121. overflow: auto;
  122. }
  123. .sonTitle {
  124. height: 46px;
  125. line-height: 46px;
  126. background-color: #F0F0F0;
  127. padding: 0 20px;
  128. .btn {
  129. font-size: 12px;
  130. float: right;
  131. height: 26px;
  132. line-height: 24px;
  133. border: 1px solid #9C9C9C;
  134. border-radius: 4px;
  135. padding: 0 11px;
  136. margin-top: 10px;
  137. cursor: pointer;
  138. &:hover {
  139. background-color: @blue;
  140. border: 1px solid @blue;
  141. color: #fff;
  142. }
  143. }
  144. }
  145. table {
  146. border-collapse: collapse;
  147. tr {
  148. height: 40px;
  149. line-height: 40px;
  150. text-align: center;
  151. td {
  152. overflow: hidden;
  153. text-overflow: ellipsis;
  154. white-space: nowrap;
  155. border: 1px solid #E7EAEB;
  156. padding: 0 5px;
  157. box-sizing: border-box;
  158. }
  159. td.fst {
  160. width: 48px;
  161. max-width: 48px;
  162. }
  163. td.sec {
  164. width: 116px;
  165. max-width: 116px;
  166. }
  167. td.trd {
  168. width: 215px;
  169. max-width: 215px;
  170. cursor: pointer;
  171. }
  172. td.four {
  173. // width: 255px;
  174. }
  175. td.fif {
  176. width: 150px;
  177. max-width: 150px;
  178. }
  179. td.six {
  180. width: 150px;
  181. max-width: 150px;
  182. }
  183. }
  184. .head {
  185. background-color: #EAF7FA;
  186. }
  187. }
  188. }
  189. }