style.css 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414
  1. html {
  2. font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  3. font-size: 62.5%;
  4. word-spacing: 1px;
  5. -ms-text-size-adjust: 100%;
  6. -webkit-text-size-adjust: 100%;
  7. -moz-osx-font-smoothing: grayscale;
  8. -webkit-font-smoothing: antialiased;
  9. box-sizing: border-box;
  10. }
  11. *, *:before, *:after {
  12. box-sizing: border-box;
  13. margin: 0;
  14. }
  15. input{
  16. border: none;
  17. outline: none;
  18. border-bottom: 1px solid #d8cdcd;
  19. padding: 0.5rem;
  20. width: 100%;
  21. }
  22. .form{
  23. padding: 1.5rem 2rem;
  24. }
  25. textarea{
  26. border: none;
  27. outline: none;
  28. border-bottom: 1px solid #d8cdcd;
  29. padding: 0.5rem;
  30. width: 100%;
  31. resize:none;
  32. }
  33. .button--green {
  34. display: inline-block;
  35. border-radius: 4px;
  36. border: 1px solid #3b8070;
  37. color: #3b8070;
  38. text-decoration: none;
  39. padding: 10px 30px;
  40. }
  41. .button--green:hover {
  42. color: #fff;
  43. background-color: #3b8070;
  44. }
  45. .button--grey {
  46. display: inline-block;
  47. border-radius: 4px;
  48. border: 1px solid #35495e;
  49. color: #35495e;
  50. text-decoration: none;
  51. padding: 10px 30px;
  52. margin-left: 15px;
  53. }
  54. .button--grey:hover {
  55. color: #fff;
  56. background-color: #35495e;
  57. }
  58. .bottom-fxied{
  59. position: fixed;
  60. height: 45px;
  61. left: 0px;bottom: 0px;width: 100%;display: block;
  62. }
  63. .bottom-fxied footer{
  64. height: 100%;
  65. width: 100%;
  66. background: #fff;
  67. box-shadow: 2px -3px 5px #ddd;
  68. color:#999;
  69. display: flex;
  70. }
  71. .bottom-fxied footer span{
  72. width: 25%;
  73. display: inline-block;
  74. height: 100%;
  75. line-height: 100%;
  76. text-align: center;
  77. padding-top: 0.7rem;
  78. }
  79. .bottom-fxied footer span div{
  80. margin-top: 0.5rem;
  81. }
  82. .bottom-fxied footer span a i{
  83. font-size: 2rem;
  84. padding-top:0.5rem;
  85. display: inline-block;
  86. width: 100%;
  87. }
  88. .bottom-fxied a{
  89. color:#999;
  90. font-size: 1.25rem;
  91. display: inline-block;
  92. width: 100%;
  93. }
  94. a{
  95. text-decoration: none;
  96. -webkit-tap-highlight-color: transparent; /*移动端iphone按下a链接背景颜色会变灰,如何解决? */
  97. -webkit-tap-highlight-color: rgba(255,255,255,0);
  98. }
  99. a:visited {
  100. text-decoration: none;
  101. }
  102. a:hover { -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
  103. .active{
  104. color: #FF0000!important;
  105. }
  106. ul{
  107. margin: 0;
  108. padding: 0;
  109. }
  110. li{
  111. list-style-type: none;
  112. margin:0;
  113. padding: 0;
  114. }
  115. .container {
  116. min-height: 100vh;
  117. text-align: center;
  118. padding-top : 6rem;
  119. }
  120. .container {
  121. min-height: 100vh;
  122. text-align: center;
  123. padding-top : 6rem;
  124. }
  125. .title {
  126. font-family: "Quicksand", "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; /* 1 */
  127. display: block;
  128. font-weight: 300;
  129. font-size: 2.5rem;
  130. color: #35495e;
  131. margin-top: 2.5rem;
  132. letter-spacing: 1px;
  133. margin-bottom: 5rem;
  134. }
  135. .content{
  136. width: 100%;
  137. }
  138. .data_header{
  139. width: 100%;
  140. text-align: left;
  141. font-size: 1.5rem;
  142. padding: 1rem 2rem;
  143. border-bottom: 1px solid #ddd;
  144. }
  145. .data_list li {
  146. text-align: left;
  147. padding:1rem 2rem;
  148. font-size: 1.5rem;
  149. color:#35495e;
  150. border-bottom: 1px solid #ddd;
  151. display: flex;
  152. }
  153. .data_list li span:first-child{
  154. padding-right: 1.5rem;
  155. width: 75%;
  156. }
  157. .data_list li span:last-child{
  158. float: right;
  159. width: 25%;
  160. min-width: 78px;
  161. text-align: right;
  162. }
  163. /* 企业 */
  164. header{
  165. width: 100%;
  166. text-align: center;
  167. font-size: 2rem;
  168. padding: 1rem 0;
  169. box-shadow: 2px 3px 5px #ddd;
  170. position: fixed;
  171. background: #fff;
  172. }
  173. .has_header{
  174. padding-top: 6.5rem;
  175. }
  176. .has_footer{
  177. padding-bottom: 5.5rem;
  178. }
  179. .list li {
  180. text-align: left;
  181. padding: 1rem 1.5rem ;
  182. width: 100%;
  183. border-bottom: 1px solid #d6d6d6;
  184. }
  185. .list li div{
  186. padding: 0.5rem 0;
  187. color: #333;
  188. font-size: 1.2rem;
  189. }
  190. .list li .name{
  191. font-size: 1.5rem;
  192. color: #666;
  193. }
  194. a{
  195. color:#666;
  196. }
  197. header .back{
  198. padding-left: 1rem;
  199. float: left;
  200. font-size: 2rem;
  201. height: 2rem;
  202. }
  203. /* 服务 */
  204. .box_list{
  205. width: 100%;
  206. padding: 0 2rem;
  207. }
  208. .box_list li a{
  209. display: block;
  210. width: 100%;
  211. margin: 2rem 0;
  212. font-size: 2.5rem;
  213. height: 5rem;
  214. line-height: 5rem;
  215. padding: 0 1rem;
  216. color: #616161 ;
  217. box-shadow: 0px 3px 5px #ddd;
  218. }
  219. .box_list li i{
  220. font-size: 2.5rem;
  221. width: 20%;
  222. display: inline-block;
  223. text-align: right;
  224. }
  225. .box_list li span{
  226. display: inline-block;
  227. width: 75%;
  228. padding-left:3rem;
  229. text-align: left;
  230. }
  231. /* 正文 */
  232. .text{
  233. padding: 2rem 1.5rem;
  234. }
  235. .mbsc-fr-popup{
  236. max-width: 100%!important;
  237. }
  238. .form_item {
  239. margin: 1rem;
  240. }
  241. .form .btn{
  242. border-radius: 0.25rem;
  243. border: none;
  244. color:#fff;
  245. height: 3rem;
  246. font-size: 1.5rem;
  247. width: 25%;
  248. }
  249. .form .btn{
  250. margin-right: 1.5rem;
  251. }
  252. .form .btn:last-child{
  253. margin-right: 0;
  254. }
  255. .btn_yellow{
  256. background-color: #F1B045;
  257. }
  258. .login_forget{
  259. margin-top: 20px;
  260. text-align: right;
  261. width: 100%;
  262. padding:0 10%;
  263. font-size: 1.25rem;
  264. }
  265. .login_forget span{
  266. color: #666;
  267. }
  268. .form-btn{
  269. width: 100%;
  270. text-align: center;
  271. padding-top: 2rem;
  272. }
  273. .list .date{
  274. font-size: 2rem;
  275. }
  276. .cell span {
  277. display: inline-block;
  278. padding: 0.5rem;
  279. }
  280. .cell .status {
  281. color:#FF0000;
  282. }
  283. .span1{
  284. display: inline-block;
  285. width: 100%!important;
  286. }
  287. .relative{
  288. position: relative;
  289. }
  290. .get_text{
  291. position: absolute;
  292. top: -1rem; right:1rem;
  293. bottom: 0;
  294. font-size: 1.5rem;
  295. border: solid 1px #F1B045;
  296. padding: 3px 2rem;
  297. line-height: 3rem;
  298. border-radius: 0.5rem;
  299. }
  300. /* 企业详情 */
  301. .enterprise_info{
  302. width: 100%;
  303. padding: 0 2rem 2rem;
  304. }
  305. .enterprise_info .name{
  306. font-size: 2rem;
  307. color: #666;
  308. padding: 1rem 0;
  309. }
  310. .enterprise_info .meta{
  311. font-size: 1.5rem;
  312. padding:0.2rem 0;
  313. color: #999;
  314. }
  315. .enterprise_info .meta:last-child{
  316. color: #999;
  317. padding-bottom: 2rem;
  318. border-bottom: solid 2px #F1B045;
  319. }
  320. .enterprise_list {
  321. padding:1rem 2rem 1rem;
  322. }
  323. .enterprise_list .intro{
  324. font-size: 1.5rem;
  325. }
  326. .product_list {
  327. padding-top: 1rem;
  328. display: flex;
  329. justify-content: center;
  330. flex-wrap: wrap;
  331. flex-direction: row;
  332. width: 100%;
  333. }
  334. .product_list ul{
  335. width: 100%;
  336. font-size: 0;
  337. }
  338. .product_list li{
  339. width: 33%;
  340. display: inline-block;
  341. padding: 1rem;
  342. font-size:1.5rem;
  343. }
  344. .product_list img{
  345. width: 90%;
  346. }
  347. .product_list .meta{
  348. padding: 1rem 0;
  349. text-align: center;
  350. }