暫無描述

index.css 3.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  1. footer{
  2. width: 100%;
  3. height: 400px;
  4. background: #262f40;
  5. position: relative;
  6. }
  7. footer .con{
  8. max-width: 1140px;
  9. height: 100%;
  10. position: relative;
  11. margin: auto;
  12. }
  13. footer .con .left{
  14. position: absolute;
  15. left: 0;
  16. top: 60px;
  17. }
  18. footer .con .left .smallTilte{
  19. color: #fff;
  20. font-size: 18px;
  21. line-height: 20px;
  22. -webkit-text-stroke:1px #979797;
  23. text-stroke:1px #979797;
  24. }
  25. footer .con .left h3{
  26. color: #fff;
  27. font-size: 26px;
  28. line-height: 40px;
  29. margin-top: 18px;
  30. }
  31. footer .con .left h3::after{
  32. content: '';
  33. display: block;
  34. width: 50px;
  35. height:2px;
  36. background: #ff4400;
  37. box-shadow:0 1px 2px 0 rgba(255,110,12,0.42);
  38. border-radius:2px;
  39. margin-top: 10px;
  40. }
  41. footer .con .left p{
  42. color: #ffffff;
  43. font-size: 16px;
  44. line-height: 24px;
  45. margin-top: 10px;
  46. }
  47. footer .con .kxEvm{
  48. width: 200px;height: 200px;position: absolute;
  49. top: 80px;right: 0;
  50. }
  51. footer .bottom{
  52. position: absolute;
  53. bottom: 0;
  54. width: 100%;
  55. background: #191f2d;
  56. color: #4f525e;
  57. font-size: 14px;
  58. line-height: 50px;
  59. text-align: center;
  60. }
  61. .goTop{
  62. position: fixed;
  63. bottom: 100px;
  64. right: 0;
  65. width: 50px;
  66. }
  67. .top{
  68. position: relative;
  69. /* background:linear-gradient(214deg,rgba(236,242,248,1) 0%,rgba(186,216,238,1) 100%); */
  70. }
  71. .top .mainImg{
  72. /* width: 1320px; */
  73. width: 100%;
  74. margin: auto;
  75. }
  76. .gongneng{
  77. position: relative;
  78. width: 1320px;
  79. margin: auto;
  80. }
  81. .gongneng .gongnengImg{
  82. width: 100%;
  83. }
  84. .gongneng .gongneng_con{
  85. position: absolute;
  86. bottom: 43px;
  87. right: 80px;
  88. width: 489px;
  89. height: 77%;
  90. background: rgba(0,0,0,0.75)
  91. }
  92. .gongneng .gongneng_con .con{
  93. width: 489px;
  94. height: 100%;
  95. overflow: hidden;
  96. position: relative;
  97. }
  98. .gongneng .gongneng_con .logo{
  99. width: 50px;
  100. height: 50px;
  101. margin: 50px auto 10px;
  102. }
  103. .gongneng ul{
  104. position: absolute;
  105. width: 100%;
  106. right: 0;
  107. }
  108. .gongneng ul li{
  109. float: left;
  110. text-align: center;
  111. width: 163px;
  112. margin-top: 30px;
  113. }
  114. .gongneng ul li img{
  115. width: 34px;
  116. margin: auto;
  117. margin-bottom: 20px;
  118. }
  119. .gongneng ul li span{
  120. font-size: 14px;
  121. color: #ffffff;
  122. }
  123. .buttonRight{
  124. width: 30px;
  125. position: absolute;
  126. right: -34px;
  127. bottom: 170px;
  128. cursor: pointer;
  129. }
  130. .about_us{
  131. width: 1140px;
  132. margin: auto;
  133. text-align: center;
  134. margin-bottom: 80px;
  135. }
  136. .about_us h3{
  137. color: #212121;
  138. font-size: 28px;
  139. line-height: 40px;
  140. margin-top: 60px;
  141. }
  142. .about_us .title_hint{
  143. color: #999999;
  144. font-size: 12px;
  145. line-height: 20px;
  146. margin-top: 10px;
  147. }
  148. .about_us .about_us_con{
  149. margin-top: 50px;
  150. }
  151. .about_us .about_us_con img{
  152. width: 47%;
  153. float: left;
  154. height: 240px;
  155. }
  156. .about_us .about_us_con .content{
  157. width: 47%;
  158. float: right;
  159. text-align: left;
  160. background:rgba(0,0,0,0.03);
  161. padding:50px 20px;
  162. height: 240px;
  163. box-sizing: border-box;
  164. }
  165. .about_us .about_us_con .content p{
  166. color: #5C5C5C;
  167. font-size: 12px;
  168. line-height: 20px;
  169. }
  170. .about_us .about_us_con .content .title{
  171. color: #212121;
  172. font-size: 16px;
  173. padding-bottom: 20px;
  174. }
  175. /* //万能清除浮动 */
  176. .clear:after {
  177. clear: both;
  178. content: " ";
  179. display: block;
  180. height: 0;
  181. overflow: hidden;
  182. visibility: hidden;
  183. }
  184. .clear {
  185. zoom: 1;
  186. }
  187. .downApp{
  188. width: 130px;
  189. height: 60px;
  190. background: url(img/下载@2x.png) no-repeat;
  191. background-size: 100%;
  192. display: block;
  193. position: absolute;
  194. top: 40%;
  195. left: 11%;
  196. }