index.less 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. @import './reset.less';
  2. .red{
  3. color: #FF4D4F;
  4. }
  5. .blue{
  6. color: #5B8FEE;
  7. }
  8. .container{
  9. min-width: 360px;
  10. }
  11. .content{
  12. background: #E2E5EF;
  13. margin: 6px 10px;
  14. border: 1px solid #E2E5EF;
  15. }
  16. .flawSumup{
  17. /*padding-bottom: 10px;*/
  18. .label-name{
  19. font-weight: bold;
  20. }
  21. i{
  22. display: inline-block;
  23. width: 16px;
  24. height: 18px;
  25. vertical-align: middle;
  26. margin-right: 2px;
  27. }
  28. .iselect{
  29. background: url("../images/iselect.png") no-repeat;
  30. }
  31. .home{
  32. background: url("../images/home.png") no-repeat;
  33. }
  34. .select{
  35. background: url("../images/select.png") no-repeat;
  36. }
  37. .detail{
  38. background: url("../images/detail.png") no-repeat;
  39. }
  40. table{
  41. width: 360px;
  42. margin:6px 15px 8px;
  43. };
  44. td{
  45. height: 40px;
  46. line-height: 40px;
  47. white-space: nowrap;
  48. }
  49. }
  50. .box{
  51. background: #fff;
  52. }
  53. .title{
  54. height: 44px;
  55. line-height: 44px;
  56. padding: 0 15px;
  57. border-bottom: 1px solid #E2E5EF;
  58. .line{
  59. display: inline-block;
  60. width: 4px;
  61. height: 18px;
  62. background: #5799CC;
  63. position: relative;
  64. top: 4px;
  65. }
  66. .titleTxt{
  67. font-size:16px;
  68. font-weight:bold;
  69. color: #333;
  70. }
  71. }
  72. .sum-box{
  73. display: none;
  74. }
  75. .flawList{
  76. padding: 0 15px 60px;
  77. table{
  78. width: 100%;
  79. margin-top: 9px;
  80. thead th{
  81. background: #5B8FEE;
  82. color: #fff;
  83. height: 49px;
  84. border: 1px #E2E5EF solid;
  85. font-size: 16px;
  86. white-space: nowrap;
  87. &:last-child{
  88. border-right: none;
  89. }
  90. }
  91. td{
  92. white-space: nowrap;
  93. padding:10px 5px;
  94. border: 1px #E2E5EF solid;
  95. &:nth-child(2){
  96. white-space: unset;
  97. }
  98. img{
  99. vertical-align: middle;
  100. margin-right: 5px;
  101. }
  102. }
  103. }
  104. }
  105. .flawItemIcon{
  106. width: 16px;
  107. }
  108. .flawItemMsgBox{
  109. box-sizing: border-box;
  110. }
  111. .flawItemScore{
  112. text-align: right;
  113. height: 20px;
  114. line-height: 20px;
  115. margin-top: -10px;
  116. }
  117. .flawItemNum{
  118. display: inline-block;
  119. text-align: left;
  120. color: #FF4D4F;
  121. margin-right: 5px;
  122. }
  123. .empty{
  124. text-align: center;
  125. margin-top: 100px;
  126. }
  127. .emptyTxt{
  128. margin-top: 15px;
  129. font-size: 12px;
  130. text-indent: 10px;
  131. color: #aaa;
  132. }
  133. .copy-right{
  134. position: fixed;
  135. bottom: 0;
  136. width: 100%;
  137. text-align: center;
  138. font-size: 14px;
  139. color: #000;
  140. opacity: 0.85;
  141. height: 50px;
  142. line-height: 50px;
  143. background: #fff;
  144. box-shadow: 0px -1px 6px rgba(0, 0, 0, 0.16);
  145. }