qaPage.less 2.7 KB

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