No Description
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.

style.css 15KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913
  1. html{
  2. font-size: -webkit-calc(100vw * 100 /1080);
  3. font-size: -moz-calc(100vw * 100 /1080);
  4. font-size: calc(100vw * 100 /1080);
  5. min-width:375px;
  6. }
  7. body {
  8. font-size: 0.36rem;
  9. margin:0;
  10. position: relative;
  11. min-height: 100vh;
  12. -webkit-tap-highlight-color:transparent;
  13. position: relative;
  14. min-width:375px;
  15. }
  16. a{
  17. outline:none;
  18. -webkit-tap-highlight-color: rgba(0,0,0,0);color:#454545;
  19. }
  20. a:focus{ outline:none; }
  21. a:hover,a:active{ outline:0; }
  22. a,a:visited,a:active,a:hover{ text-decoration:none; }
  23. :focus{ outline: 0; }
  24. *{ margin: 0; padding: 0; font-size: 0; }
  25. .mrg20{ margin: 0 .1rem;}
  26. .header-box{
  27. height: 1rem;
  28. padding:.4rem;
  29. }
  30. .header-box .logo{
  31. display: inline-block;
  32. vertical-align: middle;
  33. margin-right: 1.7rem;
  34. }
  35. .header-box .logo img{
  36. display: block;
  37. width: 2.7rem;
  38. height: 1rem;
  39. }
  40. .header-box .search{
  41. display: inline-block;
  42. vertical-align: middle;
  43. background: #f0f2f4;
  44. border-radius: .15rem;
  45. }
  46. .header-box .search input{
  47. display: inline-block;
  48. vertical-align: middle;
  49. width: 3rem;
  50. height: .8rem;
  51. line-height: .8rem;
  52. padding-left: .3rem;
  53. font-size: .3rem;
  54. color: #333;
  55. border: none;
  56. background: none;
  57. }
  58. .header-box .search button{
  59. width: .8rem;
  60. height: .8rem;
  61. border: none;
  62. color: rgba(255,255,255,0.00);
  63. background: url(/template/mobile/skin/image/search-icon.png) no-repeat center;
  64. background-size: .4rem;
  65. }
  66. .header-box .menu-btn{ float: right; }
  67. .header-box .menu-btn button{
  68. width: .9rem;
  69. height: .9rem;
  70. border: none;
  71. border-radius: 1rem;
  72. background:#006CE0 url(/template/mobile/skin/image/menu_icon.png) no-repeat center;
  73. background-size: .45rem;
  74. }
  75. .layer{
  76. content: "";
  77. position: fixed;
  78. top: 0;
  79. right: 0;
  80. width: 50%;
  81. height: 100%;
  82. transition: .5s;
  83. z-index:-1;
  84. opacity:0;
  85. }
  86. .layer.active {
  87. z-index:100;
  88. opacity:1;
  89. }
  90. .mask {
  91. position:fixed;
  92. top:0;left:0;
  93. display:none;
  94. width:100%;height:100%;
  95. background:rgba(0,0,0,.4);
  96. z-index:10;
  97. }
  98. .nav-menu{
  99. position: fixed;
  100. top:0;
  101. right: 0;
  102. z-index: 99;
  103. background: #fff;
  104. width: 50%;
  105. height: 100%;
  106. padding-top: 1rem;
  107. }
  108. .nav-menu li{
  109. border-bottom: 1px solid #ededed;
  110. }
  111. .nav-menu .close-icon{
  112. text-align: right;
  113. border: none;
  114. }
  115. .nav-menu .close-icon img{
  116. width: .8rem;
  117. height: .8rem;
  118. margin-right: .5rem;
  119. }
  120. .nav-menu li a{
  121. display: block;
  122. font-size: .4rem;
  123. color: #333;
  124. line-height: 3.2;
  125. padding-left: .45rem;
  126. }
  127. .banner-box{
  128. margin:0 .4rem;
  129. }
  130. .banner-box img{
  131. width:100%;
  132. border-radius: .2rem;
  133. }
  134. .menu-box{
  135. margin: .5rem 0.3rem;
  136. }
  137. .menu-box li{
  138. display: inline-block;
  139. width: 20%;
  140. margin: .3rem 0;
  141. }
  142. .menu-box li a{
  143. display: block;
  144. text-align: center;
  145. font-size: .3rem;
  146. color: #454545;
  147. }
  148. .menu-box li a img{
  149. display: block;
  150. width: 1rem;
  151. height: 1rem;
  152. margin: 0 auto .14rem;
  153. }
  154. .tips-bar{
  155. position: relative;
  156. margin: 0 .3rem;
  157. padding: 0 .2rem 0 .9rem;
  158. border-radius: .15rem;
  159. background:#f7f7f7 url("/template/mobile/skin/image/ring_icon.png") no-repeat .25rem center;
  160. background-size: .45rem;
  161. }
  162. .tips-bar::after{
  163. content: "";
  164. display: block;
  165. position: absolute;
  166. left: 2.5rem;
  167. top: 0;
  168. bottom: 0;
  169. margin: auto;
  170. width: 1px;
  171. height: .4rem;
  172. background: #c5c5c5;
  173. }
  174. .tips-bar span{
  175. display: inline-block;
  176. vertical-align: middle;
  177. font-style: italic;
  178. font-weight: bold;
  179. font-size: .32rem;
  180. color: #000;
  181. line-height: 1rem;
  182. }
  183. .tips-bar span b{
  184. color: #18a9b7;
  185. font-size: .32rem;
  186. }
  187. .tips-bar p{
  188. font-size: .32rem;
  189. display: inline-block;
  190. vertical-align: middle;
  191. width: 7rem;
  192. line-height: 1rem;
  193. margin-left: .7rem;
  194. overflow: hidden;
  195. text-overflow: ellipsis;
  196. white-space: nowrap;
  197. }
  198. .tab-box{
  199. margin: .8rem .4rem;
  200. }
  201. .tab-box .tab-head{
  202. display: flex;
  203. margin: .75rem 0 .5rem;
  204. }
  205. .tab-box .tab-head span{
  206. position: relative;
  207. padding: .2rem 0;
  208. font-size: .38rem;
  209. color: #464646;
  210. text-align: center;
  211. flex: 1;
  212. }
  213. .tab-box .tab-head span.active{
  214. color: #35afbc;
  215. }
  216. .tab-box .tab-head span.active::after{
  217. position: absolute;
  218. content: "";
  219. display: block;
  220. bottom: -.05rem;
  221. left: 0;
  222. right: 0;
  223. margin: auto;
  224. width: .65rem;
  225. height: 2px;
  226. background: #35afbc;
  227. }
  228. .tab-list{
  229. }
  230. .tab-list li{
  231. margin: .32rem 0;
  232. }
  233. .tab-list li a{
  234. }
  235. .tab-list li a .fl{
  236. display: inline-block;
  237. vertical-align: top;
  238. }
  239. .tab-list li a .fr{
  240. display: inline-block;
  241. vertical-align: top;
  242. margin-left: .55rem;
  243. width: 5.9rem;
  244. }
  245. .tab-list li a .fl img{
  246. width: 3.5rem;
  247. height: 1.9rem;
  248. border-radius: .15rem;
  249. }
  250. .tab-list li a .fr h3{
  251. font-size: .36rem;
  252. color: #242424;
  253. line-height: 1.6;
  254. height: 1.5rem;
  255. }
  256. .tab-list li a .fr em{
  257. color: #7a7a7a;
  258. font-size: .3rem;
  259. font-style: normal;
  260. }
  261. .bar-box{
  262. display: flex;
  263. flex-wrap: wrap;
  264. margin: .2rem;
  265. }
  266. .bar-box .item{
  267. width: 48%;
  268. height: 2rem;
  269. background: url("/template/mobile/skin/image/bar_1.jpg") no-repeat center;
  270. background-size: cover;
  271. margin: .12rem 1%;
  272. border-radius: .15rem;
  273. }
  274. .bar-box .item h2{
  275. font-size: .36rem;
  276. color: #3b9b7d;
  277. margin: .4rem 0 .2rem .4rem;
  278. }
  279. .bar-box .item p{
  280. font-size: .3rem;
  281. color: #3b9b7d;
  282. margin-left: .4rem;
  283. }
  284. .bar-box .item:nth-child(2){
  285. background-image: url("/template/mobile/skin/image/bar_2.jpg");
  286. }
  287. .bar-box .item:nth-child(3){
  288. background-image: url("/template/mobile/skin/image/bar_3.jpg");
  289. }
  290. .bar-box .item:nth-child(4){
  291. background-image: url("/template/mobile/skin/image/bar_4.jpg");
  292. }
  293. .bar-box .item:nth-child(2) h2,
  294. .bar-box .item:nth-child(2) p{
  295. color: #c22b36;
  296. }
  297. .bar-box .item:nth-child(3) h2,
  298. .bar-box .item:nth-child(3) p{
  299. color: #c88d4f;
  300. }
  301. .bar-box .item:nth-child(4) h2,
  302. .bar-box .item:nth-child(4) p{
  303. color: #4730a6;
  304. }
  305. .sample-show-box{
  306. }
  307. .sample-show-box .row{
  308. }
  309. .sample-show-box .row h4{
  310. margin: 0 .25rem;
  311. position: relative;
  312. font-size: .4rem;
  313. color: #353535;
  314. line-height: 3;
  315. padding-left: .3rem;
  316. }
  317. .sample-show-box .row h4::before{
  318. position: absolute;
  319. left: 0;
  320. top: 0;
  321. bottom: 0;
  322. margin: auto;
  323. content: "";
  324. display: block;
  325. width: 3px;
  326. height: .45rem;
  327. background: #35afbc;
  328. }
  329. .sample-show-box .img-box{
  330. display: inline-block;
  331. width: 48%;
  332. text-align: center;
  333. margin: .2rem 1%;
  334. border: 1px solid #efeeef;
  335. box-sizing: border-box;
  336. }
  337. .sample-show-box .img-box img{
  338. width: 100%;
  339. height: 3rem;
  340. }
  341. .sample-show-box .img-box p{
  342. font-size: .32rem;
  343. color: #454545;
  344. line-height: 3.5;
  345. }
  346. .footer{
  347. background: #0b0b0b;
  348. padding: .8rem 0 .5rem;
  349. margin-top: 1rem;
  350. margin-bottom: 1.5rem;
  351. }
  352. .footer .row{
  353. text-align: center;
  354. margin: 0 .4rem;
  355. }
  356. .footer .row span{
  357. color: #fff;
  358. font-size: .36rem;
  359. padding: 0 .2rem;
  360. border-right: 1px solid #fff;
  361. }
  362. .footer .row span:last-of-type{
  363. border: none;
  364. }
  365. .footer .white{
  366. font-size: .32rem;
  367. text-align: center;
  368. color: #fff;
  369. line-height: 2;
  370. margin-top: .5rem;
  371. margin-bottom: .5rem;
  372. }
  373. .footer .white.cy{
  374. border-top: 1px solid #fff;
  375. padding-top: .5rem;
  376. }
  377. .footer .white.cy a:last-child {
  378. color:#fff;
  379. font-size:.32rem;
  380. }
  381. .tab-bot{
  382. position: fixed;
  383. bottom: 0;
  384. z-index: 95;
  385. width: 100%;
  386. background: #fff;
  387. height: 1.5rem;
  388. display: flex;
  389. flex-wrap: nowrap;
  390. box-shadow: 0 -2px 2px 0 rgba(0,0,0,.1);
  391. }
  392. .tab-bot .item{
  393. flex: 1;
  394. text-align: center;
  395. }
  396. .tab-bot .item a {
  397. color:#4d4d4d;
  398. font-size:.28rem;
  399. }
  400. .tab-bot .item img{
  401. display: block;
  402. width: .55rem;
  403. height: .55rem;
  404. margin: .2rem auto .1rem;
  405. }
  406. .tab-bot .item.active a {color:#006CE0;}
  407. /*二级*/
  408. .container{
  409. border-top: .2rem solid #f2f2f2;
  410. }
  411. .ad-box{
  412. margin: .4rem;
  413. }
  414. .article-detail .ad-box{
  415. margin: .5rem 0;
  416. }
  417. .ad-box img{
  418. width: 100%;
  419. height: 1.4rem;
  420. }
  421. .breadcrumb{
  422. color:#555;
  423. font-size:.32rem;
  424. margin: 0 .3rem;
  425. line-height: 3;
  426. }
  427. .breadcrumb li{
  428. display: inline-block;
  429. font-size: .32rem;
  430. color: #555;
  431. padding: 0 .1rem;
  432. }
  433. .breadcrumb li a::after{
  434. content:" >";
  435. }
  436. .breadcrumb li a{
  437. font-size: .32rem;
  438. color: #555;
  439. }
  440. .page-head{
  441. position: relative;
  442. margin: .2rem .4rem;
  443. line-height: 1rem;
  444. clear: both;
  445. }
  446. .page-head h4{
  447. position: relative;
  448. color: #006CE0;
  449. font-size: .4rem;
  450. padding-left: .3rem;
  451. }
  452. .page-head h4::before{
  453. position: absolute;
  454. content: "";
  455. display: block;
  456. width: 3px;
  457. height: .4rem;
  458. background: #006CE0;
  459. top: 0;
  460. bottom: 0;
  461. left: 0;
  462. margin: auto;
  463. }
  464. .tab-cho{
  465. display: flex;
  466. background: #fbfaf9;
  467. line-height: 1rem;
  468. }
  469. .tab-cho .tab-item{
  470. flex: 1;
  471. text-align: center;
  472. font-size: .36rem;
  473. color: #5c5c5c;
  474. }
  475. .tab-cho.sty2{
  476. margin-top: .5rem;
  477. }
  478. .tab-cho.sty2 .tab-item{
  479. line-height: .45rem;
  480. padding: .15rem 0;
  481. }
  482. .tab-cho .tab-item small{
  483. display: block;
  484. font-size: .3rem;
  485. }
  486. .tab-cho .tab-item.active{
  487. background: #3fc8d2;
  488. color: #fff;
  489. }
  490. .city-choose{
  491. margin: .4rem;
  492. border-bottom: 1px solid #e6e6e6;
  493. padding-bottom: .2rem;
  494. }
  495. .city-choose li{
  496. display: inline-block;
  497. }
  498. .city-choose li a{
  499. display: block;
  500. font-size: .38rem;
  501. color: #333;
  502. line-height: 2;
  503. padding: 0 .35rem;
  504. margin: .1rem;
  505. }
  506. .city-choose li a.active{
  507. color: #fff;
  508. background: #2aaab9;
  509. border-radius: .15rem;
  510. }
  511. .fl-part{
  512. margin: 0 .3rem;
  513. }
  514. .fl-part .item{
  515. display: inline-block;
  516. width: 48%;
  517. margin: .2rem 1%;
  518. border:1px solid #ededed;
  519. overflow: hidden;
  520. box-sizing: border-box;
  521. }
  522. .fl-part .item img{
  523. width: 100%;
  524. height: 2.5rem;
  525. }
  526. .fl-part .item .item-h{
  527. overflow: hidden;
  528. height: 1rem;
  529. line-height: 1rem;
  530. }
  531. .fl-part .item .item-h h5{
  532. width: 100%;
  533. overflow: hidden;
  534. text-overflow: ellipsis;
  535. white-space: nowrap;
  536. font-size: .32rem;
  537. font-weight: normal;
  538. color: #525252;
  539. text-align: center;
  540. }
  541. .fl-part .item a{
  542. position: relative;
  543. display: block;
  544. }
  545. .fl-part .item a:hover::before{
  546. position: absolute;
  547. z-index: 2;
  548. top: 0;
  549. left: 0;
  550. content: "";
  551. width: 100%;
  552. height: 100%;
  553. background: rgba(0,0,0,.5) url(/template/mobile/skin/image/img_hover.png) no-repeat center;
  554. background-size: 37px;
  555. }
  556. .links{
  557. margin: .4rem;
  558. }
  559. .links li i{
  560. display: inline-block;
  561. vertical-align: middle;
  562. color: #006CE0;
  563. font-style: normal;
  564. font-size: .3rem;
  565. border-radius: .1rem;
  566. width: .8rem;
  567. line-height: .5rem;
  568. border: 1px solid #006CE0;
  569. text-align: center;
  570. margin-right: .15rem;
  571. }
  572. .links li h5{
  573. position: relative;
  574. display: inline-block;
  575. vertical-align: middle;
  576. width: 6.9rem;
  577. padding-left: .3rem;
  578. font-weight: normal;
  579. font-size: .38rem;
  580. color: #444;
  581. line-height: 2.5;
  582. overflow: hidden;
  583. text-overflow: ellipsis;
  584. white-space: nowrap;
  585. }
  586. .widget li h5{
  587. width: 6.5rem;
  588. padding-left: 0;
  589. }
  590. .links li h5::before{
  591. position: absolute;
  592. display: block;
  593. content: "";
  594. width: 4px;
  595. height: 4px;
  596. background: #006CE0;
  597. top: 0;
  598. bottom: 0;
  599. left: 0;
  600. margin: auto;;
  601. }
  602. .widget li h5::before{
  603. display: none;
  604. }
  605. .links li em{
  606. font-size: .38rem;
  607. color: #797979;
  608. float: right;
  609. font-style: normal;
  610. line-height: 2.5;
  611. }
  612. .nav-page{
  613. margin: .5rem auto;
  614. text-align: center;
  615. }
  616. .nav-page ul li{
  617. display: inline-block;
  618. }
  619. .nav-page ul li a,
  620. .nav-page ul li span {
  621. display: block;
  622. margin: 0 .1rem;
  623. padding: 0 .35rem;
  624. height: .8rem;
  625. line-height: .8rem;
  626. background: #fff;
  627. border: 1px solid #e0e0e0;
  628. font-size: .36rem;
  629. color: #555;
  630. }
  631. .nav-page ul li a.active{
  632. background: #006CE0;
  633. color: #fff;
  634. border: none;
  635. }
  636. .article-detail{
  637. margin: 0 .4rem;
  638. }
  639. .article-detail p{
  640. font-size: .36rem;
  641. color: #444;
  642. line-height: 2;
  643. text-indent: 2em;
  644. margin: .5rem 0;
  645. }
  646. .article-detail .article-header{
  647. margin-top: .3rem;
  648. border-bottom: 1px solid #e2e2e2;
  649. }
  650. .article-detail .article-header h3{
  651. font-size: .42rem;
  652. color: #333;
  653. line-height: 1.8;
  654. }
  655. .article-detail .article-header .header-meta{
  656. padding: .4rem 0;
  657. }
  658. .article-detail .article-header .header-meta span{
  659. font-size: .3rem;
  660. color: #5e5e5e;
  661. margin-right: .3rem;
  662. }
  663. .article-detail .content img,
  664. .article-detail .content p img {
  665. width:100%;
  666. text-indent:0;
  667. }
  668. .part{
  669. margin:1rem .4rem;
  670. }
  671. .part .row{
  672. position: relative;
  673. }
  674. .part .row .sty2{
  675. position: relative;
  676. border-bottom: 1px solid #e2e2e2;
  677. font-size: .4rem;
  678. line-height: 3.2;
  679. }
  680. .part .row .more{
  681. position: absolute;
  682. font-size: .38rem;
  683. right: 0;
  684. bottom: 0;
  685. margin: auto;
  686. color: #7a7a7a;
  687. line-height: 3.2;
  688. }
  689. .part .row .sty2::after{
  690. position: absolute;
  691. content: "";
  692. display: block;
  693. left: 0;
  694. bottom: -1px;
  695. width: 1.6rem;
  696. height: 3px;
  697. background: #006CE0;
  698. }
  699. .part .row .links{ margin: .4rem 0; }
  700. .bg-img img{
  701. width: 100%;
  702. height: 2.5rem;
  703. }
  704. .gz-tit{
  705. text-align: center;
  706. font-size: .45rem;
  707. font-weight: bold;
  708. color: #333;
  709. padding: .2rem 0 .55rem;
  710. margin: .6rem 0;
  711. background: url(/template/mobile/skin/image/gz_tit_img.png) no-repeat center bottom;
  712. background-size: 5.5rem;
  713. }
  714. .gz-list{
  715. text-align: center;
  716. margin:0 .4rem .6rem;
  717. }
  718. .gz-list li{
  719. display: inline-block;
  720. width: 23%;
  721. line-height: 2.5;
  722. font-size: .36rem;
  723. color: #fff;
  724. background: #2aaab9;
  725. margin: .15rem 1%;
  726. }
  727. .process-box{
  728. background: #2aaab9;
  729. padding: .4rem;
  730. }
  731. .process-box li{
  732. display: inline-block;
  733. width: 20%;
  734. text-align: center;
  735. color: #fff;
  736. font-size: .36rem;
  737. padding: .5rem 0;
  738. }
  739. .process-box li img{
  740. width: 1.3rem;
  741. height: 1.3rem;
  742. display: block;
  743. background: url(/template/mobile/skin/image/gz_icon_bg.png) no-repeat center .1rem;
  744. background-size: 1.2rem;
  745. margin: 0 auto .15rem;
  746. padding-bottom: .03rem;
  747. }
  748. .process-box li i{
  749. display: block;
  750. font-size: .36rem;
  751. color: #33a9bf;
  752. background: #fff;
  753. width: .5rem;
  754. height: .5rem;
  755. border-radius: .5rem;
  756. line-height: .5rem;
  757. text-align: center;
  758. font-style: normal;
  759. margin: .1rem auto 0;
  760. }
  761. .swiper .swiper-pagination .swiper-pagination-bullet {
  762. background:#fff;
  763. }
  764. .crumb {
  765. font-family: "宋体","黑体";
  766. }
  767. .crumb a {
  768. font-family:"Gilroy-Light","苹方","微软雅黑","Arial";
  769. color:#555;
  770. font-size:.32rem;
  771. }
  772. .pager {
  773. display:flex;
  774. display:-webkit-flex;
  775. justify-content:space-around;
  776. font-size:.32rem;
  777. }
  778. .pager strong {
  779. color:#555;
  780. font-size:.32rem;
  781. font-family:"黑体";
  782. font-weight:normal;
  783. }
  784. .pager li {
  785. display:inline-block;
  786. }
  787. .pager li span, .pager li a {
  788. display:inline-block;
  789. height:1.2rem;
  790. line-height:1.2rem;
  791. padding:0 7px;
  792. color:#555;
  793. font-size:.32rem;
  794. background:#fff;
  795. border:1px solid #eee;
  796. }
  797. .cjwt-show{
  798. margin:0 .4rem 1rem;
  799. }
  800. .cjwt-show .row{
  801. padding:.2rem 0 .8rem 0;
  802. border-bottom: 1px solid #eae9e9;
  803. }
  804. .cjwt-show .row .ques,.cjwt-show .row span{
  805. font-size: .4rem;
  806. color: #1a1a1a;
  807. line-height: 1.5;
  808. }
  809. .cjwt-show .row .ques{
  810. position: relative;
  811. padding-left: .7rem;
  812. margin: .5rem 0;
  813. }
  814. .cjwt-show .row .ques::before{
  815. content: "";
  816. display: block;
  817. width: .5rem;
  818. height: .5rem;
  819. position: absolute;
  820. left: 0;
  821. top: .02rem;
  822. background: url(/template/mobile/skin/image/ques_icon.png) no-repeat center;
  823. background-size: .45rem;
  824. }
  825. .cjwt-show .row .ptxt{
  826. background: #f6f6f6;
  827. padding: .4rem .5rem;
  828. }
  829. .cjwt-show .row .ans{
  830. padding-left: .2rem;
  831. font-size: .38rem;
  832. color: #1a1a1a;
  833. line-height: 2.2;
  834. }
  835. .cjwt-show .row .ans span{
  836. font-size: .38rem;
  837. color: #1a1a1a;
  838. line-height: 2.5;
  839. }
  840. .search-box{
  841. margin: .4rem;
  842. }
  843. .search-box input{
  844. display: inline-block;
  845. vertical-align: top;
  846. border: 1px solid #d8d8d8;
  847. box-sizing: border-box;
  848. font-size: .4rem;
  849. width: 7.5rem;
  850. padding-left: 1rem;
  851. height: 1.2rem;
  852. line-height: 1.2rem;
  853. background: url(/template/mobile/skin/image/search-icon.png) no-repeat .3rem center;
  854. background-size: .5rem; outline: none;
  855. border-radius: 0;
  856. }
  857. .search-box button{
  858. display: inline-block;
  859. vertical-align: top;
  860. width: 2.5rem;
  861. height: 1.2rem;
  862. background: #006ce0;
  863. font-size: .4rem;
  864. line-height: 1.2rem;
  865. color: #fff;
  866. text-align: center;
  867. border: none;
  868. outline: none;
  869. }
  870. .links.pstj {display:none;}
  871. .links.pstj.active {display:block;}
  872. .file {
  873. text-align:center;
  874. border:1px solid #ddd;
  875. padding:8px;
  876. box-sizing:border-box;
  877. }
  878. .file p {
  879. color:#222;
  880. font-size:.4rem;
  881. text-indent:0;
  882. margin:0 0 10px;
  883. }
  884. .file a {
  885. display:block;
  886. width:100%;height:1.2rem;
  887. line-height:1.2rem;
  888. color:#fff;
  889. font-size:.4rem;
  890. background:#006CE0;
  891. }