index.less 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. @import "~@less/mixin.less";
  2. .mainHistory {
  3. position: fixed;
  4. margin-left: -500px;
  5. left: 50%;
  6. width: 1000px;
  7. top: 7%;
  8. bottom: 7%;
  9. height: 86%;
  10. background-color: #fff;
  11. z-index: 242;
  12. overflow: hidden;
  13. .close {
  14. position: absolute;
  15. top: 0;
  16. right: 0;
  17. cursor: pointer;
  18. }
  19. .mainHistoryLeft {
  20. width: 300px;
  21. height: 100%;
  22. background: #d2d1d1;
  23. position: relative;
  24. float: left;
  25. .title {
  26. height: 80px;
  27. line-height: 80px;
  28. padding: 0 20px;
  29. position: absolute;
  30. top: 0;
  31. left: 0;
  32. width: 100%;
  33. background: #d2d1d1;
  34. }
  35. .his {
  36. font-size: 18px;
  37. }
  38. .sort {
  39. float: right;
  40. cursor: pointer;
  41. img {
  42. vertical-align: middle;
  43. width: 15px;
  44. height: 15px;
  45. }
  46. }
  47. .lists {
  48. padding-top: 80px;
  49. box-sizing: border-box;
  50. overflow-y: auto;
  51. height: 100%;
  52. span {
  53. display: inline-block;
  54. max-width: 130px;
  55. overflow: hidden;
  56. text-overflow: ellipsis;
  57. white-space: nowrap;
  58. }
  59. li {
  60. height: 54px;
  61. line-height: 54px;
  62. padding: 0 10px;
  63. font-size: 14px;
  64. cursor: pointer;
  65. border: 1px solid transparent;
  66. }
  67. li:hover {
  68. border: 1px solid #66afe9;
  69. border: 1px solid #66afe9\0;
  70. }
  71. .time {
  72. float: right;
  73. }
  74. .bgc {
  75. background-color: #fff;
  76. }
  77. .quote {
  78. width: 50px;
  79. height: 22px;
  80. line-height: 22px;
  81. border-radius: 15px;
  82. border: 0 none;
  83. color: #fff;
  84. background-color: @template-color;
  85. float: right;
  86. margin-top: 16px;
  87. font-size: 12px;
  88. // display: none;
  89. outline: none;
  90. margin-left: 10px;
  91. }
  92. .quoteShow {
  93. display: block;
  94. }
  95. .quoteHide {
  96. display: none;
  97. }
  98. }
  99. }
  100. .mainHistoryRight {
  101. // margin-left: 300px;
  102. // position: absolute;
  103. overflow: auto;
  104. height: 100%;
  105. padding-top: 40px;
  106. // top: 42px;
  107. float: left;
  108. }
  109. .closeHis {
  110. width: 700px;
  111. height: 40px;
  112. margin-left: 300px;
  113. position: absolute;
  114. z-index: 9999;
  115. // border-bottom: 1px solid #EAEDF1;
  116. }
  117. }