search_body.css 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625
  1. @charset "utf-8";
  2. *{
  3. font-family:\\5FAE\8F6F\96C5\9ED1,microsoft yahei;
  4. border:0;
  5. margin:0;
  6. padding:0;
  7. background:transparent;
  8. font-weight:normal;
  9. font-style:normal;
  10. word-break:break-all;
  11. word-wrap:break-word;
  12. text-decoration:none;
  13. list-style:none;
  14. outline:none;
  15. -webkit-tap-highlight-color:rgba(255, 255, 255, 0);
  16. }
  17. body{
  18. font-size:.14rem;
  19. text-align:justify;
  20. }
  21. a {
  22. -webkit-tap-highlight-color:transparent;
  23. -webkit-touch-callout:none;
  24. -webkit-user-select:none;
  25. }
  26. select,input,textarea{
  27. border:none;
  28. font-size:.14rem;
  29. display:block;
  30. width:100%;
  31. box-sizing:border-box;
  32. -webkit-box-sizing:border-box;
  33. appearance:none;
  34. -webkit-appearance:none;
  35. background:none;
  36. color:#666;
  37. resize:none;
  38. }
  39. input[type="button"], input[type="submit"], input[type="reset"], input[type="number"] {
  40. -webkit-appearance:none;
  41. -moz-appearance:none;
  42. appearance:none;
  43. }
  44. ::-webkit-input-placeholder{
  45. color:#d2d2d2;
  46. }
  47. :-moz-placeholder{
  48. color:#d2d2d2;
  49. }
  50. ::-moz-placeholder{
  51. color:#d2d2d2;
  52. }
  53. :-ms-input-placeholder{
  54. color:#d2d2d2;
  55. }
  56. input::-webkit-outer-spin-button,
  57. input::-webkit-inner-spin-button {
  58. -webkit-appearance:none !important;
  59. margin:0;
  60. }
  61. input[type="search"]{
  62. -webkit-appearance:textfield;
  63. -webkit-box-sizing:content-box;
  64. font-family:inherit;
  65. font-size:100%;
  66. }
  67. input::-webkit-search-decoration,
  68. input::-webkit-search-cancel-button{
  69. display:none;
  70. }
  71. html,
  72. body{
  73. background-color:#fff;
  74. }
  75. .search_list_content{
  76. overflow:hidden;
  77. /*min-height:6rem;*/
  78. }
  79. .new_search_input_fixed{
  80. height:.52rem;
  81. }
  82. .new_search_input_box{
  83. position:fixed;
  84. left:0;
  85. top:0;
  86. right:0;
  87. z-index:1000;
  88. padding:.1rem 0 .1rem .42rem;
  89. height:.52rem;
  90. box-sizing:border-box;
  91. background-color:#fff;
  92. }
  93. .new_search_return{
  94. position: absolute;
  95. left: 0;
  96. top: .1rem;
  97. height: .32rem;
  98. width: .32rem;
  99. background: url(/assets/img/frontend/icon/icon_13.png) no-repeat center center;
  100. background-size: .14rem auto;
  101. }
  102. .new_search_but{
  103. position:absolute;
  104. right:0;
  105. top:.1rem;
  106. z-index:10;
  107. width:.56rem;
  108. height:.32rem;
  109. font-size:.14rem;
  110. color:#6a7a8a;
  111. text-align:center;
  112. line-height:.32rem;
  113. }
  114. .new_search_input{
  115. overflow:hidden;
  116. position:relative;
  117. left:0;
  118. top:0;
  119. z-index:1;
  120. padding-left:.35rem;
  121. margin-right:.56rem;
  122. height:.32rem;
  123. background:#f4f6f8 url(/assets/img/frontend/search/search_icon_1.png) no-repeat 10px center;
  124. background-size:.17rem .17rem;
  125. border-radius:.32rem;
  126. }
  127. .new_search_input a{
  128. display:none;
  129. position:absolute;
  130. right:.1rem;
  131. top:.06rem;
  132. height:.2rem;
  133. width:.2rem;
  134. background:#e6e6e6 url(/assets/img/frontend/search/search_icon_2.png) center center no-repeat;
  135. background-size:.08rem .08rem;
  136. border-radius:.2rem;
  137. }
  138. .new_search_input_search{
  139. margin-right:.36rem;
  140. display:block;
  141. padding:.04rem 0;
  142. height:.32rem;
  143. box-sizing:border-box;
  144. }
  145. .new_search_input_search input{
  146. display:block;
  147. width:100%;
  148. height:.24rem;
  149. font-size:.14rem;
  150. color:#333;
  151. }
  152. input[type="search"]{
  153. -webkit-tap-highlight-color:rgba(0,0,0,0);
  154. -webkit-appearance:none;
  155. border:0;
  156. border-radius:0;
  157. -webkit-appearance:searchfield;
  158. box-sizing:border-box;
  159. background:none;
  160. }
  161. .ns_list_main_box{
  162. overflow:hidden;
  163. }
  164. .ns_list_hot{
  165. display:none;
  166. }
  167. .ns_list_main{
  168. margin-bottom:.14rem;
  169. overflow:hidden;
  170. }
  171. .ns_list_tit{
  172. overflow:hidden;
  173. height:.3rem;
  174. margin:0 .15rem;
  175. }
  176. .ns_list_tit a{
  177. float:right;
  178. overflow:hidden;
  179. height:.3rem;
  180. font-size:.13rem;
  181. color:#77a4ff;
  182. line-height:.3rem;
  183. }
  184. .ns_list_tit h2{
  185. float:left;
  186. height:.3rem;
  187. font-size:.16rem;
  188. color:#0a347e;
  189. font-weight:bold;
  190. line-height:.3rem;
  191. }
  192. .ns_list_box ul{
  193. overflow:hidden;
  194. padding:.04rem 0 .14rem .07rem;
  195. }
  196. .ns_list_box li{
  197. float:left;
  198. padding:0 .12rem;
  199. margin:.03rem .07rem .02rem .08rem;
  200. height:.36rem;
  201. background-color:#fff;
  202. font-size:.13rem;
  203. color:#5e6a94;
  204. line-height:.36rem;
  205. overflow: hidden;
  206. word-break: break-all;
  207. word-wrap: break-word;
  208. white-space: normal;
  209. }
  210. .ns_list_hot ul{
  211. padding: 0.06rem;
  212. }
  213. .ns_list_hot li{
  214. margin: .02rem 0 .03rem;
  215. padding: 0 .06rem;
  216. width: 50%;
  217. height: .36rem;
  218. box-sizing: border-box;
  219. }
  220. .ns_list_hot ul li a{
  221. display: block;
  222. padding: 0 .1rem;
  223. height: .36rem;
  224. background-color:#fbfcfd;
  225. font-size:.13rem;
  226. color:#5e6a94;
  227. overflow: hidden;
  228. word-break: break-all;
  229. word-wrap: break-word;
  230. white-space: normal;
  231. line-height:.36rem;
  232. border-radius:.03rem;
  233. }
  234. .ns_list_ul_border{
  235. height:.1rem;
  236. background-color:#f2f4f8;
  237. }
  238. .new_search_tips_list{
  239. position:fixed;
  240. left:0;
  241. right:0;
  242. top:.52rem;
  243. bottom:0;
  244. z-index:10;
  245. display:none;
  246. background-color:#fff;
  247. padding:0 0.15rem 0.15rem;
  248. box-sizing:border-box;
  249. }
  250. .new_search_tips_list_ul{
  251. overflow:hidden;
  252. }
  253. .new_search_tips_list_ul li{
  254. margin-bottom:0.1rem;
  255. height:0.3rem;
  256. font-size:0.14rem;
  257. color:#6a7a8a;
  258. line-height:0.3rem;
  259. }
  260. .new_search_tips_list_ul span{
  261. font-size:0.14rem;
  262. color:#44bbff;
  263. line-height:0.3rem;
  264. }
  265. .new_search_tips_body,
  266. .nst_list_ul,
  267. .nst_list_ul li,
  268. .nst_list_ul li a{
  269. display:block;
  270. overflow:hidden;
  271. }
  272. .new_search_tips_body{
  273. display:none;
  274. }
  275. .nst_list_ul{
  276. padding:0 .15rem .15rem;
  277. }
  278. .nst_list_ul li a{
  279. position:relative;
  280. left:0;
  281. top:0;
  282. padding:.15rem 0;
  283. height:1.2rem;
  284. border-bottom:1px solid #efefef;
  285. }
  286. .s_img{
  287. overflow:hidden;
  288. position:absolute;
  289. left:0;
  290. top:.15rem;
  291. z-index:2;
  292. height:1.2rem;
  293. width:.9rem;
  294. }
  295. .s_img img{
  296. display:block;
  297. width:100%;
  298. height:100%;
  299. }
  300. .s_info{
  301. position:relative;
  302. left:0;
  303. top:0;
  304. z-index:1;
  305. margin:0 0 0 1rem;
  306. height:1.2rem;
  307. }
  308. .s_info h3{
  309. overflow:hidden;
  310. height:.26rem;
  311. font-size:.16rem;
  312. color:#333;
  313. line-height:.26rem;
  314. }
  315. .s_info span{
  316. color:#44bbff;
  317. }
  318. .s_info strong{
  319. overflow:hidden;
  320. height:.22rem;
  321. font-size:.14rem;
  322. color:#a0a6a9;
  323. line-height:.22rem;
  324. }
  325. .s_info p{
  326. overflow:hidden;
  327. position:absolute;
  328. left:0;
  329. right:0;
  330. bottom:0;
  331. max-height:.6rem;
  332. font-size:.14rem;
  333. color:#a0a6a9;
  334. line-height:.2rem;
  335. }
  336. .ns_list_main_search_loading{
  337. display:none;
  338. margin-bottom:0.14rem;
  339. overflow:hidden;
  340. padding:1rem 0;
  341. border-bottom:1px solid #efefef;
  342. }
  343. .ns_list_main_search_loading_img,
  344. .ns_list_main_search_loading_null{
  345. display:none;
  346. overflow:hidden;
  347. }
  348. .ns_list_main_search_loading img{
  349. margin:0 auto;
  350. display:block;
  351. }
  352. .ns_list_main_search_loading_img img{
  353. width:1.9rem;
  354. }
  355. .ns_list_main_search_loading_null img{
  356. margin-bottom:.18rem;
  357. width:1.7rem;
  358. }
  359. .ns_list_main_search_loading_null strong,
  360. .ns_list_main_search_loading_null span{
  361. display:block;
  362. }
  363. .ns_list_main_search_loading_null strong{
  364. height:.3rem;
  365. font-size:.18rem;
  366. color:#3a4a5a;
  367. text-align:center;
  368. line-height:.3rem
  369. }
  370. .ns_list_main_search_loading_null span{
  371. font-size:.14rem;
  372. color:#6a7a8a;
  373. text-align:center;
  374. line-height:.26rem;
  375. }
  376. .nst_list_loading{
  377. display:none;
  378. padding-bottom:.15rem;
  379. height:.2rem;
  380. font-size:.14rem;
  381. text-align:center;
  382. line-height:.2rem;
  383. border-bottom:1px solid #efefef;
  384. }
  385. /****版权****/
  386. .content_box {
  387. padding:0 .1rem;
  388. }
  389. .cipyright_mod .txt {
  390. padding-bottom:.1rem;
  391. }
  392. .cipyright_mod .txt a{
  393. color:#a0a6a9;
  394. }
  395. .cipyright_mod .txt p {
  396. color:#a0a6a9;
  397. font-size:.12rem;
  398. line-height:.22rem;
  399. text-align:center;
  400. }
  401. /*****页脚*****/
  402. .footer_box {
  403. overflow:hidden;
  404. padding:.15rem .05rem .3rem .15rem;
  405. background-color:#f8f8f8;
  406. }
  407. .footer_img_box {
  408. float:right;
  409. width:1rem;
  410. margin-right:.05rem;
  411. }
  412. .footer_img,
  413. .footer_img img {
  414. display:block;
  415. overflow:hidden;
  416. width:1rem;
  417. height:1rem;
  418. }
  419. .footer_img {
  420. margin:0 auto;
  421. }
  422. .footer_img_box h3 {
  423. font-size:.12rem;
  424. color:#666;
  425. text-align:center;
  426. line-height:.3rem;
  427. }
  428. .footer_txt {
  429. overflow:hidden;
  430. margin-right:1.1rem;
  431. }
  432. .footer_txt p {
  433. overflow:hidden;
  434. height:.22rem;
  435. font-size:0;
  436. color:#666;
  437. white-space:nowrap;
  438. line-height:.22rem;
  439. }
  440. .footer_txt p strong,
  441. .footer_txt p span {
  442. height:.22rem;
  443. display:inline-block;
  444. font-size:.12rem;
  445. color:#666;
  446. }
  447. .footer_txt p strong {
  448. width:.6rem;
  449. text-align:justify;
  450. text-justify:distribute-all-lines; /*ie6-8*/
  451. -moz-text-align-last:justify; /*ff*/
  452. -webkit-text-align-last:justify; /*chrome 20+*/
  453. text-align-last:justify; /* ie9*/
  454. }
  455. /** footer链接 */
  456. .footer_hijack {
  457. background:#f8f8f8;
  458. line-height:.22rem;
  459. padding-bottom:.1rem;
  460. }
  461. .footer_hijack p a {
  462. color:#4bf;
  463. font-size:.13rem;
  464. padding-left:.08rem;
  465. position:relative;
  466. }
  467. .footer_hijack p a::after{
  468. content:"";
  469. position:absolute;
  470. width:.03rem;
  471. height:.03rem;
  472. background:#4bf;
  473. left:0;
  474. top:50%;
  475. margin-top:-.02rem;
  476. }
  477. .conter_list_box {
  478. padding:0 .1rem;
  479. }
  480. /******吐丝******/
  481. .console_main{
  482. height:0;
  483. font-size:0;
  484. }
  485. .console_main i{
  486. position:fixed;
  487. left:0;
  488. top:0;
  489. right:0;
  490. bottom:0;
  491. z-index:4999;
  492. background-color:rgba(0,0,0,.3);
  493. }
  494. .console_box{
  495. position:fixed;
  496. left:0;
  497. bottom:50%;
  498. right:0;
  499. z-index:5000;
  500. margin-top:-.23rem;
  501. height:.46rem;
  502. font-size:0;
  503. text-align:center;
  504. }
  505. .console_box span{
  506. display:inline-block;
  507. *display:inline;
  508. *zoom:1;
  509. padding:0 .3rem;
  510. height:.46rem;
  511. background-color:rgba(0,0,0,0.9);
  512. -moz-border-radius:.06rem;
  513. -webkit-border-radius:.06rem;
  514. border-radius:.06rem;
  515. font-size:.14rem;
  516. color:#fff;
  517. text-align:center;
  518. line-height:.46rem;
  519. }
  520. .s_img img{
  521. border-radius: .03rem;
  522. }
  523. .s_img:after{
  524. content: " ";
  525. position: absolute;
  526. top: 0;
  527. left: 0;
  528. width: .1rem;
  529. height: 100%;
  530. background-image: -webkit-gradient(linear,left top,right top,color-stop(0,hsla(0,0%,100%,0)),color-stop(53%,hsla(0,0%,100%,.5)),to(hsla(0,0%,100%,0)));
  531. background-image: -webkit-linear-gradient(left,hsla(0,0%,100%,0),hsla(0,0%,100%,.5) 53%,hsla(0,0%,100%,0));
  532. background-image: linear-gradient(90deg,hsla(0,0%,100%,0),hsla(0,0%,100%,.5) 53%,hsla(0,0%,100%,0));
  533. }