qaPage.less 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. .wrappper{
  2. width: 100%;
  3. min-width: 1200px;
  4. .content{
  5. position: relative;
  6. width: 1200px;
  7. left: 50%;
  8. margin: 10px 0 0 -600px;
  9. cursor: default;
  10. height: 100%;
  11. border: 1px solid #f4f4f4;
  12. border-radius: 2px;
  13. }
  14. }
  15. .contentTitle{
  16. font-size: 16px;
  17. height: 44px;
  18. line-height: 44px;
  19. border-bottom: 1px solid #E6E6E6;
  20. font-weight: 600;
  21. color: #333;
  22. position: relative;
  23. }
  24. .example{
  25. color: #777;
  26. font-size: 12px;
  27. line-height: 18px;
  28. margin-top: 15px;
  29. }
  30. .contentInfoBox{
  31. width: 1160px;
  32. padding: 0 20px;
  33. background: #fff;
  34. margin: 0 0 10px 0;
  35. position: relative;
  36. }
  37. .infoBox{
  38. display: block;
  39. }
  40. .infoTxt{
  41. min-height: 33px;
  42. width: 1160px;
  43. font-size: 14px;
  44. color: #333;
  45. resize: none;
  46. line-height: 18px;
  47. font-family: "Microsoft Yahei", Verdana, Simsun, "Segoe UI Web Light", "Segoe UI Light", "Segoe UI Web Regular", "Segoe UI", "Segoe UI Symbol", "Helvetica Neue", Arial;
  48. // outline: none;
  49. padding: 10px;
  50. background: #F7F8FA;
  51. border: 1px solid #ccc;
  52. box-sizing: border-box;
  53. margin: 15px 0 0 0;
  54. }
  55. .infoTxt:focus{
  56. border: 1px solid #58a6e7;
  57. outline: 0;
  58. -webkit-box-shadow:#58a6e7 0px 0px 2px;
  59. -moz-box-shadow: #58a6e7 0px 0px 2px;
  60. box-shadow: #58a6e7 0px 0px 2px;
  61. }
  62. .loading{
  63. color: #aaa;
  64. text-align: center;
  65. margin-top:50px;
  66. font-size:14px;
  67. }
  68. .disabled{
  69. opacity: 0.5;
  70. filter: "alpha(opacity=50)";
  71. filter: alpha(opacity=50);
  72. }
  73. input::-webkit-input-placeholder{
  74. color: #ccc;
  75. }
  76.     input:-moz-placeholder,textarea:-moz-placeholder{
  77. color: #ccc;
  78. }
  79.     input::-moz-placeholder,textarea::-moz-placeholder{
  80. color: #ccc;
  81. }
  82.     input:-ms-input-placeholder,textarea:-ms-input-placeholder{
  83. color: #ccc;
  84. }
  85. .btnBox{
  86. height: 36px;
  87. padding: 20px 0;
  88. position: relative;
  89. }
  90. .btn{
  91. position: absolute;
  92. width: 60px;
  93. left: 50%;
  94. margin-left: -48px;
  95. background-color: #5A8EEE;
  96. border-color: #5A8EEE;
  97. color: #fff;
  98. padding: 9px 20px;
  99. text-align: center;
  100. border-radius:4px;
  101. font-size: 14px;
  102. display: inline-block;
  103. cursor: pointer;
  104. }
  105. .resultBox{
  106. white-space: pre-wrap;
  107. min-height: 155px;
  108. line-height: 21px;
  109. padding: 10px 0 20px;
  110. width: 1160px;
  111. position: relative;
  112. font-size: 14px;
  113. color: #333;
  114. // css保留换行符
  115. // white-space: pre-line;
  116. }
  117. .empty{
  118. position: absolute;
  119. // display: none;
  120. width: 120px;
  121. height: 140px;
  122. top: 50%;
  123. left: 50%;
  124. margin: -50px 0 0 -51px;
  125. // display: none;
  126. .emptyImg{
  127. position: relative;
  128. width: 100px;
  129. left: 10px;
  130. }
  131. .emptyTxt{
  132. width: 120px;
  133. font-size:12px;
  134. margin: 20px 0 0 0;
  135. text-align: center;
  136. color: #aaa;
  137. }
  138. }
  139. .footer{
  140. position: absolute;
  141. width: 100%;
  142. bottom: 10px;
  143. text-align: center;
  144. font-size: 12px;
  145. color: #ccc;
  146. }