qaPage.less 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. .qaPageWrappper{
  2. .titleTxt{
  3. text-indent: 10px;
  4. }
  5. }
  6. .wrappper{
  7. width: 100%;
  8. min-width: 1200px;
  9. .content{
  10. width: 1200px;
  11. margin: 10px auto 0;
  12. height: 100%;
  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. .loading{
  65. color: #aaa;
  66. text-align: center;
  67. margin-top:50px;
  68. font-size:14px;
  69. }
  70. .disabled{
  71. opacity: 0.5;
  72. filter: "alpha(opacity=50)";
  73. filter: alpha(opacity=50);
  74. }
  75. input::-webkit-input-placeholder{
  76. color: #afe0ed;
  77. }
  78.     input:-moz-placeholder,textarea:-moz-placeholder{
  79. color: #afe0ed;
  80. }
  81.     input::-moz-placeholder,textarea::-moz-placeholder{
  82. color: #afe0ed;
  83. }
  84.     input:-ms-input-placeholder,textarea:-ms-input-placeholder{
  85. color: #afe0ed;
  86. }
  87. .btnBox{
  88. height: 36px;
  89. padding: 20px 0;
  90. position: relative;
  91. }
  92. .btn{
  93. position: absolute;
  94. width: 60px;
  95. left: 50%;
  96. margin-left: -48px;
  97. background: linear-gradient(90deg, #0069E6 0%, #00B4FF 100%);
  98. color: #fff;
  99. padding: 9px 20px;
  100. text-align: center;
  101. border-radius:4px;
  102. font-size: 14px;
  103. display: inline-block;
  104. cursor: pointer;
  105. }
  106. .resultBox{
  107. white-space: pre-wrap;
  108. min-height: 185px;
  109. line-height: 21px;
  110. padding: 10px 0 20px;
  111. width: 100%;
  112. position: relative;
  113. font-size: 14px;
  114. color: #fff;
  115. // css保留换行符
  116. // white-space: pre-line;
  117. }
  118. .empty{
  119. position: absolute;
  120. height: 140px;
  121. top: 50%;
  122. left: 50%;
  123. margin: -50px 0 0 -51px;
  124. // display: none;
  125. .emptyImg{
  126. position: relative;
  127. left: 10px;
  128. }
  129. .emptyTxt{
  130. font-size:12px;
  131. margin: 20px 0 0 0;
  132. text-align: center;
  133. color: #fff;
  134. }
  135. }
  136. .footer{
  137. width: 100%;
  138. margin: 24px 0;
  139. text-align: center;
  140. font-size: 12px;
  141. color: #A7CFFC;
  142. }