| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869 | /***<jscompress sourcefile="AboutUs.css" />*//*浏览器版本提示*//***<jscompress sourcefile="Desktop.css" />*//*整体样式*//***<jscompress sourcefile="Taskbar.css" />*//*任务管理器*//*任务栏*/.U_MD_D_A {    overflow: hidden;    display: none}.U_MD_D_A_O {    background-color: White;    width: 970px;    height: 578px;    font-family: 微软雅黑;    overflow: hidden}.U_MD_D_A_OI {    width: 127px;    height: 98px;    background-position: -1029px -16px;    margin: auto;    margin-top: 20px}.U_MD_D_A_OK {    width: 100%;    margin-top: 20px;    color: #989898;    font-family: arial, sans-serif;    font-size: 14px;    text-align: center}.U_MD_D_A_OC {    width: 795px;    height: 165px;    margin: 40px auto 0 auto}.U_MD_D_A_OCI {    margin-left: 80px;    float: left}.U_MD_D_A_OCIS {    width: 95px;    height: 95px;    cursor: pointer}.U_MD_D_A_OCIX {    margin-top: 14px;    width: 90px;    height: 18px;    line-height: 18px;    font-size: 16px;    text-align: center}.U_MD_D_A_OCID {    cursor: pointer;    font-family: arial, sans-serif;    width: 88px;    height: 26px;    line-height: 26px;    font-size: 14px;    text-align: center;    margin-top: 10px;    border: 1px solid #e4e4e4;    color: #0085D9}.U_MD_D_A_OCID:hover {    background-color: #0085D9;    color: White}.U_MD_D_A_OCISL {    background-position: -1177px -14px}.U_MD_D_A_OCISC {    background-position: -1031px -135px}.U_MD_D_A_OCISF {    background-position: -1033px -246px}.U_MD_D_A_OCISJ {    background-position: -1150px -135px}.U_MD_D_A_OCISB {    background-position: -1155px -247px}.U_MD_D_A_OCN {    font-size: 14px;    margin-top: 45px;    width: 100%;    text-align: center;    font-family: arial, sans-serif}.U_MD_D_A_OCN span {    color: #00CA1C}.U_MD_D_A_OCM {    margin-top: 36px;    width: 100%;    font-family: arial, sans-serif;    color: #A3A3A3;    text-align: center}.U_MD_D_A_OCM span {    font-family: 微软雅黑}.U_MD_D_A_OCM div {    margin: 7px}.U_MD_D_A_OT {    font-family: 宋体;    width: 807px;    height: 510px;    background-color: White;    top: 25px;    left: 100px;    padding: 12px 50px 23px 50px;    display: none}.U_MD_D_A_OT_T {    width: 230px;    height: 65px;    margin: 0 auto 0 auto}.U_MD_D_A_OT_C {    margin-top: 21px;    height: 385px}.U_MD_D_A_OT_CO {    float: left;    width: 300px}.U_MD_D_A_OT_COM {    margin-left: 30px;    width: 266px}.U_MD_D_A_OT_COMO {    margin-left: 30px;    width: 175px}.U_MD_D_A_OT_COT {    font-family: 微软雅黑;    width: 100%;    font-size: 22px}.U_MD_D_A_OT_COTO {    font-size: 14px;    width: 100%;    margin-top: 30px;    font-weight: 700}.U_MD_D_A_OT_COTT {    font-size: 14px;    font-weight: 700;    margin-top: 34px}.U_MD_D_A_OT_COTS {    margin-top: 20px}.U_MD_D_A_OT_COTS span {    font-weight: 700}.U_MD_D_A_OT_COTZ {    font-weight: 700;    margin-top: 30px}.U_MD_D_A_OT_COTZ span {    color: #0078FD;    font-weight: normal;    cursor: pointer}.U_MD_D_A_OT_COTZ span:hover {    text-decoration: underline}.U_MD_D_A_OT_COTB {    margin-top: 30px}.U_MD_D_A_OT_COC {    margin-top: 14px;    line-height: 23px;    font-family: '微软雅黑'}.U_MD_D_A_OT_COC span {    color: #0078FD}.U_MD_D_A_OT_COC ul {    margin: 0}.U_MD_D_A_OT_COC li {    margin-top: 2px;    cursor: pointer}.U_MD_D_A_OT_COCO {    color: #0078FD}.U_MD_D_A_OT_COCOO {    padding: 0 107px 0 72px}.U_MD_D_A_OT_COCT {    padding-left: 15px}.U_MD_D_A_OT_COCS {    margin-top: 1px}.U_MD_D_A_OT_COCSO {    cursor: pointer}.U_MD_D_A_OT_COCSO:hover {    text-decoration: underline}.U_MD_D_A_OT_X {    color: #888;    margin: 25px auto 0 auto;    width: 285px;    text-align: center}.U_MD_D_A_OT_X div {    margin-top: 12px}.U_MD_D_AG {    padding: 0 5px 5px 20px;    background-color: White;    display: none}.U_MD_D_AG_P {    font-family: 宋体;    font-size: 14px;    line-height: 25px;    margin: 0;    padding: 0}.U_MD_D_AG_P pre {    white-space: pre-wrap;    white-space: -moz-pre-wrap;    white-space: -pre-wrap;    white-space: -o-pre-wrap;    word-wrap: break-word}html,body {    cursor: default;    height: 100%;    position: absolute;    top: 0;    left: 0;    margin: 0;    padding: 0;    border: 0;    width: 100%;    font-size: 12px;    font-family: lucida, "Hiragino Sans GB", "微软雅黑", "WenQuanYi Micro Hei", sans-serif;    color: #333;    background-color: #FFF}textarea,div[contentEditable='true'],input,div[class='UF_FW_Message U_MD_D_YesText'] div[class='U_MD_F_H_Z'] {    outline: 0;    -khtml-user-select: text;    -moz-user-input: enabled;    -moz-user-focus: -moz-all;    -webkit-user-select: text;    -moz-user-select: -moz-all;    -ms-user-select: text;    cursor: text}input[type="button"] {    border: 0}span {    text-decoration: none;    text-overflow: ellipsis;    overflow: hidden}body div ::-webkit-scrollbar {    width: 12px;    height: 12px}body div ::-webkit-scrollbar-button:vertical {    display: none}body div ::-webkit-scrollbar:vertical {    background-color: #fff}body div ::-webkit-scrollbar-track-piece {    background: #fff}body div ::-webkit-scrollbar-thumb {    background-color: #8E8E8E;    border-radius: 5px}body div ::-webkit-scrollbar-thumb:hover {    background-color: #3B3B3B}body div ::-webkit-scrollbar-corner:vertical {    background-color: #535353}body div ::-webkit-scrollbar-resizer:vertical {    background-color: #FF6E00}.usestudio {    margin: 0;    padding: 0;    border: 0;    width: 100%;    height: 100%;    position: absolute;    top: 0;    left: 0;    background-color: White}.usestudio_server {    margin: 0;    padding: 0;    border: 0;    width: 0;    height: 0;    cursor: default;    -webkit-text-size-adjust: none;    overflow: hidden}.ErrorTip {    display: block;    font-style: normal;    height: 21px;    line-height: 21px;    margin-top: -23px;    font-size: 12px;    color: #222;    cursor: text;    width: 250px}.Scrollbar {    overflow: auto;    scrollbar-arrow-color: #757778;    scrollbar-face-color: #fff;    scrollbar-darkshadow-color: #fff;    scrollbar-highlight-color: #bec1c4;    scrollbar-shadow-color: #bec1c4;    scrollbar-track-color: #fff;    scrollbar-3dlight-color: #fff}.U_Img {    background-image: url(/img/YS2017.png);    _background-image: url(/img/YSD2014.gif)}.U_MD_D_NotText {    -webkit-text-size-adjust: none;    -webkit-user-select: none;    -khtml-user-select: none;    -moz-user-select: -moz-none;    -ms-user-select: none;    -webkit-user-drag: none;    -webkit-tap-highlight-color: transparent}.U_MD_D_YesText {    -webkit-user-select: text;    -moz-user-select: -moz-all;    -moz-user-input: enabled;    -moz-user-focus: -moz-all}.U_MD_D_Radius_5 {    -moz-border-radius: 5px;    -moz-border-radius: 5px;    -webkit-border-radius: 5px;    -webkit-border--radius: 5px;    border-radius: 5px;    border-radius: 5px}.U_MD_D_Radius_18 {    -moz-border-radius: 18px;    -moz-border-radius: 18px;    -webkit-border-radius: 18px;    -webkit-border--radius: 18px;    border-radius: 18px;    border-radius: 18px}.U_MD_D_Radius_5_0 {    -moz-border-radius: 5px 5px 0 0;    -moz-border-radius: 5px 5px 0 0;    -webkit-border-radius: 5px 5px 0 0;    -webkit-border--radius: 5px 5px 0 0;    border-radius: 5px 5px 0 0;    border-radius: 5px 5px 0 0}#U_MD_D_BG {    position: absolute;    z-index: 0;    left: 0;    right: 0;    top: 0;    bottom: 0;    overflow-y: hidden;    overflow-x: hidden;    background: url("/img/icon/bgImg2.png") 0 0 / 100% 100% repeat #f0f0f0;    filter: progid: DXImageTransform.Microsoft.AlphaImageLoader(src=/img/background/ZMYT.jpg, sizingMethod=scale)}.U_MD_Home {    color: #000;    font-size: 12px;    width: 0;    height: 0;    overflow: hidden}.UD_Dtop {    display: none}.U_MD_D_Text_Abbreviation {    text-decoration: none;    text-overflow: ellipsis;    white-space: nowrap;    overflow: hidden}.U_MD_D {    overflow: hidden;    color: #FFF;    position: absolute;    left: 0;    bottom: 0;    top: 0;    right: 0}.U_MD_D_B {    position: absolute;    bottom: 30px;    right: 5%}.U_MD_D_BD {    padding: 5px 10px;    background-color: #5A5A5A;    border-radius: 0 0 10px 10px;    position: absolute;    right: 5%;    top: 0}.U_MD_D_BDA {    overflow: hidden;    height: 30px;    line-height: 32px;    float: left}.U_MD_D_BDI {    float: left;    background-position: -536px -373px;    width: 30px;    height: 30px;    cursor: pointer}.U_MD_D_BDI img {    width: 30px;    height: 30px;    border-radius: 50%}.U_MD_D_BDL {    float: left;    color: #FFF;    font-family: Arial;    margin-left: 1px;    cursor: pointer}.U_MD_D_BDL div {    margin-left: 10px;    float: left;    font-size: 14px;    height: 30px}.U_MD_D_BDL div:hover {    color: #34BCFF}.U_MD_D_BD_QRcode {    padding: 5px 10px;    background-color: #5A5A5A;    border-radius: 0 0 10px 10px;    position: absolute;    right: -53px;    top: 0}.U_MD_D_BD_QRcodeShare {    display: none;    padding: 5px 10px;    background-color: #5A5A5A;    position: absolute;    right: -55px;    top: 50px}.U_MD_D_BD_QRcodeShare img {    width: 100px;    height: 100px;    padding: 5px 5px}.U_MD_D_BD_QRcode:hover+.U_MD_D_BD_QRcodeShare {    display: block}.U_MD_D_BZMD {    position: relative}.U_MD_D_BZMS {    height: 40px;    line-height: 30px;    width: 721px;    margin: 10px auto 0 auto;    text-align: center}.U_MD_D_BZMSA {    display: inline-block;    *display: inline;    *zoom: 1;    margin: auto;    text-align: left;    height: 40px;    line-height: 40px}.U_MD_D_BZM {    width: 741px;    margin: 20px auto 0 auto;    position: relative;    height: 94px;    text-align: center}.U_MD_D_BZMN {    position: absolute;    top: -10px;    left: -40px;    height: 22px;    background-color: #EEE;    padding: 0 6px;    border-radius: 3px}.U_MD_D_BZMNL {    float: left;    width: 15px;    height: 15px;    margin-top: 3px}.U_MD_D_BZMNLI {    background-position: -574px -372px}.U_MD_D_BZMNLO {    background-position: -614px -372px}.U_MD_D_BZMNLT {    background-position: -594px -371px}.U_MD_D_BZMNR {    float: left;    color: #222;    line-height: 22px;    margin-left: 3px;    width: 50px}.U_MD_D_BZMA {    position: relative;    padding: 0 30px;    overflow: hidden;    margin: auto;    display: inline-block;    *display: inline;    *zoom: 1;    height: 100%;    overflow: hidden}.U_MD_D_BZMT {    padding: 0 10px}.U_MD_D_BZMM {    width: 100%;    height: 100%;    top: 0;    left: 0;    background: #444;    filter: alpha(opacity=50);    -ms-filter: "alpha(opacity=50)";    -moz-opacity: .5;    -khtml-opacity: .5;    opacity: .5;    position: absolute;    border-radius: 6px}.U_MD_D_BZMO {    margin: 2px 0 0 40px;    cursor: pointer;    width: 63px;    height: 83px;    float: left}.U_MD_D_BZMOA {    width: 51px;    height: 54px;    padding: 6px;    color: #FFF;    cursor: pointer}.U_MD_D_BZMOA:hover {    padding: 5px;    background-color: #505457;    border: 1px solid #777}.U_MD_D_BZMOI {    width: 51px;    height: 51px}.U_MD_D_BZMON {    width: 51px;    height: 15px;    line-height: 15px;    margin-top: 6px;    text-align: center}.U_MD_D_B .U_MD_D_BS {    margin: 30px auto 0 auto;    float: none;    width: 675px;    height: 32px}.U_MD_D_BCM {    display: block;    width: 721px;    margin: 20px auto 0 auto;    height: 40px;    text-align: center;    overflow: hidden}.U_MD_D_BCMO {    width: 125px;    background-color: #666;    float: left;    height: 25px;    line-height: 25px;    padding: 3px 6px;    margin: 5px 0 0 20px;    text-align: left;    position: relative}.U_MD_D_BCMOL {    float: left;    height: 100%;    text-align: center;    color: #EEE;    margin-left: 2px}.U_MD_D_BCMOL div {    float: none}.U_MD_D_BCMOLS {    font-size: 12px}.U_MD_D_BCMOR {    float: left;    margin-left: 11px;    font-size: 13px;    color: #FFF;    width: 85px}.U_MD_D_BZ {    color: #FFF;    font-family: Arial;    background-color: #676767;    padding: 8px 15px;    font-style: normal;    cursor: pointer;    display: none}.U_MD_D_BZ div {    text-align: center}.U_MD_D_K {    top: 0;    left: 0;    height: 100%;    position: absolute}.U_MD_D_KO {    cursor: pointer;    width: 63px;    height: 83px;    position: absolute;    top: 0;    left: 80px;    padding: 1px}.U_MD_D_KO:hover {    background-color: #505457;    border: 1px solid #777;    padding: 0}.U_MD_D_KOA {    margin: 5px auto 0 auto;    width: 51px;    border-radius: 5px}.U_MD_D_KOS {    width: 51px;    height: 51px}.U_MD_D_KOX {    width: 51px;    height: 15px;    line-height: 15px;    margin-top: 6px;    text-align: center}.U_MD_D_NewsTipsIcon {    background: rgba(250, 250, 250, 0) url(/img/YSD20143.png);    position: fixed;    width: 51px;    height: 51px;    bottom: 80px;    right: 90px;    background-position: 85px 188px;    border-radius: 38px;    cursor: pointer;    background-size: 1800%;    visibility: visible}.U_MD_D_T_taskbar_Bar_Operate_Button {    font-size: 19px;    cursor: pointer;    text-align: center}.U_MD_D_filePrew {    position: absolute;    display: block;    z-index: 1;    border: 0;    cursor: pointer;    opacity: 0;    filter: alpha(opacity 0);    width: 100%;    height: 100%;    overflow: hidden}.U_MD_D_filePrew_I {    display: block;    position: relative;    width: 100%;    height: 100%;    cursor: pointer;    border: 0;    color: #666;    background: #eee;    -moz-user-select: -moz-none;    -webkit-user-select: none;    opacity: 0;    filter: alpha(opacity=0);    -moz-opacity: 0}.U_MD_D_MG_A {    position: relative}.U_MD_D_MG_T {    background-color: #60e480;    color: White;    text-align: center;    width: 18px;    height: 18px;    line-height: 18px;    position: absolute;    top: -7px;    left: 22px;    font-size: 10px;    border-radius: 50%;    display: none;    cursor: pointer}.U_MD_D_MG_O {    width: 300px;    z-index: 3;    position: absolute;    font-family: arial, sans-serif;    background-color: White;    border: 1px solid #838383;    cursor: default;    display: none;    top: 35px;    right: -34px;    max-height: 230px;    overflow: auto}.U_MD_D_MG_OA {    width: 100%;    background: #ededed;    height: 100%}.U_MD_D_MG_OM {    background-color: #f2f2f2;    width: 100%;    text-align: center;    height: 20px;    line-height: 20px;    cursor: pointer;    padding: 5px 0;    color: #000;    display: none}.U_MD_D_MG_OMS {    color: #0b7aeb;    margin-left: 10px}.U_MD_U_P_C_P_N_I {    outline: 0;    border: 0;    color: black;    overflow: hidden;    background-color: transparent;    width: 100%;    border-radius: 35px}.U_MD_D_H {    position: absolute;    right: 80px;    bottom: 80px;    width: 80px;    height: 80px;    background-color: #59B4FA;    border: 5px solid #4DA4FD;    border-radius: 50%;    cursor: pointer;    display: none}.U_MD_D_H_A {    position: absolute;    top: 0;    left: 0;    opacity: 0;    -moz-opacity: .5;    -khtml-opacity: .5}.U_MD_D_H_O {    color: #FFF;    font-size: 20px;    line-height: 30px;    word-spacing: 8px;    letter-spacing: 8px;    margin: 9px 0 0 15px}.U_MD_D_RW {    z-index: 99;    width: 100%;    height: 65px;    position: absolute;    left: 0;    bottom: 0;    background-color: #505050;    border-radius: 0 8px 0 8px;    box-shadow: 0 0 30px 5px #212121;    -webkit-box-shadow: 0 0 30px 5px #212121}#U_MD_D_RW {    width: 800px;    color: #FFF;    height: 100%;    float: left}#U_MD_D_RW div {    color: #111}#U_MD_D_RW .U_MD_D_BZMOA:hover {    background-color: #6F6F6F;    border: 0;    padding: 6px}#U_MD_D_RW .U_MD_D_BZMO {    margin-left: 4px;    position: relative}#U_MD_D_RW .U_MD_D_BZMON {    margin-top: 4px;    color: #FFF}.U_MD_D_RW_L {    float: left;    width: 21px;    height: 100%;    background-color: #00A8FD;    position: relative}.U_MD_D_RW_R {    float: right;    width: 21px;    height: 100%;    background-color: #6d6d6d;    position: relative}.U_MD_D_RW_T {    text-align: center;    padding: 5px 0;    border-bottom: 1px solid #069;    font-size: 13px;    color: #FFF;    margin-top: 16px}.U_MD_D_RW_I {    width: 21px;    height: 45px;    float: left;    margin-top: 19px}*.U_MD_D_RW_IO {    width: 21px;    height: 100%}.U_MD_D_RW_CD {    width: 21px;    margin-top: 16%}.U_MD_D_RW_GU {    width: 21px;    height: 30%}.U_MD_D_RW_GU:hover {    background-color: gray}.U_MD_D_RW_GD {    width: 21px;    height: 30%;    position: absolute;    bottom: 0}.U_MD_D_RW_GD:hover {    background-color: gray}.U_MD_D_RW_GU_g {    width: 21px}.U_MD_D_RW_GD_g {    width: 21px}.U_MD_D_RW .U_MD_D_T_taskbar_Name {    display: none;    width: 115px;    height: 31px;    background: rgba(111, 111, 111, 1);    border-radius: 1px;    font-size: 15px}#U_MD_D_RW .U_MD_D_T_taskbar_Close {    display: none;    width: 15px;    height: 14px;    background-color: red;    color: White;    text-align: center;    font-size: 14px;    position: absolute;    right: 9px;    top: 8px;    line-height: 11px;    cursor: pointer}#U_MD_D_RW .U_MD_D_BZMO:hover .U_MD_D_T_taskbar_Close {    display: block}#U_MD_D_RW .U_MD_D_BZMO:hover .U_MD_D_T_taskbar_Name {    display: block}.U_MD_D_T_taskbar_Bar {    position: absolute;    bottom: 0;    width: 80%;    background-color: #555;    height: 56px;    left: 10%;    border-bottom: 0;    box-shadow: 0 0 25px 3px #555;    -webkit-box-shadow: 0 0 25px 3px #555}.U_MD_D_T_taskbar_Bar_Main {    float: left;    margin: 0 auto;    width: calc(100% - 18px);    height: 100%}.U_MD_D_T_taskbar {    width: 50px;    height: 100%;    float: left;    margin: 3px 0 3px 3px;    position: relative}.U_MD_D_T_taskbar_Main,.U_MD_D_T_taskbar_Icon {    width: 100%;    height: 100%}.U_MD_D_T_taskbar_Bar_Operate {    float: right;    width: 18px;    line-height: 28px;    display: none}.U_MD_D_T_taskbar_Bar_Operate_Button {    font-size: 19px;    cursor: pointer;    text-align: center}html,body {    margin: 0;    padding: 0}.backs {    width: 100%;    float: left;    overflow: hidden}.backs_left {    float: left;    width: 13%;    height: 2900px;    background-color: #015D98;    padding-top: 88px}.backs_right {    width: 100%;    overflow: hidden;    display: inline-grid}.backs_score {    width: 100%;    height: 56px;    text-indent: 26%;    font-size: 15px;    line-height: 56px;    color: #fff}.backs_score>img {    display: block}.backs_scoretwo {    width: 100%;    height: 56px;    text-indent: 15%;    font-size: 15px;    line-height: 56px;    color: #fff;    margin-left: 37px}.backs_li {    width: 16%;    height: 50px;    font-size: 12px;    text-align: center;    float: left;    border: 1px solid;    font-size: 14px;    list-style-type: none;    line-height: 50px;    white-space: nowrap;    overflow: hidden;    text-overflow: ellipsis;    background-color: white}.backs_ul {    font-size: 15px;    margin-top: -16px}.backs_content {    width: 20%;    height: 50px;    text-align: center;    float: left;    font-size: 15px;    border: 1px solid;    list-style-type: none;    line-height: 50px;    white-space: nowrap;    overflow: hidden;    text-overflow: ellipsis;    background-color: white}.backs_selet {    border: 1px solid;    height: 19px;    width: 158px;    padding-left: 8px;    margin-top: 10px}.left {    float: left;    margin-left: 37px;    margin-top: 13px}.backs_user {    float: left;    margin-top: 35px;    margin-left: 12%;    font-size: 12px;    color: black}.backs_bigright {    float: right;    width: 87%;    height: 1024px;    background-color: rgba(242, 242, 242, 1)}.backs_seletbtn {    width: 56px;    height: 23px;    margin-left: 28px}.backs_data {    width: 868px;    height: 40px;    float: left;    margin-left: 3%;    font-size: 12px;    margin-top: 35px}.backs_p {    float: left;    margin: 12px 2px;    font-weight: bolder;    font-size: 13px}.backs_input {    float: left;    border: 1px solid;    margin-top: 10px;    height: 19px;    width: 208px;    margin-left: 6px}.backs_databox {    float: left;    padding-left: 20px}.backs_pass {    width: 20.5%;    height: 30px;    text-align: center;    line-height: 30px;    margin: 8px 6%;    color: #fff;    background-color: #217EC4;    float: left;    border-radius: 5px;    cursor: pointer}.backs_span {    float: left}.backs_all {    float: left;    width: 100%}.backs_all_div {    float: left;    list-style-type: none;    width: 80px;    height: 30px;    line-height: 30px;    text-align: center;    font-size: 22px;    cursor: pointer}.backs_all_no {    float: left;    list-style-type: none;    margin-left: 20px;    width: 80px;    height: 30px;    line-height: 30px;    text-align: center;    font-size: 22px;    color: #999;    cursor: pointer}.backs_head {    width: 100%;    float: left}.backs_insert {    position: absolute;    left: 570px;    top: 254px;    width: 300px;    height: 204px;    border: 1px solid}.backs_inserttop {    width: 100%;    height: 35px;    background: inherit;    background-color: rgba(215, 215, 215, 1);    font-size: 16px;    line-height: 35px}.backs_insertbottom {    background-color: #fff;    width: 100%;    height: 169px}.backs_type {    float: left;    margin-left: 4%}.backs_x {    float: right;    margin-right: 5%}.backs_ok {    width: 90px;    height: 24px;    float: left;    background-color: #0098e0;    margin-left: 30px;    border-radius: 15%;    margin-top: 54px;    text-align: center;    color: #fff}#backs_p {    width: 180px;    height: 38px;    background-color: rgba(215, 215, 215, 1);    float: left;    border: 1px solid;    line-height: 40px}.switch {    float: right;    margin-right: 19%}.switch>div {    float: right}.ellipse {    width: 51px;    height: 23px;    border-radius: 63px;    background-color: #D7D7D7;    float: right;    position: relative}.circle {    width: 16px;    height: 16px;    border: 1px solid;    border-radius: 50%;    position: absolute;    top: 2px;    left: 5px;    background-color: #fff}.dustbin {    float: right;    width: 17px;    height: 17px;    margin-top: 21px;    margin-right: 10px;    display: none}.update {    float: right;    width: 17px;    height: 17px;    margin-top: 21px;    margin-right: 10px;    display: none}.dhl>li {    background-color: #4995CF;    color: white;    border: 1px solid black;    border-top: 0}.xh {    width: 7%;    border-right: 0!important}.yh {    width: 10%;    border-right: 0!important}.dhl {    margin-top: 21px}.con {    border-right: 0!important}.ly {    border-right: 0!important}.sj {    border-right: 0!important}.U_MD_R_comment {    background-color: #F7F7F7;    width: 100%;    height: 100%;    overflow: auto;    top: 0;    left: 0;    overflow-x: hidden;    overflow-y: scroll}.U_MD_R_content {    padding: 0 30px;    overflow: hidden}.U_MD_R_content_loading {    font-size: 22px;    text-align: center;    line-height: 50px;    cursor: pointer}.U_MD_R_content_operation {    width: 100%;    border-bottom: 1px solid #e5e5e5;    overflow: hidden;    padding: 10px 0}.U_MD_R_content_operation_userhead {    float: left;    width: 40px;    height: 40px;    margin: 10px;    border-radius: 40px}.U_MD_R_content_operation_userhead img {    width: 100%!important;    height: 100%!important;    max-width: unset!important;    padding: unset!important;    margin: unset!important}.U_MD_R_content_operation_right {    float: right;    min-width: 660px!important}.U_MD_R_content_operation_userlogin {    font-size: 16px;    padding: 5px;    cursor: pointer}.U_MD_R_content_operation_right_bottom {    font-size: 14px;    padding: 10px 0}.U_MD_R_content_operation_right_bottom_emoji {    float: left;    cursor: pointer;    width: 20px;    height: 20px;    border: 0;    background: url(/img/reply/emoji.png) 0 0 / 20px no-repeat transparent;    margin: 5px 0 0 10px}.U_MD_R_content_operation_right_bottom_picturewarp {    float: left;    margin-left: 10px;    margin-top: 8px;    position: relative;    cursor: pointer}.U_MD_R_content_operation_right_bottom_picturewarp img {    cursor: pointer;    max-width: unset!important;    padding: unset!important;    margin: unset!important}.U_MD_R_content_operation_right_bottom_picturewarp input {    position: absolute;    left: 0;    opacity: 0;    width: 17px;    top: 0;    height: 15px;    cursor: pointer}.U_MD_R_content_operation_right_bottom_release {    padding: 0 20px;    height: 28px;    background-color: #4183C4;    float: right;    border-radius: 5px;    text-align: center;    line-height: 28px;    color: #fff;    cursor: pointer}.U_MD_R_content_operation_right_bottom_imgloadbox {    background-color: #f7f7f7}.U_MD_R_content_operation_right_bottom_imgloadbox_warp {    width: 100px;    height: 100px;    margin-right: 10px;    position: relative;    cursor: pointer}.U_MD_R_content_operation_right_bottom_imgloadbox_warp img {    width: 100%!important;    height: 100%!important;    padding: unset!important;    margin: unset!important;    max-width: unset!important}.U_MD_R_content_operation_right_bottom_imgloadbox_warp .closebtn {    cursor: pointer;    width: 25px;    height: 25px;    border: 0;    background-image: url(/img/reply/close.png);    z-index: 11;    background-size: cover;    position: absolute;    top: -11px;    right: -8px;    display: none}.U_MD_R_content_operation_right_bottom_imgloadbox_warp:hover.U_MD_R_content_operation_right_bottom_imgloadbox_warp .closebtn {    display: block}.U_MD_R_content_comment {    width: 100%}.U_MD_R_content_warp_box {    width: calc(100% - 50px);    margin-left: 50px}.U_MD_R_content_box {    width: 100%;    padding: 5px 0}.U_MD_R_content_box_warp {    overflow: hidden;    border-bottom: 1px solid #e5e5e5}.U_MD_R_content_box_userhead {    float: left;    width: 40px;    height: 40px;    margin: 10px;    border-radius: 40px}.U_MD_R_content_box_userhead img {    width: 100%;    height: 100%;    max-width: unset!important;    padding: unset!important;    margin: unset!important;    border-radius: 40px}.U_MD_R_content_box_content {    float: right;    padding: 10px 0}.U_MD_R_content_box_content_top {    overflow: hidden}.U_MD_R_content_box_content_top_name {    float: left;    margin-left: 10px}.U_MD_R_content_box_content_top_time {    float: right;    margin-right: 20px}.U_MD_R_content_box_content_text {    padding: 10px 0 5px 10px;    font-size: 15px;    line-height: 18px;    word-wrap: break-word;    white-space: nowrap;    text-overflow: ellipsis;    white-space: pre-wrap}.U_MD_R_content_box_content_text img {    padding: 10px 0!important;    max-width: 200px!important;    margin: unset!important}.U_MD_R_content_box_content_bottom {    overflow: hidden;    padding: 5px 0 0 10px;    font-size: 14px}.U_MD_R_content_box_content_bottom_likeswarp {    float: left;    overflow: hidden;    cursor: pointer;    padding: 0 20px 0 0}.U_MD_R_content_box_content_bottom_likeswarp img {    width: 20px;    height: 20px;    display: block;    float: left;    max-width: unset!important;    padding: unset!important;    margin: unset!important}.U_MD_R_content_box_content_bottom_likeswarp_text {    float: left;    margin-left: 5px}.U_MD_R_content_box_content_bottom_replywarp {    float: left;    overflow: hidden;    cursor: pointer;    padding: 0 20px 0 0}.U_MD_R_content_box_content_bottom_replywarp img {    width: 20px;    height: 20px;    display: block;    float: left;    max-width: unset!important;    padding: unset!important;    margin: unset!important;    margin-top: 2px!important}.U_MD_R_content_box_content_bottom_replywarp_text {    float: left;    margin-left: 5px;    margin-top: -2px}.U_MD_R_content_box_content_bottom_showmorewarp {    float: left;    overflow: hidden;    cursor: pointer;    padding: 0 20px 0 0}.U_MD_R_content_box_content_bottom_showmorewarp img {    width: 20px;    height: 20px;    display: block;    float: left;    margin-top: 2px;    max-width: unset!important;    padding: unset!important;    margin: unset!important;    margin-top: 2px!important}.U_MD_R_content_box_content_bottom_showmore_text {    float: left;    margin-left: 7px;    margin-top: 0}.U_MD_R_content_box_content_edit {    margin-top: 10px}.U_MD_R_content_box_content_edit .U_MD_R_Reply_Content {    min-height: 40px;    background: #fff;    border: 1px solid black}.U_MD_UI_Picture_picBox {    position: relative;    width: 100%;    height: 100%;    overflow: hidden;    background-color: #f5f5f5}.U_MD_UI_Picture_picArea {    position: absolute;    width: 1290px}.U_MD_UI_Picture_picArea>ul {    list-style-type: none;    padding: 0;    margin: 0}#U_MD_UI_Picture_fa span:hover {    cursor: pointer}.U_MD_UI_Picture_picArea img {    width: 100%;    vertical-align: top}.U_MD_UI_Picture_picArea:hover {    cursor: Move}#U_MD_UI_Picture_add:active {    background-image: url("img/pictureView/add-active.png")!important}#U_MD_UI_Picture_narrow:active {    background-image: url("img/pictureView/narrow-active.png")!important}#U_MD_UI_Picture_prev:active {    background-image: url("img/pictureView/prev-active.png")!important}#U_MD_UI_Picture_next:active {    background-image: url("img/pictureView/next-active.png")!important}#U_MD_UI_Picture_turnLeft:active {    background-image: url("img/pictureView/turnLeft-active.png")!important}#U_MD_UI_Picture_turnRight:active {    background-image: url("img/pictureView/turnRight-active.png")!important}
 |