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.

227 lines
3.7 KiB

3 years ago
4 years ago
  1. /*reset*/
  2. html{-webkit-text-size-adjust:none; /*解决chrome浏览器下字体不能小于12px*/}
  3. body{ color:#000000; font-family:Verdana, Arial, Helvetica, sans-serif;}
  4. a{outline:none; text-decoration:none;} a:hover{ text-decoration:underline;}
  5. html{zoom:1;}html *{outline:0;zoom:1;} html button::-moz-focus-inner{border-color:transparent!important;}
  6. body{overflow-x: hidden; font-size:12px;} body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0;}
  7. * {
  8. margin: 0;
  9. padding: 0;
  10. -webkit-appearance: none;
  11. /*去掉浏览器默认样式*/
  12. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  13. -webkit-touch-callout: none;
  14. box-sizing: border-box;
  15. }
  16. body,
  17. .body {
  18. -webkit-text-size-adjust: 100%;
  19. /*关闭自动调整字体*/
  20. -webkit-overflow-scrolling: touch;
  21. overflow-scrolling: touch;
  22. }
  23. /*pad*/
  24. img {
  25. max-width: 100%;
  26. }
  27. a {
  28. color: inherit;
  29. }
  30. a:hover {
  31. color: inherit;
  32. }
  33. .contactBox {
  34. background: #5CCCB2;
  35. }
  36. .contactBox .wrapperBox {
  37. width: 1200px;
  38. overflow: hidden;
  39. margin: 0 auto;
  40. padding-top: 30px;
  41. padding-bottom: 70px;
  42. color: #000;
  43. font-size: 16px;
  44. line-height: 2;
  45. }
  46. .contactBox .wrapperBox>div {
  47. float: left;
  48. width: 50%;
  49. }
  50. .contactBox .desc {
  51. margin-top: 20px;
  52. }
  53. .contactBox .rightBox {
  54. overflow: hidden;
  55. }
  56. .contactBox .item {
  57. width: 100px;
  58. float: left;
  59. text-align: center;
  60. margin-right: 46px;
  61. }
  62. .contactBox .item img {
  63. width: 100%;
  64. display: block;
  65. margin-bottom: 12px;
  66. }
  67. @font-face {
  68. font-family: "unisans";
  69. src: url("unisans.otf");
  70. /* iOS 4.1- */
  71. font-style: normal;
  72. font-weight: normal;
  73. }
  74. .enText {
  75. font-size: 60px;
  76. font-weight: bold;
  77. font-family: "unisans";
  78. color: #000;
  79. }
  80. .linksBox{
  81. background: #009874;
  82. color: #000;
  83. }
  84. .linksBox .wrapperBox{
  85. width: 1200px;
  86. margin:0 auto;
  87. position: relative;
  88. padding-top: 60px;
  89. padding-bottom: 60px;
  90. }
  91. .links{
  92. overflow: hidden;
  93. font-size: 16px;
  94. margin-bottom: 55px;
  95. }
  96. .links > div{
  97. width: 546px;
  98. float: left;
  99. }
  100. .links h3{
  101. font-size: 30px;
  102. font-weight: bold;
  103. margin-bottom: 30px;
  104. }
  105. .links li{
  106. margin-bottom: 14px;
  107. }
  108. .linksBtm{
  109. font-size: 20px;
  110. }
  111. .linksBtm a{
  112. margin-right: 100px;
  113. font-weight: bold;
  114. }
  115. .rlogo{
  116. width:200px;
  117. position: absolute;
  118. right:0;
  119. top:70px;
  120. }
  121. .footer {
  122. font-size: 16px;
  123. background: #000000;
  124. }
  125. .footer .copyright span {
  126. margin: 0 180px;
  127. }
  128. .footer .copyright {
  129. width: 1200px;
  130. margin: 0 auto;
  131. padding: 30px 0;
  132. }
  133. /* 平板--sm */
  134. @media screen and (max-width:992px) {
  135. .contactBox .wrapperBox{
  136. width:100%;
  137. padding: 20px 0;
  138. font-size: 12px;
  139. }
  140. .enText{
  141. font-size: 22px;
  142. text-align: center;
  143. }
  144. .contactBox .wrapperBox>div{
  145. float: none;
  146. width:100%;
  147. padding: 0 15px;
  148. }
  149. .rightBox .enText{
  150. margin-top: 20px;
  151. margin-bottom: 20px;
  152. }
  153. .contactBox .item{
  154. width:50%;
  155. margin-right: 0;
  156. }
  157. .contactBox .item img{
  158. width: 100px;
  159. margin:0 auto 15px;
  160. }
  161. .linksBox .wrapperBox{
  162. width:100%;
  163. padding: 20px 15px;
  164. }
  165. .rlogo{
  166. display: none;
  167. }
  168. .links{
  169. margin-bottom: 15px;
  170. }
  171. .links > div{
  172. width: 100%;
  173. float: none;
  174. padding: 0;
  175. text-align: center;
  176. }
  177. .links li{
  178. margin:4px 5px ;
  179. display: inline-block;
  180. font-size: 14px;
  181. }
  182. .links h3{
  183. font-size: 18px;
  184. margin:10px 0;
  185. }
  186. .linksBtm{
  187. font-size: 16px;
  188. text-align: center;
  189. }
  190. .linksBtm a{
  191. margin: 5px;
  192. }
  193. .footer .copyright{
  194. width: 100%;
  195. padding: 10px;
  196. font-size: 12px;
  197. text-align: center;
  198. }
  199. .footer .copyright span{
  200. margin: 0;
  201. }
  202. .footer .copyright a:first-child{
  203. display: block;
  204. margin:0 auto 3px;
  205. font-size: 14px;
  206. }
  207. }