styles.css 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252
  1. html {
  2. font-size: 10px;
  3. }
  4. body {
  5. margin: 0 auto;
  6. padding: 0;
  7. background: #e7e7e7;
  8. font-size: 1.3rem;
  9. color: #000;
  10. font-family: Arial, sans-serif;
  11. }
  12. body * {
  13. box-sizing: border-box;
  14. }
  15. h1 {
  16. font-size: 3rem;
  17. font-weight: bold;
  18. color: #838383;
  19. }
  20. h2 {
  21. font-size: 2rem;
  22. font-weight: bold;
  23. color: #838383;
  24. }
  25. p {
  26. margin: 0;
  27. padding: 0;
  28. }
  29. .clearfix::after {
  30. content: "";
  31. display: block;
  32. clear: both;
  33. }
  34. .container {
  35. width: 1000px;
  36. margin: 0 auto;
  37. }
  38. .container-main {
  39. width: 1000px;
  40. margin: 0 auto;
  41. background-color: #fff;
  42. }
  43. .container-main-inner {
  44. margin: 0 auto;
  45. width: 974px;
  46. }
  47. header {
  48. background: #171616;
  49. height: 60px;
  50. color: #686868;
  51. }
  52. header form {
  53. float: right;
  54. margin-top: 16px;
  55. }
  56. header p {
  57. line-height: 11px;
  58. font-size: 1.2rem;
  59. }
  60. .logo {
  61. display: inline-block;
  62. margin-top: 12px;
  63. }
  64. header input:first-child {
  65. background: #323232;
  66. border: 1px solid #4c4c4c;
  67. box-shadow: inset 0 0 3px #000;
  68. height: 27px;
  69. color: #fff;
  70. width: 350px;
  71. outline: none;
  72. }
  73. header input:nth-of-type(2) {
  74. background: #000;
  75. font-family: Arial, sans-serif;
  76. font-weight: bold;
  77. color: #fff;
  78. font-size: 1.4rem;
  79. height: 27px;
  80. border: 1px solid #4c4c4c;
  81. margin-left: 11px;
  82. width: 75px;
  83. outline: none;
  84. }
  85. .banner {
  86. background: #000;
  87. position: relative;
  88. height: 329px;
  89. }
  90. .banner-text {
  91. height: 57px;
  92. background: rgba(0, 0, 0, .5);
  93. width: 100%;
  94. position: absolute;
  95. bottom: 0px;
  96. color: #fff;
  97. padding: 14px 20px;
  98. font-size: 1.2rem;
  99. }
  100. .nav-bar nav {
  101. background: #000;
  102. }
  103. .nav-bar ul {
  104. margin: 0;
  105. padding: 0;
  106. list-style: none;
  107. }
  108. .nav-bar li {
  109. display: inline-block;
  110. }
  111. .nav-bar a{
  112. text-decoration: none;
  113. color: #fff;
  114. font-weight: bold;
  115. font-size: 1.4rem;
  116. padding: 7px 24px;
  117. border-right: 1px solid #272727;
  118. line-height: 30px;
  119. }
  120. .we-do a {
  121. color: #0075d0;
  122. }
  123. .we-do h1 {
  124. margin-top: 0;
  125. padding-top: 30px;
  126. margin-bottom: 8px;
  127. }
  128. .we-do span {
  129. font-style: italic;
  130. }
  131. .we-do h2 {
  132. margin-top: 38px;
  133. }
  134. .we-do img {
  135. border: 12px solid #e2e2e2;
  136. margin-right: 19px;
  137. }
  138. .we-do img:last-child {
  139. margin-right: 0;
  140. }
  141. .lists h2 {
  142. margin-bottom: 0;
  143. margin-top: 25px;
  144. }
  145. .lists ul, .lists ol, .lists dl {
  146. display: inline-block;
  147. width: 33%;
  148. }
  149. .lists ol {
  150. padding-left: 20px;
  151. width: 32%;
  152. }
  153. .lists {
  154. line-height: 20px;
  155. }
  156. table {
  157. border-collapse: collapse;
  158. width: 99.5%;
  159. }
  160. .table h2 {
  161. margin-bottom: 15px;
  162. }
  163. th {
  164. text-align: left;
  165. }
  166. thead {
  167. background: #efefef;
  168. }
  169. td, th {
  170. border: 1px solid #d5d5d5;
  171. padding: 8px 9px;
  172. }
  173. form * {
  174. margin-bottom: 10px;
  175. }
  176. #text-input, #select{
  177. width: 224px;
  178. height: 30px;
  179. padding-left: 5px;
  180. }
  181. .checkbox {
  182. border: 1px solid #000;
  183. }
  184. .radio {
  185. margin-bottom: 20px;
  186. }
  187. .submit {
  188. padding: 7px 10px;
  189. background: #202020;
  190. color: #fff;
  191. font-family: Arial, sans-serif;
  192. font-size: 1.4rem;
  193. font-weight: bold;
  194. height: 35px;
  195. padding: 0 24px;
  196. border: 1px solid #4c4c4c;
  197. outline: none;
  198. margin-bottom: 25px;
  199. }
  200. footer {
  201. padding: 9px 0;
  202. color: #656565;
  203. }
  204. footer a {
  205. color: #0075d0;
  206. }