common.css 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790
  1. @charset "utf-8";
  2. html {
  3. margin: 0;
  4. padding: 0;
  5. }
  6. body {
  7. margin: 0;
  8. padding: 0;
  9. font-size: 14px;
  10. font-family: sans-serif;
  11. font-weight: normal;
  12. font-style: normal;
  13. color: #333;
  14. word-break: break-all;
  15. word-wrap: break-word;
  16. }
  17. h1, h2, h3, h4, h5, h6, p, ul, li, strong, em, i {
  18. margin: 0;
  19. padding: 0;
  20. font-size: 14px;
  21. list-style: none;
  22. font-weight: normal;
  23. font-style: normal;
  24. }
  25. img {
  26. display: block;
  27. margin: 0;
  28. border: 0;
  29. width: 100%;
  30. }
  31. a {
  32. -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  33. -webkit-touch-callout: none;
  34. -webkit-user-select: none;
  35. text-decoration: none;
  36. }
  37. .body_sytle {
  38. overflow: hidden;
  39. background-color: #f2f4f8;
  40. }
  41. .i_nav_fixed_box {
  42. height: .49rem;
  43. }
  44. .fixednav .i_nav_box {
  45. position: fixed;
  46. left: 0;
  47. top: 0;
  48. right: 0;
  49. z-index: 999;
  50. }
  51. .i_nav_box {
  52. position: relative;
  53. left: 0;
  54. top: 0;
  55. overflow: hidden;
  56. padding-left: .02rem;
  57. height: .48rem;
  58. background-color: #fff;
  59. border-bottom: 1px solid #dde2f3;
  60. }
  61. .i_nav_user_img {
  62. position: absolute;
  63. right: .15rem;
  64. top: 0;
  65. overflow: hidden;
  66. margin: .06rem 0 0;
  67. height: .36rem;
  68. width: .36rem;
  69. background-color: #eff1f6;
  70. border-radius: .36rem;
  71. }
  72. .i_nav_user_img_vip {
  73. position: absolute;
  74. right: .15rem;
  75. top: 0;
  76. padding: 1px;
  77. margin: .06rem 0 0;
  78. height: .36rem;
  79. width: .36rem;
  80. background-color: #eff1f6;
  81. border-radius: .36rem;
  82. border: 1px solid #ffd99e;
  83. box-sizing: border-box;
  84. }
  85. .i_nav_user_img_vip span {
  86. position: absolute;
  87. left: 50%;
  88. bottom: -.02rem;
  89. margin: 0 0 0 -.14rem;
  90. width: .28rem;
  91. height: .12rem;
  92. background: url(/assets/img/frontend/icon/user_vip_3.png) no-repeat center center/100% 100%;
  93. }
  94. .i_nav_user_img img,
  95. .i_nav_user_img_vip img {
  96. height: 100%;
  97. width: 100%;
  98. border-radius: .36rem;
  99. }
  100. .i_nav_list {
  101. overflow: hidden;
  102. height: .48rem;
  103. }
  104. .i_nav_list a {
  105. float: left;
  106. margin: 0 .13rem;
  107. padding: .12rem 0 0;
  108. height: .48rem;
  109. box-sizing: border-box;
  110. }
  111. .i_nav_list a strong {
  112. display: block;
  113. height: .26rem;
  114. font-size: .15rem;
  115. color: #5e6a94;
  116. text-align: center;
  117. white-space: nowrap;
  118. line-height: .26rem;
  119. }
  120. .i_nav_list a span {
  121. overflow: hidden;
  122. margin: 0 auto;
  123. display: block;
  124. height: .02rem;
  125. width: .6rem;
  126. }
  127. .i_nav_list .hover strong {
  128. color: #e63b64;
  129. }
  130. .i_nav_list .hover span {
  131. background-color: #e63b64;
  132. }
  133. .body_sytle_girl .i_nav_list .hover strong {
  134. color: #f63566;
  135. }
  136. .body_sytle_girl .i_nav_list .hover span {
  137. background-color: #f63566;
  138. }
  139. .i_module_box {
  140. overflow: hidden;
  141. background-color: #fff;
  142. margin: 0 0.15rem 0.05rem 0.15rem;
  143. }
  144. .i_module_tit {
  145. overflow: hidden;
  146. margin: .08rem .15rem 0;
  147. height: .26rem;
  148. display:flex ;
  149. justify-content: space-between;
  150. align-items: center;
  151. }
  152. .i_module_tit h2 {
  153. float: left;
  154. margin-right: .1rem;
  155. height: .26rem;
  156. font-size: .16rem;
  157. color: #0a347e;
  158. font-weight: bold;
  159. line-height: .26rem;
  160. }
  161. .i_module_tit strong {
  162. float: left;
  163. height: .2rem;
  164. font-size: .16rem;
  165. color: #5d6995;
  166. line-height: .2rem;
  167. }
  168. .i_m_tit_tab {
  169. overflow: hidden;
  170. float: left;
  171. height: .26rem;
  172. width: 2.28rem;
  173. border: 1px solid #77a4ff;
  174. border-radius: .26rem;
  175. box-sizing: border-box;
  176. }
  177. .i_m_tit_tab a {
  178. overflow: hidden;
  179. float: left;
  180. height: 100%;
  181. width: 50%;
  182. font-size: .13rem;
  183. color: #77a4ff;
  184. text-align: center;
  185. line-height: 2;
  186. }
  187. .i_m_tit_tab .hover {
  188. background-color: #77a4ff;
  189. color: #fff;
  190. }
  191. .body_sytle_girl .i_m_tit_tab {
  192. border-color: #fb6b69;
  193. }
  194. .body_sytle_girl .i_m_tit_tab a {
  195. color: #fb6b69;
  196. }
  197. .body_sytle_girl .i_m_tit_tab .hover {
  198. background-color: #fb6b69;
  199. color: #fff;
  200. }
  201. .i_module_tit > a {
  202. float: right;
  203. padding-right: .12rem;
  204. height: .26rem;
  205. background: url(/assets/img/frontend/icon/icon_1.png) no-repeat right center;
  206. background-size: auto .08rem;
  207. font-size: .12rem;
  208. color: #2F2F2F;
  209. line-height: .26rem;
  210. }
  211. .i_images_list {
  212. overflow: hidden;
  213. margin: .08rem .15rem;
  214. }
  215. .i_images_ul {
  216. overflow: hidden;
  217. margin-left: -.1rem;
  218. }
  219. .i_images_ul li {
  220. float: left;
  221. width: 25%;
  222. padding-left: .1rem;
  223. box-sizing: border-box;
  224. }
  225. .i_images_ul a,
  226. .i_images_scroll_ul a {
  227. display: block;
  228. }
  229. .i_images_img {
  230. overflow: hidden;
  231. margin-bottom: .1rem;
  232. }
  233. .i_images_ul h3,
  234. .i_images_scroll_ul h3 {
  235. overflow: hidden;
  236. max-height: .32rem;
  237. font-size: .13rem;
  238. color: #333;
  239. line-height: .16rem;
  240. display: -webkit-box;
  241. -webkit-box-orient: vertical;
  242. -webkit-line-clamp: 2;
  243. }
  244. .i_images_scroll_list {
  245. overflow: hidden;
  246. margin: .1rem .15rem .08rem .06rem;
  247. }
  248. .i_images_scroll_ul {
  249. display: none;
  250. overflow: hidden;
  251. overflow-x: auto;
  252. width: 100%;
  253. white-space: nowrap;
  254. font-size: 0;
  255. }
  256. .i_images_scroll_ul {
  257. -webkit-overflow-scrolling: touch;
  258. }
  259. .i_images_scroll_ul::-webkit-scrollbar {
  260. display: none;
  261. }
  262. .i_images_scroll_ul_hover {
  263. display: block;
  264. }
  265. .i_images_scroll_ul li {
  266. overflow: hidden;
  267. display: inline-block;
  268. margin: 0 0 0 .09rem;
  269. width: .7rem;
  270. vertical-align: top;
  271. }
  272. .i_images_scroll_ul a {
  273. position: relative;
  274. left: 0;
  275. top: 0;
  276. white-space: normal;
  277. width: 100%;
  278. }
  279. .i_images_scroll_ul a span {
  280. position: absolute;
  281. top: 0;
  282. left: .04rem;
  283. width: .1rem;
  284. height: .12rem;
  285. background: url(/assets/img/frontend/icon/icon_4.png) no-repeat 0 0;
  286. background-size: 100% auto;
  287. font-size: .07rem;
  288. text-align: center;
  289. color: #e5bd50;
  290. line-height: 1.2;
  291. }
  292. .i_images_scroll_ul .i_images_img,
  293. .i_images_scroll_ul .i_images_img img {
  294. height: .94rem;
  295. }
  296. .i_images_text_list {
  297. margin: 0 .15rem;
  298. }
  299. .i_images_text_ul {
  300. overflow: hidden;
  301. }
  302. .i_images_text_ul li {
  303. overflow: hidden;
  304. padding: .05rem 0;
  305. border-top: 1px solid #edf0fa;
  306. }
  307. .i_images_text_ul li:first-child {
  308. border-top: 0;
  309. }
  310. .i_images_text_ul a {
  311. position: relative;
  312. left: 0;
  313. top: 0;
  314. overflow: hidden;
  315. display: block;
  316. padding: .05rem 0;
  317. }
  318. .i_images_img{
  319. position: relative;
  320. }
  321. .i_images_img img{
  322. border-radius: .03rem;
  323. }
  324. .i_images_text_ul .i_images_img {
  325. position: absolute;
  326. left: 0;
  327. top: .05rem;
  328. margin-bottom: 0;
  329. width: .78rem;
  330. height: 1.04rem;
  331. }
  332. .i_images_img:after,
  333. .r_img:after,
  334. .s_img:after,
  335. .bd_head_info_img:after{
  336. content: " ";
  337. position: absolute;
  338. top: 0;
  339. left: 0;
  340. width: .1rem;
  341. height: 100%;
  342. 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)));
  343. background-image: -webkit-linear-gradient(left,hsla(0,0%,100%,0),hsla(0,0%,100%,.5) 53%,hsla(0,0%,100%,0));
  344. background-image: linear-gradient(90deg,hsla(0,0%,100%,0),hsla(0,0%,100%,.5) 53%,hsla(0,0%,100%,0));
  345. }
  346. .i_images_text_ul .i_images_img img {
  347. height: 100%;
  348. }
  349. .i_images_txt_box {
  350. overflow: hidden;
  351. margin: 0 0 0 .90rem;
  352. height: 1.08rem;
  353. }
  354. .i_images_txt_box h3 {
  355. overflow: hidden;
  356. margin-bottom: .02rem;
  357. height: .22rem;
  358. font-size: .14rem;
  359. color: #494a4c;
  360. font-weight: bold;
  361. line-height: .22rem;
  362. white-space: nowrap;
  363. text-overflow: ellipsis;
  364. }
  365. .i_images_txt_box p {
  366. overflow: hidden;
  367. margin-bottom: .10rem;
  368. height: .37rem;
  369. font-size: .12rem;
  370. color: #7f7f7f;
  371. line-height: .18rem;
  372. display: -webkit-box;
  373. -webkit-box-orient: vertical;
  374. -webkit-line-clamp: 2;
  375. }
  376. .i_images_txt_other {
  377. position: relative;
  378. height: .19rem;
  379. display: flex;
  380. justify-content: space-between;
  381. align-items: center;
  382. }
  383. .i_images_txt_other strong {
  384. overflow: hidden;
  385. float: left;
  386. height: .16rem;
  387. font-size: .12rem;
  388. color: #8e9dbc;
  389. line-height: .16rem;
  390. }
  391. .i_images_txt_other strong i,
  392. .i_images_txt_other strong b{
  393. float: left;
  394. margin-top: .02rem;
  395. height: .15rem;
  396. font-weight: normal;
  397. font-style: normal;
  398. font-size: .13rem;
  399. line-height: .15rem;
  400. }
  401. .i_images_txt_other strong i{
  402. padding-right: .1rem;
  403. margin-right: .1rem;
  404. border-right: 1px solid #cac4c4;
  405. color: #f7b9a2;
  406. }
  407. .i_images_txt_other strong b{
  408. color: #9a9191;
  409. }
  410. .i_images_txt_other em {
  411. float: right;
  412. padding-left: .2rem;
  413. height: .16rem;
  414. background: url(/assets/img/frontend/icon/icon_2.png) no-repeat 0 .03rem;
  415. background-size: auto .1rem;
  416. font-size: .12rem;
  417. color: #f63566;
  418. line-height: .16rem;
  419. }
  420. .i_images_text_ul .i_text_a {
  421. position: static;
  422. }
  423. .i_text_a .i_images_txt_box {
  424. margin: 0;
  425. height: auto;
  426. }
  427. .i_text_a .i_images_txt_box p {
  428. margin-bottom: 0;
  429. height: .36rem;
  430. display: -webkit-box;
  431. -webkit-box-orient: vertical;
  432. -webkit-line-clamp: 2;
  433. }
  434. .footer_box {
  435. overflow: hidden;
  436. padding: .15rem 0;
  437. }
  438. .footer_ewm {
  439. margin: 0 auto .18rem;
  440. width: 1.4rem;
  441. height: 1.4rem;
  442. }
  443. .footer_ewm img {
  444. display: block;
  445. height: 100%;
  446. }
  447. .footer_txt {
  448. margin: 0 auto;
  449. overflow: hidden;
  450. width: 2.5rem;
  451. text-align: center;
  452. }
  453. .footer_txt p {
  454. overflow: hidden;
  455. font-size: .13rem;
  456. color: #5d6995;
  457. line-height: .24rem;
  458. }
  459. .content_null_box {
  460. overflow: hidden;
  461. padding: 34px 0;
  462. /*border-top: 1px solid #aeb4ca;*/
  463. background-color: #fff;
  464. }
  465. .content_null_top_border {
  466. border-top: 1px solid #aeb4ca;
  467. }
  468. .content_null_box img {
  469. display: block;
  470. margin: 0 auto .06rem;
  471. }
  472. .content_null_box span {
  473. display: block;
  474. overflow: hidden;
  475. font-size: .13rem;
  476. color: #5e6a94;
  477. text-align: center;
  478. line-height: .18rem;
  479. }
  480. .content_null_but_box {
  481. overflow: hidden;
  482. margin-top: .25rem;
  483. padding: .15rem 0;
  484. }
  485. .content_null_but_box a {
  486. display: block;
  487. margin: 0 auto;
  488. width: 2.1rem;
  489. height: .4rem;
  490. background-color: #77a4ff;
  491. font-size: .17rem;
  492. color: #fff;
  493. text-align: center;
  494. line-height: .4rem;
  495. border-radius: .4rem;
  496. }
  497. .loading_box {
  498. overflow: hidden;
  499. height: .5rem;
  500. background-color: #fff;
  501. border-top: 1px solid #edf0fa;
  502. text-align: center;
  503. line-height: .5rem;
  504. }
  505. .loading_box span {
  506. font-size: .12rem;
  507. color: #5e6a94;
  508. line-height: .5rem;
  509. }
  510. #console_main {
  511. height: 0;
  512. font-size: 0;
  513. }
  514. .console_box {
  515. position: fixed;
  516. left: 0;
  517. top: 50%;
  518. right: 0;
  519. z-index: 5000;
  520. margin-top: -.23rem;
  521. height: .46rem;
  522. font-size: 0;
  523. text-align: center;
  524. }
  525. .console_box span {
  526. display: inline-block;
  527. *display: inline;
  528. *zoom: 1;
  529. padding: 0 .3rem;
  530. height: .46rem;
  531. background-color: rgba(0, 0, 0, 0.9);
  532. -moz-border-radius: .06rem;
  533. -webkit-border-radius: .06rem;
  534. border-radius: .06rem;
  535. font-size: .14rem;
  536. color: #fff;
  537. text-align: center;
  538. line-height: .46rem;
  539. }
  540. .christmas_popup_box, .camp_popup_box{
  541. position:fixed;
  542. left:0;
  543. top:0;
  544. right:0;
  545. bottom:0;
  546. z-index:1000;
  547. height:100%;
  548. width:100%;
  549. background-color:rgba(0,0,0,0.4);
  550. overflow:hidden;
  551. text-align:center;
  552. font-size:0;
  553. white-space:nowrap;
  554. }
  555. .christmas_body,
  556. .christmas_jgb{
  557. display:inline-block;
  558. *display:inline;
  559. *zoom:1;
  560. vertical-align:middle;
  561. }
  562. .christmas_jgb{
  563. margin-left:-1px;
  564. height:100%;
  565. width:1px;
  566. overflow:hidden;
  567. }
  568. .christmas_body{
  569. width:99%;
  570. }
  571. .christmas_main{
  572. overflow:hidden;
  573. margin:0 10%;
  574. padding-bottom: .4rem;
  575. }
  576. .christmas_main_but{
  577. clear:both;
  578. display:block;
  579. overflow:hidden;
  580. -webkit-box-border-radius:.06rem;
  581. -moz-box-border-radius:.06rem;
  582. border-radius:.06rem;
  583. }
  584. .christmas_main_but img{
  585. display:block;
  586. width:100%;
  587. border:0;
  588. }
  589. .christmas_close{
  590. position:absolute;
  591. right:.06rem;
  592. top:0;
  593. width:.34rem;
  594. height:.34rem;
  595. background:url(/assets/img/frontend/christmas_style/christmas_close.png) no-repeat center center;
  596. background-size:cover;
  597. }
  598. .christmas_close_2{
  599. float:right;
  600. margin-bottom:.1rem;
  601. width:.3rem;
  602. height:.3rem;
  603. background: url(/assets/img/frontend/christmas_style/christmas_close.png) no-repeat center center;
  604. background-size:cover;
  605. }
  606. .camp_close_btn{
  607. float:right;
  608. margin-bottom:.1rem;
  609. width:.3rem;
  610. height:.3rem;
  611. background: url(/assets/img/frontend/christmas_style/christmas_close.png) no-repeat center center;
  612. background-size:cover;
  613. }
  614. .set_top_box{
  615. position: relative;
  616. z-index: 20;
  617. overflow: hidden;
  618. margin: 1px 1px .05rem;
  619. height: .4rem;
  620. background-color: #f65356;
  621. font-size: .12rem;
  622. color: #fff;
  623. text-align: center;
  624. line-height: .4rem;
  625. }
  626. .section-data{
  627. cursor: pointer;
  628. }
  629. /** 书籍角标 **/
  630. .pongo_blk{ position: relative}
  631. .pongo_blk em.vip-pay {
  632. position: absolute;
  633. right: 0;
  634. bottom: 0;
  635. height: .16rem;
  636. width: .5rem;
  637. background-repeat: no-repeat;
  638. background-size: .5rem .16rem;
  639. background-position: 0 0;
  640. background-image: url(/assets/img/frontend/icon/vip_pay.png);
  641. }
  642. /**/
  643. .w_dis_tit{
  644. display: flex;
  645. justify-content: flex-start;
  646. align-items: center;
  647. position: relative;
  648. z-index: 1;
  649. }
  650. .w_cre_tit {
  651. overflow: hidden;
  652. height: .3rem;
  653. font-size: .13rem;
  654. font-weight: normal;
  655. color: #E63B64;
  656. text-align: left;
  657. line-height: .3rem;
  658. display: flex;
  659. justify-content: flex-start;
  660. align-items: center;
  661. margin-left: 0.1rem;
  662. max-width: 170px;
  663. margin-top: 0.04rem;
  664. /*white-space: nowrap;*/
  665. }
  666. .w_cre_tit span {
  667. overflow: hidden;
  668. white-space: nowrap;
  669. display: inline-block;
  670. }
  671. .w_icon_tit{
  672. width: 0.15rem;
  673. height: 0.15rem;
  674. margin-right: 0.05rem;
  675. display: inline-block;
  676. margin-bottom: 0.04rem;
  677. }
  678. .w_tips_box{
  679. display: flex;
  680. justify-content: flex-start;
  681. align-items: center;
  682. }
  683. .w_text_tips{
  684. height:0.16rem;
  685. border-radius:0.08rem;
  686. font-size:0.12rem;
  687. font-family:PingFangSC-Regular,PingFang SC;
  688. font-weight:400;
  689. color:rgba(202,196,196,1);
  690. line-height:0.16rem;
  691. text-align: center;
  692. display: inline-block;
  693. border:0.01rem solid rgba(214,214,214,1);
  694. padding:0 0.04rem;
  695. }
  696. .w_text_tips:nth-of-type(1) {
  697. margin-right: 0.02rem;
  698. }