You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

lr-reportTemplate.css 4.6 KiB

4 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  1. .ui-report {
  2. display: inline-block;
  3. width: 100%;
  4. position: relative;
  5. }
  6. .ui-report .lr-layout-wrap {
  7. border: 0px;
  8. background-color: #F5F5F5;
  9. box-shadow: none;
  10. }
  11. .ui-report .lr-layout-tool {
  12. padding: 0;
  13. border: 1px solid #cfcfcf;
  14. box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  15. background-color: #fff;
  16. }
  17. .ui-report .lr-layout-grid {
  18. margin-top: 5px;
  19. background: #fff;
  20. padding: 15px;
  21. box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  22. border: 1px solid #cfcfcf;
  23. }
  24. .ui-report .lr-layout-grid .grid-title {
  25. font-size: 22px;
  26. text-align: center;
  27. width: 100%;
  28. color: #444;
  29. }
  30. .ui-report .lr-layout-grid .grid-subtitle {
  31. width: 100%;
  32. text-align: left;
  33. padding: 5px 0;
  34. }
  35. .ui-report .jfgrid-layout {
  36. border: 1px solid #ccc;
  37. }
  38. .ui-report .jfgrid-border {
  39. background-color: #fff;
  40. }
  41. .ui-report .jfgrid-head {
  42. background-color: #fff;
  43. }
  44. .ui-report .jfgrid-head-cell {
  45. border-bottom: 1px solid #ccc;
  46. border-right: 1px solid #ccc;
  47. }
  48. .ui-report .jfgrid-data-cell {
  49. border-bottom: 1px solid #ccc;
  50. border-right: 1px solid #ccc;
  51. }
  52. .price-box {
  53. width: 860px;
  54. margin-left: auto;
  55. margin-right: auto;
  56. border: 1px solid #ddd;
  57. box-shadow: rgb(189, 189, 189) 0px 0px 10px;
  58. background: #fff;
  59. padding: 50px;
  60. padding-top: 20px;
  61. margin-top: 25px;
  62. padding-bottom: 0px;
  63. }
  64. .price-box .price-title {
  65. font-size: 28px;
  66. text-align: center;
  67. line-height: 60px;
  68. font-weight: bold;
  69. color: #333;
  70. }
  71. .price-box .price-subtitle {
  72. text-align: center;
  73. }
  74. .price-box .price-info {
  75. margin-top: 20px;
  76. margin-bottom: 20px;
  77. }
  78. .price-box .price-info table .formTitle {
  79. text-align: left;
  80. width: 50px;
  81. font-size: 12px;
  82. }
  83. .price-box .price-info table .formValue {
  84. text-align: left;
  85. font-size: 12px;
  86. }
  87. .price-box .price-info table .formValue input {
  88. box-shadow: none;
  89. border-top: none;
  90. border-right: none;
  91. border-left: none;
  92. height: 22px !important;
  93. line-height: 22px !important;
  94. font-size: 12px;
  95. }
  96. .price-box .price-table table {
  97. margin: 0px;
  98. margin-top: 1px;
  99. border-collapse: collapse;
  100. width: 100%;
  101. border-left: 1px solid #ccc;
  102. }
  103. .price-box .price-table table thead tr td {
  104. border-top: 1px solid #ccc;
  105. border-bottom: 1px solid #ccc;
  106. border-right: 1px solid #ccc;
  107. padding-top: 5px;
  108. padding-bottom: 5px;
  109. text-overflow: ellipsis;
  110. word-break: keep-all;
  111. overflow: hidden;
  112. font-weight: bold;
  113. padding-left: 5px;
  114. padding-right: 5px;
  115. font-size: 12px;
  116. }
  117. .price-box .price-table table tbody tr td {
  118. border-bottom: 1px solid #ccc;
  119. border-right: 1px solid #ccc;
  120. height: 25px;
  121. line-height: 25px;
  122. word-break: break-all;
  123. padding-left: 5px;
  124. padding-right: 5px;
  125. font-size: 12px;
  126. }
  127. .price-box .form {
  128. width: 100%;
  129. margin: 0px;
  130. padding: 0px;
  131. border-collapse: collapse;
  132. border-width: 3px 1px 1px;
  133. table-layout: fixed
  134. }
  135. .price-box .form .formTitle {
  136. position: relative;
  137. left: 0px;
  138. text-align: right;
  139. white-space: nowrap;
  140. font-weight: normal;
  141. width: 90px;
  142. padding-right: 10px;
  143. }
  144. .price-box .form .formTitle font {
  145. color: red;
  146. position: absolute;
  147. right: 0px;
  148. }
  149. .price-box .form .formTitle-top {
  150. vertical-align: top;
  151. padding-top: 4px;
  152. }
  153. .price-box .form .formValue {
  154. position: relative;
  155. padding: 5px;
  156. width: auto;
  157. }
  158. .price-box .form .formValue select {
  159. padding: 4px;
  160. padding-left: 4px;
  161. }
  162. #myChart {
  163. width: 100%;
  164. height: 100%;
  165. }
  166. body, html {
  167. width: 100%;
  168. height: 100%;
  169. background: url(../../../Content/images/beijing.png);
  170. }