stylesheet.css 24 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099
  1. /* 西文字体 */
  2. span.duokan-western {
  3. font-family: "DK-SERIF", "Palatino";
  4. }
  5. /* 符号字体 */
  6. span.duokan-symbol {
  7. font-family: "DK-SYMBOL", "Symbol";
  8. }
  9. /* 文字不换行(古诗) */
  10. span.duokan-text-nowrap {
  11. white-space: nowrap;
  12. }
  13. /* 段首大字2行高 */
  14. span.duokan-dropcaps-two {
  15. float: left;
  16. font-size: 2em;
  17. duokan-drop-caps-style: duokan-two-line-caps;
  18. margin-bottom: -0.25em;
  19. }
  20. /* 段首大字3行高 */
  21. span.duokan-dropcaps-three {
  22. float: left;
  23. font-size: 3em;
  24. duokan-drop-caps-style: duokan-three-line-caps;
  25. margin-bottom: -0.15em;
  26. }
  27. /* 代码中文样式 */
  28. span.duokan-code-cn {
  29. font-family: "DK-KAITI", "方正楷体", "华文楷体", "楷体";
  30. }
  31. /* 超链接 */
  32. a.duokan-hyperlink {
  33. color: blue;
  34. font-style: italic;
  35. text-decoration: underline;
  36. }
  37. /* 默认有序列表 */
  38. ol.duokan-olist {
  39. font-family: "DK-KAITI", "方正楷体", "华文楷体", "楷体";
  40. font-size: 16px;
  41. }
  42. /* 无序号有序列表 */
  43. ol.duokan-olist-noindex {
  44. font-family: "DK-KAITI", "方正楷体", "华文楷体", "楷体";
  45. font-size: 16px;
  46. list-style-type: none;
  47. }
  48. /* 默认无序列表 */
  49. ul.duokan-ulist {
  50. font-family: "DK-KAITI", "方正楷体", "华文楷体", "楷体";
  51. font-size: 16px;
  52. list-style-type: disc;
  53. }
  54. /* 无序号无序列表 */
  55. ul.duokan-ulist-noindex {
  56. font-family: "DK-KAITI", "方正楷体", "华文楷体", "楷体";
  57. font-size: 16px;
  58. list-style-type: none;
  59. }
  60. /* 二级列表 */
  61. ul.list-sub2 {
  62. font-family: "DK-KAITI", "方正楷体", "华文楷体", "楷体";
  63. font-size: 16px;
  64. list-style-type: circle;
  65. margin-left: 1em;
  66. margin-top: 1em;
  67. }
  68. /* 三级列表 */
  69. ul.list-sub3 {
  70. font-family: "DK-KAITI", "方正楷体", "华文楷体", "楷体";
  71. font-size: 16px;
  72. list-style-type: square;
  73. margin-left: 2em;
  74. margin-top: 1em;
  75. }
  76. /* 图片左绕排50%宽度 */
  77. div.duokan-float-left {
  78. width: 50%;
  79. float: left;
  80. margin-right: 0.5em;
  81. margin-bottom: 0.5em;
  82. text-align: center;
  83. }
  84. /* 图片左绕排15%宽度*/
  85. div.duokan-float-left30 {
  86. width: 25%;
  87. float: left;
  88. margin-right: 0em;
  89. margin-bottom: 0em;
  90. text-align: left;
  91. }
  92. /* 图片右绕排50%宽度 */
  93. div.duokan-float-right {
  94. width: 50%;
  95. float: right;
  96. margin-left: 0.5em;
  97. margin-bottom: 0em;
  98. text-align: center;
  99. }
  100. /* 图片右绕排30%宽度-细高图 */
  101. div.duokan-float-right30 {
  102. width: 30%;
  103. float: right;
  104. margin-left: 0.5em;
  105. margin-bottom: 0.5em;
  106. text-align: center;
  107. }
  108. /* 图片居中80%宽度 */
  109. div.duokan-center80 {
  110. width: 80%;
  111. margin: 1em auto 1em auto;
  112. text-align: center;
  113. }
  114. /* 图片居中60%宽度 */
  115. div.duokan-center60 {
  116. width: 60%;
  117. margin: 1em auto 1em auto;
  118. text-align: center;
  119. }
  120. /* 图片居中30%宽度 */
  121. div.duokan-center30 {
  122. width: 30%;
  123. margin: 1em auto 1em auto;
  124. text-align: center;
  125. }
  126. /* 图片-无图说 */
  127. img.duokan-image {
  128. width: 100%;
  129. }
  130. /* 图片-有图说 */
  131. img.duokan-image-note {
  132. width: 100%;
  133. font-size: 16px;
  134. margin-bottom: 0.5em;
  135. }
  136. /* 图说楷体居左顶格 */
  137. p.duokan-note {
  138. font-family: "DK-KAITI", "方正楷体", "华文楷体", "楷体";
  139. font-size: 14px;
  140. text-indent: 0em;
  141. duokan-text-indent: 0em;
  142. text-align: justify;
  143. }
  144. /* 图说楷体居中 */
  145. p.duokan-note-center {
  146. font-family: "DK-KAITI", "方正楷体", "华文楷体", "楷体";
  147. font-size: 14px;
  148. text-align: center;
  149. margin-bottom: 0;
  150. }
  151. /* 图说楷体居右 */
  152. p.duokan-note-right {
  153. font-family: "DK-KAITI", "方正楷体", "华文楷体", "楷体";
  154. font-size: 14px;
  155. text-align: right;
  156. }
  157. /* 表格 */
  158. table.duokan-tablebody {
  159. font-family: "DK-HEITI", "方正兰亭黑简体", "黑体";
  160. font-weight: normal;
  161. font-size: 14px;
  162. margin-top: 1em;
  163. margin-bottom: 2em;
  164. margin-left: auto;
  165. margin-right: auto;
  166. }
  167. /* 并列图表格样式 */
  168. table.duokan-gallery-image {
  169. font-size: 1em;
  170. width: 100%;
  171. margin: 1em auto 1em auto;
  172. border-spacing: 0.3em 0.3em;
  173. }
  174. /* 并列图单元格样式 */
  175. td.duokan-gallery-cell {
  176. text-indent: 0em;
  177. duokan-text-indent: 0em;
  178. }
  179. /* 格内图样式 */
  180. div.duokan-in-cell {
  181. width: 100%;
  182. }
  183. /* 代码样式 */
  184. pre.duokan-code {
  185. font-family: "DK-CODE", "Inconsolata";
  186. font-size: 14px;
  187. }
  188. /* 文段内-部分代码字体 */
  189. span.duokan-nowestern-code-span {
  190. font-family: "DK-CODE", "Inconsolata";
  191. color: #91531d;
  192. }
  193. /* 文段内-部分代码字体-加粗 */
  194. span.duokan-nowestern-code-span-b {
  195. font-family: "DK-CODE", "Inconsolata";
  196. color: #91531d;
  197. font-weight: bold;
  198. }
  199. /* 文段内-部分代码字体-斜体 */
  200. span.duokan-nowestern-code-span-i {
  201. font-family: "DK-CODE", "Inconsolata";
  202. color: #91531d;
  203. font-style: italic;
  204. }
  205. /* 文段内-部分代码字体-粗体斜体 */
  206. span.duokan-nowestern-code-span-b-i {
  207. font-family: "DK-CODE", "Inconsolata";
  208. color: #91531d;
  209. font-weight: bold;
  210. font-style: italic;
  211. }
  212. /* 代码块-部分加粗 */
  213. span.code-b {
  214. font-weight: bold;
  215. color: #91531d;
  216. }
  217. /* 代码块-部分斜体加粗 */
  218. span.code-italic-b {
  219. font-style: italic;
  220. font-weight: bold;
  221. color: #91531d;
  222. }
  223. /* 代码块-部分注释色 */
  224. span.note {
  225. color: #008000;
  226. }
  227. /* 代码块-部分注释色加粗 */
  228. span.note-b {
  229. color: #008000;
  230. font-weight: bold;
  231. }
  232. /* 版权信息页标题 */
  233. h4.duokan-copyright-title {
  234. font-size: 22px;
  235. font-family: "DK-XIAOBIAOSONG", "方正小标宋简体";
  236. font-weight: normal;
  237. text-align: center;
  238. margin-top: 2em;
  239. margin-bottom: 0.5em;
  240. color: #000000;
  241. }
  242. /* 版权信息页正文 */
  243. p.duokan-copyright-bodytext {
  244. text-align: center;
  245. font-family: "DK-SONGTI", "方正宋三简体","方正书宋","宋体";
  246. font-size: 12px;
  247. text-indent: 0em;
  248. duokan-text-indent: 0em;
  249. margin-bottom: 0em;
  250. color: #000000;
  251. }
  252. /* 拼音样式 */
  253. ruby {
  254. ruby-align: center;
  255. margin-right: 0.5em;
  256. }
  257. /* 拼音尾字样式 */
  258. ruby.duokan-rubylast {
  259. margin-right: 0em;
  260. }
  261. /* 拼音文字样式 */
  262. ruby > rt {
  263. font-family: "DK-SYMBOL", "Symbol";
  264. font-size: 0.5em;
  265. }
  266. /* 一级标题小标宋居中 */
  267. h1.auxiliary-title1 {
  268. font-family: "DK-XIAOBIAOSONG", "方正小标宋简体";
  269. font-size: 28px;
  270. text-align: center;
  271. color: #91531d;
  272. font-weight: normal;
  273. margin-top: 2.5em;
  274. margin-bottom: 2.5em;
  275. }
  276. /* 二级标题 */
  277. h2.chapter-title2 {
  278. font-family: "DK-XIAOBIAOSONG", "方正小标宋简体";
  279. font-size: 26px;
  280. text-indent: 0em;
  281. duokan-text-indent: 0em;
  282. color: #91531d;
  283. font-weight: normal;
  284. margin-top: 2em;
  285. margin-bottom: 1.8em;
  286. }
  287. /* 三级标题 */
  288. h3.chapter-title3 {
  289. font-family: "DK-XIAOBIAOSONG", "方正小标宋简体";
  290. font-size: 22px;
  291. text-indent: 0em;
  292. duokan-text-indent: 0em;
  293. color: #91531d;
  294. font-weight: normal;
  295. margin-top: 2em;
  296. margin-bottom: 1.8em;
  297. }
  298. /* 内文四级标题 */
  299. h4.chapter-title4 {
  300. font-size: 20px;
  301. font-family: "DK-HEITI", "方正兰亭黑简体", "黑体";
  302. font-weight: normal;
  303. duokan-text-indent: 0em;
  304. text-indent: 4em;
  305. margin-top: 2em;
  306. margin-bottom: 1.8em;
  307. color: #91531d;
  308. }
  309. /* 内文五级标题 */
  310. h5.chapter-title5 {
  311. font-size: 18px;
  312. font-family: "DK-HEITI", "方正兰亭黑简体", "黑体";
  313. font-weight: normal;
  314. duokan-text-indent: 0em;
  315. text-indent: 0em;
  316. border-left: solid 5px #d9d9d9;
  317. padding-left: 0.7em;
  318. margin-top: 2em;
  319. margin-bottom: 1.8em;
  320. color: #91531d;
  321. }
  322. /* 内文六级标题 */
  323. h6.chapter-title6 {
  324. font-size: 16px;
  325. font-family: "DK-HEITI", "方正兰亭黑简体", "黑体";
  326. font-weight: normal;
  327. duokan-text-indent: 0em;
  328. text-indent: 0em;
  329. margin-top: 2em;
  330. margin-bottom: 1.8em;
  331. margin-left: 2em;
  332. color: #91531d;
  333. }
  334. /* 章前语区域 */
  335. div.chapter-pre-div {
  336. font-size: 16px;
  337. padding: 1em;
  338. margin: 3em 0em 1em 0em;
  339. border-left: solid 1px #e0e0e0;
  340. }
  341. /* 章前语楷体 */
  342. p.chapter-pre-text {
  343. font-family: "DK-KAITI", "方正楷体","华文楷体","楷体";
  344. font-size: 16px;
  345. text-indent: 2em;
  346. duokan-text-indent: 2em;
  347. }
  348. /* 正文宋体 */
  349. p.bodycontent-text-songti {
  350. font-family: "DK-SONGTI", "方正宋三简体", "方正书宋", "宋体";
  351. font-size: 16px;
  352. duokan-text-indent: 2em;
  353. text-indent: 2em;
  354. }
  355. /* 正文宋体-强制左对齐 */
  356. p.bodycontent-text-left {
  357. font-family: "DK-SONGTI", "方正宋三简体", "方正书宋", "宋体";
  358. font-size: 16px;
  359. text-align: left;
  360. duokan-text-indent: 2em;
  361. text-indent: 2em;
  362. }
  363. /* 正文宋体-强制左对齐顶格 */
  364. p.bodycontent-text-left0 {
  365. font-family: "DK-SONGTI", "方正宋三简体", "方正书宋", "宋体";
  366. font-size: 16px;
  367. text-align: left;
  368. duokan-text-indent: 0em;
  369. text-indent: 0em;
  370. }
  371. /* 引文黑体标题居中 */
  372. p.reference-title {
  373. font-family: "DK-HEITI", "方正兰亭黑简体", "黑体";
  374. font-size: 16px;
  375. text-align: center;
  376. }
  377. /* 引文楷体 */
  378. p.reference-text {
  379. font-family: "DK-KAITI", "方正楷体","华文楷体","楷体";
  380. font-size: 16px;
  381. text-indent: 2em;
  382. duokan-text-indent: 2em;
  383. }
  384. /* 引文楷体顶格 */
  385. p.letter-head {
  386. font-family: "DK-KAITI", "方正楷体", "华文楷体", "楷体";
  387. font-size: 16px;
  388. duokan-text-indent: 0em;
  389. text-indent: 0em;
  390. }
  391. /* 署名楷体居右 */
  392. p.signature {
  393. font-family: "DK-KAITI", "方正楷体", "华文楷体", "楷体";
  394. font-size: 16px;
  395. text-align: right;
  396. }
  397. /* 诗集编号小标宋居中 */
  398. h4.num-tilte {
  399. font-family: "DK-XIAOBIAOSONG", "方正小标宋简体";
  400. font-weight: normal;
  401. font-size: 18px;
  402. margin-bottom: 5em;
  403. color: #91531d;
  404. text-align: center;
  405. margin-top: 2em;
  406. }
  407. /* 部分斜体 */
  408. span.xieti {
  409. font-style: italic;
  410. }
  411. /* 部分斜体加粗 */
  412. span.italic-b {
  413. font-style: italic;
  414. font-weight: bold;
  415. }
  416. /* 部分加粗 */
  417. span.bold {
  418. font-weight: bold;
  419. }
  420. /* 部分楷体 */
  421. span.kaiti {
  422. font-family: "DK-KAITI","方正楷体","华文楷体","楷体";
  423. }
  424. /* 部分楷体加粗 */
  425. span.kaiti-jiacu {
  426. font-family: "DK-KAITI","方正楷体","华文楷体","楷体";
  427. font-weight: bold;
  428. }
  429. /* 部分黑体加粗 */
  430. span.heiti {
  431. font-family: "DK-DENGXIAN";
  432. font-weight: bold;
  433. }
  434. /* 楷体自然段 */
  435. p.kaiti-duan {
  436. font-family: "DK-KAITI", "方正楷体","华文楷体","楷体";
  437. font-size: 16px;
  438. text-indent: 2em;
  439. duokan-text-indent: 2em;
  440. }
  441. /* 楷体加粗自然段 */
  442. p.kaiti-duan-jiacu {
  443. font-family: "DK-KAITI", "方正楷体","华文楷体","楷体";
  444. font-size: 16px;
  445. text-indent: 2em;
  446. duokan-text-indent: 2em;
  447. font-weight: bold;
  448. }
  449. /* 黑体加粗自然段 */
  450. p.heiti-duan {
  451. font-family: "DK-DENGXIAN";
  452. font-weight: bold;
  453. font-size: 16px;
  454. text-indent: 2em;
  455. duokan-text-indent: 2em;
  456. }
  457. /* 下划线 */
  458. span.xiahuaxian {
  459. text-decoration: underline;
  460. }
  461. /* 音频 */
  462. audio.yinpin {
  463. height: 1.2em;
  464. vertical-align: duokan-middle-line;
  465. }
  466. /* 视频 */
  467. video.shipin {
  468. width: 100%;
  469. margin: 1em auto 1em auto;
  470. text-align: center;
  471. }
  472. /* 1字高图标 */
  473. img.formula-1em {
  474. height: 1em;
  475. vertical-align: duokan-middle-line;
  476. }
  477. /* 1.5字高图标 */
  478. img.formula-1-5em {
  479. height: 1.5em;
  480. vertical-align: duokan-middle-line;
  481. }
  482. /* 2字高图标 */
  483. img.formula-2em {
  484. height: 2em;
  485. vertical-align: duokan-middle-line;
  486. }
  487. /* 3.5字高图标 */
  488. img.formula-3-5em {
  489. height: 3.5em;
  490. vertical-align: duokan-middle-line;
  491. }
  492. /* 填充的点着重号 */
  493. span.emphasis-filled-dot {
  494. text-emphasis: filled dot;
  495. }
  496. /* 上标字体 */
  497. span.math-super {
  498. font-size: 0.7em;
  499. vertical-align: super;
  500. }
  501. /* 下标字体 */
  502. span.math-sub {
  503. font-size: 0.7em;
  504. vertical-align: sub;
  505. }
  506. /* 上标倾斜字体 */
  507. span.math-super-italic {
  508. font-size: 0.7em;
  509. font-style: italic;
  510. vertical-align: super;
  511. }
  512. /* 下标倾斜字体 */
  513. span.math-sub-italic {
  514. font-size: 0.7em;
  515. font-style: italic;
  516. vertical-align: sub;
  517. }
  518. /* 多看注 */
  519. img.duokan-footnote {
  520. width: 0.8em;
  521. }
  522. /* 版权信息页标题 */
  523. h4.copyright-title {
  524. font-family: "DK-KAITI", "方正楷体", "华文楷体", "楷体";
  525. font-size: 20px;
  526. font-weight: normal;
  527. text-align: center;
  528. margin-bottom: 0em;
  529. margin-top: 70%;
  530. color: #000000;
  531. }
  532. /* 版权信息页内容 */
  533. p.copyright-text {
  534. font-family: "DK-HEITI", "方正兰亭黑简体", "黑体";
  535. font-size: 16px;
  536. font-weight: normal;
  537. duokan-text-indent: 2em;
  538. text-indent: 2em;
  539. }
  540. /* 一级标题/卷首语二级标题 */
  541. h4.chapter-1-title {
  542. font-family: "DK-XIAOBIAOSONG", "方正小标宋简体";
  543. font-size: 28px;
  544. font-weight: normal;
  545. duokan-text-indent: 0em;
  546. text-indent: 0em;
  547. }
  548. /* 一级标题副标题 */
  549. span.chapter-1-title-continue {
  550. font-family: "DK-KAITI", "方正楷体", "华文楷体", "楷体";
  551. font-size: 20px;
  552. font-weight: normal;
  553. color: #4e6873;
  554. }
  555. /* 作者姓名 */
  556. h6.chapter-title-tow {
  557. font-family: "DK-XIAOBIAOSONG", "方正小标宋简体";
  558. font-size: 20px;
  559. font-weight: normal;
  560. duokan-text-indent: 0em;
  561. text-indent: 0em;
  562. }
  563. /* 菜名标题/卷首语标题/结束语标题 */
  564. h6.chapter-title-dish {
  565. font-family: "DK-FANGSONG", "方正仿宋", "华文仿宋", "仿宋";
  566. font-size: 34px;
  567. font-weight: normal;
  568. vertical-align: bottom;
  569. color: #747668;
  570. margin-bottom: 1em;
  571. duokan-text-indent: 0em;
  572. text-indent: 0em;
  573. }
  574. /* 菜名标题副标题 */
  575. span.chapter-title-dish-2 {
  576. font-family: "DK-HEITI", "方正兰亭黑简体", "黑体";
  577. font-size: 16px;
  578. font-weight: normal;
  579. }
  580. /* 用料标题/食材类型标题 */
  581. h6.chapter-2-title-tow {
  582. font-family: "DK-KAITI", "方正楷体", "华文楷体", "楷体";
  583. font-size: 24px;
  584. font-weight: bold;
  585. color: #747668;
  586. duokan-text-indent: 0em;
  587. text-indent: 0em;
  588. }
  589. /* 一汤一品/tips */
  590. h6.chapter-3-title {
  591. font-family: "DK-HEITI", "方正兰亭黑简体", "黑体";
  592. font-size: 18px;
  593. font-weight: normal;
  594. duokan-text-indent: 0em;
  595. text-indent: 0em;
  596. }
  597. /* 一汤一品文段蓝灰色 */
  598. p.preface-text {
  599. font-family: "DK-HEITI", "方正兰亭黑简体", "黑体";
  600. font-size: 16px;
  601. font-weight: normal;
  602. color: #4e6873;
  603. duokan-text-indent: 0em;
  604. text-indent: 0em;
  605. }
  606. /* 正文黑体 */
  607. p.bodycontent-text {
  608. font-family: "DK-HEITI", "方正兰亭黑简体", "黑体";
  609. font-size: 16px;
  610. font-weight: normal;
  611. duokan-text-indent: 2em;
  612. text-indent: 2em;
  613. }
  614. /* 正文黑体顶格 */
  615. p.bodycontent-text-noindent {
  616. font-family: "DK-HEITI", "方正兰亭黑简体", "黑体";
  617. font-size: 16px;
  618. font-weight: normal;
  619. duokan-text-indent: 0em;
  620. text-indent: 0em;
  621. }
  622. /* 正文仿宋 */
  623. p.bodycontent-text-FS {
  624. font-family: "DK-FANGSONG", "方正仿宋", "华文仿宋", "仿宋";
  625. font-size: 16px;
  626. font-weight: normal;
  627. duokan-text-indent: 2em;
  628. text-indent: 2em;
  629. }
  630. /* 邮件地址 */
  631. h6.mail-text {
  632. font-family: "DK-HEITI", "方正兰亭黑简体", "黑体";
  633. font-size: 16px;
  634. font-weight: normal;
  635. duokan-text-indent: 0em;
  636. text-indent: 0em;
  637. }
  638. /* 材料内容 */
  639. p.material-text {
  640. font-family: "DK-HEITI", "方正兰亭黑简体", "黑体";
  641. font-size: 16px;
  642. font-weight: normal;
  643. color: #828468;
  644. margin-top: 0.5em;
  645. duokan-text-indent: 0em;
  646. text-indent: 0em;
  647. }
  648. /* 材料解释内容 */
  649. p.material-text-1 {
  650. font-family: "DK-HEITI", "方正兰亭黑简体", "黑体";
  651. font-size: 16px;
  652. font-weight: normal;
  653. margin-top: 0.5em;
  654. margin-bottom: 2.5em;
  655. duokan-text-indent: 0em;
  656. text-indent: 0em;
  657. }
  658. /* 段首大字所在文段 */
  659. p.preface-text-first {
  660. font-family: "DK-FANGSONG", "方正仿宋", "华文仿宋", "仿宋";
  661. font-size: 16px;
  662. font-weight: normal;
  663. duokan-text-indent: 0em;
  664. text-indent: 0em;
  665. }
  666. /* 段首大字 */
  667. span.appendix-text {
  668. font-family: "DK-FANGSONG", "方正仿宋", "华文仿宋", "仿宋";
  669. font-size: 34px;
  670. }
  671. /* 做法序号 */
  672. span.chapter-title-FS-1 {
  673. font-family: "DK-XIHEITI", "方正兰亭刊黑简体";
  674. font-size: 32px;
  675. font-weight: normal;
  676. color: #828468;
  677. }
  678. /* 文字亮褐色 */
  679. span.highlight {
  680. color: #ab842e;
  681. }
  682. /* 文字蓝灰色 */
  683. span.highlight-2 {
  684. color: #b3c4e2;
  685. }
  686. /* 材料解释内容褐色底色 */
  687. span.bodytext-bgcolor {
  688. font-size: 22px;
  689. font-weight: normal;
  690. background-color: #ab842e;
  691. color: #fcfdfe;
  692. }
  693. /* 署名图文段 */
  694. p.bodyverse-reference-inscription {
  695. font-family: "DK-KAITI", "方正楷体", "华文楷体", "楷体";
  696. font-size: 16px;
  697. font-weight: normal;
  698. text-align: right;
  699. }
  700. /* 背景色块文字 */
  701. p.bodycontent-box2 {
  702. font-family: "DK-HEITI", "方正兰亭黑简体", "黑体";
  703. font-size: 16px;
  704. font-weight: normal;
  705. color: #fcfdfe;
  706. duokan-text-indent: 0em;
  707. text-indent: 0em;
  708. }
  709. /* 一汤一品灰线框 */
  710. div.wenchinese-box {
  711. font-family: "DK-HEITI", "方正兰亭黑简体", "黑体";
  712. font-size: 16px;
  713. font-weight: normal;
  714. width:100%;
  715. padding-left: 1em;
  716. border-left: solid 2px #747668;
  717. margin-top: 2em;
  718. margin-bottom: 2em;
  719. }
  720. /* 灰绿色背景色块 */
  721. div.text-box {
  722. font-family: "DK-HEITI", "方正兰亭黑简体", "黑体";
  723. font-size: 16px;
  724. font-weight: normal;
  725. background-color: #698692;
  726. width:100%;
  727. padding: 0.4em 0.4em 0.4em 0.4em;
  728. margin: 2.5em 0em 2em 0em;
  729. }
  730. /* 做法标题 */
  731. p.testbody-text {
  732. font-family: "DK-KAITI", "方正楷体", "华文楷体", "楷体";
  733. font-size: 24px;
  734. font-weight: bold;
  735. color: #747668;
  736. text-align: left;
  737. duokan-text-indent: 0em;
  738. text-indent: 0em;
  739. }
  740. /* 做法文段 */
  741. p.secondcolumn-firstrow {
  742. font-family: "DK-HEITI", "方正兰亭黑简体", "黑体";
  743. font-size: 16px;
  744. font-weight: normal;
  745. vertical-align: top;
  746. padding-top: 0.8em;
  747. padding-bottom: 0.8em;
  748. margin-top: 0em;
  749. margin-left: 3em;
  750. text-indent: -2em;
  751. duokan-text-indent: -2em;
  752. }
  753. /* 图注主标题 */
  754. p.image-maintitle-text {
  755. font-size: 14px;
  756. font-family: "DK-XIHEITI", "方正兰亭刊黑简体";
  757. text-align: center;
  758. }
  759. /* 图片居右绕排40%宽度 */
  760. div.body-imagediv-right-40 {
  761. float: right;
  762. font-size: 16px;
  763. margin-left: 0.5em;
  764. width: 40%;
  765. clear:both;
  766. }
  767. /* 图片居左绕排40%宽度 */
  768. div.body-imagediv-left-40 {
  769. float: left;
  770. font-size: 16px;
  771. margin-top: 0em;
  772. margin-right:0.5em;
  773. width: 40%;
  774. clear:both;
  775. }
  776. /* 图片独占居左 */
  777. div.duokan-center {
  778. font-size: 16px;
  779. margin: 1em 0em 1em 0em;
  780. text-align: left;
  781. width: 100%;
  782. }
  783. /* 顶部装饰图 */
  784. div.bodycontent-box-1 {
  785. font-size: 16px;
  786. margin: 0em 0em 1em 0em;
  787. width: 100%;
  788. }
  789. /* 图片无图注100%宽度 */
  790. img.bodycontent-alone-1 {
  791. font-size: 16px;
  792. width: 100%;
  793. margin-bottom: 0.5em;
  794. margin-top: 0;
  795. }
  796. /* 图片无图注50%宽度 */
  797. img.bodycontent-alone-3 {
  798. font-size: 16px;
  799. width: 50%;
  800. }
  801. /* 序言签名图6字宽度 */
  802. img.bodycontent-title-after {
  803. font-size: 16px;
  804. width: 3.5em;
  805. }
  806. /* 随文图箭头2.5字宽度 */
  807. img.bodycontent-title-after-1 {
  808. font-size: 16px;
  809. vertical-align: duokan-middle-line;
  810. width: 2.5em;
  811. }
  812. /* 随文图标1.5字宽度 */
  813. img.bodycontent-title-after-2 {
  814. font-size: 16px;
  815. vertical-align: duokan-middle-line;
  816. width: 1.5em;
  817. }
  818. /* 横竖图三张连续框 */
  819. div.body-gallery1 {
  820. width: 100%;
  821. margin-top: 0.5em;
  822. text-align: center;
  823. margin-bottom: 0.5em;
  824. }
  825. /* 列单兰亭黑 */
  826. ul.bodycontent-triangle-circle_HJ {
  827. font-family: "DK-HEITI", "方正兰亭黑简体", "黑体";
  828. font-size: 16px;
  829. font-weight: normal;
  830. list-style-type: square;
  831. margin-left: -1.15em;
  832. duokan-text-indent: 0em;
  833. text-indent: 0em;
  834. }
  835. img.dobby-imageclip-1{
  836. position: duokan-image-relative;
  837. clip: rect(0px, 400px, 261px, 0px);
  838. }
  839. /* 默认图注样式居中 */
  840. p.duokan-note2 {
  841. font-family: "DK-KAITI", "方正楷体", "华文楷体", "楷体";
  842. font-size: 14px;
  843. text-align: center;
  844. }
  845. /* 默认图注样式居右 */
  846. p.duokan-note3 {
  847. font-family: "DK-KAITI", "方正楷体", "华文楷体", "楷体";
  848. font-size: 14px;
  849. text-align: right;
  850. }
  851. /* 出版说明 */
  852. h1.auxiliary-title1_1 {
  853. font-family: "DK-XIAOBIAOSONG", "方正小标宋简体";
  854. font-size: 20px;
  855. text-align: left;
  856. color: #C88F4C;
  857. font-weight: normal;
  858. margin-top: 1.5em;
  859. margin-bottom: 2.5em;
  860. border-top: solid;
  861. border-bottom: solid;
  862. border-color: #C88F4C;
  863. border-width: 1px;
  864. padding: 3px 0px 3px 0px;
  865. width: 80px;
  866. }
  867. /* 序言 */
  868. h1.auxiliary-title1_xuyan {
  869. font-family: "DK-XIAOBIAOSONG", "方正小标宋简体";
  870. font-size: 20px;
  871. text-align: left;
  872. color: #C88F4C;
  873. font-weight: normal;
  874. margin-top: 1.5em;
  875. margin-bottom: 2.5em;
  876. border-top: solid;
  877. border-bottom: solid;
  878. border-color: #C88F4C;
  879. border-width: 1px;
  880. padding: 3px 0px 3px 0px;
  881. width: 40px;
  882. }
  883. /* 正文兰亭刊黑 */
  884. p.bodycontent-text-songti_1 {
  885. font-family: "DK-XIHEITI", "方正兰亭刊黑简体";
  886. font-size: 16px;
  887. duokan-text-indent: 2em;
  888. text-indent: 2em;
  889. }
  890. /* 一级标题小标宋居中1 */
  891. h1.auxiliary-title1_2 {
  892. font-family: "DK-XIAOBIAOSONG", "方正小标宋简体";
  893. font-size: 22px;
  894. text-align: center;
  895. color: #C88F4C;
  896. font-weight: normal;
  897. margin-top: 0em;
  898. margin-bottom: 1.5em;
  899. }
  900. #b {
  901. background-color: #C88F4C;
  902. }
  903. /* 引文仿宋 */
  904. p.bodycontent-text-FS_1 {
  905. font-family: "DK-FANGSONG", "方正仿宋", "华文仿宋", "仿宋";
  906. font-size: 16px;
  907. font-weight: normal;
  908. duokan-text-indent: 2em;
  909. text-indent: 2em;
  910. color: #000000;
  911. }
  912. /* 引文仿宋署名居右 */
  913. p.bodycontent-text-FS_2 {
  914. font-family: "DK-FANGSONG", "方正仿宋", "华文仿宋", "仿宋";
  915. font-size: 16px;
  916. font-weight: normal;
  917. text-align: right;
  918. color: #000000;
  919. }
  920. .border-top {
  921. border-top: 1px solid #000000;
  922. padding: 0em 0em 1em 0em;
  923. margin-top: 1.5em;
  924. margin-left:0em;
  925. margin-right:0em
  926. }
  927. .border-bottom {
  928. border-top: 1px solid #000000;
  929. padding: 1em;
  930. margin-bottom: 1em;
  931. margin-left:0em;
  932. margin-right:0em
  933. }
  934. /* 大标题 */
  935. h4.duokan-copyright-title_1 {
  936. font-size: 22px;
  937. font-family: "DK-XIHEITI", "方正兰亭刊黑简体";
  938. font-weight: normal;
  939. text-align: left;
  940. color: #000000;
  941. padding: 0.5em 0.5em 0.5em 0.5em;
  942. }
  943. /* 部分小标宋 */
  944. span.kaiti_1 {
  945. font-family: "DK-XIAOBIAOSONG", "方正小标宋简体";
  946. font-size: 18px;
  947. color: #000000;
  948. }
  949. /* 内文四级标题2 */
  950. h4.chapter-title4_1 {
  951. font-size: 20px;
  952. font-family: "DK-XIAOBIAOSONG", "方正小标宋简体";
  953. font-weight: normal;
  954. margin-top: 1.5em;
  955. margin-bottom: 1.5em;
  956. color: #C88F4C;
  957. }
  958. #b1 {
  959. background-image: url(../Images/t1.png);
  960. background-repeat: no-repeat;
  961. background-position: top left;
  962. background-attachment: fixed;
  963. background-size: contain;
  964. padding:0.8em 0 0.1em 3.1em;
  965. }
  966. #b2 {
  967. background-image: url(../Images/t2.png);
  968. background-repeat: no-repeat;
  969. background-position: bottom right;
  970. background-attachment: fixed;
  971. background-size:66px 50px;
  972. }
  973. /* 部分兰亭黑 */
  974. span.kaiti_2 {
  975. font-family: "DK-HEITI", "方正兰亭黑简体", "黑体";
  976. font-size: 16px;
  977. color: #C88F4C;
  978. }
  979. /* 正文黑体_1 */
  980. p.bodycontent-text_1 {
  981. font-family: "DK-HEITI", "方正兰亭黑简体", "黑体";
  982. font-size: 16px;
  983. font-weight: normal;
  984. duokan-text-indent: 2em;
  985. text-indent: 2em;
  986. color: #008000;
  987. }
  988. /* 代码块-部分斜体加粗_1 */
  989. span.code-italic-b_1 {
  990. font-style: italic;
  991. text-align: center;
  992. font-weight: bold;
  993. color: #FF0000;
  994. font-family: "DK-SERIF", "Palatino";
  995. }
  996. /* 正文 */
  997. p.bodycontent-text-songti_2 {
  998. font-size: 16px;
  999. duokan-text-indent: 2em;
  1000. text-indent: 2em;
  1001. }
  1002. /* 引文仿宋顶格 */
  1003. p.bodycontent-text-FS_3 {
  1004. font-family: "DK-FANGSONG", "方正仿宋", "华文仿宋", "仿宋";
  1005. font-size: 16px;
  1006. font-weight: normal;
  1007. duokan-text-indent: em;
  1008. text-indent: em;
  1009. color: #000000;
  1010. }
  1011. /* 引文仿宋署名居右1 */
  1012. p.bodycontent-text-FS_4 {
  1013. font-family: "DK-FANGSONG", "方正仿宋", "华文仿宋", "仿宋";
  1014. font-size: 16px;
  1015. font-weight: normal;
  1016. color: #000000;
  1017. text-align: right;
  1018. }
  1019. /* 一级标题小标宋居中4 */
  1020. h1.auxiliary-title1_3 {
  1021. font-family: "DK-SERIF", "Palatino";
  1022. font-size: 20px;
  1023. text-align: center;
  1024. color: #696969;
  1025. font-weight: normal;
  1026. margin-top: 0em;
  1027. margin-bottom: 0.8em;
  1028. }
  1029. /* 一级标题小标宋居中5 */
  1030. h1.auxiliary-title1_4 {
  1031. font-family: "DK-XIAOBIAOSONG", "方正小标宋简体";
  1032. font-size: 20px;
  1033. text-align: center;
  1034. color: #C88F4C;
  1035. font-weight: normal;
  1036. margin-top: 0em;
  1037. margin-bottom: 0.5em;
  1038. }
  1039. /* 正文宋体2 */
  1040. p.bodycontent-text-songti_3 {
  1041. font-family: "DK-SONGTI", "方正宋三简体", "方正书宋", "宋体";
  1042. font-size: 15px;
  1043. duokan-text-indent: 2em;
  1044. text-indent: 2em;
  1045. }
  1046. /* 一级标题小标宋居中6 */
  1047. h1.auxiliary-title1_5 {
  1048. font-family: "DK-XIAOBIAOSONG", "方正小标宋简体";
  1049. font-size: 20px;
  1050. text-align: center;
  1051. color: #000000;
  1052. font-weight: normal;
  1053. margin-top: 0.5em;
  1054. margin-bottom: 0.5em;
  1055. }
  1056. /* 译后记 */
  1057. h1.auxiliary-title1_xuyan_1 {
  1058. font-family: "DK-XIAOBIAOSONG", "方正小标宋简体";
  1059. font-size: 20px;
  1060. text-align: left;
  1061. color: #C88F4C;
  1062. font-weight: normal;
  1063. margin-top: 1.5em;
  1064. margin-bottom: 2.5em;
  1065. border-top: solid;
  1066. border-bottom: solid;
  1067. border-color: #C88F4C;
  1068. border-width: 1px;
  1069. padding: 3px 0px 3px 0px;
  1070. width: 60px;
  1071. }
  1072. /* 60%字宽度 */
  1073. img.bodycontent-title-after1 {
  1074. width: 60%;
  1075. margin: 0em auto 1em auto;
  1076. text-align: center;
  1077. }