WordEditor.css 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854
  1. .U_MD_O_H {
  2. width: 100%;
  3. }
  4. .U_MD_O_H_img {
  5. background: url(/img/Editor_img1.png) no-repeat;
  6. }
  7. .U_MD_O_H_head {
  8. width: 100%;
  9. }
  10. #U_MD_O_W_E_body {
  11. min-width: 210mm;
  12. position: relative;
  13. background-color: white;
  14. overflow: hidden;
  15. }
  16. .U_MD_O_H_head_top {
  17. width: 100%;
  18. height: 35px;
  19. background: #3c475b;
  20. }
  21. .U_MD_O_H_head_navigation {
  22. width: 100%;
  23. height: 35px;
  24. }
  25. .U_MD_O_H_head_navigation_i {
  26. width: 30px;
  27. height: 30px;
  28. background: url(/img/Editor_img1.png) no-repeat;
  29. background-position: -240px -78px;
  30. margin-top: 2px;
  31. }
  32. /*编辑器初始样式*/
  33. .U_MD_O_H_pageSize {
  34. width: 210mm;
  35. font-family: "宋体";
  36. font-size: 10.5pt;
  37. margin: 0px auto 30px;
  38. }
  39. .U_MD_O_H_lineStyle {
  40. line-height: 1.5;
  41. }
  42. .U_MD_O_H_wordEditor {
  43. height: 100%;
  44. min-height: 297mm;
  45. /* min-height: 58vh; */
  46. padding: 2.54cm 3.17cm 2.54cm 3.17cm;
  47. background-color: #fff;
  48. outline: 0;
  49. overflow: hidden;
  50. }
  51. .U_MD_O_H_wordEditor a {
  52. color: #1155cc;
  53. }
  54. .U_MD_O_H_lineHeight_ul {
  55. display: none;
  56. position: absolute;
  57. background: #fff;
  58. width: 100px;
  59. box-shadow: 1px 2px 5px silver;
  60. margin-top: 45px;
  61. margin-left: 100px
  62. }
  63. .U_MD_O_H_lineHeight_btn {
  64. padding: 4px 4px 6px;
  65. cursor: pointer
  66. }
  67. .U_MD_O_H_lineHeight_btn:hover {
  68. background: #dfdfdf
  69. }
  70. .U_MD_O_H_lineHeight_btn_check {
  71. background: silver
  72. }
  73. .U_MD_O_H_clearButtonDefault {
  74. width: 100%;
  75. height: 100%;
  76. outline: none;
  77. background: none;
  78. border: none
  79. }
  80. .U_MD_O_H_Area {
  81. float: left;
  82. height: 40px;
  83. }
  84. .U_MD_O_H_Area button {
  85. outline: 0;
  86. border: none;
  87. background-color: #f7f8f9;
  88. vertical-align: top;
  89. cursor: pointer;
  90. }
  91. .U_MD_O_H_Area>div {
  92. display: inline-block;
  93. margin-top: 6px;
  94. vertical-align: top;
  95. margin-left: 4px;
  96. }
  97. .U_MD_O_H_Area>button {
  98. position: relative;
  99. display: inline-block;
  100. margin-top: 6px;
  101. padding: 4px 6px 3px;
  102. text-indent: 4px;
  103. font-size: 12px;
  104. line-height: 22px;
  105. margin-left: 4px;
  106. }
  107. .U_MD_O_H_Area>button:hover,
  108. .U_MD_O_H_Area>div:hover {
  109. background-color: #e1e2e3;
  110. }
  111. .U_MD_O_H_Area>button:active,
  112. .U_MD_O_H_Area>div:active {
  113. background: #bfc1c4;
  114. }
  115. .U_MD_O_H_Area>button:first-child,
  116. .U_MD_O_H_Area>div:first-child {
  117. margin-left: 8px;
  118. }
  119. .U_MD_O_H_icon {
  120. float: left;
  121. width: 20px;
  122. height: 20px;
  123. background: url(/img/YS2017.png) no-repeat;
  124. }
  125. .U_MD_O_H_cutoff {
  126. display: inline-block;
  127. margin-top: 8px;
  128. height: 26px;
  129. border-left: 2px solid #D1D1D1;
  130. }
  131. .U_MD_O_H_select {
  132. position: relative;
  133. border: 0;
  134. background: 0 0;
  135. }
  136. .U_MD_O_H_select_list {
  137. width: 100%;
  138. outline: 0;
  139. border: none;
  140. text-indent: 4px;
  141. white-space: pre;
  142. line-height: 27px;
  143. }
  144. .U_MD_O_H_colorPick_fontBG {
  145. width: 20px;
  146. height: 20px;
  147. background-color: #000;
  148. }
  149. .U_MD_O_H_colorPick_fontColor_Icon {
  150. height: 16px;
  151. background-position: -173px -593px;
  152. }
  153. .U_MD_O_H_colorPick_fontColor {
  154. float: left;
  155. width: 100%;
  156. height: 4px;
  157. background-color: #000;
  158. }
  159. .U_MD_O_H_down {
  160. width: 13px;
  161. height: 28px;
  162. background-position: -1033px -593px;
  163. }
  164. .U_MD_O_H_colorPick button {
  165. float: left;
  166. }
  167. .U_MD_O_H_colorPick:hover button {
  168. background-color: #e1e2e3;
  169. }
  170. .U_MD_O_H_colorPick:hover button:hover {
  171. background-color: #d1d1d1;
  172. }
  173. .U_MD_O_H_colorPick:hover button:active {
  174. background-color: #bfc1c4;
  175. }
  176. .U_MD_O_H_More_Area {
  177. position: absolute;
  178. background: #f7f8f9;
  179. padding: 0px 6px 5px 8px;
  180. box-sizing: border-box;
  181. top: 40px;
  182. z-index: 999;
  183. box-shadow: rgba(0, 0, 0, 0.15) 0px 1px 3px;
  184. border: 1px solid rgba(0, 0, 0, 0.15);
  185. border-radius: 2px;
  186. cursor: default;
  187. visibility: visible;
  188. }
  189. .U_MD_O_H_More_Area>.U_MD_O_H_Area:last-child .U_MD_O_H_cutoff {
  190. display: none !important;
  191. }
  192. .U_MD_O_H_Inputactive:focus {
  193. border-color: #0083E1 !important;
  194. }
  195. .U_MD_O_H_head_features {
  196. display: table;
  197. position: relative;
  198. z-index: 2;
  199. min-width: 870px
  200. }
  201. /*features*/
  202. .U_MD_O_H_head_features_ul_d {
  203. float: left;
  204. border: none;
  205. color: #000;
  206. outline: none;
  207. height: 30px;
  208. background: #f7f8f9;
  209. cursor: pointer;
  210. margin-top: 5px;
  211. }
  212. .U_MD_O_H_head_features_ul_d:hover {
  213. background-color: #e1e2e3;
  214. }
  215. .U_MD_O_H_head_features_ul_d:active {
  216. background: #bfc1c4;
  217. }
  218. /*.U_MD_O_H_head_features_ul_d div { float: left; margin-left: 5px; }*/
  219. .U_MD_O_H_head_features_ul_d span {
  220. display: table-cell;
  221. vertical-align: middle;
  222. }
  223. .U_MD_O_H_head_features_ul_d_s {
  224. width: 180px;
  225. height: 140px;
  226. border: 1px solid #cbcfd4;
  227. background-color: #FFF;
  228. position: absolute;
  229. padding: 10px 10px 10px 5px;
  230. top: 29px;
  231. left: -100px;
  232. display: none;
  233. z-index: 1;
  234. }
  235. .U_MD_O_H_head_features_ul_d_s div {
  236. width: 15px;
  237. height: 15px;
  238. float: left;
  239. margin: 5px 0 0 5px;
  240. }
  241. .U_MD_O_H_head_features_fbg>div {
  242. margin-top: 0;
  243. }
  244. .U_MD_O_H_head_features_fbg:hover {
  245. background: #E1E2E3;
  246. margin-top: 8px
  247. }
  248. .U_MD_O_H_head_features_fbg_color {
  249. width: 30px;
  250. position: relative;
  251. height: 25px;
  252. background-color: initial;
  253. cursor: pointer;
  254. float: left;
  255. border: none;
  256. color: #000;
  257. outline: none;
  258. }
  259. .U_MD_O_H_head_features_fbg_color:hover {
  260. width: 30px;
  261. position: relative;
  262. height: 25px;
  263. background-color: #C7C7C8;
  264. }
  265. .U_MD_O_H_head_features_fbg_select:hover {
  266. width: 12px;
  267. height: 25px;
  268. background: #C7C7C8 url(BoomYun//img/pc/U_Boom_HO_xl.png) no-repeat;
  269. float: left;
  270. background-position: 2px;
  271. }
  272. .U_MD_O_H_head_features_fbg:active .U_MD_O_H_head_features_fbg_color {
  273. background: #C7C7C8;
  274. }
  275. .U_MD_O_H_head_features_fbg:active .U_MD_O_H_head_features_fbg_select {
  276. background: #C7C7C8 url(BoomYun//img/pc/U_Boom_HO_xl.png) no-repeat;
  277. background-position: 2px;
  278. }
  279. .U_MD_O_H_head_features_ffc>div {
  280. margin-top: 0;
  281. }
  282. .U_MD_O_H_head_features_ffc:hover {
  283. background: #E1E2E3;
  284. margin-top: 8px
  285. }
  286. .U_MD_O_H_head_features_fc {
  287. width: 30px;
  288. position: relative;
  289. height: 25px;
  290. background-color: initial;
  291. cursor: pointer;
  292. float: left;
  293. border: none;
  294. color: #000;
  295. outline: none;
  296. }
  297. .U_MD_O_H_head_features_fc:hover {
  298. width: 30px;
  299. position: relative;
  300. height: 25px;
  301. background-color: #C7C7C8;
  302. }
  303. .U_MD_O_H_head_features_fcxl:hover {
  304. width: 12px;
  305. height: 25px;
  306. background: #C7C7C8 url(BoomYun//img/pc/U_Boom_HO_xl.png) no-repeat;
  307. float: left;
  308. background-position: 2px;
  309. }
  310. .U_MD_O_H_head_features_ul_index {
  311. padding: 4px 11px;
  312. background: rgb(255, 255, 255);
  313. }
  314. .U_MD_O_H_head_features_ul_index:hover {
  315. padding: 4px 11px;
  316. background: rgba(225, 226, 227, 1);
  317. }
  318. .U_MD_O_H_head_features_ul_index:nth-child(2) {
  319. font-size: 30px;
  320. font-weight: 700;
  321. font-family: "微软雅黑";
  322. }
  323. .U_MD_O_H_head_features_ul_index:nth-child(3) {
  324. font-size: 20px;
  325. font-weight: 700;
  326. font-family: "微软雅黑";
  327. }
  328. .U_MD_O_H_head_features_ul_index:nth-child(4) {
  329. font-size: 18px;
  330. font-weight: 700;
  331. font-family: "微软雅黑";
  332. }
  333. .U_MD_O_H_head_features_ul_index:nth-child(5) {
  334. font-size: 16px;
  335. font-family: "微软雅黑";
  336. padding-left: 11px;
  337. }
  338. #U_MD_O_SetTitle>div:nth-child(2)>div {
  339. width: 98px;
  340. }
  341. #U_MD_O_SetTitle>div:nth-child(2)>div:nth-child(2) {
  342. font-size: 22pt;
  343. font-weight: 700;
  344. font-family: "微软雅黑";
  345. }
  346. #U_MD_O_SetTitle>div:nth-child(2)>div:nth-child(3) {
  347. font-size: 16pt;
  348. font-weight: 700;
  349. font-family: "微软雅黑";
  350. }
  351. #U_MD_O_SetTitle>div:nth-child(2)>div:nth-child(4) {
  352. font-size: 15pt;
  353. font-weight: 700;
  354. font-family: "微软雅黑";
  355. }
  356. #U_MD_O_SetTitle>div:nth-child(2)>div:nth-child(5) {
  357. font-size: 14pt;
  358. font-family: "微软雅黑";
  359. font-weight: bold;
  360. }
  361. #U_MD_O_SetLineHeight>div:nth-child(2) {
  362. max-width: 60px;
  363. width: 60px;
  364. }
  365. .U_MD_O_H_head_features_ffc:active .U_MD_O_H_head_features_fc {
  366. background: #C7C7C8;
  367. }
  368. .U_MD_O_H_head_features_ffc:active .U_MD_O_H_head_features_fcxl {
  369. background: #C7C7C8 url(BoomYun//img/pc/U_Boom_HO_xl.png) no-repeat;
  370. background-position: 2px;
  371. }
  372. .U_MD_O_H_head_features_ul_index {
  373. padding: 4px 6px;
  374. background: rgb(255, 255, 255);
  375. }
  376. .U_MD_O_H_head_features_ul_index:hover {
  377. padding: 4px 6px;
  378. background: rgb(204, 204, 204);
  379. }
  380. .U_MD_O_H_head_features_ul_index:nth-child(2) {
  381. font-size: 36px;
  382. font-weight: 700;
  383. font-family: "微软雅黑";
  384. }
  385. .U_MD_O_H_head_features_ul_index:nth-child(3) {
  386. font-size: 28px;
  387. font-weight: 700;
  388. font-family: "微软雅黑";
  389. }
  390. .U_MD_O_H_head_features_ul_index:nth-child(4) {
  391. font-size: 26px;
  392. font-weight: 700;
  393. font-family: "微软雅黑";
  394. }
  395. .U_MD_O_H_head_features_ul_index:nth-child(5) {
  396. font-size: 24px;
  397. font-family: "微软雅黑";
  398. }
  399. .U_MD_O_H_alignFocus {
  400. background-color: #E1E2E3;
  401. }
  402. .U_MD_O_H_head_features_ul_s {
  403. width: 100%;
  404. border: 1px solid #CDCDCD;
  405. background-color: #f7f8f9;
  406. outline: 0;
  407. padding: 4px 0;
  408. line-height: 18px;
  409. }
  410. .U_MD_O_H_head_features_ul_s:hover {
  411. background-color: #e1e2e3;
  412. }
  413. .U_MD_O_H_head_features_ul_s:active {
  414. background: #bfc1c4;
  415. }
  416. .U_MD_O_H_head_features_ul_i {
  417. display: table-cell;
  418. width: 20px;
  419. height: 20px;
  420. background: url(/img/wordEditor.png) no-repeat;
  421. margin-top: 4px;
  422. }
  423. .U_MD_O_H_head_features_ul_i2 {
  424. display: table-cell;
  425. width: 20px;
  426. height: 20px;
  427. background: url(/img/wordEditor2.png) no-repeat;
  428. margin-top: 4px;
  429. }
  430. .U_MD_O_H_head_features_ul_b {
  431. width: 20px;
  432. height: 20px;
  433. margin: 4px auto 0 auto;
  434. }
  435. .U_MD_O_H_head_features_ul_x {
  436. float: left;
  437. width: 2px;
  438. background: #D1D1D1;
  439. height: 32px;
  440. margin: 4px 6px;
  441. font-size: 0;
  442. }
  443. .U_MD_O_H_head_features_colorPicker {
  444. width: 12px;
  445. height: 25px;
  446. background: url(BoomYun//img/pc/U_Boom_HO_xl.png) no-repeat;
  447. float: left;
  448. background-position: 2px;
  449. margin-top: 8px;
  450. }
  451. .U_MD_O_H_head_features_ul_x:after {
  452. content: '';
  453. }
  454. .U_MD_O_H_head_features_ul_x:before {
  455. content: '';
  456. }
  457. .U_MD_O_H_head_file {
  458. width: 100%;
  459. height: 30px;
  460. float: left;
  461. text-align: left;
  462. padding-top: 5px;
  463. border-bottom: 1px solid #CDCDCD;
  464. }
  465. /*file
  466. .U_MD_O_H_head_file_wd1 { float: left; width: 150px; height: 27px; background: #C6E2FF; line-height: 27px; background-size: cover; }
  467. */
  468. .U_MD_O_H_body_main {
  469. /* margin-top: 60px; */
  470. /* background:#fff; */
  471. float: left;
  472. margin: 60px 0 0 0;
  473. }
  474. .U_MD_O_H_head_file_bj {
  475. float: left;
  476. width: 150px;
  477. height: 27px;
  478. line-height: 27px;
  479. border: 1px solid #68add0;
  480. border-bottom: 0;
  481. margin: 3px 0 0 10px;
  482. color: #006699;
  483. cursor: pointer;
  484. }
  485. .U_MD_O_H_head_file_bj:hover,
  486. U_MD_O_H_head_file_bjo {
  487. background-color: #4D5968;
  488. color: #e9ebed;
  489. }
  490. .U_MD_O_H_head_file_bj:hover>.U_MD_O_H_head_file_x,
  491. U_MD_O_H_head_file_bjo>.U_MD_O_H_head_file_x {
  492. background-position: -313px -72px;
  493. }
  494. .U_MD_O_H_head_file_web {
  495. margin-left: 10px;
  496. font-size: 14px;
  497. float: left;
  498. }
  499. .U_MD_O_H_head_file_x {
  500. cursor: pointer;
  501. float: right;
  502. margin: 10px 8px 0 0;
  503. margin-top: 10px;
  504. width: 10px;
  505. height: 10px;
  506. background: url(/img/Editor_img1.png) no-repeat;
  507. background-position: -313px -53px;
  508. cursor: pointer;
  509. }
  510. .U_MD_O_H_body {
  511. /* width: 1130px; */
  512. width: 210mm;
  513. margin: auto;
  514. }
  515. /*position: absolute; */
  516. .U_MD_O_H_body .U_MD_F_S_TI {
  517. color: #000;
  518. line-height: 30px;
  519. }
  520. .U_MD_O_H_body_left {
  521. display: none;
  522. width: 250px;
  523. float: left;
  524. margin-right: 80px;
  525. margin-top: 15px;
  526. }
  527. /*padding: 0 30px;*/
  528. #U_MD_O_H_body_left {}
  529. .U_MD_O_H_body_main_m {
  530. overflow: hidden;
  531. background: #fff;
  532. width: 210mm;
  533. height: 297mm;
  534. margin-bottom: 10px;
  535. }
  536. /* */
  537. .U_MD_O_H_body_main_border_T>div,
  538. .U_MD_O_H_body_main_border_B>div {
  539. width: 7mm;
  540. height: 7mm;
  541. margin: 10px;
  542. border: 1px solid #c1c1c1;
  543. float: left;
  544. }
  545. .U_MD_O_H_body_main_border_T>div:nth-child(1) {
  546. border-top: none;
  547. border-left: none;
  548. }
  549. .U_MD_O_H_body_main_border_T>div:nth-child(2) {
  550. border-top: none;
  551. border-right: none;
  552. float: right;
  553. }
  554. .U_MD_O_H_body_main_border_B .U_MD_O_H_body_main_border_B>div:nth-child(1) {
  555. border-bottom: none;
  556. border-left: none;
  557. }
  558. .U_MD_O_H_body_main_border_B>div:nth-child(2) {
  559. border-bottom: none;
  560. border-right: none;
  561. float: right;
  562. }
  563. .U_MD_O_H_body_main_border {}
  564. .U_MD_O_H_body_main_border div {
  565. width: 7mm;
  566. height: 7mm;
  567. margin: 10px;
  568. border: 1px solid #c1c1c1;
  569. float: left;
  570. }
  571. .U_MD_O_H_body_main_border .U_MD_O_H_body_main_bordero {
  572. border-top: none;
  573. border-left: none;
  574. }
  575. .U_MD_O_H_body_main_border .U_MD_O_H_body_main_bordert {
  576. border-top: none;
  577. border-right: none;
  578. float: right;
  579. }
  580. .U_MD_O_H_body_main_border .U_MD_O_H_body_main_borders {
  581. border-bottom: none;
  582. border-left: none;
  583. }
  584. .U_MD_O_H_body_main_border .U_MD_O_H_body_main_borderf {
  585. border-bottom: none;
  586. border-right: none;
  587. float: right;
  588. }
  589. .U_MD_O_H_body_left_invite {
  590. width: 100%;
  591. height: 253px;
  592. }
  593. .U_MD_O_H_body_left_href {
  594. height: 203px;
  595. margin-top: 15px;
  596. }
  597. .U_MD_O_H_body_left_template {
  598. /* height: 365px; */
  599. margin-top: 15px;
  600. }
  601. .U_MD_O_H_body_left_invite_name {
  602. height: 30px;
  603. border: 0px;
  604. border-bottom: 1px #d6dff0 solid;
  605. background: #f8fcfd;
  606. }
  607. .U_MD_O_H_body_left_invite_name_left {
  608. font-size: 14px;
  609. line-height: 30px;
  610. margin-left: 10px;
  611. float: left;
  612. }
  613. .U_MD_O_H_body_left_invite_name_right {
  614. float: right;
  615. margin-right: 10px;
  616. margin-top: 3px;
  617. width: 40px;
  618. color: #167fb3;
  619. border: 1px solid #167fb3;
  620. text-align: center;
  621. height: 21px;
  622. line-height: 21px;
  623. }
  624. .U_MD_O_H_body_left_invite_linkTxt {
  625. padding: 6px 10px;
  626. margin: 0 6px;
  627. cursor: pointer;
  628. position: absolute;
  629. top: -29px;
  630. right: 0;
  631. color: #006699;
  632. z-index: 1;
  633. text-decoration: underline;
  634. }
  635. /**.U_MD_O_H_body_left_invite_linkTxt:hover{background-color:#444;color:#fff}*/
  636. .U_MD_O_H_body_left_invite_user {
  637. overflow: hidden;
  638. }
  639. .U_MD_O_H_body_left_invite_user_a {
  640. width: 60px;
  641. height: 75px;
  642. margin: 10px 0 0 9px;
  643. display: flex;
  644. cursor: pointer;
  645. float: left;
  646. }
  647. .U_MD_O_H_body_left_invite_user_a_img {
  648. width: 50px;
  649. height: 50px;
  650. /* background: url(/img/Editor_img1.png) no-repeat;
  651. */
  652. background: url("../../../img/icon/avatar.png") no-repeat;
  653. background-size: 100% 100%;
  654. margin: auto;
  655. }
  656. .U_MD_O_H_body_left_invite_user_a_img_add {
  657. width: 40px;
  658. height: 40px;
  659. background: url("../../../img/icon/addUser.png") no-repeat;
  660. background-size: 100% 100%;
  661. margin: 0px 0px 20px 10px;
  662. }
  663. .U_MD_O_H_body_left_invite_user_a_user {
  664. width: 32px;
  665. height: 32px;
  666. margin: auto;
  667. }
  668. .U_MD_O_H_body_left_invite_user_a_user img {
  669. width: 32px;
  670. height: 32px;
  671. }
  672. .U_MD_O_H_body_left_invite_user_a_div {
  673. line-height: 25px;
  674. width: 60px;
  675. text-align: center;
  676. overflow: hidden;
  677. }
  678. .U_MD_O_H_body_left_invite_form {
  679. margin: 0 10px;
  680. }
  681. .U_MD_O_H_body_left_invite_formShare {
  682. border-bottom: 1px solid #ccc;
  683. }
  684. .U_MD_O_H_body_left_invite_formShare,
  685. .U_MD_O_H_body_left_invite_formQRCode {
  686. padding: 12px 16px 24px;
  687. }
  688. .U_MD_O_H_body_left_invite_shareInp {
  689. display: inline-block;
  690. width: 450px;
  691. height: 24px;
  692. padding-left: 6px;
  693. border: 1px solid #ccc;
  694. line-height: 24px;
  695. overflow: hidden;
  696. vertical-align: top
  697. }
  698. .U_MD_O_H_body_left_invite_shareBtn {
  699. display: inline-block;
  700. padding: 4px 1em;
  701. margin-left: 12px;
  702. border: 1px solid #ccc;
  703. vertical-align: top;
  704. cursor: pointer;
  705. }
  706. .U_MD_O_H_body_left_invite_shareBtn:hover {
  707. background-color: #26CA26;
  708. color: #fff
  709. }
  710. .U_MD_O_H_body_left_invite_shareInpMargin {
  711. margin-left: 20px
  712. }
  713. .U_MD_O_H_body_left_href_href {
  714. height: 30px;
  715. border: 1px #d6dff0 solid;
  716. background: #f8fcfd;
  717. border-bottom: none;
  718. /* margin-top: 20px; */
  719. line-height: 30px;
  720. }
  721. .U_MD_O_H_body_left_href_href_a {
  722. font-size: 14px;
  723. display: block;
  724. float: left;
  725. text-align: left;
  726. line-height: 30px;
  727. margin-left: 10px;
  728. }
  729. .U_MD_O_H_body_left_href_href_right {
  730. cursor: pointer;
  731. float: right;
  732. margin-right: 10px;
  733. margin-top: 3px;
  734. width: 40px;
  735. color: #167fb3;
  736. border: 1px solid #167fb3;
  737. background: #fff;
  738. text-align: center;
  739. height: 21px;
  740. line-height: 21px;
  741. }
  742. .U_MD_O_H_body_left_href_pay {
  743. height: 170px;
  744. border: 1px #d6dff0 solid;
  745. background: #ffffff;
  746. }
  747. .U_MD_O_H_body_left_href_pay_a {
  748. min-width: 280px;
  749. height: 25px;
  750. margin: 2px 10px;
  751. line-height: 25px;
  752. display: block;
  753. text-align: left;
  754. text-decoration: underline;
  755. color: #006699;
  756. cursor: pointer;
  757. }
  758. .U_MD_O_H_body_left_href_pay_Btn {
  759. float: right;
  760. margin-left: 6px;
  761. padding: 0 12px;
  762. background-color: #ffffff;
  763. border-radius: 4px;
  764. border: 1px solid #A6B2C0;
  765. color: #000000;
  766. }
  767. .U_MD_O_H_body_left_href_pay_aText {
  768. float: left;
  769. width: calc(100% - 135px);
  770. min-width: 165px;
  771. overflow: hidden;
  772. white-space: nowrap;
  773. text-overflow: ellipsis;
  774. }
  775. .U_MD_O_H_body_left_href_pay_Btn:hover {
  776. border: 1px solid #3f8bdd;
  777. color: #3f8bdd
  778. }
  779. .U_MD_O_H_body_left_template_name {
  780. height: 30px;
  781. border: 1px #d6dff0 solid;
  782. background: #f8fcfd;
  783. border-bottom: none;
  784. /* margin-top: 20px; */
  785. line-height: 30px;
  786. }
  787. .U_MD_O_H_body_left_template_name_a {
  788. font-size: 14px;
  789. display: block;
  790. float: left;
  791. margin-left: 10px;
  792. line-height: 30px;
  793. }
  794. .U_MD_O_H_body_left_template_name_right {
  795. float: right;
  796. margin-right: 10px;
  797. margin-top: 3px;
  798. width: 40px;
  799. color: #167fb3;
  800. border: 1px solid #167fb3;
  801. background: #fff;
  802. text-align: center;
  803. height: 21px;
  804. line-height: 21px;
  805. }
  806. .U_MD_O_H_body_left_template_user {
  807. background: #ffffff;
  808. }
  809. .U_MD_O_H_body_left_template_user_m {
  810. width: 72px;
  811. display: inline-block;
  812. vertical-align: top;
  813. margin: 5px 12px;
  814. cursor: pointer;
  815. }
  816. .U_MD_O_H_body_left_template_user_m_s {
  817. width: 70px;
  818. height: 100px;
  819. border: 1px solid #CDCDCD;
  820. background-size: contain;
  821. }
  822. .U_MD_O_H_body_left_template_user_m_x {
  823. display: -webkit-box;
  824. overflow: hidden;
  825. margin-top: 5px;
  826. width: 70px;
  827. max-height: 32px;
  828. text-align: center;
  829. text-overflow: ellipsis;
  830. white-space: pre-wrap;
  831. -webkit-line-clamp: 2;
  832. -webkit-box-orient: vertical;
  833. }
  834. .U_MD_O_H_body_left_template_user_a {
  835. width: 20%;
  836. margin: 10px;
  837. display: block;
  838. float: left;
  839. }
  840. .U_MD_O_H_body_main_text {
  841. text-align: left;
  842. margin: 0 10mm;
  843. overflow: hidden;
  844. display: inline-block;
  845. height: 269mm;
  846. width: calc(100% - 20mm)
  847. }
  848. .U_MD_O_H_body_main_text div {
  849. padding: 0;
  850. }
  851. .U_MD_O_H_body_main_text {
  852. word-break: break-all;
  853. word-wrap: break-word;
  854. outline: none;
  855. font-size: 14px;
  856. font-family: Calibri (西文正文);
  857. }
  858. .U_MD_O_H_body_main_text_p {
  859. float: left;
  860. font-size: 18px;
  861. font-weight: bold;
  862. display: block;
  863. width: 100%;
  864. height: 50px;
  865. }
  866. .U_MD_O_H_body_main_text_a {
  867. font-size: 16px;
  868. text-indent: 2em;
  869. display: block;
  870. line-height: 30px;
  871. }
  872. .U_MD_O_W_Nav .U_MD_O_H_body {
  873. min-width: 1130px;
  874. width: 90%;
  875. }
  876. .U_MD_O_W_Nav .U_MD_O_H_body_main {
  877. width: calc(100% - 310px);
  878. }
  879. .U_MD_O_W_Nav .U_MD_O_H_pageSize {
  880. width: 100%;
  881. }
  882. /*陌生人查找-协同办公 弹窗1 顶部窗口栏*/
  883. .U_MD_O_W_Paper {
  884. width: 817px;
  885. height: 560px;
  886. border: 1px solid #DFDFDF;
  887. border-radius: 3px 3px 3px 3px;
  888. z-index: 20;
  889. position: fixed;
  890. left: 30%;
  891. top: 20%;
  892. background: #FFF;
  893. }
  894. .U_MD_O_W_Paper_Topbox {
  895. height: 34px;
  896. border-bottom: 1px solid black;
  897. background-color: #3c475b;
  898. line-height: 34px;
  899. }
  900. .U_MD_O_W_Paper_title {
  901. font-size: 14px;
  902. float: left;
  903. color: White;
  904. margin-left: 5px;
  905. font-weight: bold;
  906. }
  907. .U_MD_O_W_Paper_close {
  908. float: right;
  909. margin-top: 6px;
  910. margin-right: 4px;
  911. }
  912. /*陌生人查找-协同办公 弹窗1弹窗2公共部分 中间搜寻方式*/
  913. .U_MD_O_W_Paper_searchBox {
  914. position: relative;
  915. width: 817px;
  916. height: 103px;
  917. }
  918. .U_MD_O_W_Paper_searchmode {
  919. position: relative;
  920. width: 817px;
  921. height: 52px;
  922. background-color: #DFDFDF;
  923. }
  924. .U_MD_O_W_Paper_searchmode_ul {
  925. margin-left: 260px;
  926. width: 417px;
  927. height: 22px;
  928. text-align: center;
  929. padding-top: 17px;
  930. }
  931. .U_MD_O_W_Paper_searchmode_li {
  932. width: 87px;
  933. float: left;
  934. font-size: 18px;
  935. font-weight: bold;
  936. }
  937. .U_MD_O_W_Paper_searchmode_li img {
  938. margin-top: 7px;
  939. }
  940. .U_MD_O_W_Paper_searchmode_static {
  941. display: none;
  942. }
  943. /*查找窗口 公共部分*/
  944. .U_MD_O_W_Paper_searchwindow {
  945. width: 817px;
  946. height: 30px;
  947. margin-top: 5px;
  948. }
  949. .U_MD_O_W_Paper_window {
  950. float: left;
  951. width: 355px;
  952. height: 30px;
  953. margin-left: 207px;
  954. }
  955. .U_MD_O_W_Paper_button {
  956. width: 83px;
  957. height: 32px;
  958. float: right;
  959. border: 1px solid #CCC;
  960. border-radius: 6px 6px 6px 6px;
  961. text-align: center;
  962. line-height: 32px;
  963. background-color: #1d75ce;
  964. margin-right: 155px;
  965. color: White;
  966. font-size: 14px;
  967. }
  968. /*用户列表窗口*/
  969. .U_MD_O_W_Paper_bodyBox {
  970. width: 818px;
  971. height: 442px;
  972. position: relative;
  973. margin-left: 20px;
  974. }
  975. .U_MD_O_W_Paper_bodyBox_title {
  976. height: 30px;
  977. font-size: 18px;
  978. margin-left: 15px;
  979. margin-top: 3px;
  980. }
  981. /*用户头像*/
  982. .U_MD_O_W_Paper_bodyBox_person {
  983. height: 96px;
  984. width: 260px;
  985. float: left;
  986. }
  987. .U_MD_O_W_Paper_bodyBox_person_pic {
  988. height: 103px;
  989. width: 90px;
  990. float: left;
  991. }
  992. .U_MD_O_W_Paper_bodyBox_person_pic img {
  993. margin: 10px 10px;
  994. }
  995. /*详细信息*/
  996. .U_MD_O_W_Paper_bodyBox_person_ul {
  997. margin-top: 7px;
  998. height: 90px;
  999. width: 53px;
  1000. float: left;
  1001. }
  1002. .U_MD_O_W_Paper_bodyBox_person_ul div {
  1003. width: 53px;
  1004. margin-bottom: 7px;
  1005. font-size: 14px;
  1006. }
  1007. .U_MD_O_W_Paper_bodyBox_person_active {
  1008. background-color: #1d75ce;
  1009. border-radius: 3px 3px 3px 3px;
  1010. text-align: center;
  1011. color: White;
  1012. }
  1013. .U_MD_O_W_Paper_bodyBox_fenge {
  1014. width: 780px;
  1015. height: 95px;
  1016. border-bottom: 1px solid #DFDFDF;
  1017. }
  1018. /*地址信息*/
  1019. .U_MD_O_W_Paper_bodyBox_person_address {
  1020. width: 70px;
  1021. height: 100px;
  1022. float: left;
  1023. margin-top: 35px;
  1024. }
  1025. .U_MD_O_W_Paper_bodyBox_person_address span {
  1026. margin-top: 100px;
  1027. height: 100px;
  1028. font-size: 14px;
  1029. }
  1030. /*窗口14 修改纸张大小*/
  1031. .U_MD_O_W_Paper4 {
  1032. margin: 8px 10px;
  1033. }
  1034. .U_MD_O_W_Paper4_Title {
  1035. font-size: 16px;
  1036. font-weight: bold;
  1037. }
  1038. .U_MD_O_W_Paper4_Main {
  1039. font-size: 13px;
  1040. padding: 5px 15px;
  1041. cursor: pointer;
  1042. margin: 5px 0;
  1043. }
  1044. .U_MD_O_W_Paper4_Main:hover {
  1045. background-color: #eaeaea;
  1046. }
  1047. .U_MD_O_W_Paper4_Main_Name {
  1048. font-size: 15px;
  1049. font-weight: bold;
  1050. }
  1051. .U_MD_O_W_Paper_A3 {
  1052. width: 297mm;
  1053. height: 420mm;
  1054. margin: 10px
  1055. }
  1056. .U_MD_O_W_Paper_A3C {
  1057. width: 287mm;
  1058. height: 390mm;
  1059. margin: 10px;
  1060. }
  1061. .U_MD_O_W_Paper_A4 {
  1062. width: 210mm;
  1063. height: 297mm;
  1064. margin: 10px
  1065. }
  1066. .U_MD_O_W_Paper_A4C {
  1067. width: 200mm;
  1068. height: 267mm;
  1069. margin: 10px
  1070. }
  1071. .U_MD_O_W_Paper_A5 {
  1072. width: 148mm;
  1073. height: 210mm;
  1074. margin: 10px
  1075. }
  1076. .U_MD_O_W_Paper_A5C {
  1077. width: 138mm;
  1078. height: 180mm;
  1079. margin: 10px
  1080. }
  1081. .U_MD_O_W_Paper_Web {
  1082. width: 95%;
  1083. min-height: 210mm;
  1084. min-height: 420mm;
  1085. margin: 10px
  1086. }
  1087. .U_MD_O_W_Paper_WebC {
  1088. width: 95%;
  1089. min-height: 180mm;
  1090. min-height: 390mm;
  1091. margin: 10px
  1092. }
  1093. /*窗口16 插入表格*/
  1094. .U_MD_O_W_Paper6 {
  1095. padding: 10px;
  1096. height: 190px;
  1097. font-size: 14px;
  1098. }
  1099. .U_MD_O_W_Paper6_main {
  1100. position: relative;
  1101. }
  1102. .U_MD_O_W_Paper6_title {
  1103. font-size: 16px;
  1104. }
  1105. .U_MD_O_W_Paper6_OneLine {
  1106. margin: 10px 0;
  1107. padding: 0 10px;
  1108. }
  1109. .U_MD_O_W_Paper6_OneLine span {
  1110. display: inline-block;
  1111. line-height: 27px;
  1112. }
  1113. .U_MD_O_W_Paper6_OneLine input {
  1114. float: right;
  1115. display: inline-block;
  1116. width: 150px;
  1117. height: 25px;
  1118. }
  1119. .U_MD_O_W_Paper6_block {
  1120. position: absolute;
  1121. margin: 2px;
  1122. width: 20px;
  1123. height: 20px;
  1124. border: 1px solid #9e9e9e;
  1125. }
  1126. /*窗口17 更多*/
  1127. .U_MD_O_W_Paper7_Main {
  1128. border-bottom: 1px solid #f1f1f1;
  1129. line-height: 65px;
  1130. width: 100%;
  1131. text-indent: 30px;
  1132. font-size: 20px;
  1133. }
  1134. .U_MD_O_W_Paper7_Main_Icon {
  1135. width: 30px;
  1136. height: 30px;
  1137. background: url(/img/Editor_img1.png) no-repeat;
  1138. float: left;
  1139. background-position: -44px -81px;
  1140. margin: 17.5px 18px;
  1141. }
  1142. /*窗口18 邀请好友*/
  1143. .U_MD_O_W_Paper8 {
  1144. padding: 30px 40px;
  1145. font-weight: 700;
  1146. }
  1147. .U_MD_O_W_Paper8_Set_Tag {
  1148. font-size: 16px;
  1149. line-height: 30px;
  1150. }
  1151. .U_MD_O_W_Paper8_Set_Yu {
  1152. overflow: hidden;
  1153. position: absolute;
  1154. bottom: 45px;
  1155. left: 185px;
  1156. }
  1157. .U_MD_O_W_Paper8_Set_Yu_Text {
  1158. padding-top: 20px;
  1159. font-size: 14px;
  1160. float: left;
  1161. }
  1162. .U_MD_O_W_Paper8_Set_Yu_Ming {
  1163. padding-top: 20px;
  1164. font-size: 14px;
  1165. float: left;
  1166. color: #0033cc;
  1167. cursor: pointer;
  1168. }
  1169. .U_MD_O_W_Paper8_Set_Tag>span {
  1170. margin-left: 10px;
  1171. font-size: 12px;
  1172. line-height: 35px;
  1173. }
  1174. .U_MD_O_W_Paper8_Set_Name {
  1175. color: #2c5ca4;
  1176. font-size: 16px;
  1177. }
  1178. .U_MD_O_W_Paper8_Set_Name>input {
  1179. margin-left: 5px;
  1180. height: 40px;
  1181. }
  1182. .U_MD_O_W_Paper8_Set_Hint {
  1183. padding: 10px 20px 0;
  1184. color: #a00;
  1185. font-size: 12px;
  1186. line-height: 18px;
  1187. }
  1188. .U_MD_O_W_Paper8_Btn {
  1189. width: 100%;
  1190. height: 40px;
  1191. }
  1192. .U_MD_O_W_Paper8_Btn>div {
  1193. float: right;
  1194. margin: 0 6px;
  1195. width: 85px;
  1196. height: 33px;
  1197. border: 1px solid #ccc;
  1198. border-radius: 5px;
  1199. text-align: center;
  1200. line-height: 33px;
  1201. /* padding: 0 10px; */
  1202. }
  1203. .U_MD_O_W_Paper8_Btn>div:hover {
  1204. background-color: #1e75ce;
  1205. color: #fff;
  1206. }
  1207. .U_MD_O_W_Paper8_Set_Alert {
  1208. padding-top: 20px;
  1209. width: 100%;
  1210. height: 20px;
  1211. font-size: 12px;
  1212. line-height: 20px;
  1213. }
  1214. .U_MD_O_W_Paper8_Set_Alert>div {
  1215. display: inline-block;
  1216. color: #1e75ce;
  1217. text-decoration: underline;
  1218. }
  1219. .U_MD_O_W_Paper8_Que_Tag {
  1220. margin: 35px auto 0;
  1221. text-align: center;
  1222. font-size: 14px;
  1223. line-height: 30px;
  1224. }
  1225. .U_MD_O_W_Paper8_Que_Url {
  1226. padding: 15px;
  1227. text-align: center;
  1228. font-size: 14px;
  1229. border: none;
  1230. margin-left: 30%;
  1231. }
  1232. .U_MD_O_W_Paper8_Que_Con {
  1233. display: inline-block;
  1234. vertical-align: top;
  1235. margin: 25px 0px;
  1236. line-height: 25px;
  1237. text-align: left;
  1238. font-size: 14px;
  1239. margin-top: -10px;
  1240. }
  1241. .U_MD_O_W_Paper8_Que_QR {
  1242. float: left;
  1243. overflow: hidden;
  1244. }
  1245. .U_MD_O_W_Paper8_Que_Code {
  1246. margin: 20px auto -25px;
  1247. padding: 20px 0px;
  1248. border-top: 1px solid #ccc;
  1249. text-align: center;
  1250. }
  1251. .U_MD_O_W_Paper8_Que_Code>img {
  1252. display: inline-block;
  1253. width: 180px;
  1254. height: 180px;
  1255. }
  1256. .U_MD_O_W_Paper8_Sanfang {
  1257. margin-top: 5px;
  1258. }
  1259. .U_MD_O_W_Paper8_Sanfang_Weibo {
  1260. width: 35px;
  1261. height: 35px;
  1262. float: left;
  1263. cursor: pointer;
  1264. background: url(/img/Xinlang.png) no-repeat;
  1265. margin-right: 30px;
  1266. }
  1267. .U_MD_O_W_Paper8_Sanfang_Kongjian {
  1268. width: 35px;
  1269. height: 35px;
  1270. float: left;
  1271. cursor: pointer;
  1272. background: url(/img/Kongjian.png) no-repeat;
  1273. }
  1274. .U_MD_O_H_body_right {
  1275. height: 315px;
  1276. width: 285px;
  1277. margin: 15px 0 0 30px;
  1278. float: left;
  1279. }
  1280. .U_MD_O_H_body_right_user {}
  1281. .U_MD_O_H_body_right_user_o {
  1282. padding: 7px;
  1283. border-bottom: 1px solid #DEDEDE;
  1284. }
  1285. .U_MD_O_H_body_right_user_o_l {
  1286. width: 40px;
  1287. height: 40px;
  1288. float: left;
  1289. }
  1290. .U_MD_O_H_body_right_user_o_l img {
  1291. width: 50px;
  1292. height: 50px;
  1293. }
  1294. .U_MD_O_H_body_right_user_o_r {
  1295. margin-left: 60px;
  1296. }
  1297. .U_MD_O_H_body_right_user_o_r_s {
  1298. width: 100%;
  1299. height: 20px;
  1300. line-height: 20px;
  1301. }
  1302. .U_MD_O_H_body_right_user_o_r_s_l {
  1303. font-weight: bold;
  1304. float: left;
  1305. font-size: 14px;
  1306. }
  1307. .U_MD_O_H_body_right_user_o_r_s_r {
  1308. float: right;
  1309. }
  1310. .U_MD_O_H_body_right_user_o_r_x {
  1311. height: 25px;
  1312. margin-top: 5px;
  1313. }
  1314. .U_MD_O_H_body_right_user_o_r_x div {
  1315. width: 50px;
  1316. height: 25px;
  1317. line-height: 25px;
  1318. color: #FFF;
  1319. text-align: center;
  1320. background-color: #6C82A7;
  1321. float: left;
  1322. cursor: pointer;
  1323. }
  1324. .U_MD_O_H_body_right_user_o_r_x_l {}
  1325. .U_MD_O_H_body_right_user_o_r_x_r {
  1326. margin-left: 10px;
  1327. }
  1328. .U_MD_O_H_body_right_user_o_r_all {
  1329. height: 30px;
  1330. width: 285px;
  1331. text-align: center;
  1332. }
  1333. .U_MD_O_H_body_right_user_o_r_all_a {
  1334. margin: 0 auto;
  1335. margin-top: 5px;
  1336. border: 1px solid #cbd3e3;
  1337. width: 90px;
  1338. height: 17px;
  1339. text-align: center;
  1340. }
  1341. .U_MD_O_H_body_right_user_o_r_nr {
  1342. width: 88%;
  1343. margin: 0 auto;
  1344. margin-top: 15px;
  1345. }
  1346. .U_MD_O_H_body_right_user_o_r_all_nr {
  1347. width: 80%;
  1348. min-width: 560px;
  1349. margin: 0 auto;
  1350. margin-top: 15px;
  1351. float: left;
  1352. }
  1353. .U_MD_O_H_body_btn {
  1354. width: 72px;
  1355. height: 22px;
  1356. float: right;
  1357. color: #fff;
  1358. padding-top: 5px;
  1359. background: #7288a3;
  1360. text-align: center;
  1361. margin-top: -30px;
  1362. }
  1363. .U_MD_O_H_body_btn_img1 {
  1364. height: 12px;
  1365. width: 12px;
  1366. float: right;
  1367. margin-top: 3px;
  1368. margin-right: 10px;
  1369. background-image: url(../../img/zk.png);
  1370. background-repeat: no-repeat;
  1371. background-size: 100% 100%;
  1372. -moz-background-size: 100% 100%;
  1373. }
  1374. .U_MD_O_H_body_btn_img2 {
  1375. height: 12px;
  1376. width: 12px;
  1377. float: right;
  1378. margin-top: 3px;
  1379. margin-right: 10px;
  1380. background-image: url(../../img/sq.png);
  1381. background-repeat: no-repeat;
  1382. background-size: 100% 100%;
  1383. -moz-background-size: 100% 100%;
  1384. }
  1385. /*.U_MD_O_H_Nav {height:42px;margin-bottom: 15px;text-align:center;line-height:42px;}
  1386. .U_MD_O_H_Nav_Box { width: calc(100% - 42px); height: 100%; overflow-x:auto; user-select:none; }
  1387. .U_MD_O_H_Nav_Box > span { float:left; width:25%; height:100%; position:relative;}
  1388. .U_MD_O_H_Nav_Span, .U_MD_O_H_Nav_Span:hover, .U_MD_O_H_Nav_Box > span:focus { background-color:#505050 !important; color:White; }
  1389. .U_MD_O_H_Nav_Box > span:hover{ background-color:#737575; color:White; }
  1390. .U_MD_O_H_Nav_Add { float:right; width:42px; height:100%; background-color:#ccc; color:White; }
  1391. .U_MD_O_H_Nav_Add:hover { background-color:#949494; } */
  1392. .U_MD_O_W_N_Logo {
  1393. background: url(/img/Logo_.png) no-repeat;
  1394. background-size: cover;
  1395. margin: 20px auto;
  1396. width: 77px;
  1397. height: 77px;
  1398. border: 1px solid #eeeeee;
  1399. border-radius: 100%;
  1400. text-align: center;
  1401. line-height: 77px;
  1402. overflow: hidden;
  1403. }
  1404. .U_MD_O_W_N_NavBox {
  1405. height: 425px;
  1406. overflow: auto;
  1407. }
  1408. .U_MD_O_W_N_Bottom {
  1409. border-top: 1px solid rgb(214, 222, 240);
  1410. margin-top: 15px;
  1411. padding: 12px 0;
  1412. text-align: center;
  1413. }
  1414. .U_MD_O_W_N_Bottom button {
  1415. width: 113px;
  1416. height: 34px;
  1417. margin: 0 14px;
  1418. line-height: 34px;
  1419. padding: 0 10px;
  1420. border-radius: 3px;
  1421. background: #fff;
  1422. box-shadow: rgb(194, 194, 194) 0px 1px 3px;
  1423. border: 1px solid #ccc;
  1424. }
  1425. .U_MD_O_W_N_uploadbutton {
  1426. margin-top: 15px;
  1427. padding: 12px 0;
  1428. text-align: center;
  1429. }
  1430. .U_MD_O_W_N_localupload {
  1431. display: none;
  1432. padding: 0 10px;
  1433. margin: 0 14px;
  1434. line-height: 25px;
  1435. }
  1436. .U_MD_O_W_N_uploadbutton button {
  1437. width: 85px;
  1438. height: 25px;
  1439. padding: 0 10px;
  1440. margin: 0 14px;
  1441. line-height: 25px;
  1442. padding: 0 10px;
  1443. border-radius: 3px;
  1444. background: #fff;
  1445. box-shadow: rgb(194, 194, 194) 0px 1px 3px;
  1446. border: 1px solid #ccc;
  1447. }
  1448. .U_MD_O_W_N_localupload2 {
  1449. padding: 0 10px;
  1450. margin: 0 14px;
  1451. line-height: 25px;
  1452. }
  1453. .U_UF_E_Table_tdCheckd {
  1454. background-color: #b5d6fd;
  1455. }
  1456. /*表格选中时的背景颜色*/
  1457. .U_UF_E_Table_tdCurrent {
  1458. border: 3px solid #5a9eec !important;
  1459. }
  1460. /*表格聚焦时的边框颜色*/
  1461. .U_UF_E_Table_tdText {
  1462. min-height: 100%;
  1463. height: 100% !important;
  1464. width: 100%;
  1465. outline: 0;
  1466. word-wrap: break-word;
  1467. padding: 0;
  1468. resize: none;
  1469. border: 0;
  1470. vertical-align: top;
  1471. font-size: 16px;
  1472. font-family: "Microsoft YaHei";
  1473. background: transparent;
  1474. overflow: hidden
  1475. }
  1476. /*表格的文本框样式*/
  1477. .U_UF_E_Table_peak {
  1478. z-index: 1;
  1479. }
  1480. /*添加最上层 样式*/
  1481. .U_MD_O_ctrlPress a {
  1482. cursor: pointer !important;
  1483. }
  1484. /*A标签样式*/
  1485. .U_MD_O_H_wordEditor span {
  1486. white-space: pre-wrap;
  1487. word-wrap: break-word;
  1488. }
  1489. .U_MD_O_attachment_wrapper {
  1490. width: 260px;
  1491. height: 40px;
  1492. padding: 8px 5px 5px;
  1493. display: block;
  1494. vertical-align: middle;
  1495. background-color: #f1f1f1;
  1496. border: 1px solid #e6e6e6;
  1497. border-radius: 2px;
  1498. text-align: left;
  1499. white-space: unset;
  1500. margin: 5px auto;
  1501. }
  1502. .U_MD_O_attachment_wrapper_img {
  1503. display: inline-block;
  1504. height: 30px;
  1505. width: 30px;
  1506. margin: 0 5px;
  1507. vertical-align: middle;
  1508. background-image: url("img/Office/attachment.png");
  1509. background-size: cover;
  1510. }
  1511. .U_MD_O_attachment_fileinfo {
  1512. display: inline-block;
  1513. vertical-align: middle;
  1514. width: 200px;
  1515. font-size: 10pt;
  1516. line-height: 20px
  1517. }
  1518. .U_MD_O_attachment_fileinfo span {
  1519. display: block;
  1520. white-space: nowrap
  1521. }
  1522. .U_MD_O_attachment_wrapper a {
  1523. text-decoration: none;
  1524. font-size: 10pt;
  1525. display: inline-block;
  1526. vertical-align: bottom;
  1527. margin-left: -12px;
  1528. }
  1529. .U_MD_O_H_body_left_book_a {
  1530. font-size: 14px;
  1531. display: flex;
  1532. flex-direction: column;
  1533. flex-wrap: nowrap;
  1534. justify-content: space-evenly;
  1535. align-items: flex-start;
  1536. height: 145px;
  1537. margin: 0 25px;
  1538. }