index.css 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660
  1. .top-bg{
  2. background: url('../img/banner.png') no-repeat center center;
  3. min-height: 560px;
  4. padding-bottom: 10px;
  5. background-size: 100% 100%;
  6. color: #fff;
  7. }
  8. .top-tags{
  9. align-items: center;
  10. padding: 20px 0;
  11. color: #f0f0f0;
  12. font-size: 18px;
  13. }
  14. .top-tags .t-icon{
  15. width: 26px;
  16. height: 26px;
  17. margin-right: 6px;
  18. vertical-align: middle;
  19. }
  20. .top-tags .t-span{
  21. margin: 0 10px;
  22. }
  23. .top-content{
  24. padding: 50px 0 30px;
  25. }
  26. .soft-name{
  27. font-size: 40px;
  28. font-weight: 600;
  29. }
  30. .soft-tag{
  31. background: url('../img/image_qp.png') no-repeat center center;
  32. width: 80px;
  33. height: 22px;
  34. line-height: 22px;
  35. background-size: 100% 100%;
  36. display: inline-block;
  37. vertical-align: top;
  38. margin-top: 16px;
  39. margin-left: 5px;
  40. text-align: center;
  41. }
  42. .soft-funciton{
  43. font-size: 26px;
  44. padding: 40px 0 30px;
  45. }
  46. .soft-desc{
  47. font-size: 18px;
  48. color: #f1f1f1;
  49. padding-bottom: 50px;
  50. }
  51. .soft-downloadNum{
  52. font-size: 18px;
  53. color: #f0c045;
  54. }
  55. .btn-download{
  56. width: 190px;
  57. height: 50px;
  58. border-radius: 6px;
  59. background-color: #fff;
  60. color: #1296db;
  61. position: relative;
  62. text-align: center;
  63. cursor: pointer;
  64. margin: 15px 0 20px;
  65. }
  66. .btn-download2{
  67. width: 160px;
  68. height: 45px;
  69. background-color: #379c7b;
  70. color: #fff;
  71. }
  72. .btn-download:hover{
  73. background-color: #f1f1f1;
  74. }
  75. .btn-download2:hover{
  76. background-color: #1cc089;
  77. }
  78. .btn-download .icon-download{
  79. display: inline-block;
  80. width: 14px;
  81. height: 14px;
  82. background: url('../img/icon-down1.png') no-repeat center center;
  83. background-size: 100% 100%;
  84. position: absolute;
  85. top: 10px;
  86. left: 32px;
  87. animation: dwon 1s infinite;
  88. -webkit-animation: dwon 1s infinite;
  89. -moz-animation: dwon 1s infinite;
  90. }
  91. .btn-download .down-name{
  92. display: inline-block;
  93. font-size: 24px;
  94. padding-left: 40px;
  95. line-height: 50px;
  96. background: url('../img/icon-down2.png') no-repeat;
  97. background-position-x: 0;
  98. background-position-y: 32px;
  99. position: relative;
  100. background-size: 24px;
  101. }
  102. .btn-download2 .icon-download{
  103. background: url('../img/icon-down.png') no-repeat center center;
  104. background-size: 100% 100%;
  105. position: absolute;
  106. top: 10px;
  107. left: 33px;
  108. animation: dwon 1s infinite;
  109. -webkit-animation: dwon 1s infinite;
  110. -moz-animation: dwon 1s infinite;
  111. }
  112. .btn-download2 .down-name{
  113. background: url('../img/icon-bot.png') no-repeat;
  114. background-position-x: 0;
  115. background-position-y: 28px;
  116. position: relative;
  117. background-size: 24px;
  118. font-size: 16px;
  119. line-height: 45px;
  120. }
  121. @keyframes dwon {
  122. 0%,
  123. 100% {
  124. top: 6px;
  125. }
  126. 50% {
  127. top: 14px;
  128. }
  129. }
  130. @-webkit-keyframes dwon {
  131. 0%,
  132. 100% {
  133. top: 6px;
  134. }
  135. 50% {
  136. top: 14px;
  137. }
  138. }
  139. @-moz-keyframes dwon {
  140. 0%,
  141. 100% {
  142. top: 6px;
  143. }
  144. 50% {
  145. top: 14px;
  146. }
  147. }
  148. .img-detail{
  149. width: 450px;
  150. margin-top: 30px;
  151. }
  152. .p-line{
  153. line-height: 2;
  154. color: #f1f1f1;
  155. }
  156. .pl-span{
  157. margin-right: 15px;
  158. }
  159. .audio-list{
  160. flex-wrap: wrap;
  161. }
  162. .audio-item, .audio-item2{
  163. width: 14.28%;
  164. text-align: center;
  165. margin-bottom: 30px;
  166. cursor: pointer;
  167. position: relative;
  168. }
  169. .audio-item:hover{
  170. transform: scale(1.2);
  171. }
  172. .audio-item img, .audio-item2 img{
  173. width: 60%;
  174. margin-bottom: 10px;
  175. }
  176. .more-txt{
  177. position: absolute;
  178. width: 100%;
  179. text-align: center;
  180. bottom: 0;
  181. }
  182. .icon-more{
  183. position: absolute;
  184. margin: auto;
  185. left: 0;
  186. right: 0;
  187. top: 10px;
  188. animation: larger 1.5s infinite;
  189. -webkit-animation: larger 1.5s infinite;
  190. -moz-animation: larger 1.5s infinite;
  191. }
  192. @keyframes larger {
  193. 0%,
  194. 100% {
  195. width: 60%;
  196. }
  197. 50% {
  198. width: 50%;
  199. }
  200. }
  201. @-webkit-keyframes larger {
  202. 0%,
  203. 100% {
  204. width: 60%;
  205. }
  206. 50% {
  207. width: 50%;
  208. }
  209. }
  210. @-moz-keyframes larger {
  211. 0%,
  212. 100% {
  213. width: 60%;
  214. }
  215. 50% {
  216. width: 50%;
  217. }
  218. }
  219. .index-about{
  220. background-color: #fff;
  221. }
  222. .index-title{
  223. text-align: center;
  224. padding: 20px 0;
  225. }
  226. .index-title .name{
  227. color: #333;
  228. font-size: 24px;
  229. font-weight: 600;
  230. padding: 35px 0 20px;
  231. }
  232. .index-title .desc{
  233. width: 276px;
  234. margin: 0 auto;
  235. background-color: #ebebeb;
  236. border-radius: 18px;
  237. color: #999;
  238. font-size: 14px;
  239. text-align: center;
  240. line-height: 36px;
  241. }
  242. .info-flex{
  243. display: flex;
  244. flex-wrap: nowrap;
  245. justify-content: space-around;
  246. align-items: center;
  247. padding: 50px 0;
  248. }
  249. .info-img, .info-content{
  250. width: 45%;
  251. }
  252. .into-title{
  253. font-size: 22px;
  254. line-height: 2.2;
  255. font-weight: 600;
  256. }
  257. .info-desc{
  258. font-size: 14px;
  259. line-height: 1.8;
  260. color: #666;
  261. }
  262. /** 首頁輪播圖 **/
  263. .banner-bg{
  264. width: 100%;
  265. min-width: 1200px;
  266. height: 500px;
  267. background-repeat: no-repeat;
  268. background-position: center center;
  269. background-size: auto 100%;
  270. }
  271. .index-banner{
  272. position: relative;
  273. padding-top: 10px;
  274. }
  275. .swiper-container {
  276. width: 1024px;
  277. height: 300px;
  278. }
  279. .head-item{
  280. text-align: center;
  281. width: 76%;
  282. margin: auto;
  283. background-color: #fff;
  284. padding: 20px 30px;
  285. box-sizing: content-box;
  286. }
  287. .head-item .head-icon{
  288. width: 100px;
  289. height: 100px;
  290. border-radius: 50%;
  291. }
  292. .head-item .head-name{
  293. text-align: center;
  294. padding: 15px 0;
  295. }
  296. .head-item .head-desc{
  297. text-align: left;
  298. line-height: 1.8;
  299. margin-bottom: 10px;
  300. }
  301. .head-item .head-time{
  302. text-align: right;
  303. color: #999;
  304. }
  305. /*rename*/
  306. .info-flex .f-item{
  307. display: flex;
  308. flex-wrap: nowrap;
  309. justify-content: center;
  310. width: 33.33%;
  311. align-items: center;
  312. margin: 20px 0;
  313. font-size: 14px;
  314. }
  315. .font-14{
  316. font-size: 14px;
  317. }
  318. .info-flex .icon-o {
  319. width: 50px;
  320. height: 40px;
  321. margin-right: 20px;
  322. }
  323. .info-flex .f-item2{
  324. width: 26%;
  325. text-align: center;
  326. margin: 20px 0;
  327. font-size: 14px;
  328. }
  329. .f-item2 .f-cont{
  330. font-weight: 600;
  331. font-size: 16px;
  332. margin: 20px 0 10px 0;
  333. }
  334. .info-flex .icon-o2 {
  335. width: 50px;
  336. height: 50px;
  337. }
  338. .rename-list{
  339. flex-wrap: wrap;
  340. margin-bottom: 50px;
  341. line-height: 2.4;
  342. }
  343. .rename-item{
  344. width: 33.33%;
  345. text-align: center;
  346. }
  347. /* 视频 */
  348. .videos-list{
  349. flex-wrap: wrap;
  350. }
  351. .videos-item, .videos-item2{
  352. width: 16.66%;
  353. text-align: center;
  354. margin-bottom: 30px;
  355. cursor: pointer;
  356. position: relative;
  357. }
  358. .videos-item:hover{
  359. transform: scale(1.2);
  360. }
  361. .videos-item img, .videos-item2 img{
  362. width: 60%;
  363. margin-bottom: 10px;
  364. }
  365. #progressBar{
  366. height: 50px;
  367. position: relative;
  368. margin: 20px auto;
  369. }
  370. #progressBar div{
  371. width: 100%;
  372. height: 10px;
  373. position: absolute;
  374. top:50%;
  375. left: 0;
  376. margin-top:-20px;
  377. background: #ccc;
  378. }
  379. #progressBar div span{
  380. position: absolute;
  381. display: inline-block;
  382. background: #ff9007;
  383. height: 10px;
  384. width: 100%;
  385. animation: bgLoad 15s infinite;
  386. -webkit-animation: bgLoad 15s infinite;
  387. -moz-animation: bgLoad 15s infinite;
  388. }
  389. @keyframes bgLoad {
  390. 0%{
  391. width: 0%;
  392. }
  393. 40%{
  394. width: 50%;
  395. }
  396. 80%{
  397. width:100%;
  398. }
  399. 100%{
  400. width:100%;
  401. }
  402. }
  403. @-webkit-keyframes bgLoad{
  404. 0%{
  405. width: 0%;
  406. }
  407. 33.3%{
  408. width: 50%;
  409. }
  410. 70%{
  411. width: 100%;
  412. }
  413. 100%{
  414. width: 100%;
  415. }
  416. }
  417. @-moz-keyframes bgLoad{
  418. 0%{
  419. width: 0%;
  420. }
  421. 33.3%{
  422. width: 50%;
  423. }
  424. 70%{
  425. width: 100%;
  426. }
  427. 100%{
  428. width: 100%;
  429. }
  430. }
  431. #progressBar>span{
  432. position: absolute;
  433. top:0;
  434. margin-top: -10px;
  435. width: 40px;
  436. height: 40px;
  437. border-radius: 50%;
  438. background: #ccc;
  439. margin-left: -20px;
  440. color:#fff;
  441. text-align: center;
  442. line-height: 40px;
  443. cursor: pointer;
  444. }
  445. @keyframes circleLoad_1 {
  446. 0%,50%{
  447. background: #ccc;
  448. }
  449. 100%{
  450. background:#ff9007;
  451. }
  452. }
  453. @-webkit-keyframes circleLoad_1{
  454. 0%,50%{
  455. background: #ccc;
  456. }
  457. 100%{
  458. background:#ff9007;
  459. }
  460. }
  461. @-moz-keyframes circleLoad_1{
  462. 0%,50%{
  463. background: #ccc;
  464. }
  465. 100%{
  466. background:#ff9007;
  467. }
  468. }
  469. @keyframes circleLoad_2 {
  470. 0%,70%{
  471. background: #ccc;
  472. }
  473. 100%{
  474. background:#ff9007;
  475. }
  476. }
  477. @-webkit-keyframes circleLoad_2{
  478. 0%,70%{
  479. background: #ccc;
  480. }
  481. 100%{
  482. background:#ff9007;
  483. }
  484. }
  485. @-moz-keyframes circleLoad_2{
  486. 0%,70%{
  487. background: #ccc;
  488. }
  489. 100%{
  490. background:#ff9007;
  491. }
  492. }
  493. #progressBar span:nth-child(2){
  494. left: 0%;background:#ff9007;
  495. }
  496. #progressBar span:nth-child(3){
  497. left: 50%;background:#ff9007;
  498. animation: circleLoad_1 5s ease-in;
  499. -webkit-animation: circleLoad_1 5s ease-in;
  500. -moz-animation: circleLoad_1 5s ease-in;
  501. }
  502. #progressBar span:nth-child(4){
  503. left: 100%;background:#ff9007;
  504. animation: circleLoad_2 10s ease-in;
  505. -webkit-animation: circleLoad_2 10s ease-in;
  506. -moz-animation: circleLoad_2 10s ease-in;
  507. }
  508. .step-content{
  509. text-align: center;
  510. }
  511. .step-desc{
  512. padding: 30px 0;
  513. font-size: 16px;
  514. }
  515. .step-img{
  516. width: 800px;
  517. }
  518. .step1{
  519. animation: step1 15s infinite;
  520. -webkit-animation: step1 15s infinite;
  521. -moz-animation: step1 15s infinite;
  522. }
  523. @keyframes step1 {
  524. 0%, 33.33%{
  525. height: auto;
  526. opacity: 1;
  527. }
  528. 33.34%,100%{
  529. height: 0;
  530. opacity: 0;
  531. }
  532. }
  533. @-webkit-keyframes step1{
  534. 0%, 33.33%{
  535. height: auto;
  536. opacity: 1;
  537. }
  538. 33.34%,100%{
  539. height: 0;
  540. opacity: 0;
  541. }
  542. }
  543. @-moz-keyframes step1{
  544. 0%, 33.33%{
  545. height: auto;
  546. opacity: 1;
  547. }
  548. 33.34%,100%{
  549. height: 0;
  550. opacity: 0;
  551. }
  552. }
  553. .step2{
  554. animation: step2 15s infinite;
  555. -webkit-animation: step2 15s infinite;
  556. -moz-animation: step2 15s infinite;
  557. }
  558. @keyframes step2 {
  559. 0%,33.33%{
  560. height: 0;
  561. opacity: 0;
  562. }
  563. 33.34%,66.66%{
  564. height: auto;
  565. opacity: 1;
  566. }
  567. 66.67%,100%{
  568. height: 0;
  569. opacity: 0;
  570. }
  571. }
  572. @-webkit-keyframes step2{
  573. 0%,33.33%{
  574. height: 0;
  575. opacity: 0;
  576. }
  577. 33.34%,66.66%{
  578. height: auto;
  579. opacity: 1;
  580. }
  581. 66.67%,100%{
  582. height: 0;
  583. opacity: 0;
  584. }
  585. }
  586. @-moz-keyframes step2{
  587. 0%,33.33%{
  588. height: 0;
  589. opacity: 0;
  590. }
  591. 33.34%,66.66%{
  592. height: auto;
  593. opacity: 1;
  594. }
  595. 66.67%,100%{
  596. height: 0;
  597. opacity: 0;
  598. }
  599. }
  600. .step3{
  601. animation: step3 15s infinite;
  602. -webkit-animation: step3 15s infinite;
  603. -moz-animation: step3 15s infinite;
  604. }
  605. @keyframes step3 {
  606. 0%,66.66%{
  607. height: 0;
  608. opacity: 0;
  609. }
  610. 66.67%,100%{
  611. height: auto;
  612. opacity: 1;
  613. }
  614. }
  615. @-webkit-keyframes step3{
  616. 0%,66.66%{
  617. height: 0;
  618. opacity: 0;
  619. }
  620. 66.67%,100%{
  621. height: auto;
  622. opacity: 1;
  623. }
  624. }
  625. @-moz-keyframes step3{
  626. 0%,66.66%{
  627. height: 0;
  628. opacity: 0;
  629. }
  630. 66.67%,100%{
  631. height: auto;
  632. opacity: 1;
  633. }
  634. }
  635. .disHeight{
  636. height: 0 !important;
  637. opacity: 0 !important;
  638. }
  639. .showHeight{
  640. height: auto;
  641. opacity: 1 !important;
  642. }