WordEditor.css 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818
  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. }
  472. .U_MD_O_H_head_file_bj {
  473. float: left;
  474. width: 150px;
  475. height: 27px;
  476. line-height: 27px;
  477. border: 1px solid #68add0;
  478. border-bottom: 0;
  479. margin: 3px 0 0 10px;
  480. color: #006699;
  481. cursor: pointer;
  482. }
  483. .U_MD_O_H_head_file_bj:hover,
  484. U_MD_O_H_head_file_bjo {
  485. background-color: #4D5968;
  486. color: #e9ebed;
  487. }
  488. .U_MD_O_H_head_file_bj:hover>.U_MD_O_H_head_file_x,
  489. U_MD_O_H_head_file_bjo>.U_MD_O_H_head_file_x {
  490. background-position: -313px -72px;
  491. }
  492. .U_MD_O_H_head_file_web {
  493. margin-left: 10px;
  494. font-size: 14px;
  495. float: left;
  496. }
  497. .U_MD_O_H_head_file_x {
  498. cursor: pointer;
  499. float: right;
  500. margin: 10px 8px 0 0;
  501. margin-top: 10px;
  502. width: 10px;
  503. height: 10px;
  504. background: url(/img/Editor_img1.png) no-repeat;
  505. background-position: -313px -53px;
  506. cursor: pointer;
  507. }
  508. .U_MD_O_H_body {
  509. width: 1130px;
  510. margin: auto;
  511. }
  512. /*position: absolute; */
  513. .U_MD_O_H_body .U_MD_F_S_TI {
  514. color: #000;
  515. line-height: 30px;
  516. }
  517. .U_MD_O_H_body_left {
  518. width: 250px;
  519. float: left;
  520. margin-right: 80px;
  521. margin-top: 15px;
  522. }
  523. /*padding: 0 30px;*/
  524. #U_MD_O_H_body_left {}
  525. .U_MD_O_H_body_main_m {
  526. overflow: hidden;
  527. background: #fff;
  528. width: 210mm;
  529. height: 297mm;
  530. margin-bottom: 10px;
  531. }
  532. /* */
  533. .U_MD_O_H_body_main_border_T>div,
  534. .U_MD_O_H_body_main_border_B>div {
  535. width: 7mm;
  536. height: 7mm;
  537. margin: 10px;
  538. border: 1px solid #c1c1c1;
  539. float: left;
  540. }
  541. .U_MD_O_H_body_main_border_T>div:nth-child(1) {
  542. border-top: none;
  543. border-left: none;
  544. }
  545. .U_MD_O_H_body_main_border_T>div:nth-child(2) {
  546. border-top: none;
  547. border-right: none;
  548. float: right;
  549. }
  550. .U_MD_O_H_body_main_border_B .U_MD_O_H_body_main_border_B>div:nth-child(1) {
  551. border-bottom: none;
  552. border-left: none;
  553. }
  554. .U_MD_O_H_body_main_border_B>div:nth-child(2) {
  555. border-bottom: none;
  556. border-right: none;
  557. float: right;
  558. }
  559. .U_MD_O_H_body_main_border {}
  560. .U_MD_O_H_body_main_border div {
  561. width: 7mm;
  562. height: 7mm;
  563. margin: 10px;
  564. border: 1px solid #c1c1c1;
  565. float: left;
  566. }
  567. .U_MD_O_H_body_main_border .U_MD_O_H_body_main_bordero {
  568. border-top: none;
  569. border-left: none;
  570. }
  571. .U_MD_O_H_body_main_border .U_MD_O_H_body_main_bordert {
  572. border-top: none;
  573. border-right: none;
  574. float: right;
  575. }
  576. .U_MD_O_H_body_main_border .U_MD_O_H_body_main_borders {
  577. border-bottom: none;
  578. border-left: none;
  579. }
  580. .U_MD_O_H_body_main_border .U_MD_O_H_body_main_borderf {
  581. border-bottom: none;
  582. border-right: none;
  583. float: right;
  584. }
  585. .U_MD_O_H_body_left_invite {
  586. width: 100%;
  587. height: 253px;
  588. }
  589. .U_MD_O_H_body_left_href {
  590. height: 203px;
  591. margin-top: 15px;
  592. }
  593. .U_MD_O_H_body_left_template {
  594. /* height: 365px; */
  595. margin-top: 15px;
  596. }
  597. .U_MD_O_H_body_left_invite_name {
  598. height: 30px;
  599. border: 0px;
  600. border-bottom: 1px #d6dff0 solid;
  601. background: #f8fcfd;
  602. }
  603. .U_MD_O_H_body_left_invite_name_left {
  604. font-size: 14px;
  605. line-height: 30px;
  606. margin-left: 10px;
  607. float: left;
  608. }
  609. .U_MD_O_H_body_left_invite_name_right {
  610. float: right;
  611. margin-right: 10px;
  612. margin-top: 3px;
  613. width: 40px;
  614. color: #167fb3;
  615. border: 1px solid #167fb3;
  616. text-align: center;
  617. height: 21px;
  618. line-height: 21px;
  619. }
  620. .U_MD_O_H_body_left_invite_linkTxt {
  621. padding: 6px 10px;
  622. margin: 0 6px;
  623. cursor: pointer;
  624. position: absolute;
  625. top: -29px;
  626. right: 0;
  627. color: #006699;
  628. z-index: 1;
  629. text-decoration: underline;
  630. }
  631. /**.U_MD_O_H_body_left_invite_linkTxt:hover{background-color:#444;color:#fff}*/
  632. .U_MD_O_H_body_left_invite_user {
  633. overflow: hidden;
  634. }
  635. .U_MD_O_H_body_left_invite_user_a {
  636. width: 60px;
  637. height: 75px;
  638. margin: 10px 0 0 9px;
  639. display: flex;
  640. cursor: pointer;
  641. float: left;
  642. }
  643. .U_MD_O_H_body_left_invite_user_a_img {
  644. width: 50px;
  645. height: 50px;
  646. /* background: url(/img/Editor_img1.png) no-repeat;
  647. */
  648. background: url("../../../img/icon/avatar.png") no-repeat;
  649. background-size: 100% 100%;
  650. margin: auto;
  651. }
  652. .U_MD_O_H_body_left_invite_user_a_img_add{
  653. width: 40px;
  654. height: 40px;
  655. background: url("../../../img/icon/addUser.png") no-repeat;
  656. background-size: 100% 100%;
  657. margin: 0px 0px 20px 10px;
  658. }
  659. .U_MD_O_H_body_left_invite_user_a_user {
  660. width: 32px;
  661. height: 32px;
  662. margin: auto;
  663. }
  664. .U_MD_O_H_body_left_invite_user_a_user img {
  665. width: 32px;
  666. height: 32px;
  667. }
  668. .U_MD_O_H_body_left_invite_user_a_div {
  669. line-height: 25px;
  670. width: 60px;
  671. text-align: center;
  672. overflow: hidden;
  673. }
  674. .U_MD_O_H_body_left_invite_form {
  675. margin: 0 10px;
  676. }
  677. .U_MD_O_H_body_left_invite_formShare {
  678. border-bottom: 1px solid #ccc;
  679. }
  680. .U_MD_O_H_body_left_invite_formShare,
  681. .U_MD_O_H_body_left_invite_formQRCode {
  682. padding: 12px 16px 24px;
  683. }
  684. .U_MD_O_H_body_left_invite_shareInp {
  685. display: inline-block;
  686. width: 450px;
  687. height: 24px;
  688. padding-left: 6px;
  689. border: 1px solid #ccc;
  690. line-height: 24px;
  691. overflow: hidden;
  692. vertical-align: top
  693. }
  694. .U_MD_O_H_body_left_invite_shareBtn {
  695. display: inline-block;
  696. padding: 4px 1em;
  697. margin-left: 12px;
  698. border: 1px solid #ccc;
  699. vertical-align: top;
  700. cursor: pointer;
  701. }
  702. .U_MD_O_H_body_left_invite_shareBtn:hover {
  703. background-color: #26CA26;
  704. color: #fff
  705. }
  706. .U_MD_O_H_body_left_invite_shareInpMargin {
  707. margin-left: 20px
  708. }
  709. .U_MD_O_H_body_left_href_href {
  710. height: 30px;
  711. border: 1px #d6dff0 solid;
  712. background: #f8fcfd;
  713. border-bottom: none;
  714. /* margin-top: 20px; */
  715. line-height: 30px;
  716. }
  717. .U_MD_O_H_body_left_href_href_a {
  718. font-size: 14px;
  719. display: block;
  720. float: left;
  721. text-align: left;
  722. line-height: 30px;
  723. margin-left: 10px;
  724. }
  725. .U_MD_O_H_body_left_href_href_right {
  726. cursor: pointer;
  727. float: right;
  728. margin-right: 10px;
  729. margin-top: 3px;
  730. width: 40px;
  731. color: #167fb3;
  732. border: 1px solid #167fb3;
  733. background: #fff;
  734. text-align: center;
  735. height: 21px;
  736. line-height: 21px;
  737. }
  738. .U_MD_O_H_body_left_href_pay {
  739. height: 170px;
  740. border: 1px #d6dff0 solid;
  741. background: #ffffff;
  742. }
  743. .U_MD_O_H_body_left_href_pay_a {
  744. min-width: 280px;
  745. height: 25px;
  746. margin: 2px 10px;
  747. line-height: 25px;
  748. display: block;
  749. text-align: left;
  750. text-decoration: underline;
  751. color: #006699;
  752. cursor: pointer;
  753. }
  754. .U_MD_O_H_body_left_href_pay_Btn {
  755. float: right;
  756. margin-left: 6px;
  757. padding: 0 12px;
  758. background-color: #ffffff;
  759. border-radius: 4px;
  760. border: 1px solid #A6B2C0;
  761. color: #000000;
  762. }
  763. .U_MD_O_H_body_left_href_pay_aText {
  764. float: left;
  765. width: calc(100% - 135px);
  766. min-width: 165px;
  767. overflow: hidden;
  768. white-space: nowrap;
  769. text-overflow: ellipsis;
  770. }
  771. .U_MD_O_H_body_left_href_pay_Btn:hover {
  772. border: 1px solid #3f8bdd;
  773. color: #3f8bdd
  774. }
  775. .U_MD_O_H_body_left_template_name {
  776. height: 30px;
  777. border: 1px #d6dff0 solid;
  778. background: #f8fcfd;
  779. border-bottom: none;
  780. /* margin-top: 20px; */
  781. line-height: 30px;
  782. }
  783. .U_MD_O_H_body_left_template_name_a {
  784. font-size: 14px;
  785. display: block;
  786. float: left;
  787. margin-left: 10px;
  788. line-height: 30px;
  789. }
  790. .U_MD_O_H_body_left_template_name_right {
  791. float: right;
  792. margin-right: 10px;
  793. margin-top: 3px;
  794. width: 40px;
  795. color: #167fb3;
  796. border: 1px solid #167fb3;
  797. background: #fff;
  798. text-align: center;
  799. height: 21px;
  800. line-height: 21px;
  801. }
  802. .U_MD_O_H_body_left_template_user {
  803. background: #ffffff;
  804. }
  805. .U_MD_O_H_body_left_template_user_m {
  806. width: 72px;
  807. display: inline-block;
  808. vertical-align: top;
  809. margin: 5px 12px;
  810. cursor: pointer;
  811. }
  812. .U_MD_O_H_body_left_template_user_m_s {
  813. width: 70px;
  814. height: 100px;
  815. border: 1px solid #CDCDCD;
  816. background-size: contain;
  817. }
  818. .U_MD_O_H_body_left_template_user_m_x {
  819. display: -webkit-box;
  820. overflow: hidden;
  821. margin-top: 5px;
  822. width: 70px;
  823. max-height: 32px;
  824. text-align: center;
  825. text-overflow: ellipsis;
  826. white-space: pre-wrap;
  827. -webkit-line-clamp: 2;
  828. -webkit-box-orient: vertical;
  829. }
  830. .U_MD_O_H_body_left_template_user_a {
  831. width: 20%;
  832. margin: 10px;
  833. display: block;
  834. float: left;
  835. }
  836. .U_MD_O_H_body_main_text {
  837. text-align: left;
  838. margin: 0 10mm;
  839. overflow: hidden;
  840. display: inline-block;
  841. height: 269mm;
  842. width: calc(100% - 20mm)
  843. }
  844. .U_MD_O_H_body_main_text div {
  845. padding: 0;
  846. }
  847. .U_MD_O_H_body_main_text {
  848. word-break: break-all;
  849. word-wrap: break-word;
  850. outline: none;
  851. font-size: 14px;
  852. font-family: Calibri (西文正文);
  853. }
  854. .U_MD_O_H_body_main_text_p {
  855. float: left;
  856. font-size: 18px;
  857. font-weight: bold;
  858. display: block;
  859. width: 100%;
  860. height: 50px;
  861. }
  862. .U_MD_O_H_body_main_text_a {
  863. font-size: 16px;
  864. text-indent: 2em;
  865. display: block;
  866. line-height: 30px;
  867. }
  868. .U_MD_O_W_Nav .U_MD_O_H_body {
  869. min-width: 1130px;
  870. width: 90%;
  871. }
  872. .U_MD_O_W_Nav .U_MD_O_H_body_main {
  873. width: calc(100% - 310px);
  874. }
  875. .U_MD_O_W_Nav .U_MD_O_H_pageSize {
  876. width: 100%;
  877. }
  878. /*陌生人查找-协同办公 弹窗1 顶部窗口栏*/
  879. .U_MD_O_W_Paper {
  880. width: 817px;
  881. height: 560px;
  882. border: 1px solid #DFDFDF;
  883. border-radius: 3px 3px 3px 3px;
  884. z-index: 20;
  885. position: fixed;
  886. left: 30%;
  887. top: 20%;
  888. background: #FFF;
  889. }
  890. .U_MD_O_W_Paper_Topbox {
  891. height: 34px;
  892. border-bottom: 1px solid black;
  893. background-color: #3c475b;
  894. line-height: 34px;
  895. }
  896. .U_MD_O_W_Paper_title {
  897. font-size: 14px;
  898. float: left;
  899. color: White;
  900. margin-left: 5px;
  901. font-weight: bold;
  902. }
  903. .U_MD_O_W_Paper_close {
  904. float: right;
  905. margin-top: 6px;
  906. margin-right: 4px;
  907. }
  908. /*陌生人查找-协同办公 弹窗1弹窗2公共部分 中间搜寻方式*/
  909. .U_MD_O_W_Paper_searchBox {
  910. position: relative;
  911. width: 817px;
  912. height: 103px;
  913. }
  914. .U_MD_O_W_Paper_searchmode {
  915. position: relative;
  916. width: 817px;
  917. height: 52px;
  918. background-color: #DFDFDF;
  919. }
  920. .U_MD_O_W_Paper_searchmode_ul {
  921. margin-left: 260px;
  922. width: 417px;
  923. height: 22px;
  924. text-align: center;
  925. padding-top: 17px;
  926. }
  927. .U_MD_O_W_Paper_searchmode_li {
  928. width: 87px;
  929. float: left;
  930. font-size: 18px;
  931. font-weight: bold;
  932. }
  933. .U_MD_O_W_Paper_searchmode_li img {
  934. margin-top: 7px;
  935. }
  936. .U_MD_O_W_Paper_searchmode_static {
  937. display: none;
  938. }
  939. /*查找窗口 公共部分*/
  940. .U_MD_O_W_Paper_searchwindow {
  941. width: 817px;
  942. height: 30px;
  943. margin-top: 5px;
  944. }
  945. .U_MD_O_W_Paper_window {
  946. float: left;
  947. width: 355px;
  948. height: 30px;
  949. margin-left: 207px;
  950. }
  951. .U_MD_O_W_Paper_button {
  952. width: 83px;
  953. height: 32px;
  954. float: right;
  955. border: 1px solid #CCC;
  956. border-radius: 6px 6px 6px 6px;
  957. text-align: center;
  958. line-height: 32px;
  959. background-color: #1d75ce;
  960. margin-right: 155px;
  961. color: White;
  962. font-size: 14px;
  963. }
  964. /*用户列表窗口*/
  965. .U_MD_O_W_Paper_bodyBox {
  966. width: 818px;
  967. height: 442px;
  968. position: relative;
  969. margin-left: 20px;
  970. }
  971. .U_MD_O_W_Paper_bodyBox_title {
  972. height: 30px;
  973. font-size: 18px;
  974. margin-left: 15px;
  975. margin-top: 3px;
  976. }
  977. /*用户头像*/
  978. .U_MD_O_W_Paper_bodyBox_person {
  979. height: 96px;
  980. width: 260px;
  981. float: left;
  982. }
  983. .U_MD_O_W_Paper_bodyBox_person_pic {
  984. height: 103px;
  985. width: 90px;
  986. float: left;
  987. }
  988. .U_MD_O_W_Paper_bodyBox_person_pic img {
  989. margin: 10px 10px;
  990. }
  991. /*详细信息*/
  992. .U_MD_O_W_Paper_bodyBox_person_ul {
  993. margin-top: 7px;
  994. height: 90px;
  995. width: 53px;
  996. float: left;
  997. }
  998. .U_MD_O_W_Paper_bodyBox_person_ul div {
  999. width: 53px;
  1000. margin-bottom: 7px;
  1001. font-size: 14px;
  1002. }
  1003. .U_MD_O_W_Paper_bodyBox_person_active {
  1004. background-color: #1d75ce;
  1005. border-radius: 3px 3px 3px 3px;
  1006. text-align: center;
  1007. color: White;
  1008. }
  1009. .U_MD_O_W_Paper_bodyBox_fenge {
  1010. width: 780px;
  1011. height: 95px;
  1012. border-bottom: 1px solid #DFDFDF;
  1013. }
  1014. /*地址信息*/
  1015. .U_MD_O_W_Paper_bodyBox_person_address {
  1016. width: 70px;
  1017. height: 100px;
  1018. float: left;
  1019. margin-top: 35px;
  1020. }
  1021. .U_MD_O_W_Paper_bodyBox_person_address span {
  1022. margin-top: 100px;
  1023. height: 100px;
  1024. font-size: 14px;
  1025. }
  1026. /*窗口14 修改纸张大小*/
  1027. .U_MD_O_W_Paper4 {
  1028. margin: 8px 10px;
  1029. }
  1030. .U_MD_O_W_Paper4_Title {
  1031. font-size: 16px;
  1032. font-weight: bold;
  1033. }
  1034. .U_MD_O_W_Paper4_Main {
  1035. font-size: 13px;
  1036. padding: 5px 15px;
  1037. cursor: pointer;
  1038. margin: 5px 0;
  1039. }
  1040. .U_MD_O_W_Paper4_Main:hover {
  1041. background-color: #eaeaea;
  1042. }
  1043. .U_MD_O_W_Paper4_Main_Name {
  1044. font-size: 15px;
  1045. font-weight: bold;
  1046. }
  1047. .U_MD_O_W_Paper_A3 {
  1048. width: 297mm;
  1049. height: 420mm;
  1050. margin: 10px
  1051. }
  1052. .U_MD_O_W_Paper_A3C {
  1053. width: 287mm;
  1054. height: 390mm;
  1055. margin: 10px;
  1056. }
  1057. .U_MD_O_W_Paper_A4 {
  1058. width: 210mm;
  1059. height: 297mm;
  1060. margin: 10px
  1061. }
  1062. .U_MD_O_W_Paper_A4C {
  1063. width: 200mm;
  1064. height: 267mm;
  1065. margin: 10px
  1066. }
  1067. .U_MD_O_W_Paper_A5 {
  1068. width: 148mm;
  1069. height: 210mm;
  1070. margin: 10px
  1071. }
  1072. .U_MD_O_W_Paper_A5C {
  1073. width: 138mm;
  1074. height: 180mm;
  1075. margin: 10px
  1076. }
  1077. .U_MD_O_W_Paper_Web {
  1078. width: 95%;
  1079. min-height: 210mm;
  1080. min-height: 420mm;
  1081. margin: 10px
  1082. }
  1083. .U_MD_O_W_Paper_WebC {
  1084. width: 95%;
  1085. min-height: 180mm;
  1086. min-height: 390mm;
  1087. margin: 10px
  1088. }
  1089. /*窗口16 插入表格*/
  1090. .U_MD_O_W_Paper6 {
  1091. padding: 10px;
  1092. height: 190px;
  1093. font-size: 14px;
  1094. }
  1095. .U_MD_O_W_Paper6_main {
  1096. position: relative;
  1097. }
  1098. .U_MD_O_W_Paper6_title {
  1099. font-size: 16px;
  1100. }
  1101. .U_MD_O_W_Paper6_OneLine {
  1102. margin: 10px 0;
  1103. padding: 0 10px;
  1104. }
  1105. .U_MD_O_W_Paper6_OneLine span {
  1106. display: inline-block;
  1107. line-height: 27px;
  1108. }
  1109. .U_MD_O_W_Paper6_OneLine input {
  1110. float: right;
  1111. display: inline-block;
  1112. width: 150px;
  1113. height: 25px;
  1114. }
  1115. .U_MD_O_W_Paper6_block {
  1116. position: absolute;
  1117. margin: 2px;
  1118. width: 20px;
  1119. height: 20px;
  1120. border: 1px solid #9e9e9e;
  1121. }
  1122. /*窗口17 更多*/
  1123. .U_MD_O_W_Paper7_Main {
  1124. border-bottom: 1px solid #f1f1f1;
  1125. line-height: 65px;
  1126. width: 100%;
  1127. text-indent: 30px;
  1128. font-size: 20px;
  1129. }
  1130. .U_MD_O_W_Paper7_Main_Icon {
  1131. width: 30px;
  1132. height: 30px;
  1133. background: url(/img/Editor_img1.png) no-repeat;
  1134. float: left;
  1135. background-position: -44px -81px;
  1136. margin: 17.5px 18px;
  1137. }
  1138. /*窗口18 邀请好友*/
  1139. .U_MD_O_W_Paper8 {
  1140. padding: 30px 40px;
  1141. font-weight: 700;
  1142. }
  1143. .U_MD_O_W_Paper8_Set_Tag {
  1144. font-size: 16px;
  1145. line-height: 30px;
  1146. }
  1147. .U_MD_O_W_Paper8_Set_Yu {
  1148. overflow: hidden;
  1149. position: absolute;
  1150. bottom: 45px;
  1151. left: 185px;
  1152. }
  1153. .U_MD_O_W_Paper8_Set_Yu_Text {
  1154. padding-top: 20px;
  1155. font-size: 14px;
  1156. float: left;
  1157. }
  1158. .U_MD_O_W_Paper8_Set_Yu_Ming {
  1159. padding-top: 20px;
  1160. font-size: 14px;
  1161. float: left;
  1162. color: #0033cc;
  1163. cursor: pointer;
  1164. }
  1165. .U_MD_O_W_Paper8_Set_Tag>span {
  1166. margin-left: 10px;
  1167. font-size: 12px;
  1168. line-height: 35px;
  1169. }
  1170. .U_MD_O_W_Paper8_Set_Name {
  1171. color: #2c5ca4;
  1172. font-size: 16px;
  1173. }
  1174. .U_MD_O_W_Paper8_Set_Name>input {
  1175. margin-left: 5px;
  1176. height: 40px;
  1177. }
  1178. .U_MD_O_W_Paper8_Set_Hint {
  1179. padding: 10px 20px 0;
  1180. color: #a00;
  1181. font-size: 12px;
  1182. line-height: 18px;
  1183. }
  1184. .U_MD_O_W_Paper8_Btn {
  1185. width: 100%;
  1186. height: 40px;
  1187. }
  1188. .U_MD_O_W_Paper8_Btn>div {
  1189. float: right;
  1190. margin: 0 6px;
  1191. width: 85px;
  1192. height: 33px;
  1193. border: 1px solid #ccc;
  1194. border-radius: 5px;
  1195. text-align: center;
  1196. line-height: 33px;
  1197. /* padding: 0 10px; */
  1198. }
  1199. .U_MD_O_W_Paper8_Btn>div:hover {
  1200. background-color: #1e75ce;
  1201. color: #fff;
  1202. }
  1203. .U_MD_O_W_Paper8_Set_Alert {
  1204. padding-top: 20px;
  1205. width: 100%;
  1206. height: 20px;
  1207. font-size: 12px;
  1208. line-height: 20px;
  1209. }
  1210. .U_MD_O_W_Paper8_Set_Alert>div {
  1211. display: inline-block;
  1212. color: #1e75ce;
  1213. text-decoration: underline;
  1214. }
  1215. .U_MD_O_W_Paper8_Que_Tag {
  1216. margin: 35px auto 0;
  1217. text-align: center;
  1218. font-size: 14px;
  1219. line-height: 30px;
  1220. }
  1221. .U_MD_O_W_Paper8_Que_Url {
  1222. padding: 15px;
  1223. text-align: center;
  1224. font-size: 14px;
  1225. border: none;
  1226. margin-left: 30%;
  1227. }
  1228. .U_MD_O_W_Paper8_Que_Con {
  1229. display: inline-block;
  1230. vertical-align: top;
  1231. margin: 25px 0px;
  1232. line-height: 25px;
  1233. text-align: left;
  1234. font-size: 14px;
  1235. margin-top: -10px;
  1236. }
  1237. .U_MD_O_W_Paper8_Que_QR {
  1238. float: left;
  1239. overflow: hidden;
  1240. }
  1241. .U_MD_O_W_Paper8_Que_Code {
  1242. margin: 20px auto -25px;
  1243. padding: 20px 0px;
  1244. border-top: 1px solid #ccc;
  1245. text-align: center;
  1246. }
  1247. .U_MD_O_W_Paper8_Que_Code>img {
  1248. display: inline-block;
  1249. width: 180px;
  1250. height: 180px;
  1251. }
  1252. .U_MD_O_W_Paper8_Sanfang {
  1253. margin-top: 5px;
  1254. }
  1255. .U_MD_O_W_Paper8_Sanfang_Weibo {
  1256. width: 35px;
  1257. height: 35px;
  1258. float: left;
  1259. cursor: pointer;
  1260. background: url(/img/Xinlang.png) no-repeat;
  1261. margin-right: 30px;
  1262. }
  1263. .U_MD_O_W_Paper8_Sanfang_Kongjian {
  1264. width: 35px;
  1265. height: 35px;
  1266. float: left;
  1267. cursor: pointer;
  1268. background: url(/img/Kongjian.png) no-repeat;
  1269. }
  1270. .U_MD_O_H_body_right {
  1271. height: 315px;
  1272. width: 285px;
  1273. margin: 15px 0 0 30px;
  1274. float: left;
  1275. }
  1276. .U_MD_O_H_body_right_user {}
  1277. .U_MD_O_H_body_right_user_o {
  1278. padding: 7px;
  1279. border-bottom: 1px solid #DEDEDE;
  1280. }
  1281. .U_MD_O_H_body_right_user_o_l {
  1282. width: 40px;
  1283. height: 40px;
  1284. float: left;
  1285. }
  1286. .U_MD_O_H_body_right_user_o_l img {
  1287. width: 50px;
  1288. height: 50px;
  1289. }
  1290. .U_MD_O_H_body_right_user_o_r {
  1291. margin-left: 60px;
  1292. }
  1293. .U_MD_O_H_body_right_user_o_r_s {
  1294. width: 100%;
  1295. height: 20px;
  1296. line-height: 20px;
  1297. }
  1298. .U_MD_O_H_body_right_user_o_r_s_l {
  1299. font-weight: bold;
  1300. float: left;
  1301. font-size: 14px;
  1302. }
  1303. .U_MD_O_H_body_right_user_o_r_s_r {
  1304. float: right;
  1305. }
  1306. .U_MD_O_H_body_right_user_o_r_x {
  1307. height: 25px;
  1308. margin-top: 5px;
  1309. }
  1310. .U_MD_O_H_body_right_user_o_r_x div {
  1311. width: 50px;
  1312. height: 25px;
  1313. line-height: 25px;
  1314. color: #FFF;
  1315. text-align: center;
  1316. background-color: #6C82A7;
  1317. float: left;
  1318. cursor: pointer;
  1319. }
  1320. .U_MD_O_H_body_right_user_o_r_x_l {}
  1321. .U_MD_O_H_body_right_user_o_r_x_r {
  1322. margin-left: 10px;
  1323. }
  1324. .U_MD_O_H_body_right_user_o_r_all {
  1325. height: 30px;
  1326. width: 285px;
  1327. text-align: center;
  1328. }
  1329. .U_MD_O_H_body_right_user_o_r_all_a {
  1330. margin: 0 auto;
  1331. margin-top: 5px;
  1332. border: 1px solid #cbd3e3;
  1333. width: 90px;
  1334. height: 17px;
  1335. text-align: center;
  1336. }
  1337. .U_MD_O_H_body_right_user_o_r_nr {
  1338. width: 88%;
  1339. margin: 0 auto;
  1340. margin-top: 15px;
  1341. }
  1342. .U_MD_O_H_body_right_user_o_r_all_nr {
  1343. width: 80%;
  1344. min-width: 560px;
  1345. margin: 0 auto;
  1346. margin-top: 15px;
  1347. float: left;
  1348. }
  1349. .U_MD_O_H_body_btn {
  1350. width: 72px;
  1351. height: 22px;
  1352. float: right;
  1353. color: #fff;
  1354. padding-top: 5px;
  1355. background: #7288a3;
  1356. text-align: center;
  1357. margin-top: -30px;
  1358. }
  1359. .U_MD_O_H_body_btn_img1 {
  1360. height: 12px;
  1361. width: 12px;
  1362. float: right;
  1363. margin-top: 3px;
  1364. margin-right: 10px;
  1365. background-image: url(../../img/zk.png);
  1366. background-repeat: no-repeat;
  1367. background-size: 100% 100%;
  1368. -moz-background-size: 100% 100%;
  1369. }
  1370. .U_MD_O_H_body_btn_img2 {
  1371. height: 12px;
  1372. width: 12px;
  1373. float: right;
  1374. margin-top: 3px;
  1375. margin-right: 10px;
  1376. background-image: url(../../img/sq.png);
  1377. background-repeat: no-repeat;
  1378. background-size: 100% 100%;
  1379. -moz-background-size: 100% 100%;
  1380. }
  1381. /*.U_MD_O_H_Nav {height:42px;margin-bottom: 15px;text-align:center;line-height:42px;}
  1382. .U_MD_O_H_Nav_Box { width: calc(100% - 42px); height: 100%; overflow-x:auto; user-select:none; }
  1383. .U_MD_O_H_Nav_Box > span { float:left; width:25%; height:100%; position:relative;}
  1384. .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; }
  1385. .U_MD_O_H_Nav_Box > span:hover{ background-color:#737575; color:White; }
  1386. .U_MD_O_H_Nav_Add { float:right; width:42px; height:100%; background-color:#ccc; color:White; }
  1387. .U_MD_O_H_Nav_Add:hover { background-color:#949494; } */
  1388. .U_MD_O_W_N_Logo {
  1389. background: url(/img/Logo_.png) no-repeat;
  1390. background-size: cover;
  1391. margin: 20px auto;
  1392. width: 77px;
  1393. height: 77px;
  1394. border: 1px solid #eeeeee;
  1395. border-radius: 100%;
  1396. text-align: center;
  1397. line-height: 77px;
  1398. overflow: hidden;
  1399. }
  1400. .U_MD_O_W_N_NavBox {
  1401. height: 425px;
  1402. overflow: auto;
  1403. }
  1404. .U_MD_O_W_N_Bottom {
  1405. border-top: 1px solid rgb(214, 222, 240);
  1406. margin-top: 15px;
  1407. padding: 12px 0;
  1408. text-align: center;
  1409. }
  1410. .U_MD_O_W_N_Bottom button {
  1411. width: 113px;
  1412. height: 34px;
  1413. margin: 0 14px;
  1414. line-height: 34px;
  1415. padding: 0 10px;
  1416. border-radius: 3px;
  1417. background: #fff;
  1418. box-shadow: rgb(194, 194, 194) 0px 1px 3px;
  1419. border: 1px solid #ccc;
  1420. }
  1421. .U_MD_O_W_N_uploadbutton {
  1422. margin-top: 15px;
  1423. padding: 12px 0;
  1424. text-align: center;
  1425. }
  1426. .U_MD_O_W_N_localupload {
  1427. display: none;
  1428. padding: 0 10px;
  1429. margin: 0 14px;
  1430. line-height: 25px;
  1431. }
  1432. .U_MD_O_W_N_uploadbutton button {
  1433. width: 85px;
  1434. height: 25px;
  1435. padding: 0 10px;
  1436. margin: 0 14px;
  1437. line-height: 25px;
  1438. padding: 0 10px;
  1439. border-radius: 3px;
  1440. background: #fff;
  1441. box-shadow: rgb(194, 194, 194) 0px 1px 3px;
  1442. border: 1px solid #ccc;
  1443. }
  1444. .U_MD_O_W_N_localupload2 {
  1445. padding: 0 10px;
  1446. margin: 0 14px;
  1447. line-height: 25px;
  1448. }
  1449. .U_UF_E_Table_tdCheckd {
  1450. background-color: #b5d6fd;
  1451. }
  1452. /*表格选中时的背景颜色*/
  1453. .U_UF_E_Table_tdCurrent {
  1454. border: 3px solid #5a9eec !important;
  1455. }
  1456. /*表格聚焦时的边框颜色*/
  1457. .U_UF_E_Table_tdText {
  1458. min-height: 100%;
  1459. height: 100% !important;
  1460. width: 100%;
  1461. outline: 0;
  1462. word-wrap: break-word;
  1463. padding: 0;
  1464. resize: none;
  1465. border: 0;
  1466. vertical-align: top;
  1467. font-size: 16px;
  1468. font-family: "Microsoft YaHei";
  1469. background: transparent;
  1470. overflow: hidden
  1471. }
  1472. /*表格的文本框样式*/
  1473. .U_UF_E_Table_peak {
  1474. z-index: 1;
  1475. }
  1476. /*添加最上层 样式*/
  1477. .U_MD_O_ctrlPress a {
  1478. cursor: pointer !important;
  1479. }
  1480. /*A标签样式*/
  1481. .U_MD_O_H_wordEditor span {
  1482. white-space: pre-wrap;
  1483. word-wrap: break-word;
  1484. }
  1485. .U_MD_O_attachment_wrapper {
  1486. width: 260px;
  1487. height: 40px;
  1488. padding: 8px 5px 5px;
  1489. display: block;
  1490. vertical-align: middle;
  1491. background-color: #f1f1f1;
  1492. border: 1px solid #e6e6e6;
  1493. border-radius: 2px;
  1494. text-align: left;
  1495. white-space: unset;
  1496. margin: 5px auto;
  1497. }
  1498. .U_MD_O_attachment_wrapper_img {
  1499. display: inline-block;
  1500. height: 30px;
  1501. width: 30px;
  1502. margin: 0 5px;
  1503. vertical-align: middle;
  1504. background-image: url("img/Office/attachment.png");
  1505. background-size: cover;
  1506. }
  1507. .U_MD_O_attachment_fileinfo {
  1508. display: inline-block;
  1509. vertical-align: middle;
  1510. width: 200px;
  1511. font-size: 10pt;
  1512. line-height: 20px
  1513. }
  1514. .U_MD_O_attachment_fileinfo span {
  1515. display: block;
  1516. white-space: nowrap
  1517. }
  1518. .U_MD_O_attachment_wrapper a {
  1519. text-decoration: none;
  1520. font-size: 10pt;
  1521. display: inline-block;
  1522. vertical-align: bottom;
  1523. margin-left: -12px;
  1524. }
  1525. .U_MD_O_H_body_left_book_a{
  1526. font-size: 14px;
  1527. display: flex;
  1528. flex-direction: column;
  1529. flex-wrap: nowrap;
  1530. justify-content: space-evenly;
  1531. align-items: flex-start;
  1532. height: 145px;
  1533. margin: 0 25px;
  1534. }