| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854 | .U_MD_O_H {    width: 100%;}.U_MD_O_H_img {    background: url(/img/Editor_img1.png) no-repeat;}.U_MD_O_H_head {    width: 100%;}#U_MD_O_W_E_body {    min-width: 210mm;    position: relative;    background-color: white;    overflow: hidden;}.U_MD_O_H_head_top {    width: 100%;    height: 35px;    background: #3c475b;}.U_MD_O_H_head_navigation {    width: 100%;    height: 35px;}.U_MD_O_H_head_navigation_i {    width: 30px;    height: 30px;    background: url(/img/Editor_img1.png) no-repeat;    background-position: -240px -78px;    margin-top: 2px;}/*编辑器初始样式*/.U_MD_O_H_pageSize {    width: 210mm;    font-family: "宋体";    font-size: 10.5pt;    margin: 0px auto 30px;}.U_MD_O_H_lineStyle {    line-height: 1.5;}.U_MD_O_H_wordEditor {    height: 100%;    min-height: 297mm;    /* min-height: 58vh; */    padding: 2.54cm 3.17cm 2.54cm 3.17cm;    background-color: #fff;    outline: 0;    overflow: hidden;}.U_MD_O_H_wordEditor a {    color: #1155cc;}.U_MD_O_H_lineHeight_ul {    display: none;    position: absolute;    background: #fff;    width: 100px;    box-shadow: 1px 2px 5px silver;    margin-top: 45px;    margin-left: 100px}.U_MD_O_H_lineHeight_btn {    padding: 4px 4px 6px;    cursor: pointer}.U_MD_O_H_lineHeight_btn:hover {    background: #dfdfdf}.U_MD_O_H_lineHeight_btn_check {    background: silver}.U_MD_O_H_clearButtonDefault {    width: 100%;    height: 100%;    outline: none;    background: none;    border: none}.U_MD_O_H_Area {    float: left;    height: 40px;}.U_MD_O_H_Area button {    outline: 0;    border: none;    background-color: #f7f8f9;    vertical-align: top;    cursor: pointer;}.U_MD_O_H_Area>div {    display: inline-block;    margin-top: 6px;    vertical-align: top;    margin-left: 4px;}.U_MD_O_H_Area>button {    position: relative;    display: inline-block;    margin-top: 6px;    padding: 4px 6px 3px;    text-indent: 4px;    font-size: 12px;    line-height: 22px;    margin-left: 4px;}.U_MD_O_H_Area>button:hover,.U_MD_O_H_Area>div:hover {    background-color: #e1e2e3;}.U_MD_O_H_Area>button:active,.U_MD_O_H_Area>div:active {    background: #bfc1c4;}.U_MD_O_H_Area>button:first-child,.U_MD_O_H_Area>div:first-child {    margin-left: 8px;}.U_MD_O_H_icon {    float: left;    width: 20px;    height: 20px;    background: url(/img/YS2017.png) no-repeat;}.U_MD_O_H_cutoff {    display: inline-block;    margin-top: 8px;    height: 26px;    border-left: 2px solid #D1D1D1;}.U_MD_O_H_select {    position: relative;    border: 0;    background: 0 0;}.U_MD_O_H_select_list {    width: 100%;    outline: 0;    border: none;    text-indent: 4px;    white-space: pre;    line-height: 27px;}.U_MD_O_H_colorPick_fontBG {    width: 20px;    height: 20px;    background-color: #000;}.U_MD_O_H_colorPick_fontColor_Icon {    height: 16px;    background-position: -173px -593px;}.U_MD_O_H_colorPick_fontColor {    float: left;    width: 100%;    height: 4px;    background-color: #000;}.U_MD_O_H_down {    width: 13px;    height: 28px;    background-position: -1033px -593px;}.U_MD_O_H_colorPick button {    float: left;}.U_MD_O_H_colorPick:hover button {    background-color: #e1e2e3;}.U_MD_O_H_colorPick:hover button:hover {    background-color: #d1d1d1;}.U_MD_O_H_colorPick:hover button:active {    background-color: #bfc1c4;}.U_MD_O_H_More_Area {    position: absolute;    background: #f7f8f9;    padding: 0px 6px 5px 8px;    box-sizing: border-box;    top: 40px;    z-index: 999;    box-shadow: rgba(0, 0, 0, 0.15) 0px 1px 3px;    border: 1px solid rgba(0, 0, 0, 0.15);    border-radius: 2px;    cursor: default;    visibility: visible;}.U_MD_O_H_More_Area>.U_MD_O_H_Area:last-child .U_MD_O_H_cutoff {    display: none !important;}.U_MD_O_H_Inputactive:focus {    border-color: #0083E1 !important;}.U_MD_O_H_head_features {    display: table;    position: relative;    z-index: 2;    min-width: 870px}/*features*/.U_MD_O_H_head_features_ul_d {    float: left;    border: none;    color: #000;    outline: none;    height: 30px;    background: #f7f8f9;    cursor: pointer;    margin-top: 5px;}.U_MD_O_H_head_features_ul_d:hover {    background-color: #e1e2e3;}.U_MD_O_H_head_features_ul_d:active {    background: #bfc1c4;}/*.U_MD_O_H_head_features_ul_d div { float: left; margin-left: 5px; }*/.U_MD_O_H_head_features_ul_d span {    display: table-cell;    vertical-align: middle;}.U_MD_O_H_head_features_ul_d_s {    width: 180px;    height: 140px;    border: 1px solid #cbcfd4;    background-color: #FFF;    position: absolute;    padding: 10px 10px 10px 5px;    top: 29px;    left: -100px;    display: none;    z-index: 1;}.U_MD_O_H_head_features_ul_d_s div {    width: 15px;    height: 15px;    float: left;    margin: 5px 0 0 5px;}.U_MD_O_H_head_features_fbg>div {    margin-top: 0;}.U_MD_O_H_head_features_fbg:hover {    background: #E1E2E3;    margin-top: 8px}.U_MD_O_H_head_features_fbg_color {    width: 30px;    position: relative;    height: 25px;    background-color: initial;    cursor: pointer;    float: left;    border: none;    color: #000;    outline: none;}.U_MD_O_H_head_features_fbg_color:hover {    width: 30px;    position: relative;    height: 25px;    background-color: #C7C7C8;}.U_MD_O_H_head_features_fbg_select:hover {    width: 12px;    height: 25px;    background: #C7C7C8 url(BoomYun//img/pc/U_Boom_HO_xl.png) no-repeat;    float: left;    background-position: 2px;}.U_MD_O_H_head_features_fbg:active .U_MD_O_H_head_features_fbg_color {    background: #C7C7C8;}.U_MD_O_H_head_features_fbg:active .U_MD_O_H_head_features_fbg_select {    background: #C7C7C8 url(BoomYun//img/pc/U_Boom_HO_xl.png) no-repeat;    background-position: 2px;}.U_MD_O_H_head_features_ffc>div {    margin-top: 0;}.U_MD_O_H_head_features_ffc:hover {    background: #E1E2E3;    margin-top: 8px}.U_MD_O_H_head_features_fc {    width: 30px;    position: relative;    height: 25px;    background-color: initial;    cursor: pointer;    float: left;    border: none;    color: #000;    outline: none;}.U_MD_O_H_head_features_fc:hover {    width: 30px;    position: relative;    height: 25px;    background-color: #C7C7C8;}.U_MD_O_H_head_features_fcxl:hover {    width: 12px;    height: 25px;    background: #C7C7C8 url(BoomYun//img/pc/U_Boom_HO_xl.png) no-repeat;    float: left;    background-position: 2px;}.U_MD_O_H_head_features_ul_index {    padding: 4px 11px;    background: rgb(255, 255, 255);}.U_MD_O_H_head_features_ul_index:hover {    padding: 4px 11px;    background: rgba(225, 226, 227, 1);}.U_MD_O_H_head_features_ul_index:nth-child(2) {    font-size: 30px;    font-weight: 700;    font-family: "微软雅黑";}.U_MD_O_H_head_features_ul_index:nth-child(3) {    font-size: 20px;    font-weight: 700;    font-family: "微软雅黑";}.U_MD_O_H_head_features_ul_index:nth-child(4) {    font-size: 18px;    font-weight: 700;    font-family: "微软雅黑";}.U_MD_O_H_head_features_ul_index:nth-child(5) {    font-size: 16px;    font-family: "微软雅黑";    padding-left: 11px;}#U_MD_O_SetTitle>div:nth-child(2)>div {    width: 98px;}#U_MD_O_SetTitle>div:nth-child(2)>div:nth-child(2) {    font-size: 22pt;    font-weight: 700;    font-family: "微软雅黑";}#U_MD_O_SetTitle>div:nth-child(2)>div:nth-child(3) {    font-size: 16pt;    font-weight: 700;    font-family: "微软雅黑";}#U_MD_O_SetTitle>div:nth-child(2)>div:nth-child(4) {    font-size: 15pt;    font-weight: 700;    font-family: "微软雅黑";}#U_MD_O_SetTitle>div:nth-child(2)>div:nth-child(5) {    font-size: 14pt;    font-family: "微软雅黑";    font-weight: bold;}#U_MD_O_SetLineHeight>div:nth-child(2) {    max-width: 60px;    width: 60px;}.U_MD_O_H_head_features_ffc:active .U_MD_O_H_head_features_fc {    background: #C7C7C8;}.U_MD_O_H_head_features_ffc:active .U_MD_O_H_head_features_fcxl {    background: #C7C7C8 url(BoomYun//img/pc/U_Boom_HO_xl.png) no-repeat;    background-position: 2px;}.U_MD_O_H_head_features_ul_index {    padding: 4px 6px;    background: rgb(255, 255, 255);}.U_MD_O_H_head_features_ul_index:hover {    padding: 4px 6px;    background: rgb(204, 204, 204);}.U_MD_O_H_head_features_ul_index:nth-child(2) {    font-size: 36px;    font-weight: 700;    font-family: "微软雅黑";}.U_MD_O_H_head_features_ul_index:nth-child(3) {    font-size: 28px;    font-weight: 700;    font-family: "微软雅黑";}.U_MD_O_H_head_features_ul_index:nth-child(4) {    font-size: 26px;    font-weight: 700;    font-family: "微软雅黑";}.U_MD_O_H_head_features_ul_index:nth-child(5) {    font-size: 24px;    font-family: "微软雅黑";}.U_MD_O_H_alignFocus {    background-color: #E1E2E3;}.U_MD_O_H_head_features_ul_s {    width: 100%;    border: 1px solid #CDCDCD;    background-color: #f7f8f9;    outline: 0;    padding: 4px 0;    line-height: 18px;}.U_MD_O_H_head_features_ul_s:hover {    background-color: #e1e2e3;}.U_MD_O_H_head_features_ul_s:active {    background: #bfc1c4;}.U_MD_O_H_head_features_ul_i {    display: table-cell;    width: 20px;    height: 20px;    background: url(/img/wordEditor.png) no-repeat;    margin-top: 4px;}.U_MD_O_H_head_features_ul_i2 {    display: table-cell;    width: 20px;    height: 20px;    background: url(/img/wordEditor2.png) no-repeat;    margin-top: 4px;}.U_MD_O_H_head_features_ul_b {    width: 20px;    height: 20px;    margin: 4px auto 0 auto;}.U_MD_O_H_head_features_ul_x {    float: left;    width: 2px;    background: #D1D1D1;    height: 32px;    margin: 4px 6px;    font-size: 0;}.U_MD_O_H_head_features_colorPicker {    width: 12px;    height: 25px;    background: url(BoomYun//img/pc/U_Boom_HO_xl.png) no-repeat;    float: left;    background-position: 2px;    margin-top: 8px;}.U_MD_O_H_head_features_ul_x:after {    content: '';}.U_MD_O_H_head_features_ul_x:before {    content: '';}.U_MD_O_H_head_file {    width: 100%;    height: 30px;    float: left;    text-align: left;    padding-top: 5px;    border-bottom: 1px solid #CDCDCD;}/*file.U_MD_O_H_head_file_wd1 { float: left; width: 150px; height: 27px; background: #C6E2FF; line-height: 27px; background-size: cover; }*/.U_MD_O_H_body_main {    /* margin-top: 60px; */    /* background:#fff; */    float: left;    margin: 60px 0 0 0;}.U_MD_O_H_head_file_bj {    float: left;    width: 150px;    height: 27px;    line-height: 27px;    border: 1px solid #68add0;    border-bottom: 0;    margin: 3px 0 0 10px;    color: #006699;    cursor: pointer;}.U_MD_O_H_head_file_bj:hover,U_MD_O_H_head_file_bjo {    background-color: #4D5968;    color: #e9ebed;}.U_MD_O_H_head_file_bj:hover>.U_MD_O_H_head_file_x,U_MD_O_H_head_file_bjo>.U_MD_O_H_head_file_x {    background-position: -313px -72px;}.U_MD_O_H_head_file_web {    margin-left: 10px;    font-size: 14px;    float: left;}.U_MD_O_H_head_file_x {    cursor: pointer;    float: right;    margin: 10px 8px 0 0;    margin-top: 10px;    width: 10px;    height: 10px;    background: url(/img/Editor_img1.png) no-repeat;    background-position: -313px -53px;    cursor: pointer;}.U_MD_O_H_body {    /* width: 1130px; */    width: 210mm;    margin: auto;}/*position: absolute; */.U_MD_O_H_body .U_MD_F_S_TI {    color: #000;    line-height: 30px;}.U_MD_O_H_body_left {    display: none;    width: 250px;    float: left;    margin-right: 80px;    margin-top: 15px;}/*padding: 0 30px;*/#U_MD_O_H_body_left {}.U_MD_O_H_body_main_m {    overflow: hidden;    background: #fff;    width: 210mm;    height: 297mm;    margin-bottom: 10px;}/* */.U_MD_O_H_body_main_border_T>div,.U_MD_O_H_body_main_border_B>div {    width: 7mm;    height: 7mm;    margin: 10px;    border: 1px solid #c1c1c1;    float: left;}.U_MD_O_H_body_main_border_T>div:nth-child(1) {    border-top: none;    border-left: none;}.U_MD_O_H_body_main_border_T>div:nth-child(2) {    border-top: none;    border-right: none;    float: right;}.U_MD_O_H_body_main_border_B .U_MD_O_H_body_main_border_B>div:nth-child(1) {    border-bottom: none;    border-left: none;}.U_MD_O_H_body_main_border_B>div:nth-child(2) {    border-bottom: none;    border-right: none;    float: right;}.U_MD_O_H_body_main_border {}.U_MD_O_H_body_main_border div {    width: 7mm;    height: 7mm;    margin: 10px;    border: 1px solid #c1c1c1;    float: left;}.U_MD_O_H_body_main_border .U_MD_O_H_body_main_bordero {    border-top: none;    border-left: none;}.U_MD_O_H_body_main_border .U_MD_O_H_body_main_bordert {    border-top: none;    border-right: none;    float: right;}.U_MD_O_H_body_main_border .U_MD_O_H_body_main_borders {    border-bottom: none;    border-left: none;}.U_MD_O_H_body_main_border .U_MD_O_H_body_main_borderf {    border-bottom: none;    border-right: none;    float: right;}.U_MD_O_H_body_left_invite {    width: 100%;    height: 253px;}.U_MD_O_H_body_left_href {    height: 203px;    margin-top: 15px;}.U_MD_O_H_body_left_template {    /* height: 365px; */    margin-top: 15px;}.U_MD_O_H_body_left_invite_name {    height: 30px;    border: 0px;    border-bottom: 1px #d6dff0 solid;    background: #f8fcfd;}.U_MD_O_H_body_left_invite_name_left {    font-size: 14px;    line-height: 30px;    margin-left: 10px;    float: left;}.U_MD_O_H_body_left_invite_name_right {    float: right;    margin-right: 10px;    margin-top: 3px;    width: 40px;    color: #167fb3;    border: 1px solid #167fb3;    text-align: center;    height: 21px;    line-height: 21px;}.U_MD_O_H_body_left_invite_linkTxt {    padding: 6px 10px;    margin: 0 6px;    cursor: pointer;    position: absolute;    top: -29px;    right: 0;    color: #006699;    z-index: 1;    text-decoration: underline;}/**.U_MD_O_H_body_left_invite_linkTxt:hover{background-color:#444;color:#fff}*/.U_MD_O_H_body_left_invite_user {    overflow: hidden;}.U_MD_O_H_body_left_invite_user_a {    width: 60px;    height: 75px;    margin: 10px 0 0 9px;    display: flex;    cursor: pointer;    float: left;}.U_MD_O_H_body_left_invite_user_a_img {    width: 50px;    height: 50px;    /* background: url(/img/Editor_img1.png) no-repeat;     */    background: url("../../../img/icon/avatar.png") no-repeat;    background-size: 100% 100%;    margin: auto;}.U_MD_O_H_body_left_invite_user_a_img_add {    width: 40px;    height: 40px;    background: url("../../../img/icon/addUser.png") no-repeat;    background-size: 100% 100%;    margin: 0px 0px 20px 10px;}.U_MD_O_H_body_left_invite_user_a_user {    width: 32px;    height: 32px;    margin: auto;}.U_MD_O_H_body_left_invite_user_a_user img {    width: 32px;    height: 32px;}.U_MD_O_H_body_left_invite_user_a_div {    line-height: 25px;    width: 60px;    text-align: center;    overflow: hidden;}.U_MD_O_H_body_left_invite_form {    margin: 0 10px;}.U_MD_O_H_body_left_invite_formShare {    border-bottom: 1px solid #ccc;}.U_MD_O_H_body_left_invite_formShare,.U_MD_O_H_body_left_invite_formQRCode {    padding: 12px 16px 24px;}.U_MD_O_H_body_left_invite_shareInp {    display: inline-block;    width: 450px;    height: 24px;    padding-left: 6px;    border: 1px solid #ccc;    line-height: 24px;    overflow: hidden;    vertical-align: top}.U_MD_O_H_body_left_invite_shareBtn {    display: inline-block;    padding: 4px 1em;    margin-left: 12px;    border: 1px solid #ccc;    vertical-align: top;    cursor: pointer;}.U_MD_O_H_body_left_invite_shareBtn:hover {    background-color: #26CA26;    color: #fff}.U_MD_O_H_body_left_invite_shareInpMargin {    margin-left: 20px}.U_MD_O_H_body_left_href_href {    height: 30px;    border: 1px #d6dff0 solid;    background: #f8fcfd;    border-bottom: none;    /* margin-top: 20px; */    line-height: 30px;}.U_MD_O_H_body_left_href_href_a {    font-size: 14px;    display: block;    float: left;    text-align: left;    line-height: 30px;    margin-left: 10px;}.U_MD_O_H_body_left_href_href_right {    cursor: pointer;    float: right;    margin-right: 10px;    margin-top: 3px;    width: 40px;    color: #167fb3;    border: 1px solid #167fb3;    background: #fff;    text-align: center;    height: 21px;    line-height: 21px;}.U_MD_O_H_body_left_href_pay {    height: 170px;    border: 1px #d6dff0 solid;    background: #ffffff;}.U_MD_O_H_body_left_href_pay_a {    min-width: 280px;    height: 25px;    margin: 2px 10px;    line-height: 25px;    display: block;    text-align: left;    text-decoration: underline;    color: #006699;    cursor: pointer;}.U_MD_O_H_body_left_href_pay_Btn {    float: right;    margin-left: 6px;    padding: 0 12px;    background-color: #ffffff;    border-radius: 4px;    border: 1px solid #A6B2C0;    color: #000000;}.U_MD_O_H_body_left_href_pay_aText {    float: left;    width: calc(100% - 135px);    min-width: 165px;    overflow: hidden;    white-space: nowrap;    text-overflow: ellipsis;}.U_MD_O_H_body_left_href_pay_Btn:hover {    border: 1px solid #3f8bdd;    color: #3f8bdd}.U_MD_O_H_body_left_template_name {    height: 30px;    border: 1px #d6dff0 solid;    background: #f8fcfd;    border-bottom: none;    /* margin-top: 20px; */    line-height: 30px;}.U_MD_O_H_body_left_template_name_a {    font-size: 14px;    display: block;    float: left;    margin-left: 10px;    line-height: 30px;}.U_MD_O_H_body_left_template_name_right {    float: right;    margin-right: 10px;    margin-top: 3px;    width: 40px;    color: #167fb3;    border: 1px solid #167fb3;    background: #fff;    text-align: center;    height: 21px;    line-height: 21px;}.U_MD_O_H_body_left_template_user {    background: #ffffff;}.U_MD_O_H_body_left_template_user_m {    width: 72px;    display: inline-block;    vertical-align: top;    margin: 5px 12px;    cursor: pointer;}.U_MD_O_H_body_left_template_user_m_s {    width: 70px;    height: 100px;    border: 1px solid #CDCDCD;    background-size: contain;}.U_MD_O_H_body_left_template_user_m_x {    display: -webkit-box;    overflow: hidden;    margin-top: 5px;    width: 70px;    max-height: 32px;    text-align: center;    text-overflow: ellipsis;    white-space: pre-wrap;    -webkit-line-clamp: 2;    -webkit-box-orient: vertical;}.U_MD_O_H_body_left_template_user_a {    width: 20%;    margin: 10px;    display: block;    float: left;}.U_MD_O_H_body_main_text {    text-align: left;    margin: 0 10mm;    overflow: hidden;    display: inline-block;    height: 269mm;    width: calc(100% - 20mm)}.U_MD_O_H_body_main_text div {    padding: 0;}.U_MD_O_H_body_main_text {    word-break: break-all;    word-wrap: break-word;    outline: none;    font-size: 14px;    font-family: Calibri (西文正文);}.U_MD_O_H_body_main_text_p {    float: left;    font-size: 18px;    font-weight: bold;    display: block;    width: 100%;    height: 50px;}.U_MD_O_H_body_main_text_a {    font-size: 16px;    text-indent: 2em;    display: block;    line-height: 30px;}.U_MD_O_W_Nav .U_MD_O_H_body {    min-width: 1130px;    width: 90%;}.U_MD_O_W_Nav .U_MD_O_H_body_main {    width: calc(100% - 310px);}.U_MD_O_W_Nav .U_MD_O_H_pageSize {    width: 100%;}/*陌生人查找-协同办公  弹窗1 顶部窗口栏*/.U_MD_O_W_Paper {    width: 817px;    height: 560px;    border: 1px solid #DFDFDF;    border-radius: 3px 3px 3px 3px;    z-index: 20;    position: fixed;    left: 30%;    top: 20%;    background: #FFF;}.U_MD_O_W_Paper_Topbox {    height: 34px;    border-bottom: 1px solid black;    background-color: #3c475b;    line-height: 34px;}.U_MD_O_W_Paper_title {    font-size: 14px;    float: left;    color: White;    margin-left: 5px;    font-weight: bold;}.U_MD_O_W_Paper_close {    float: right;    margin-top: 6px;    margin-right: 4px;}/*陌生人查找-协同办公  弹窗1弹窗2公共部分 中间搜寻方式*/.U_MD_O_W_Paper_searchBox {    position: relative;    width: 817px;    height: 103px;}.U_MD_O_W_Paper_searchmode {    position: relative;    width: 817px;    height: 52px;    background-color: #DFDFDF;}.U_MD_O_W_Paper_searchmode_ul {    margin-left: 260px;    width: 417px;    height: 22px;    text-align: center;    padding-top: 17px;}.U_MD_O_W_Paper_searchmode_li {    width: 87px;    float: left;    font-size: 18px;    font-weight: bold;}.U_MD_O_W_Paper_searchmode_li img {    margin-top: 7px;}.U_MD_O_W_Paper_searchmode_static {    display: none;}/*查找窗口 公共部分*/.U_MD_O_W_Paper_searchwindow {    width: 817px;    height: 30px;    margin-top: 5px;}.U_MD_O_W_Paper_window {    float: left;    width: 355px;    height: 30px;    margin-left: 207px;}.U_MD_O_W_Paper_button {    width: 83px;    height: 32px;    float: right;    border: 1px solid #CCC;    border-radius: 6px 6px 6px 6px;    text-align: center;    line-height: 32px;    background-color: #1d75ce;    margin-right: 155px;    color: White;    font-size: 14px;}/*用户列表窗口*/.U_MD_O_W_Paper_bodyBox {    width: 818px;    height: 442px;    position: relative;    margin-left: 20px;}.U_MD_O_W_Paper_bodyBox_title {    height: 30px;    font-size: 18px;    margin-left: 15px;    margin-top: 3px;}/*用户头像*/.U_MD_O_W_Paper_bodyBox_person {    height: 96px;    width: 260px;    float: left;}.U_MD_O_W_Paper_bodyBox_person_pic {    height: 103px;    width: 90px;    float: left;}.U_MD_O_W_Paper_bodyBox_person_pic img {    margin: 10px 10px;}/*详细信息*/.U_MD_O_W_Paper_bodyBox_person_ul {    margin-top: 7px;    height: 90px;    width: 53px;    float: left;}.U_MD_O_W_Paper_bodyBox_person_ul div {    width: 53px;    margin-bottom: 7px;    font-size: 14px;}.U_MD_O_W_Paper_bodyBox_person_active {    background-color: #1d75ce;    border-radius: 3px 3px 3px 3px;    text-align: center;    color: White;}.U_MD_O_W_Paper_bodyBox_fenge {    width: 780px;    height: 95px;    border-bottom: 1px solid #DFDFDF;}/*地址信息*/.U_MD_O_W_Paper_bodyBox_person_address {    width: 70px;    height: 100px;    float: left;    margin-top: 35px;}.U_MD_O_W_Paper_bodyBox_person_address span {    margin-top: 100px;    height: 100px;    font-size: 14px;}/*窗口14 修改纸张大小*/.U_MD_O_W_Paper4 {    margin: 8px 10px;}.U_MD_O_W_Paper4_Title {    font-size: 16px;    font-weight: bold;}.U_MD_O_W_Paper4_Main {    font-size: 13px;    padding: 5px 15px;    cursor: pointer;    margin: 5px 0;}.U_MD_O_W_Paper4_Main:hover {    background-color: #eaeaea;}.U_MD_O_W_Paper4_Main_Name {    font-size: 15px;    font-weight: bold;}.U_MD_O_W_Paper_A3 {    width: 297mm;    height: 420mm;    margin: 10px}.U_MD_O_W_Paper_A3C {    width: 287mm;    height: 390mm;    margin: 10px;}.U_MD_O_W_Paper_A4 {    width: 210mm;    height: 297mm;    margin: 10px}.U_MD_O_W_Paper_A4C {    width: 200mm;    height: 267mm;    margin: 10px}.U_MD_O_W_Paper_A5 {    width: 148mm;    height: 210mm;    margin: 10px}.U_MD_O_W_Paper_A5C {    width: 138mm;    height: 180mm;    margin: 10px}.U_MD_O_W_Paper_Web {    width: 95%;    min-height: 210mm;    min-height: 420mm;    margin: 10px}.U_MD_O_W_Paper_WebC {    width: 95%;    min-height: 180mm;    min-height: 390mm;    margin: 10px}/*窗口16 插入表格*/.U_MD_O_W_Paper6 {    padding: 10px;    height: 190px;    font-size: 14px;}.U_MD_O_W_Paper6_main {    position: relative;}.U_MD_O_W_Paper6_title {    font-size: 16px;}.U_MD_O_W_Paper6_OneLine {    margin: 10px 0;    padding: 0 10px;}.U_MD_O_W_Paper6_OneLine span {    display: inline-block;    line-height: 27px;}.U_MD_O_W_Paper6_OneLine input {    float: right;    display: inline-block;    width: 150px;    height: 25px;}.U_MD_O_W_Paper6_block {    position: absolute;    margin: 2px;    width: 20px;    height: 20px;    border: 1px solid #9e9e9e;}/*窗口17 更多*/.U_MD_O_W_Paper7_Main {    border-bottom: 1px solid #f1f1f1;    line-height: 65px;    width: 100%;    text-indent: 30px;    font-size: 20px;}.U_MD_O_W_Paper7_Main_Icon {    width: 30px;    height: 30px;    background: url(/img/Editor_img1.png) no-repeat;    float: left;    background-position: -44px -81px;    margin: 17.5px 18px;}/*窗口18 邀请好友*/.U_MD_O_W_Paper8 {    padding: 30px 40px;    font-weight: 700;}.U_MD_O_W_Paper8_Set_Tag {    font-size: 16px;    line-height: 30px;}.U_MD_O_W_Paper8_Set_Yu {    overflow: hidden;    position: absolute;    bottom: 45px;    left: 185px;}.U_MD_O_W_Paper8_Set_Yu_Text {    padding-top: 20px;    font-size: 14px;    float: left;}.U_MD_O_W_Paper8_Set_Yu_Ming {    padding-top: 20px;    font-size: 14px;    float: left;    color: #0033cc;    cursor: pointer;}.U_MD_O_W_Paper8_Set_Tag>span {    margin-left: 10px;    font-size: 12px;    line-height: 35px;}.U_MD_O_W_Paper8_Set_Name {    color: #2c5ca4;    font-size: 16px;}.U_MD_O_W_Paper8_Set_Name>input {    margin-left: 5px;    height: 40px;}.U_MD_O_W_Paper8_Set_Hint {    padding: 10px 20px 0;    color: #a00;    font-size: 12px;    line-height: 18px;}.U_MD_O_W_Paper8_Btn {    width: 100%;    height: 40px;}.U_MD_O_W_Paper8_Btn>div {    float: right;    margin: 0 6px;    width: 85px;    height: 33px;    border: 1px solid #ccc;    border-radius: 5px;    text-align: center;    line-height: 33px;    /* padding: 0 10px; */}.U_MD_O_W_Paper8_Btn>div:hover {    background-color: #1e75ce;    color: #fff;}.U_MD_O_W_Paper8_Set_Alert {    padding-top: 20px;    width: 100%;    height: 20px;    font-size: 12px;    line-height: 20px;}.U_MD_O_W_Paper8_Set_Alert>div {    display: inline-block;    color: #1e75ce;    text-decoration: underline;}.U_MD_O_W_Paper8_Que_Tag {    margin: 35px auto 0;    text-align: center;    font-size: 14px;    line-height: 30px;}.U_MD_O_W_Paper8_Que_Url {    padding: 15px;    text-align: center;    font-size: 14px;    border: none;    margin-left: 30%;}.U_MD_O_W_Paper8_Que_Con {    display: inline-block;    vertical-align: top;    margin: 25px 0px;    line-height: 25px;    text-align: left;    font-size: 14px;    margin-top: -10px;}.U_MD_O_W_Paper8_Que_QR {    float: left;    overflow: hidden;}.U_MD_O_W_Paper8_Que_Code {    margin: 20px auto -25px;    padding: 20px 0px;    border-top: 1px solid #ccc;    text-align: center;}.U_MD_O_W_Paper8_Que_Code>img {    display: inline-block;    width: 180px;    height: 180px;}.U_MD_O_W_Paper8_Sanfang {    margin-top: 5px;}.U_MD_O_W_Paper8_Sanfang_Weibo {    width: 35px;    height: 35px;    float: left;    cursor: pointer;    background: url(/img/Xinlang.png) no-repeat;    margin-right: 30px;}.U_MD_O_W_Paper8_Sanfang_Kongjian {    width: 35px;    height: 35px;    float: left;    cursor: pointer;    background: url(/img/Kongjian.png) no-repeat;}.U_MD_O_H_body_right {    height: 315px;    width: 285px;    margin: 15px 0 0 30px;    float: left;}.U_MD_O_H_body_right_user {}.U_MD_O_H_body_right_user_o {    padding: 7px;    border-bottom: 1px solid #DEDEDE;}.U_MD_O_H_body_right_user_o_l {    width: 40px;    height: 40px;    float: left;}.U_MD_O_H_body_right_user_o_l img {    width: 50px;    height: 50px;}.U_MD_O_H_body_right_user_o_r {    margin-left: 60px;}.U_MD_O_H_body_right_user_o_r_s {    width: 100%;    height: 20px;    line-height: 20px;}.U_MD_O_H_body_right_user_o_r_s_l {    font-weight: bold;    float: left;    font-size: 14px;}.U_MD_O_H_body_right_user_o_r_s_r {    float: right;}.U_MD_O_H_body_right_user_o_r_x {    height: 25px;    margin-top: 5px;}.U_MD_O_H_body_right_user_o_r_x div {    width: 50px;    height: 25px;    line-height: 25px;    color: #FFF;    text-align: center;    background-color: #6C82A7;    float: left;    cursor: pointer;}.U_MD_O_H_body_right_user_o_r_x_l {}.U_MD_O_H_body_right_user_o_r_x_r {    margin-left: 10px;}.U_MD_O_H_body_right_user_o_r_all {    height: 30px;    width: 285px;    text-align: center;}.U_MD_O_H_body_right_user_o_r_all_a {    margin: 0 auto;    margin-top: 5px;    border: 1px solid #cbd3e3;    width: 90px;    height: 17px;    text-align: center;}.U_MD_O_H_body_right_user_o_r_nr {    width: 88%;    margin: 0 auto;    margin-top: 15px;}.U_MD_O_H_body_right_user_o_r_all_nr {    width: 80%;    min-width: 560px;    margin: 0 auto;    margin-top: 15px;    float: left;}.U_MD_O_H_body_btn {    width: 72px;    height: 22px;    float: right;    color: #fff;    padding-top: 5px;    background: #7288a3;    text-align: center;    margin-top: -30px;}.U_MD_O_H_body_btn_img1 {    height: 12px;    width: 12px;    float: right;    margin-top: 3px;    margin-right: 10px;    background-image: url(../../img/zk.png);    background-repeat: no-repeat;    background-size: 100% 100%;    -moz-background-size: 100% 100%;}.U_MD_O_H_body_btn_img2 {    height: 12px;    width: 12px;    float: right;    margin-top: 3px;    margin-right: 10px;    background-image: url(../../img/sq.png);    background-repeat: no-repeat;    background-size: 100% 100%;    -moz-background-size: 100% 100%;}/*.U_MD_O_H_Nav {height:42px;margin-bottom: 15px;text-align:center;line-height:42px;}.U_MD_O_H_Nav_Box { width: calc(100% - 42px); height: 100%; overflow-x:auto;  user-select:none;  }.U_MD_O_H_Nav_Box > span { float:left; width:25%; height:100%; position:relative;}.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;  }.U_MD_O_H_Nav_Box > span:hover{ background-color:#737575; color:White;  }.U_MD_O_H_Nav_Add { float:right; width:42px; height:100%; background-color:#ccc; color:White; }.U_MD_O_H_Nav_Add:hover { background-color:#949494; } */.U_MD_O_W_N_Logo {    background: url(/img/Logo_.png) no-repeat;    background-size: cover;    margin: 20px auto;    width: 77px;    height: 77px;    border: 1px solid #eeeeee;    border-radius: 100%;    text-align: center;    line-height: 77px;    overflow: hidden;}.U_MD_O_W_N_NavBox {    height: 425px;    overflow: auto;}.U_MD_O_W_N_Bottom {    border-top: 1px solid rgb(214, 222, 240);    margin-top: 15px;    padding: 12px 0;    text-align: center;}.U_MD_O_W_N_Bottom button {    width: 113px;    height: 34px;    margin: 0 14px;    line-height: 34px;    padding: 0 10px;    border-radius: 3px;    background: #fff;    box-shadow: rgb(194, 194, 194) 0px 1px 3px;    border: 1px solid #ccc;}.U_MD_O_W_N_uploadbutton {    margin-top: 15px;    padding: 12px 0;    text-align: center;}.U_MD_O_W_N_localupload {    display: none;    padding: 0 10px;    margin: 0 14px;    line-height: 25px;}.U_MD_O_W_N_uploadbutton button {    width: 85px;    height: 25px;    padding: 0 10px;    margin: 0 14px;    line-height: 25px;    padding: 0 10px;    border-radius: 3px;    background: #fff;    box-shadow: rgb(194, 194, 194) 0px 1px 3px;    border: 1px solid #ccc;}.U_MD_O_W_N_localupload2 {    padding: 0 10px;    margin: 0 14px;    line-height: 25px;}.U_UF_E_Table_tdCheckd {    background-color: #b5d6fd;}/*表格选中时的背景颜色*/.U_UF_E_Table_tdCurrent {    border: 3px solid #5a9eec !important;}/*表格聚焦时的边框颜色*/.U_UF_E_Table_tdText {    min-height: 100%;    height: 100% !important;    width: 100%;    outline: 0;    word-wrap: break-word;    padding: 0;    resize: none;    border: 0;    vertical-align: top;    font-size: 16px;    font-family: "Microsoft YaHei";    background: transparent;    overflow: hidden}/*表格的文本框样式*/.U_UF_E_Table_peak {    z-index: 1;}/*添加最上层 样式*/.U_MD_O_ctrlPress a {    cursor: pointer !important;}/*A标签样式*/.U_MD_O_H_wordEditor span {    white-space: pre-wrap;    word-wrap: break-word;}.U_MD_O_attachment_wrapper {    width: 260px;    height: 40px;    padding: 8px 5px 5px;    display: block;    vertical-align: middle;    background-color: #f1f1f1;    border: 1px solid #e6e6e6;    border-radius: 2px;    text-align: left;    white-space: unset;    margin: 5px auto;}.U_MD_O_attachment_wrapper_img {    display: inline-block;    height: 30px;    width: 30px;    margin: 0 5px;    vertical-align: middle;    background-image: url("img/Office/attachment.png");    background-size: cover;}.U_MD_O_attachment_fileinfo {    display: inline-block;    vertical-align: middle;    width: 200px;    font-size: 10pt;    line-height: 20px}.U_MD_O_attachment_fileinfo span {    display: block;    white-space: nowrap}.U_MD_O_attachment_wrapper a {    text-decoration: none;    font-size: 10pt;    display: inline-block;    vertical-align: bottom;    margin-left: -12px;}.U_MD_O_H_body_left_book_a {    font-size: 14px;    display: flex;    flex-direction: column;    flex-wrap: nowrap;    justify-content: space-evenly;    align-items: flex-start;    height: 145px;    margin: 0 25px;}
 |