style.css 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462
  1. /** 清除内外边距 **/
  2. body, h1, h2, h3, h4, h5, h6, hr, p,
  3. blockquote, /* structural elements 结构元素 */
  4. dl, dt, dd, ul, ol, li, /* list elements 列表元素 */
  5. pre, /* text formatting elements 文本格式元素 */
  6. form, fieldset, legend, button, input, textarea, /* form elements 表单元素 */
  7. th, td, /* table elements 表格元素 */
  8. img/* img elements 图片元素 */{
  9. border:medium none;
  10. margin: 0;
  11. padding: 0;
  12. }
  13. /** 设置默认字体 **/
  14. body,button, input, select, textarea {
  15. outline:none;font: 12px/1.5 '宋体',tahoma, Srial, helvetica, sans-serif;
  16. }
  17. h1, h2, h3, h4, h5, h6 { font-size: 100%; }
  18. em{font-style:normal;}
  19. /** 重置列表元素 **/
  20. ul, ol { list-style: none; }
  21. /** 重置超链接元素 **/
  22. a { text-decoration: none; color:#fff;}
  23. a:hover { text-decoration: underline; color:#fff; }
  24. /** 重置图片元素 **/
  25. img{ border:0px;}
  26. /** 重置表格元素 **/
  27. table { border-collapse: collapse; border-spacing: 0; }
  28. input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  29. /* WebKit browsers */
  30. color: #C7C7C7;
  31. }
  32. input:-moz-placeholder, textarea:-moz-placeholder {
  33. /* Mozilla Firefox 4 to 18 */
  34. color: #C7C7C7;
  35. }
  36. input::-moz-placeholder, textarea::-moz-placeholder {
  37. /* Mozilla Firefox 19+ */
  38. color: #C7C7C7;
  39. }
  40. input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  41. /* Internet Explorer 10+ */
  42. color: #C7C7C7;
  43. }
  44. .alert{
  45. position: fixed;
  46. top: 0;
  47. left: 0;
  48. right: 0;
  49. width: 100%;
  50. border-radius: 0;
  51. text-align: center;
  52. -webkit-animation: 0.3s alert linear ;
  53. animation: 0.3s alert linear ;
  54. z-index: 9999999;
  55. padding:15px;margin-bottom:20px;border:1px solid transparent;
  56. box-sizing: border-box;
  57. font-size: 14px;
  58. }
  59. .alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}
  60. .alert-success hr{border-top-color:#c9e2b3}
  61. .alert-success
  62. .alert-link{color:#2b542c}
  63. .alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}
  64. @-webkit-keyframes alert {
  65. 0% {
  66. -webkit-transform:translateY(-80px) ;
  67. transform: translateY(-80px);
  68. opacity: 0;
  69. }
  70. 100% {
  71. -webkit-transform:translateY(0) ;
  72. transform: translateY(0);
  73. opacity: 1;
  74. }
  75. }
  76. @keyframes alert {
  77. 0% {
  78. -webkit-transform:translateY(-80px) ;
  79. transform: translateY(-80px);
  80. opacity: 0;
  81. }
  82. 100% {
  83. -webkit-transform:translateY(0) ;
  84. transform: translateY(0);
  85. opacity: 1;
  86. }
  87. }
  88. /**
  89. 通用模块
  90. **/
  91. body{
  92. background: white;
  93. font-size: 14px;
  94. color: #4B4B4B;
  95. }
  96. body,html{
  97. width: 100%;
  98. min-height: 100vh;
  99. overflow-x: hidden;
  100. overflow-y: auto;
  101. }
  102. .body{
  103. /* background:url('../images/body_bg1.png')no-repeat left 5% bottom 4%,
  104. url('../images/body_bg2.png')no-repeat center bottom 4%,
  105. url('../images/body_bg3.png')no-repeat right 5% bottom 4%,
  106. url('../images/body_bg4.png')no-repeat bottom left,
  107. #000B31 ; */
  108. /* background-size: 40px auto,40px auto,40px auto,contain; */
  109. padding-bottom: 60px;
  110. background: white;
  111. color: #4B4B4B;
  112. }
  113. .font_10{
  114. font-size: 10px;
  115. }
  116. .font_12{
  117. font-size: 12px;
  118. }
  119. .font_14{
  120. font-size: 14px;
  121. }
  122. .font_16{
  123. font-size: 16px;
  124. }
  125. .font_18{
  126. font-size: 18px;
  127. }
  128. .font_20{
  129. font-size: 20px;
  130. }
  131. .font_22{
  132. font-size: 22px;
  133. }
  134. .font_24{
  135. font-size: 24px;
  136. }
  137. .font_26{
  138. font-size: 26px;
  139. }
  140. .font_28{
  141. font-size: 28px;
  142. }
  143. .font_30{
  144. font-size: 30px;
  145. }
  146. .font_32{
  147. font-size: 32px;
  148. }
  149. .font_34{
  150. font-size: 34px;
  151. }
  152. .color_white {
  153. color: white;
  154. }
  155. .color_4b {
  156. color: #4B4B4B;
  157. }
  158. .font_weight {
  159. font-weight: bold;
  160. }
  161. .flex{
  162. display: -webkit-box;
  163. display: -webkit-flex;
  164. display: flex;
  165. }
  166. .flex_item {
  167. -webkit-box-flex: 1;
  168. -webkit-flex: 1;
  169. flex: 1;
  170. /* padding-left: 10px; */
  171. }
  172. .flex_center{
  173. justify-content: center;
  174. }
  175. .flex_align_center{
  176. align-content:center
  177. }
  178. .flex_align_top{
  179. align-content: flex-start;
  180. }
  181. .text_center{
  182. text-align: center;
  183. }
  184. .text_left{
  185. text-align: left;
  186. }
  187. .vertical_top{
  188. vertical-align: top;
  189. }
  190. .flex_direction_column{
  191. flex-direction:column;
  192. }
  193. .content{
  194. /* padding: 0 8%; */
  195. width: 100%;
  196. box-sizing: border-box;
  197. }
  198. .pop_loading{
  199. position: fixed;
  200. height: 50px;
  201. width: 100px;
  202. background: rgba(0,0,0,0.7);
  203. top: 50%;
  204. left: 50%;
  205. margin-top: -25px;
  206. margin-left: -50px;
  207. border-radius: 5px;
  208. color: #fff;
  209. line-height: 50px;
  210. text-align: center;
  211. font-size: 14px;
  212. z-index: 9999;
  213. }
  214. /*
  215. .title{
  216. position: relative;
  217. padding: 0 5px 7px 5px;
  218. display: inline-block;
  219. border-bottom: 2px solid #B5A36A;
  220. } */
  221. /* .title::after{
  222. content: '';
  223. position: absolute;
  224. width: 100%;
  225. height: 12px;
  226. bottom: 0;
  227. left: 0;
  228. right: 0;
  229. background:linear-gradient(0deg,rgba(31,68,172,1),rgba(72,25,159,1));
  230. border-radius:6px;
  231. z-index: -1;
  232. } */
  233. @font-face {
  234. /* 英文字体 */
  235. font-family: "CadillacTrimV1-Light";
  236. src: url("./font/CadillacTrimV1/CadillacTrimV1-Light.otf");
  237. font-family: "CadillacTrimV1-Medium";
  238. src: url("./font/CadillacTrimV1/CadillacTrimV1-Medium.otf");
  239. font-family: "CadillacTrimV1-Regular";
  240. src: url("./font/CadillacTrimV1/CadillacTrimV1-Regular.otf");
  241. font-family: "CadillacTrimV1-Thin";
  242. src: url("./font/CadillacTrimV1/CadillacTrimV1-Thin.otf");
  243. font-family: "hyjh35j";
  244. src: url("./font/hyjh/hyjh35j.ttf");
  245. font-family: "hyjh50j";
  246. src: url("./font/hyjh/hyjh50j.ttf");
  247. font-family: "hyjh70j";
  248. src: url("./font/hyjh/hyjh70j.ttf");
  249. font-family: "hyjh90j";
  250. src: url("./font/hyjh/hyjh90j.ttf");
  251. }
  252. .content{
  253. }
  254. .title{
  255. height:20px;
  256. font-size:16px;
  257. font-family:PingFangSC-Medium,PingFang SC;
  258. font-weight:500;
  259. color:rgba(17,17,17,1);
  260. line-height:20px;
  261. margin: 20px 30px;
  262. }
  263. .content-data{
  264. max-width: 700px;
  265. width: auto;
  266. margin: 0 auto;
  267. padding: 0 0 70px 0;
  268. }
  269. .content-data img{
  270. width:100%;
  271. display: inline-block;
  272. }
  273. .footer_btn{
  274. background: #fff;
  275. box-shadow:0px -3px 9px 0px rgba(127,129,138,0.15);
  276. width: 100%;
  277. height: 58px;
  278. position: fixed;
  279. padding-bottom:20px;
  280. box-sizing: border-box;
  281. bottom: 0px;
  282. text-align: center;
  283. }
  284. .footer_btn_item{
  285. margin-top: -30px;
  286. }
  287. .img-full{
  288. width: 100%;
  289. height: 100%;
  290. }
  291. .demonstrate-box{
  292. display: flex;
  293. height: 100%;
  294. padding:0;
  295. box-sizing: border-box;
  296. flex-direction: column;
  297. }
  298. .top{
  299. padding:0 60px;
  300. padding-top: 40px;
  301. }
  302. .top .subtitle{
  303. color:#111111;
  304. font-size:32px;
  305. }
  306. .top .time-box{
  307. display: flex;
  308. height: 40px;
  309. align-items: center;
  310. margin-top: 15px;
  311. }
  312. .top .time-box .text{
  313. display: flex;
  314. height: 40px;
  315. align-items: center;
  316. color:#8D8D8D;
  317. font-size:24px;
  318. }
  319. .top .time-box image{
  320. width: 26px;
  321. height: 26px;
  322. margin-right: 12px;
  323. }
  324. .top .adr-box{
  325. display: flex;
  326. height: 40px;
  327. align-items: center;
  328. margin-top: 10px;
  329. }
  330. .top .adr-box .text{
  331. display: flex;
  332. height: 40px;
  333. align-items: center;
  334. color:#8D8D8D;
  335. font-size:24px;
  336. }
  337. .top .adr-box image{
  338. width: 26px;
  339. height: 26px;
  340. margin-right: 12px;
  341. }
  342. .main{
  343. margin-top: 52px;
  344. }
  345. /*.main .item-title{*/
  346. /* position: relative;*/
  347. /* font-size:28px;*/
  348. /* color:#111111;*/
  349. /* padding-left: 60px;*/
  350. /* padding-bottom: 34px;*/
  351. /*}*/
  352. .main .item-title .left-line{
  353. position: absolute;
  354. left: 0;
  355. top: 0;
  356. width:4px;
  357. height:40px;
  358. background:rgba(22,22,22,1);
  359. }
  360. .main .title{
  361. font-weight: bold;
  362. }
  363. .main .paragraph{
  364. line-height:48px;
  365. padding:0 60px;
  366. font-size:24px;
  367. color:#111111;
  368. padding-bottom: 20px;
  369. }
  370. .main .pic-box{
  371. padding:0 60px;
  372. padding-bottom: 36px;
  373. }
  374. .main .pic-box .pic{
  375. width: 100%;
  376. margin-top: 32px;
  377. }
  378. /* pages/copyright/copyright.wxss */
  379. .page-copyright{
  380. }
  381. .page-copyright .copyright-item{
  382. margin-bottom: 20px;
  383. }
  384. .page-copyright .copyright-item .title{
  385. position: relative;
  386. color: #111111;
  387. font-size: 16px;
  388. padding: 0 25px;
  389. line-height: 45px;
  390. font-weight:500;
  391. height: auto;
  392. margin: 0;
  393. }
  394. .page-copyright .copyright-item .title::after{
  395. position: absolute;
  396. left: 0;
  397. top:50%;
  398. transform: translate(0,-50%);
  399. width:2px;
  400. height:20px;
  401. background:rgba(22,22,22,1);
  402. content: "";
  403. }
  404. .page-copyright .copyright-item .info{
  405. font-size: 12px;
  406. color: #111111;
  407. padding: 0 25px;
  408. }
  409. .page-copyright .copyright-code{
  410. margin-top: 50px;
  411. }
  412. .page-copyright .copyright-code .img-wrap{
  413. width:148px;
  414. height:140px;
  415. margin: 0 auto;
  416. box-sizing: border-box;
  417. padding:10px;
  418. border:1px solid rgba(236,238,243,1);
  419. /* border:1px solid rgba(236,238,243,1);
  420. box-sizing: border-box;
  421. padding:20px; */
  422. }
  423. .page-copyright .copyright-code .info{
  424. text-align: center;
  425. font-size: 16px;
  426. color: #111111;
  427. margin-top: 15px;
  428. }
  429. .page-copyright .footer-brand-text{
  430. color:#9A9A9A;
  431. font-size: 12px;
  432. text-align: center;
  433. line-height: 20px;
  434. margin-top: 80px;
  435. padding-bottom: 20px;
  436. }