WordEditor.css 35 KB

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