chapter.css 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821
  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: 14px;
  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: 14px;
  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. html{
  62. height: 100%;
  63. }
  64. body{
  65. min-height: 100%;
  66. background-color:#eee;
  67. }
  68. /*内容页可点击*/
  69. .menu_position_101 {
  70. position: relative;
  71. left: 0;
  72. top: 0;
  73. z-index: 101;
  74. }
  75. /**/
  76. .read_tit_box {
  77. padding-top: 15px;
  78. }
  79. .menu_box {
  80. display: none;
  81. overflow: hidden;
  82. position: fixed;
  83. left: 0;
  84. top: 0;
  85. right: 0;
  86. bottom: 0;
  87. z-index: 1000;
  88. }
  89. .menu_box i {
  90. position: absolute;
  91. left: 0;
  92. top: 0;
  93. right: 0;
  94. bottom: 0;
  95. }
  96. .menu_head {
  97. position: absolute;
  98. left: 0;
  99. top: 0;
  100. right: 0;
  101. height: 46px;
  102. background-color: #24242b;
  103. }
  104. .menu_head_but {
  105. height: 46px;
  106. }
  107. .return_page {
  108. float: left;
  109. height: 46px;
  110. width: 46px;
  111. background: url(/assets/img/frontend/icon/return_icon_1.png) no-repeat center center;
  112. background-size: 10px auto;
  113. }
  114. .menu_h_more {
  115. float: right;
  116. height: 46px;
  117. width: 46px;
  118. background: url(/assets/img/frontend/icon/more_icon_1.png) no-repeat center center;
  119. background-size: 21px auto;
  120. }
  121. .menu_h_reading {
  122. float: right;
  123. height: 46px;
  124. width: 46px;
  125. background: url(/assets/img/frontend/icon/more_icon_2.png) no-repeat center center;
  126. background-size: 21px auto;
  127. }
  128. .menu_h_more_list {
  129. overflow: hidden;
  130. position: absolute;
  131. padding: 8px 0;
  132. right: 0;
  133. top: 46px;
  134. width: 120px;
  135. background-color: rgba(36, 36, 43, 0.9);
  136. -webkit-transition: -webkit-transform 0.15s;
  137. transition: transform 0.15s;
  138. -webkit-transform: translateX(100%);
  139. transform: translateX(100%);
  140. }
  141. .menu_list_show {
  142. -webkit-transform: translateX(0);
  143. transform: translateX(0);
  144. }
  145. .menu_h_more_list a {
  146. margin: 3px 0;
  147. display: block;
  148. height: 34px;
  149. font-size: 14px;
  150. color: #fff;
  151. text-align: center;
  152. line-height: 34px;
  153. }
  154. .menu_footer {
  155. position: absolute;
  156. left: 0;
  157. right: 0;
  158. bottom: 0;
  159. height: 50px;
  160. }
  161. .m_f_prev {
  162. background-image: url(/assets/img/frontend/icon/menu_icon_1.png);
  163. }
  164. .m_f_catalog {
  165. background-image: url(/assets/img/frontend/icon/menu_icon_2.png);
  166. }
  167. .m_f_set {
  168. background-image: url(/assets/img/frontend/icon/menu_icon_3.png);
  169. }
  170. .menu_footer_but .m_f_day{
  171. display: none;
  172. }
  173. .m_f_day {
  174. background: url(/assets/img/frontend/chapter/icon-night-0.png) no-repeat center;
  175. background-size:.26rem;
  176. }
  177. .m_f_night {
  178. background: url(/assets/img/frontend/chapter/icon-night-1.png) no-repeat center;
  179. background-size:.26rem;
  180. }
  181. .m_f_next {
  182. background-image: url(/assets/img/frontend/icon/menu_icon_5.png);
  183. }
  184. .m_f_set_box {
  185. position: absolute;
  186. left: 0;
  187. right: 0;
  188. bottom: 50px;
  189. padding: 8px 8px 0;
  190. overflow: hidden;
  191. background-color: rgba(36, 36, 43, 0.9);
  192. -webkit-transition: -webkit-transform 0.15s;
  193. transition: transform 0.15s;
  194. -webkit-transform: translateY(200%);
  195. transform: translateY(200%);
  196. }
  197. .menu_set_show {
  198. -webkit-transform: translateY(0);
  199. transform: translateY(0);
  200. }
  201. .m_f_set_fontsize {
  202. margin-bottom: 16px;
  203. overflow: hidden;
  204. position: relative;
  205. left: 0;
  206. top: 0;
  207. }
  208. .m_f_font_min,
  209. .m_f_font_max {
  210. position: absolute;
  211. top: 0;
  212. height: 30px;
  213. width: 50px;
  214. text-align: center;
  215. color: #fff;
  216. font-size: 16px;
  217. line-height: 30px;
  218. }
  219. .m_f_font_min {
  220. left: 0;
  221. }
  222. .m_f_font_max {
  223. right: 0;
  224. }
  225. .m_f_font_range_box {
  226. position: relative;
  227. left: 0;
  228. top: 0;
  229. margin: 0 54px;
  230. height: 30px;
  231. }
  232. .m_f_font_rage {
  233. position: absolute;
  234. left: 0;
  235. top: 14px;
  236. right: 0;
  237. z-index: 100;
  238. height: 2px;
  239. border-left: 0 solid #ed424b;
  240. background-color: rgba(225, 225, 225, 0.2);
  241. }
  242. .m_f_font_rage span {
  243. position: absolute;
  244. left: 0px;
  245. top: -5px;
  246. margin-left: -6px;
  247. height: 12px;
  248. width: 12px;
  249. background-color: #fff;
  250. -moz-border-radius: 12px;
  251. -webkit-border-radius: 12px;
  252. border-radius: 12px;
  253. }
  254. .m_f_font_rage .m_f_font_left_1 {
  255. left: 0;
  256. }
  257. .m_f_font_rage .m_f_font_left_2 {
  258. left: 25%;
  259. }
  260. .m_f_font_rage .m_f_font_left_3 {
  261. left: 50%;
  262. }
  263. .m_f_font_rage .m_f_font_left_4 {
  264. left: 75%;
  265. }
  266. .m_f_font_rage .m_f_font_left_5 {
  267. left: 100%;
  268. }
  269. .m_f_input_range {
  270. display: block;
  271. position: absolute;
  272. left: 0;
  273. right: 0;
  274. top: 8px;
  275. z-index: 200;
  276. height: 14px;
  277. opacity: 0;
  278. filter: alpha(opacity=0);
  279. }
  280. .m_f_set_bg_box {
  281. overflow: hidden;
  282. margin: 0 0 16px;
  283. }
  284. .m_f_set_font_main {
  285. margin-top: 10px;
  286. }
  287. .m_f_set_font_main a {
  288. background-color: #eee;
  289. }
  290. .m_f_set_bg_li {
  291. float: left;
  292. height: 26px;
  293. width: 20%;
  294. }
  295. .m_f_set_bg_but_1 {
  296. background-color: #eee;
  297. }
  298. .m_f_set_bg_but_2 {
  299. background-color: #dfedd6;
  300. }
  301. .m_f_set_bg_but_3 {
  302. background-color: #f8ceda;
  303. }
  304. .m_f_set_bg_but_4,
  305. .read_theme_4 .read_recharge_tit_annotation span,
  306. .read_theme_4 .read_recharge_tit_null span {
  307. background-color: #f3cb9d;
  308. }
  309. .read_theme_1,
  310. .read_theme_1 .read_fiexd_tit h1,
  311. .read_theme_1 .read_recharge_tit_annotation span,
  312. .read_theme_1 .read_recharge_tit_null span {
  313. background-color: #dfedd6;
  314. }
  315. .read_theme_2,
  316. .read_theme_2 .read_fiexd_tit h1,
  317. .read_theme_2 .read_recharge_tit_annotation span,
  318. .read_theme_2 .read_recharge_tit_null span {
  319. background-color: #f8ceda;
  320. }
  321. .read_theme_3,
  322. .read_theme_3 .read_fiexd_tit h1,
  323. .read_theme_3 .read_recharge_tit_annotation span,
  324. .read_theme_3 .read_recharge_tit_null span {
  325. background-color: #f3cb9d;
  326. }
  327. .read_theme_4 {
  328. background: url(/assets/img/frontend/banner/read_theme_4.jpg) repeat-y center center;
  329. background-size: 100% auto;
  330. }
  331. .read_theme_4 .read_fiexd_tit h1 {
  332. background: url(/assets/img/frontend/banner/read_theme_4.jpg) repeat-y center center;
  333. background-size: 100% auto;
  334. }
  335. .read_theme_4 .read_recharge_tit_annotation,
  336. .read_theme_4 .read_recharge_tit_null {
  337. background-image: url(/assets/img/frontend/icon/border_icon_3.png);
  338. }
  339. .read_theme_4 .read_recharge_tit_annotation span,
  340. .read_theme_4 .read_recharge_tit_null span,
  341. .read_theme_4 .read_chapter_price strong,
  342. .read_theme_4 .read_chapter_price em,
  343. .read_theme_4 .read_chapter_price i,
  344. .read_theme_4 .read_fiexd_tit h1,
  345. .read_theme_4 .read_charge_null_price strong {
  346. color: #533722;
  347. }
  348. .read_theme_4 .read_recharge_more_but_1 {
  349. border-color: #c1ae98;
  350. }
  351. .read_theme_4 .read_recharge_tit_annotation span,
  352. .read_theme_4 .read_recharge_tit_null span {
  353. background: url(/assets/img/frontend/banner/read_theme_4.jpg) repeat-y center center;
  354. background-size: auto 286px;
  355. }
  356. .read_theme_3 .read_recharge_but_list a {
  357. background-color: rgba(255, 255, 255, 0.2);
  358. border-color: #e8c6cf;
  359. }
  360. .read_theme_4 .read_recharge_but_list a {
  361. background-color: rgba(255, 255, 255, 0.2);
  362. border-color: #c1ae98;
  363. }
  364. .read_theme_3 .read_recharge_but_select a,
  365. .read_theme_4 .read_recharge_but_select a {
  366. background-image: url(/assets/img/frontend/icon/elect_icon_1.png);
  367. border-color: #44bbff;
  368. }
  369. .read_theme_3 .read_recharge_sms_input {
  370. background-image: url(/assets/img/frontend/icon/sms_icon_3.png);
  371. background-color: #ebdde1;
  372. border-color: #e9cad3;
  373. }
  374. .read_theme_4 .read_recharge_sms_input {
  375. background-image: url(/assets/img/frontend/icon/sms_icon_2.png);
  376. background-color: #dbcebc;
  377. border-color: #c4b19c;
  378. }
  379. .read_theme_3 ::-webkit-input-placeholder {
  380. color: #c3a1ab;
  381. }
  382. .read_theme_3 :-moz-placeholder {
  383. color: #c3a1ab;
  384. }
  385. .read_theme_3 ::-moz-placeholder {
  386. color: #c3a1ab;
  387. }
  388. .read_theme_3 :-ms-input-placeholder {
  389. color: #c3a1ab;
  390. }
  391. .read_theme_4 ::-webkit-input-placeholder {
  392. color: #ad9d8a;
  393. }
  394. .read_theme_4 :-moz-placeholder {
  395. color: #ad9d8a;
  396. }
  397. .read_theme_4 ::-moz-placeholder {
  398. color: #ad9d8a;
  399. }
  400. .read_theme_4 :-ms-input-placeholder {
  401. color: #ad9d8a;
  402. }
  403. .read_theme_5,
  404. .read_theme_5 .read_fiexd_tit h1,
  405. .read_theme_5 .read_recharge_tit_annotation span,
  406. .read_theme_5 .read_recharge_tit_null span {
  407. background: #1d1d1f;
  408. }
  409. .read_theme_5 .read_ewm {
  410. border-color: #604916;
  411. background-color: #29292a;
  412. }
  413. .read_theme_5 .read_ewm_other strong {
  414. color: #9c7317;
  415. }
  416. .read_theme_5 .read_fiexd_tit h1,
  417. .read_theme_5 .read_tit_box h2,
  418. .read_theme_5 .read_tit_box strong,
  419. .read_theme_5 .read_tit_box em,
  420. .read_theme_5 .read_main_p p,
  421. .read_theme_5 .read_main_loading strong,
  422. .read_theme_5 .read_main_next,
  423. .read_theme_5 .read_recharge_tit_annotation span,
  424. .read_theme_5 .read_ewm_body em,
  425. .read_theme_5 .read_ewm_other h3,
  426. .read_theme_5 .read_recharge_tit_null span {
  427. color: #7e8286;
  428. }
  429. .read_theme_5 .read_main_next {
  430. background-color: #555;
  431. }
  432. .read_theme_5 .read_main_loading span {
  433. opacity: 0.3;
  434. }
  435. .read_theme_5 .m_f_night {
  436. display: none;
  437. }
  438. .read_theme_5 .m_f_day {
  439. display: block;
  440. }
  441. .read_theme_5 .read_recharge_list_tit,
  442. .read_theme_5 .read_recharge_sms_input input {
  443. color: #7e8286;
  444. }
  445. .read_theme_5 .read_recharge_but_list a strong,
  446. .read_theme_5 .read_recharge_but_list a em,
  447. .read_theme_5 .read_chapter_price strong,
  448. .read_theme_5 .read_chapter_price em,
  449. .read_theme_5 .read_chapter_price i {
  450. color: #56585c;
  451. }
  452. .read_theme_5 .read_recharge_tit_annotation span,
  453. .read_theme_5 .read_recharge_list_tit span {
  454. color: #6a7a8a;
  455. }
  456. .read_theme_5 .read_chapter_price em span,
  457. .read_theme_5 .read_recharge_but_list a em span,
  458. .read_theme_5 .read_recharge_sms_box span,
  459. .read_theme_5 .read_ewm_body p span {
  460. color: #a43334;
  461. }
  462. .read_theme_5 .read_recharge_but_list i {
  463. color: #c69797;
  464. background-color: #8c2e2f;
  465. }
  466. .read_theme_5 .read_recharge_sms_input {
  467. border-color: #29292a;
  468. background-color: #29292a;
  469. }
  470. .read_theme_5 .read_recharge_but_list a {
  471. background-color: #29292a;
  472. border-color: #29292a;
  473. }
  474. .read_theme_5 .read_recharge_more_but_1 {
  475. border-color: #5a5c5f;
  476. }
  477. .read_theme_5 .read_recharge_but_select a {
  478. background-image: url(/assets/img/frontend/icon/elect_icon_2.png);
  479. border-color: #2559a6;
  480. }
  481. .read_theme_5 .read_recharge_sms_but,
  482. .read_theme_5 .read_charge_order_but {
  483. background-color: #2559a6;
  484. color: #92acd3;
  485. -moz-box-shadow: 0 4px 3px rgba(37, 89, 166, 0.2);
  486. -webkit-box-shadow: 0 4px 3px rgba(37, 89, 166, 0.2);
  487. box-shadow: 0 4px 3px rgba(37, 89, 166, 0.2);
  488. }
  489. /*read_fiexd_tit f84545*/
  490. .read_fiexd_tit {
  491. height: 36px;
  492. }
  493. .read_fiexd_tit h1 {
  494. overflow: hidden;
  495. padding: 0 20px;
  496. position: fixed;
  497. left: 0;
  498. top: 0;
  499. right: 0;
  500. z-index: 1000;
  501. height: 36px;
  502. background-color: #eee;
  503. font-size: 12px;
  504. color: #a1a3a5;
  505. line-height: 36px;
  506. text-align: justify;
  507. box-sizing: border-box;
  508. }
  509. .read_body {
  510. min-height: 100%;
  511. overflow: hidden;
  512. text-align: justify;
  513. }
  514. .read_b_banner {
  515. margin: 0 0 10px;
  516. position: relative;
  517. left: 0;
  518. top: 0;
  519. overflow: hidden;
  520. }
  521. .read_b_banner img {
  522. display: block;
  523. width: 100%;
  524. }
  525. .read_b_close {
  526. position: absolute;
  527. left: 0;
  528. top: 0;
  529. bottom: 0;
  530. right: 93%;
  531. }
  532. .read_b_blank {
  533. position: absolute;
  534. left: 7%;
  535. top: 0;
  536. bottom: 0;
  537. right: 0;
  538. }
  539. .read_content_list {
  540. padding: 0 20px;
  541. }
  542. .read_main_box,
  543. .read_tit_box,
  544. .read_main_p,
  545. .read_main_p p,
  546. .read_main_other_box,
  547. .read_main_loading,
  548. .read_main_banner,
  549. .read_main_banner_img,
  550. .read_ewm {
  551. overflow: hidden;
  552. }
  553. .read_main_other_box {
  554. padding-bottom: 20px;
  555. }
  556. .read_main_banner {
  557. margin: 20px 0;
  558. }
  559. .read_tit_box h2 {
  560. text-align: center;
  561. font-size: .21rem;
  562. color: #1d1b1b;
  563. line-height: 1.4;
  564. }
  565. .read_tit_box h2 em{
  566. margin: 0;
  567. padding: 0;
  568. display: inline-block;
  569. font-size: .21rem;
  570. color: #27c1a0;
  571. font-style: normal;
  572. text-align: left;
  573. line-height: .24rem;
  574. white-space: normal;
  575. word-break: break-all;
  576. word-wrap: break-word;
  577. }
  578. .read_head_bookname{
  579. position: relative;
  580. left: 0;
  581. top: 0;
  582. margin: .1rem 0 0;
  583. overflow: hidden;
  584. height: .4rem;
  585. }
  586. .read_head_report{
  587. position: absolute;
  588. right: 0;
  589. top: 0;
  590. padding: 0 .06rem;
  591. height: .22rem;
  592. width: .4rem;
  593. text-decoration: none;
  594. text-align: center;
  595. font-size: .13rem;
  596. color: #4ab0fe;
  597. box-sizing: border-box;
  598. line-height: .22rem;
  599. }
  600. .read_head_bookname strong{
  601. padding-right: .4rem;
  602. display: block;
  603. text-align: left;
  604. font-size: .13rem;
  605. color: rgba(27,27,27,.5);
  606. font-weight: normal;
  607. line-height: .22rem;
  608. }
  609. .read_tit_box strong {
  610. padding: 10px 0;
  611. display: block;
  612. font-size: 12px;
  613. color: #6a7a8a;
  614. line-height: 1.4;
  615. }
  616. .read_main_p p {
  617. margin: 10px 0;
  618. font-size: 18px;
  619. color: #1b1b1b;
  620. text-indent: 36px;
  621. line-height: 1.75;
  622. }
  623. .read_main_p p:first-child {
  624. display: none;
  625. }
  626. .read_main_loading {
  627. display: none;
  628. white-space: nowrap;
  629. font-size: 0;
  630. text-align: center;
  631. }
  632. .read_main_loading span,
  633. .read_main_loading strong {
  634. display: inline-block;
  635. *display: inline;
  636. *zoom: 1;
  637. margin: 0 2px;
  638. font-size: 14px;
  639. line-height: 42px;
  640. vertical-align: middle;
  641. }
  642. .read_main_loading span {
  643. overflow: hidden;
  644. height: 10px;
  645. width: 32px;
  646. background: url(/assets/img/frontend/icon/loading.gif) no-repeat 0 0;
  647. background-size: 32px 10px;
  648. }
  649. .read_main_loading strong {
  650. margin-left: 4px;
  651. color: #6a7a8a;
  652. }
  653. .read_main_next {
  654. margin: 20px 0;
  655. height: 44px;
  656. background-color: #f4f6f8;
  657. font-size: 16px;
  658. color: #6a7a8a;
  659. text-align: center;
  660. line-height: 44px;
  661. -moz-border-radius: 44px;
  662. -webkit-border-radius: 44px;
  663. border-radius: 44px;
  664. }
  665. .read_main_banner_img a {
  666. display: block;
  667. overflow: hidden;
  668. }
  669. .read_main_banner_img img {
  670. display: block;
  671. width: 100%;
  672. }
  673. .read_ewm {
  674. padding: 10px;
  675. box-sizing: border-box;
  676. }
  677. .read_ewm_img_box {
  678. margin: 0 auto;
  679. width: 240px;
  680. overflow: hidden;
  681. }
  682. .read_ewm_img {
  683. margin: 0 auto;
  684. overflow: hidden;
  685. width: 120px;
  686. }
  687. .read_ewm_img img {
  688. display: block;
  689. width: 100%;
  690. }
  691. .read_ewm_img_box span {
  692. display: block;
  693. height: 30px;
  694. font-size: 14px;
  695. color: #a1a3a5;
  696. text-align: center;
  697. line-height: 30px;
  698. }
  699. .read_ewm_other {
  700. margin: 0 100px 0 0;
  701. }
  702. .read_ewm_other h3 {
  703. margin-bottom: 6px;
  704. height: 30px;
  705. font-size: 20px;
  706. color: #000;
  707. line-height: 30px;
  708. }
  709. .read_ewm_other span {
  710. display: block;
  711. font-size: 12px;
  712. color: #666;
  713. line-height: 20px;
  714. }
  715. .read_ewm_other strong {
  716. margin-top: 14px;
  717. display: block;
  718. font-size: 12px;
  719. color: #e6a30c;
  720. line-height: 20px;
  721. }
  722. .read_body_fontsize_1 .read_main_p p {
  723. text-indent: .28rem;
  724. font-size: .20rem;
  725. }
  726. .read_body_fontsize_2 .read_main_p p {
  727. text-indent: .36rem;
  728. font-size: .22rem;
  729. }
  730. .read_body_fontsize_3 .read_main_p p {
  731. text-indent: .44rem;
  732. font-size: .24rem;
  733. }
  734. .read_body_fontsize_4 .read_main_p p {
  735. text-indent: .42rem;
  736. font-size: .21rem;
  737. }
  738. .read_body_fontsize_5 .read_main_p p {
  739. text-indent: .48rem;
  740. font-size: .25rem;
  741. }
  742. .read_catalog_box {
  743. visibility: hidden;
  744. position: fixed;
  745. left: 0;
  746. top: 0;
  747. right: 0;
  748. bottom: 0;
  749. z-index: 3000;
  750. overflow: auto;
  751. -webkit-transition: visibility 0.25s;
  752. transition: visibility 0.25s;
  753. }
  754. .read_catalog_show {
  755. visibility: visible;
  756. -webkit-transition: none;
  757. transition: none;
  758. }
  759. .read_catalog_list {
  760. overflow: hidden;
  761. position: relative;
  762. left: 0;
  763. top: 0;
  764. z-index: 10;
  765. margin-right: 15%;
  766. padding: 0 14px;
  767. display: block;
  768. height: 100%;
  769. white-space: nowrap;
  770. -webkit-transition: -webkit-transform 0.15s;
  771. transition: transform 0.15s;
  772. -webkit-transform: translateX(-100%);
  773. transform: translateX(-100%);
  774. }
  775. .read_catalog_show .read_catalog_list,
  776. .read_catalog_show .read_catalog_loading {
  777. -webkit-transform: translateX(0);
  778. transform: translateX(0);
  779. }
  780. .read_catalog_box i {
  781. position: absolute;
  782. left: 0;
  783. top: 0;
  784. right: 0;
  785. bottom: 0;
  786. z-index: 5;
  787. background: rgba(36, 36, 43, 0.9) url(/assets/img/frontend/icon/close_icon_1.png) no-repeat 95% center;
  788. background-size: 22px 22px;
  789. -webkit-transition: opacity 0.25s;
  790. transition: opacity 0.25s;
  791. opacity: 0;
  792. }
  793. .read_catalog_show i {
  794. opacity: 1;
  795. }
  796. .read_catalog_tit {
  797. height: 50px;
  798. }
  799. .read_catalog_tit strong {
  800. float: left;
  801. height: 50px;
  802. font-size: 16px;
  803. color: #333;
  804. line-height: 50px;
  805. }
  806. .read_catalog_tit span {
  807. float: right;
  808. padding-right: 26px;
  809. height: 50px;
  810. background: url(/assets/img/frontend/icon/list_icon_1.png) no-repeat right center;
  811. background-size: 16px auto;
  812. font-size: 16px;
  813. color: #333;
  814. line-height: 50px;
  815. }
  816. .read_catalog_tit .read_reverse_sequence {
  817. background-image: url(/assets/img/frontend/icon/list_icon_2.png);
  818. }
  819. .read_catalog_ul {
  820. overflow: auto;
  821. position: absolute;
  822. left: 0;
  823. top: 50px;
  824. right: 0;
  825. bottom: 50px;
  826. padding: 0 14px;
  827. box-sizing: border-box;
  828. }
  829. .more_mun_but {
  830. position: absolute;
  831. left: 0;
  832. right: 0;
  833. bottom: 0;
  834. height: 50px;
  835. width: 100%;
  836. overflow: hidden;
  837. display: block;
  838. font-size: 14px;
  839. color: #44bbff;
  840. text-align: center;
  841. white-space: normal;
  842. word-break: break-all;
  843. word-wrap: break-word;
  844. line-height: 50px;
  845. border-top: 1px solid #edf0fa;
  846. }
  847. .read_catalog_ul_touch {
  848. -webkit-overflow-scrolling: touch;
  849. }
  850. .read_catalog_ul li {
  851. overflow: hidden;
  852. height: 50px;
  853. background-color: #fff;
  854. border-bottom: 1px solid #edf0fa;
  855. }
  856. .read_catalog_ul li a {
  857. overflow: hidden;
  858. display: block;
  859. height: 50px;
  860. font-size: 14px;
  861. color: #a1a3a5;
  862. white-space: normal;
  863. word-break: break-all;
  864. word-wrap: break-word;
  865. line-height: 50px;
  866. }
  867. .read_catalog_ul li a:visited,
  868. .read_catalog_ul li a {
  869. color: #3a4a5a;
  870. }
  871. .read_catalog_ul li a.read_catalog_elect {
  872. color: #5599ff;
  873. }
  874. .read_catalog_loading {
  875. position: absolute;
  876. left: 0;
  877. top: 0;
  878. right: 15%;
  879. bottom: 0;
  880. z-index: 6;
  881. padding-top: 50%;
  882. box-sizing: border-box;
  883. background-color: #fff;
  884. -webkit-transition: -webkit-transform 0.15s;
  885. transition: transform 0.15s;
  886. -webkit-transform: translateX(-100%);
  887. transform: translateX(-100%);
  888. }
  889. .read_catalog_loading_img_1 {
  890. margin: 0 auto 20px;
  891. width: 210px;
  892. height: 155px;
  893. background: url(/assets/img/frontend/icon/loading_icon_2.gif) no-repeat center center;
  894. background-size: 210px 155px;
  895. }
  896. .read_catalog_loading strong {
  897. display: block;
  898. font-size: 14px;
  899. color: #6a7a8a;
  900. text-align: center;
  901. line-height: 30px;
  902. }
  903. .read_catalog_loading_hide .read_catalog_loading_img_1,
  904. .read_catalog_loading_hide strong {
  905. display: none;
  906. }
  907. .menu_evocation_box {
  908. position: fixed;
  909. left: 0;
  910. top: 0;
  911. right: 0;
  912. bottom: 0;
  913. z-index: 100;
  914. }
  915. .menu_evocation_box span,
  916. .menu_evocation_box strong {
  917. display: block;
  918. width: 100%;
  919. }
  920. .menu_evocation_box span {
  921. height: 30%;
  922. }
  923. .menu_evocation_box strong {
  924. height: 40%;
  925. }
  926. /*read_fiexd_tit end*/
  927. /*微信扫码*/
  928. .fiexd_ewm_box {
  929. display: none;
  930. position: fixed;
  931. z-index: 5000;
  932. left: 0;
  933. top: 0;
  934. right: 0;
  935. bottom: 0;
  936. width: 100%;
  937. overflow: hidden;
  938. background-color: rgba(27, 27, 27, 0.8);
  939. font-size: 0;
  940. white-space: nowrap;
  941. text-align: center;
  942. }
  943. .f_main_cloes {
  944. float: right;
  945. margin-top: 4px;
  946. width: 40px;
  947. height: 40px;
  948. background: url(/assets/img/frontend/icon/cha_icon_2.png) no-repeat center center;
  949. background-size: 18px 18px;
  950. }
  951. .f_main_cloes_2 {
  952. overflow: hidden;
  953. display: block;
  954. margin: 15px auto 0;
  955. height: 26px;
  956. width: 26px;
  957. background: url(/assets/img/frontend/icon/close_icon_3.png) no-repeat center center;
  958. background-size: 14px 14px;
  959. border-radius: 26px;
  960. border: 1px solid #fff;
  961. }
  962. .f_main_box,
  963. .f_align {
  964. display: inline-block;
  965. *display: inline;
  966. *zoom: 1;
  967. vertical-align: middle;
  968. }
  969. .f_align {
  970. margin-left: -1px;
  971. height: 100%;
  972. width: 1px;
  973. }
  974. .f_main_box {
  975. width: 280px;
  976. }
  977. .f_main_info {
  978. overflow: hidden;
  979. background-color: #fff;
  980. border-radius: 6px;
  981. }
  982. .f_mian_title {
  983. padding: 15px 0 0;
  984. overflow: hidden;
  985. }
  986. .f_mian_title h3 {
  987. height: 32px;
  988. font-size: 18px;
  989. color: #5e6a94;
  990. text-align: center;
  991. line-height: 32px;
  992. }
  993. .f_mian_title p {
  994. text-align: center;
  995. font-size: 13px;
  996. color: #fb6b69;
  997. line-height: 20px;
  998. }
  999. .f_mian_img {
  1000. overflow: hidden;
  1001. margin: 10px auto;
  1002. padding: 10px;
  1003. width: 160px;
  1004. height: 160px;
  1005. box-sizing: border-box;
  1006. border: 1px #dfe1e6 solid;
  1007. -moz-box-shadow: 0 2px 3px 0px rgba(94, 106, 148, 0.3);
  1008. -webkit-box-shadow: 0 2px 3px 0px rgba(94, 106, 148, 0.3);
  1009. box-shadow: 0 2px 3px 0px rgba(94, 106, 148, 0.3);
  1010. }
  1011. .f_mian_img canvas,
  1012. .f_mian_img img {
  1013. display: block;
  1014. width: 100%;
  1015. height: 100%;
  1016. }
  1017. .f_main_text,
  1018. .f_main_text strong,
  1019. .f_main_text span {
  1020. display: block;
  1021. overflow: hidden;
  1022. font-size: 14px;
  1023. font-weight: normal;
  1024. color: #5e6a94;
  1025. text-align: center;
  1026. white-space: normal;
  1027. line-height: 18px;
  1028. }
  1029. .f_main_text {
  1030. padding: 0 16px 16px;
  1031. }
  1032. .f_main_text strong,
  1033. .f_main_text span {
  1034. margin: 4px 0;
  1035. }
  1036. .f_main_text span {
  1037. font-size: 10px;
  1038. }
  1039. .f_main_tomorrow_but {
  1040. display: block;
  1041. height: 46px;
  1042. border-top: 1px solid #dfe1e6;
  1043. text-align: center;
  1044. font-size: 15px;
  1045. color: #77a4ff;
  1046. line-height: 46px;
  1047. }
  1048. .f_main_over {
  1049. display: block;
  1050. margin: -8px auto 8px;
  1051. width: 200px;
  1052. height: 36px;
  1053. background-color: #f6f6f6;
  1054. border: 1px solid #ddd;
  1055. font-size: 14px;
  1056. color: #333;
  1057. text-align: center;
  1058. line-height: 36px;
  1059. border-radius: 4px;
  1060. }
  1061. /*弹出框*/
  1062. .bind_alert_box {
  1063. display: none;
  1064. position: fixed;
  1065. left: 0;
  1066. top: 0;
  1067. right: 0;
  1068. bottom: 0;
  1069. padding: 20px 0;
  1070. overflow: hidden;
  1071. background-color: rgba(0, 0, 0, 0.5);
  1072. text-align: center;
  1073. font-size: 0;
  1074. z-index: 3000;
  1075. }
  1076. .bind_alert_main,
  1077. .bind_alert_height {
  1078. display: inline-block;
  1079. *display: inline;
  1080. *zoom: 1;
  1081. vertical-align: middle;
  1082. }
  1083. .bind_alert_height {
  1084. height: 100%;
  1085. overflow: hidden;
  1086. width: 1px;
  1087. margin-left: -10px;
  1088. }
  1089. .bind_alert_main {
  1090. overflow: hidden;
  1091. width: 240px;
  1092. background-color: #fff;
  1093. border-radius: 6px;
  1094. font-size: 14px;
  1095. -moz-box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.3);
  1096. -webkit-box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.3);
  1097. box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.3);
  1098. }
  1099. .alert_tit {
  1100. text-align: center;
  1101. overflow: hidden;
  1102. height: 40px;
  1103. }
  1104. .alert_tit_clear {
  1105. margin: 5px 5px 0 0;
  1106. float: right;
  1107. width: 30px;
  1108. height: 30px;
  1109. background: url(/assets/img/frontend/icon/cha_icon_2.png) no-repeat center center;
  1110. background-size: 18px auto;
  1111. }
  1112. .alert_tit h2 {
  1113. margin: 0 40px;
  1114. overflow: hidden;
  1115. height: 40px;
  1116. font-size: 16px;
  1117. color: #808080;
  1118. text-align: center;
  1119. line-height: 40px;
  1120. }
  1121. .alert_tit h3 {
  1122. margin-top: 10px;
  1123. padding-left: 22px;
  1124. display: inline-block;
  1125. *display: inline;
  1126. *zoom: 1;
  1127. overflow: hidden;
  1128. height: 30px;
  1129. background: url(/assets/img/frontend/icon/warning_icon_2.png) no-repeat 0 center;
  1130. background-size: 18px auto;
  1131. font-size: 16px;
  1132. color: #333;
  1133. text-align: center;
  1134. line-height: 30px;
  1135. }
  1136. .alert_text {
  1137. padding: 10px;
  1138. }
  1139. .alert_txt_c {
  1140. font-size: 14px;
  1141. color: #808080;
  1142. text-align: left;
  1143. line-height: 20px;
  1144. }
  1145. .alert_but_box {
  1146. border-top: 1px solid #d8d8d8;
  1147. overflow: hidden;
  1148. }
  1149. .alert_but_box a {
  1150. display: block;
  1151. float: left;
  1152. width: 50%;
  1153. box-sizing: border-box;
  1154. }
  1155. .alert_but_1 {
  1156. height: 36px;
  1157. font-size: 15px;
  1158. color: #ff6fa2;
  1159. text-align: center;
  1160. line-height: 36px;
  1161. }
  1162. .unicom_input_box {
  1163. overflow: hidden;
  1164. margin: 10px 16px 0;
  1165. padding: 5px 6px;
  1166. height: 28px;
  1167. border: 1px solid #d8d8d8;
  1168. background-color: #fff;
  1169. border-radius: 4px;
  1170. }
  1171. .unicom_input_box input {
  1172. display: block;
  1173. width: 100%;
  1174. height: 28px;
  1175. border: 0;
  1176. margin: 0;
  1177. padding: 0;
  1178. font-size: 14px;
  1179. color: #333;
  1180. line-height: 28px;
  1181. }
  1182. .unicom_new_msg {
  1183. padding: 0 16px;
  1184. height: 34px;
  1185. text-align: right;
  1186. line-height: 24px;
  1187. }
  1188. .unicom_new_msg a,
  1189. .unicom_new_msg span {
  1190. font-size: 12px;
  1191. color: #4ab0fe;
  1192. line-height: 28px;
  1193. }
  1194. .marquee_text {
  1195. margin-bottom: 10px;
  1196. text-align: justify;
  1197. padding: 5px 16px;
  1198. background-color: #fffacb;
  1199. }
  1200. .marquee_main {
  1201. position: relative;
  1202. left: 0;
  1203. top: 0;
  1204. overflow: hidden;
  1205. }
  1206. .marquee_main span {
  1207. display: block;
  1208. font-size: 12px;
  1209. color: #9a6d44;
  1210. line-height: 20px;
  1211. }
  1212. /*read_ewm_body*/
  1213. .read_ewm_body {
  1214. display: none;
  1215. overflow: hidden;
  1216. padding: 0 20px 220px;
  1217. }
  1218. .read_ewm_body p {
  1219. margin: 20px 0;
  1220. }
  1221. .read_ewm_body p span {
  1222. color: #f84545;
  1223. }
  1224. .read_body_ewm_img {
  1225. margin: 40px auto 10px;
  1226. overflow: hidden;
  1227. width: 180px;
  1228. height: 180px;
  1229. }
  1230. .read_body_ewm_img img {
  1231. display: block;
  1232. width: 180px;
  1233. height: 180px;
  1234. }
  1235. .read_ewm_body em {
  1236. display: block;
  1237. height: 26px;
  1238. font-size: 14px;
  1239. color: #3a4a5a;
  1240. text-align: center;
  1241. line-height: 26px;
  1242. }
  1243. .read_ewm_body a {
  1244. display: block;
  1245. margin: 0 auto;
  1246. height: 30px;
  1247. width: 260px;
  1248. font-size: 14px;
  1249. color: #44bbff;
  1250. text-align: center;
  1251. line-height: 30px;
  1252. }
  1253. .scanIframe {
  1254. overflow: hidden;
  1255. position: absolute;
  1256. left: -100px;
  1257. top: -100px;
  1258. margin: 0;
  1259. padding: 0;
  1260. border: 0;
  1261. height: 1px;
  1262. width: 1px;
  1263. opacity: 0;
  1264. filter: alpha(opacity=0);
  1265. }
  1266. /***my_bookcase****/
  1267. .menu_h_more_list .my_bookcase,
  1268. .menu_h_more_list .menu_h_more_personal_center {
  1269. display: none;
  1270. }
  1271. .read_nex_but {
  1272. display: block;
  1273. margin: .2rem 0;
  1274. overflow: hidden;
  1275. height: .34rem;
  1276. border:1px solid #27c1a0;
  1277. font-size: .15rem;
  1278. color: #27c1a0;
  1279. text-align: center;
  1280. line-height: .34rem;
  1281. border-radius: .34rem;
  1282. /*box-shadow: 0 4px 3px rgba(68, 187, 255, 0.2);*/
  1283. }
  1284. .read_theme_5 .read_nex_but {
  1285. color: #989898;
  1286. /*background-color: #555;
  1287. box-shadow: 0 4px 3px rgba(85, 85, 85, 0.2);*/
  1288. }
  1289. .read_other_box {
  1290. overflow: hidden;
  1291. padding-bottom: 10px;
  1292. }
  1293. .read_other_but_l {
  1294. overflow: hidden;
  1295. float: left;
  1296. padding: 4px 6px;
  1297. height: 24px;
  1298. font-size: 14px;
  1299. color: #27c1a0;
  1300. line-height: 24px;
  1301. }
  1302. .read_other_but_r {
  1303. overflow: hidden;
  1304. float: right;
  1305. padding: 4px 6px;
  1306. height: 24px;
  1307. text-decoration: none;
  1308. font-size: 14px;
  1309. color: #27c1a0;
  1310. line-height: 24px;
  1311. }
  1312. .read_other_box span {
  1313. overflow: hidden;
  1314. float: left;
  1315. margin: 9px 10px 0;
  1316. height: 14px;
  1317. width: 1px;
  1318. background-color: #27c1a0;
  1319. }
  1320. .recent_reading_but {
  1321. position:absolute;
  1322. padding: 0 24px 0 20px;
  1323. right: 0;
  1324. top: 60px;
  1325. height: 32px;
  1326. background-color: #38383e;
  1327. border-radius: 32px 0 0 32px;
  1328. font-size: 16px;
  1329. color: #fff;
  1330. line-height: 32px;
  1331. z-index: 1001;
  1332. }
  1333. #console_main {
  1334. height: 0;
  1335. font-size: 0;
  1336. }
  1337. .console_box {
  1338. position: fixed;
  1339. left: 0;
  1340. top: 50%;
  1341. right: 0;
  1342. z-index: 5000;
  1343. margin-top: -.23rem;
  1344. height: .46rem;
  1345. font-size: 0;
  1346. text-align: center;
  1347. }
  1348. .console_box span {
  1349. display: inline-block;
  1350. *display: inline;
  1351. *zoom: 1;
  1352. padding: 0 .3rem;
  1353. height: .46rem;
  1354. background-color: rgba(0, 0, 0, 0.9);
  1355. -moz-border-radius: .06rem;
  1356. -webkit-border-radius: .06rem;
  1357. border-radius: .06rem;
  1358. font-size: .14rem;
  1359. color: #fff;
  1360. text-align: center;
  1361. line-height: .46rem;
  1362. }
  1363. .page-guide-and {
  1364. display: none;
  1365. position: fixed;
  1366. left: 0;
  1367. top: 0;
  1368. bottom: 0;
  1369. z-index: 600;
  1370. width: 100%;
  1371. background: url(/assets/img/android.png);
  1372. background-size: 100% 100%;
  1373. }
  1374. .page-guide-ios {
  1375. display: none;
  1376. position: fixed;
  1377. left: 0;
  1378. top: 0;
  1379. bottom: 0;
  1380. z-index: 600;
  1381. width: 100%;
  1382. background: url(/assets/img/ios.png);
  1383. background-size: 100% 100%;
  1384. }
  1385. .read_tit_box{
  1386. -webkit-touch-callout: none; /* iOS Safari */
  1387. -webkit-user-select: none; /* Chrome/Safari/Opera */
  1388. -khtml-user-select: none; /* Konqueror */
  1389. -moz-user-select: none; /* Firefox */
  1390. -ms-user-select: none; /* Internet Explorer/Edge */
  1391. user-select: none; /* Non-prefixed version, currentlynot supported by any browser */
  1392. }
  1393. .reminder_box{
  1394. overflow: hidden;
  1395. padding: .14rem .24rem;
  1396. background-color: rgba(215,221,220,.3);
  1397. font-size: .14rem;
  1398. color: #535756;
  1399. line-height: .24rem;
  1400. }
  1401. .reminder_box span{
  1402. margin-left: -.08rem;
  1403. color: #f56451;
  1404. font-size: .14rem;
  1405. }
  1406. .read_theme_5 .reminder_box,
  1407. .read_theme_5 .read_head_bookname strong{
  1408. color: #7e8286;
  1409. }
  1410. .read_theme_5 .read_tit_box em,
  1411. .read_theme_5 .read_other_but_l,
  1412. .read_theme_5 .read_other_box span,
  1413. .read_theme_5 .read_other_but_r,
  1414. .read_theme_5 .read_nex_but{
  1415. color: #93e0cf;
  1416. }
  1417. .read_theme_5 .read_nex_but{
  1418. border-color: #93e0cf;
  1419. }
  1420. .read_pop_icon{
  1421. position:fixed;
  1422. right: .12rem;
  1423. top: 1.5rem;
  1424. z-index: 100;
  1425. height: 1.03rem;
  1426. width: .86rem;
  1427. }
  1428. .read_pop_icon .rpi_img,
  1429. .read_pop_icon img,
  1430. .rphb_img img{
  1431. display: block;
  1432. height: 100%;
  1433. width: 100%;
  1434. }
  1435. .read_pop_icon .close_rpi{
  1436. position: absolute;
  1437. top: .16rem;
  1438. right: .06rem;
  1439. height: .2rem;
  1440. width: .2rem;
  1441. background: url(../../../img/1.png) no-repeat 0 0;
  1442. background-size: .2rem .2rem;
  1443. }
  1444. .read_pop_hd_box{
  1445. display: none;
  1446. position: fixed;
  1447. left: 0;
  1448. top: 0;
  1449. right: 0;
  1450. bottom: 0;
  1451. z-index: 1000;
  1452. background-color: rgba(0,0,0,.8);
  1453. font-size: 0;
  1454. white-space: nowrap;
  1455. text-align: center;
  1456. }
  1457. .rphb_content,
  1458. .rphb_jgb{
  1459. display: inline-block;
  1460. vertical-align: middle;
  1461. }
  1462. .rphb_jgb{
  1463. overflow: hidden;
  1464. height: 100%;
  1465. width: 1px;
  1466. margin-left: -1px;
  1467. }
  1468. .rphb_content{
  1469. overflow: hidden;
  1470. position: relative;
  1471. left: 0;
  1472. top: 0;
  1473. padding-bottom:20px;
  1474. }
  1475. .rphb_img{
  1476. display: block;
  1477. overflow: hidden;
  1478. height: 368px;
  1479. width: 307px;
  1480. }
  1481. .close_rphb{
  1482. position: absolute;
  1483. right:14px;
  1484. top: 30px;
  1485. height: 25px;
  1486. width: 25px;
  1487. background: url(../../../img/frontend/christmas_style/christmas_close.png) no-repeat 0 0;
  1488. background-size: 100% 100%;
  1489. }
  1490. /*章末推荐书籍*/
  1491. #read_recommend {
  1492. width: 100%;
  1493. position: relative;
  1494. bottom: 0;
  1495. padding: 0 14.4px;
  1496. overflow: hidden;
  1497. box-sizing: border-box;
  1498. }
  1499. #read_recommend .read_recommend_cover {
  1500. float: left;
  1501. position: relative;
  1502. width: 25%;
  1503. height: 100px;
  1504. border-radius: 0 0 4px 0;
  1505. background-color: #f1f1f1;
  1506. margin-right: 3%;
  1507. }
  1508. #read_recommend .read_recommend_cover .read_recommend_tag {
  1509. position: absolute;
  1510. display: inline-block;
  1511. width: 52px;
  1512. height: 15px;
  1513. line-height: 15px;
  1514. background: #fbd345;
  1515. border-radius: 0 0px 4px 0px;
  1516. font-size: 12px;
  1517. font-family: PingFangSC-Regular, PingFang SC;
  1518. font-weight: 400;
  1519. color: #000000;
  1520. text-align: center;
  1521. z-index: 999;
  1522. }
  1523. #read_recommend .read_recommend_cover img {
  1524. display: block;
  1525. width: 100%;
  1526. height: 100%;
  1527. position: relative;
  1528. }
  1529. #read_recommend .read_recommend_detail {
  1530. width: 72%;
  1531. float: right;
  1532. }
  1533. #read_recommend .read_recommend_detail .read_recommend_bookname {
  1534. margin: 0;
  1535. padding: 0;
  1536. height: 20px;
  1537. line-height: 20px;
  1538. text-align: left;
  1539. font-size: 15px;
  1540. font-family: PingFangSC-Medium, PingFang SC;
  1541. font-weight: 500;
  1542. color: rgba(0, 0, 0, 0.7);
  1543. margin-bottom: 7.2px;
  1544. }
  1545. #read_recommend .read_recommend_detail .read_recommend_desc {
  1546. margin: 0;
  1547. padding: 0;
  1548. font-size: 12px;
  1549. font-family: PingFangSC-Regular, PingFang SC;
  1550. font-weight: 400;
  1551. color: rgba(0, 0, 0, 0.6);
  1552. line-height: 18px;
  1553. display: -webkit-box;
  1554. -webkit-box-orient: vertical;
  1555. -webkit-line-clamp: 2;
  1556. overflow: hidden;
  1557. }
  1558. #read_recommend .read_recommend_detail .read_recommend_bottom {
  1559. margin-top: 7.6px;
  1560. height: 29px;
  1561. overflow: hidden;
  1562. }
  1563. #read_recommend .read_recommend_detail .read_recommend_bottom .read_recommend_author {
  1564. float: left;
  1565. margin-top: 12px;
  1566. height: 16px;
  1567. font-size: 12px;
  1568. font-family: PingFangSC-Regular, PingFang SC;
  1569. font-weight: 400;
  1570. color: rgba(0, 0, 0, 0.6);
  1571. line-height: 16px;
  1572. }
  1573. #read_recommend .read_recommend_detail .read_recommend_bottom .read_recommend_start_read {
  1574. float: right;
  1575. width: 90px;
  1576. height: 29px;
  1577. line-height: 29px;
  1578. background: #000000;
  1579. border-radius: 14px;
  1580. opacity: 0.55;
  1581. font-size: 12px;
  1582. font-family: PingFangSC-Regular, PingFang SC;
  1583. font-weight: 400;
  1584. color: #ffffff;
  1585. text-align: center;
  1586. text-decoration: none;
  1587. }