index.css 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974
  1. /***<jscompress sourcefile="AboutUs.css" />*/
  2. /*浏览器版本提示*/
  3. .U_MD_D_A {
  4. overflow: hidden;
  5. display: none;
  6. }
  7. .U_MD_D_A_O {
  8. background-color: White;
  9. width: 970px;
  10. height: 578px;
  11. font-family: 微软雅黑;
  12. overflow: hidden;
  13. }
  14. .U_MD_D_A_OI {
  15. width: 127px;
  16. height: 98px;
  17. background-position: -1029px -16px;
  18. margin: auto;
  19. margin-top: 20px;
  20. }
  21. .U_MD_D_A_OK {
  22. width: 100%;
  23. margin-top: 20px;
  24. color: #989898;
  25. font-family: arial, sans-serif;
  26. font-size: 14px;
  27. text-align: center;
  28. }
  29. .U_MD_D_A_OC {
  30. width: 795px;
  31. height: 165px;
  32. margin: 40px auto 0 auto;
  33. }
  34. .U_MD_D_A_OCI {
  35. margin-left: 80px;
  36. float: left;
  37. }
  38. .U_MD_D_A_OCIS {
  39. width: 95px;
  40. height: 95px;
  41. cursor: pointer;
  42. }
  43. .U_MD_D_A_OCIX {
  44. margin-top: 14px;
  45. width: 90px;
  46. height: 18px;
  47. line-height: 18px;
  48. font-size: 16px;
  49. text-align: center;
  50. }
  51. .U_MD_D_A_OCID {
  52. cursor: pointer;
  53. font-family: arial, sans-serif;
  54. width: 88px;
  55. height: 26px;
  56. line-height: 26px;
  57. font-size: 14px;
  58. text-align: center;
  59. margin-top: 10px;
  60. border: 1px solid #e4e4e4;
  61. color: #0085D9;
  62. }
  63. .U_MD_D_A_OCID:hover {
  64. background-color: #0085D9;
  65. color: White;
  66. }
  67. .U_MD_D_A_OCISL {
  68. background-position: -1177px -14px;
  69. }
  70. .U_MD_D_A_OCISC {
  71. background-position: -1031px -135px;
  72. }
  73. .U_MD_D_A_OCISF {
  74. background-position: -1033px -246px;
  75. }
  76. .U_MD_D_A_OCISJ {
  77. background-position: -1150px -135px;
  78. }
  79. .U_MD_D_A_OCISB {
  80. background-position: -1155px -247px;
  81. }
  82. .U_MD_D_A_OCN {
  83. font-size: 14px;
  84. margin-top: 45px;
  85. width: 100%;
  86. text-align: center;
  87. font-family: arial, sans-serif;
  88. }
  89. .U_MD_D_A_OCN span {
  90. color: #00CA1C;
  91. }
  92. .U_MD_D_A_OCM {
  93. margin-top: 36px;
  94. width: 100%;
  95. font-family: arial, sans-serif;
  96. color: #A3A3A3;
  97. text-align: center;
  98. }
  99. .U_MD_D_A_OCM span {
  100. font-family: 微软雅黑;
  101. }
  102. .U_MD_D_A_OCM div {
  103. margin: 7px;
  104. }
  105. /*关于我们*/
  106. .U_MD_D_A_OT {
  107. font-family: 宋体;
  108. width: 807px;
  109. height: 510px;
  110. background-color: White;
  111. top: 25px;
  112. left: 100px;
  113. padding: 12px 50px 23px 50px;
  114. display: none;
  115. }
  116. .U_MD_D_A_OT_T {
  117. width: 230px;
  118. height: 65px;
  119. margin: 0 auto 0 auto;
  120. }
  121. .U_MD_D_A_OT_C {
  122. margin-top: 21px;
  123. height: 385px;
  124. }
  125. .U_MD_D_A_OT_CO {
  126. float: left;
  127. width: 300px;
  128. }
  129. .U_MD_D_A_OT_COM {
  130. margin-left: 30px;
  131. width: 266px;
  132. }
  133. .U_MD_D_A_OT_COMO {
  134. margin-left: 30px;
  135. width: 175px;
  136. }
  137. .U_MD_D_A_OT_COT {
  138. font-family: 微软雅黑;
  139. width: 100%;
  140. font-size: 22px;
  141. }
  142. .U_MD_D_A_OT_COTO {
  143. font-size: 14px;
  144. width: 100%;
  145. margin-top: 30px;
  146. font-weight: 700;
  147. }
  148. .U_MD_D_A_OT_COTT {
  149. font-size: 14px;
  150. font-weight: 700;
  151. margin-top: 34px;
  152. }
  153. .U_MD_D_A_OT_COTS {
  154. margin-top: 20px;
  155. }
  156. .U_MD_D_A_OT_COTS span {
  157. font-weight: 700;
  158. }
  159. .U_MD_D_A_OT_COTZ {
  160. font-weight: 700;
  161. margin-top: 30px;
  162. }
  163. .U_MD_D_A_OT_COTZ span {
  164. color: #0078FD;
  165. font-weight: normal;
  166. cursor: pointer;
  167. }
  168. .U_MD_D_A_OT_COTZ span:hover {
  169. text-decoration: underline;
  170. }
  171. .U_MD_D_A_OT_COTB {
  172. margin-top: 30px;
  173. }
  174. .U_MD_D_A_OT_COC {
  175. margin-top: 14px;
  176. line-height: 23px;
  177. font-family: '微软雅黑';
  178. }
  179. .U_MD_D_A_OT_COC span {
  180. color: #0078FD;
  181. }
  182. .U_MD_D_A_OT_COC ul {
  183. margin: 0;
  184. }
  185. .U_MD_D_A_OT_COC li {
  186. margin-top: 2px;
  187. cursor: pointer;
  188. }
  189. .U_MD_D_A_OT_COCO {
  190. color: #0078FD;
  191. }
  192. .U_MD_D_A_OT_COCOO {
  193. padding: 0 107px 0 72px;
  194. }
  195. .U_MD_D_A_OT_COCT {
  196. padding-left: 15px;
  197. }
  198. .U_MD_D_A_OT_COCS {
  199. margin-top: 1px;
  200. }
  201. .U_MD_D_A_OT_COCSO {
  202. cursor: pointer;
  203. }
  204. .U_MD_D_A_OT_COCSO:hover {
  205. text-decoration: underline;
  206. }
  207. .U_MD_D_A_OT_X {
  208. color: #888;
  209. margin: 25px auto 0 auto;
  210. width: 285px;
  211. text-align: center;
  212. }
  213. .U_MD_D_A_OT_X div {
  214. margin-top: 12px;
  215. }
  216. /*用户协议*/
  217. .U_MD_D_AG {
  218. padding: 0 5px 5px 20px;
  219. background-color: White;
  220. display: none;
  221. }
  222. .U_MD_D_AG_P {
  223. font-family: 宋体;
  224. font-size: 14px;
  225. line-height: 25px;
  226. margin: 0;
  227. padding: 0;
  228. }
  229. .U_MD_D_AG_P pre {
  230. white-space: pre-wrap;
  231. white-space: -moz-pre-wrap;
  232. white-space: -pre-wrap;
  233. white-space: -o-pre-wrap;
  234. word-wrap: break-word;
  235. }
  236. /***<jscompress sourcefile="Desktop.css" />*/
  237. /*整体样式*/
  238. html {}
  239. html,
  240. body {
  241. cursor: default;
  242. height: 100%;
  243. position: absolute;
  244. top: 0;
  245. left: 0;
  246. margin: 0;
  247. padding: 0;
  248. border: 0;
  249. width: 100%;
  250. font-size: 12px;
  251. font-family: lucida, "Hiragino Sans GB", "微软雅黑", "WenQuanYi Micro Hei", sans-serif;
  252. color: #333;
  253. background-color: #FFF;
  254. }
  255. textarea,
  256. div[contentEditable='true'],
  257. input,
  258. div[class='UF_FW_Message U_MD_D_YesText'] div[class='U_MD_F_H_Z'] {
  259. outline: none;
  260. -khtml-user-select: text;
  261. -moz-user-input: enabled;
  262. -moz-user-focus: -moz-all;
  263. -webkit-user-select: text;
  264. -moz-user-select: -moz-all;
  265. -ms-user-select: text;
  266. cursor: text;
  267. }
  268. input[type="button"] {
  269. border: 0;
  270. }
  271. span {
  272. text-decoration: none;
  273. text-overflow: ellipsis;
  274. overflow: hidden;
  275. }
  276. /* 自定义滚动条样式 */
  277. body div ::-webkit-scrollbar {
  278. width: 12px;
  279. /*height: 12px 隐藏下方的滚动条*/
  280. }
  281. body div ::-webkit-scrollbar-button:vertical {
  282. display: none;
  283. }
  284. body div ::-webkit-scrollbar:vertical {
  285. background-color: #fff;
  286. }
  287. body div ::-webkit-scrollbar-track-piece {
  288. background: #fff;
  289. }
  290. body div ::-webkit-scrollbar-thumb {
  291. background-color: #8E8E8E;
  292. border-radius: 5px;
  293. }
  294. body div ::-webkit-scrollbar-thumb:hover {
  295. background-color: #3B3B3B;
  296. }
  297. body div ::-webkit-scrollbar-corner:vertical {
  298. background-color: #535353;
  299. }
  300. body div ::-webkit-scrollbar-resizer:vertical {
  301. background-color: #FF6E00;
  302. }
  303. /*主样式*/
  304. .usestudio {
  305. margin: 0;
  306. padding: 0;
  307. border: 0;
  308. width: 100%;
  309. height: 100%;
  310. position: absolute;
  311. top: 0;
  312. left: 0;
  313. background-color: White;
  314. }
  315. .usestudio_server {
  316. margin: 0;
  317. padding: 0;
  318. border: 0;
  319. width: 0;
  320. height: 0;
  321. cursor: default;
  322. -webkit-text-size-adjust: none;
  323. overflow: hidden;
  324. }
  325. .ErrorTip {
  326. display: block;
  327. font-style: normal;
  328. height: 21px;
  329. line-height: 21px;
  330. margin-top: -23px;
  331. font-size: 12px;
  332. color: #222;
  333. cursor: text;
  334. width: 250px;
  335. }
  336. /*提示区域*/
  337. /* ie */
  338. .Scrollbar {
  339. overflow: auto;
  340. scrollbar-arrow-color: #757778;
  341. scrollbar-face-color: #fff;
  342. scrollbar-darkshadow-color: #fff;
  343. scrollbar-highlight-color: #bec1c4;
  344. scrollbar-shadow-color: #bec1c4;
  345. scrollbar-track-color: #fff;
  346. scrollbar-3dlight-color: #fff;
  347. }
  348. /*云端切图*/
  349. .U_Img {
  350. background-image: url(/img/YS2017.png);
  351. _background-image: url(img/YSD2014.gif);
  352. }
  353. .U_MD_D_NotText {
  354. -webkit-text-size-adjust: none;
  355. -webkit-user-select: none;
  356. -khtml-user-select: none;
  357. -moz-user-select: -moz-none;
  358. -ms-user-select: none;
  359. -webkit-user-drag: none;
  360. -webkit-tap-highlight-color: transparent;
  361. }
  362. .U_MD_D_YesText {
  363. -webkit-user-select: text;
  364. -moz-user-select: -moz-all;
  365. -moz-user-input: enabled;
  366. -moz-user-focus: -moz-all;
  367. }
  368. /*.UD_ICON { background:url(img/windowOE.png); _background:url(img/windowOE.jpg); }*/
  369. /*常用圆角*/
  370. .U_MD_D_Radius_5 {
  371. -moz-border-radius: 5px;
  372. -moz-border-radius: 5px;
  373. -webkit-border-radius: 5px;
  374. -webkit-border--radius: 5px;
  375. border-radius: 5px;
  376. border-radius: 5px;
  377. }
  378. .U_MD_D_Radius_18 {
  379. -moz-border-radius: 18px;
  380. -moz-border-radius: 18px;
  381. -webkit-border-radius: 18px;
  382. -webkit-border--radius: 18px;
  383. border-radius: 18px;
  384. border-radius: 18px;
  385. }
  386. .U_MD_D_Radius_5_0 {
  387. -moz-border-radius: 5px 5px 0 0;
  388. -moz-border-radius: 5px 5px 0 0;
  389. -webkit-border-radius: 5px 5px 0 0;
  390. -webkit-border--radius: 5px 5px 0 0;
  391. border-radius: 5px 5px 0 0;
  392. border-radius: 5px 5px 0 0;
  393. }
  394. #U_MD_D_BG {
  395. position: absolute;
  396. z-index: 0;
  397. left: 0;
  398. right: 0;
  399. top: 0;
  400. bottom: 0;
  401. overflow-y: hidden;
  402. overflow-x: hidden;
  403. background: url("/img/icon/bgImg.png") 0px 0px / 100% 100% no-repeat rgb(240, 240, 240);
  404. filter: progid: DXImageTransform.Microsoft.AlphaImageLoader(src=/img/background/ZMYT.jpg, sizingMethod=scale);
  405. }
  406. /*云端首页*/
  407. .U_MD_Home {
  408. color: #000;
  409. font-size: 12px;
  410. width: 0;
  411. height: 0;
  412. overflow: hidden;
  413. }
  414. /*width:100%; height:100%; position:absolute; top:0px; left:0px; width:100%; height:100%; overflow:hidden; color:#000; overflow:hidden;*/
  415. .U_MD_Home img {}
  416. .UD_Dtop {
  417. display: none;
  418. }
  419. /*文字处理区域*/
  420. .U_MD_D_Text_Abbreviation {
  421. text-decoration: none;
  422. text-overflow: ellipsis;
  423. white-space: nowrap;
  424. overflow: hidden;
  425. }
  426. /*桌面样式*/
  427. .U_MD_D {
  428. overflow: hidden;
  429. color: #FFF;
  430. position: absolute;
  431. left: 0;
  432. bottom: 0;
  433. top: 0;
  434. right: 0;
  435. }
  436. .U_MD_D_B {
  437. position: absolute;
  438. bottom: 30px;
  439. right: 5%;
  440. }
  441. .U_MD_D_BD {
  442. padding: 5px 10px;
  443. background-color: #5A5A5A;
  444. border-radius: 0px 0px 10px 10px;
  445. position: absolute;
  446. right: 5%;
  447. top: 0px;
  448. }
  449. .U_MD_D_BDA {
  450. overflow: hidden;
  451. height: 30px;
  452. line-height: 32px;
  453. float: left;
  454. }
  455. .U_MD_D_BDI {
  456. float: left;
  457. background-position: -536px -373px;
  458. width: 30px;
  459. height: 30px;
  460. cursor: pointer;
  461. }
  462. .U_MD_D_BDI img {
  463. width: 30px;
  464. height: 30px;
  465. border-radius: 50%;
  466. }
  467. .U_MD_D_BDL {
  468. float: left;
  469. color: #FFF;
  470. font-family: Arial;
  471. margin-left: 1px;
  472. cursor: pointer;
  473. }
  474. .U_MD_D_BDL div {
  475. margin-left: 10px;
  476. float: left;
  477. font-size: 14px;
  478. height: 30px;
  479. }
  480. .U_MD_D_BDL div:hover {
  481. color: #34BCFF;
  482. }
  483. .U_MD_D_BD_QRcode {
  484. padding: 5px 10px;
  485. background-color: #5A5A5A;
  486. border-radius: 0px 0px 10px 10px;
  487. position: absolute;
  488. right: -53px;
  489. top: 0px;
  490. }
  491. .U_MD_D_BD_QRcodeShare {
  492. display: none;
  493. padding: 5px 10px;
  494. background-color: #5A5A5A;
  495. position: absolute;
  496. right: -55px;
  497. top: 50px;
  498. }
  499. .U_MD_D_BD_QRcodeShare img {
  500. width: 100px;
  501. height: 100px;
  502. padding: 5px 5px;
  503. }
  504. .U_MD_D_BD_QRcode:hover+.U_MD_D_BD_QRcodeShare {
  505. display: block;
  506. }
  507. .U_MD_D_BZMD {
  508. position: relative;
  509. }
  510. .U_MD_D_BZMS {
  511. height: 40px;
  512. line-height: 30px;
  513. width: 721px;
  514. margin: 10px auto 0 auto;
  515. text-align: center;
  516. }
  517. .U_MD_D_BZMSA {
  518. display: inline-block;
  519. *display: inline;
  520. *zoom: 1;
  521. margin: auto;
  522. text-align: left;
  523. height: 40px;
  524. line-height: 40px;
  525. }
  526. .U_MD_D_BZM {
  527. width: 741px;
  528. margin: 20px auto 0 auto;
  529. position: relative;
  530. height: 94px;
  531. text-align: center;
  532. }
  533. .U_MD_D_BZMN {
  534. position: absolute;
  535. top: -10px;
  536. left: -40px;
  537. height: 22px;
  538. background-color: #EEE;
  539. padding: 0 6px;
  540. border-radius: 3px
  541. }
  542. .U_MD_D_BZMNL {
  543. float: left;
  544. width: 15px;
  545. height: 15px;
  546. margin-top: 3px;
  547. }
  548. .U_MD_D_BZMNLI {
  549. background-position: -574px -372px;
  550. }
  551. .U_MD_D_BZMNLO {
  552. background-position: -614px -372px;
  553. }
  554. .U_MD_D_BZMNLT {
  555. background-position: -594px -371px;
  556. }
  557. .U_MD_D_BZMNR {
  558. float: left;
  559. color: #222;
  560. line-height: 22px;
  561. margin-left: 3px;
  562. width: 50px;
  563. }
  564. .U_MD_D_BZMA {
  565. position: relative;
  566. padding: 0 30px;
  567. overflow: hidden;
  568. margin: auto;
  569. display: inline-block;
  570. *display: inline;
  571. *zoom: 1;
  572. height: 100%;
  573. overflow: hidden;
  574. }
  575. .U_MD_D_BZMT {
  576. padding: 0px 10px;
  577. }
  578. .U_MD_D_BZMM {
  579. width: 100%;
  580. height: 100%;
  581. top: 0;
  582. left: 0;
  583. background: #444;
  584. filter: alpha(opacity=50);
  585. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  586. -moz-opacity: 0.5;
  587. -khtml-opacity: 0.5;
  588. opacity: 0.5;
  589. position: absolute;
  590. border-radius: 6px;
  591. }
  592. .U_MD_D_BZMO {
  593. margin: 2px 0 0 40px;
  594. cursor: pointer;
  595. width: 63px;
  596. height: 83px;
  597. float: left;
  598. }
  599. .U_MD_D_BZMOA {
  600. width: 51px;
  601. height: 54px;
  602. padding: 6px;
  603. /*border-radius: 3px;*/
  604. color: #FFF;
  605. cursor: pointer;
  606. }
  607. .U_MD_D_BZMOA:hover {
  608. padding: 5px;
  609. background-color: #505457;
  610. border: 1px solid #777;
  611. }
  612. .U_MD_D_BZMOI {
  613. width: 51px;
  614. height: 51px;
  615. }
  616. .U_MD_D_BZMON {
  617. width: 51px;
  618. height: 15px;
  619. line-height: 15px;
  620. margin-top: 6px;
  621. text-align: center;
  622. }
  623. .U_MD_D_B .U_MD_D_BS {
  624. margin: 30px auto 0 auto;
  625. float: none;
  626. width: 675px;
  627. height: 32px;
  628. }
  629. .U_MD_D_BCM {
  630. display: block;
  631. width: 721px;
  632. margin: 20px auto 0 auto;
  633. height: 40px;
  634. text-align: center;
  635. overflow: hidden;
  636. }
  637. .U_MD_D_BCMO {
  638. width: 125px;
  639. background-color: #666;
  640. float: left;
  641. height: 25px;
  642. line-height: 25px;
  643. padding: 3px 6px;
  644. margin: 5px 0 0 20px;
  645. text-align: left;
  646. position: relative;
  647. }
  648. .U_MD_D_BCMOL {
  649. float: left;
  650. height: 100%;
  651. text-align: center;
  652. color: #EEE;
  653. margin-left: 2px;
  654. }
  655. .U_MD_D_BCMOL div {
  656. float: none;
  657. }
  658. .U_MD_D_BCMOLS {
  659. font-size: 12px;
  660. }
  661. .U_MD_D_BCMOR {
  662. float: left;
  663. margin-left: 11px;
  664. font-size: 13px;
  665. color: #FFF;
  666. width: 85px;
  667. }
  668. .U_MD_D_BZ {
  669. color: #FFF;
  670. font-family: Arial;
  671. background-color: #676767;
  672. padding: 8px 15px;
  673. font-style: normal;
  674. cursor: pointer;
  675. display: none;
  676. }
  677. .U_MD_D_BZ div {
  678. text-align: center;
  679. }
  680. /*桌面图标使用 */
  681. .U_MD_D_K {
  682. top: 0;
  683. left: 0;
  684. height: 100%;
  685. position: absolute;
  686. }
  687. .U_MD_D_KO {
  688. cursor: pointer;
  689. width: 63px;
  690. height: 83px;
  691. position: absolute;
  692. top: 0;
  693. left: 80px;
  694. padding: 1px;
  695. }
  696. .U_MD_D_KO:hover {
  697. background-color: #505457;
  698. border: 1px solid #777;
  699. padding: 0;
  700. }
  701. .U_MD_D_KOA {
  702. margin: 5px auto 0 auto;
  703. width: 51px;
  704. border-radius: 5px;
  705. }
  706. .U_MD_D_KOS {
  707. width: 51px;
  708. height: 51px;
  709. }
  710. .U_MD_D_KOX {
  711. width: 51px;
  712. height: 15px;
  713. line-height: 15px;
  714. margin-top: 6px;
  715. text-align: center;
  716. }
  717. .U_MD_D_NewsTipsIcon {
  718. background: rgba(250, 250, 250, 0) url(img/YSD20143.png);
  719. position: fixed;
  720. width: 51px;
  721. height: 51px;
  722. bottom: 80px;
  723. right: 90px;
  724. background-position: 85px 188px;
  725. border-radius: 38px;
  726. cursor: pointer;
  727. background-size: 1800%;
  728. visibility: visible;
  729. }
  730. .U_MD_D_T_taskbar_Bar_Operate_Button {
  731. font-size: 19px;
  732. cursor: pointer;
  733. text-align: center;
  734. }
  735. /*上传按钮*/
  736. .U_MD_D_filePrew {
  737. position: absolute;
  738. display: block;
  739. z-index: 1;
  740. border: 0;
  741. cursor: pointer;
  742. opacity: 0;
  743. filter: alpha(opacity: 0);
  744. width: 100%;
  745. height: 100%;
  746. overflow: hidden;
  747. }
  748. /*上传控件*/
  749. .U_MD_D_filePrew_I {
  750. display: block;
  751. position: relative;
  752. width: 100%;
  753. height: 100%;
  754. cursor: pointer;
  755. border: 0;
  756. color: #666;
  757. background: #eee;
  758. -moz-user-select: -moz-none;
  759. -webkit-user-select: none;
  760. opacity: 0;
  761. filter: alpha(opacity=0);
  762. -moz-opacity: 0;
  763. }
  764. /*头部消息*/
  765. .U_MD_D_MG_A {
  766. position: relative;
  767. }
  768. .U_MD_D_MG_T {
  769. background-color: #60e480;
  770. color: White;
  771. text-align: center;
  772. width: 18px;
  773. height: 18px;
  774. line-height: 18px;
  775. position: absolute;
  776. top: -7px;
  777. left: 22px;
  778. font-size: 10px;
  779. border-radius: 50%;
  780. display: none;
  781. cursor: pointer;
  782. }
  783. .U_MD_D_MG_O {
  784. width: 300px;
  785. z-index: 3;
  786. position: absolute;
  787. font-family: arial, sans-serif;
  788. background-color: White;
  789. border: 1px solid #838383;
  790. cursor: default;
  791. display: none;
  792. top: 35px;
  793. right: -34px;
  794. max-height: 230px;
  795. overflow: auto;
  796. }
  797. .U_MD_D_MG_OA {
  798. width: 100%;
  799. background: rgb(237, 237, 237);
  800. height: 100%;
  801. }
  802. .U_MD_D_MG_OM {
  803. background-color: #f2f2f2;
  804. width: 100%;
  805. text-align: center;
  806. height: 20px;
  807. line-height: 20px;
  808. cursor: pointer;
  809. padding: 5px 0;
  810. color: #000;
  811. display: none;
  812. }
  813. .U_MD_D_MG_OM:hover {}
  814. .U_MD_D_MG_OMS {
  815. color: #0b7aeb;
  816. margin-left: 10px;
  817. }
  818. .U_MD_U_P_C_P_N_I {
  819. outline: none;
  820. border: 0;
  821. color: black;
  822. overflow: hidden;
  823. background-color: transparent;
  824. width: 100%;
  825. border-radius: 35px;
  826. }
  827. /***<jscompress sourcefile="Help.css" />*/
  828. .U_MD_D_H {
  829. position: absolute;
  830. right: 80px;
  831. bottom: 80px;
  832. width: 80px;
  833. height: 80px;
  834. background-color: #59B4FA;
  835. border: 5px solid #4DA4FD;
  836. border-radius: 50%;
  837. cursor: pointer;
  838. display: none;
  839. }
  840. .U_MD_D_H_A {
  841. position: absolute;
  842. top: 0;
  843. left: 0;
  844. opacity: 0;
  845. -moz-opacity: 0.5;
  846. -khtml-opacity: 0.5;
  847. }
  848. .U_MD_D_H_O {
  849. color: #FFF;
  850. font-size: 20px;
  851. line-height: 30px;
  852. word-spacing: 8px;
  853. letter-spacing: 8px;
  854. margin: 9px 0 0 15px;
  855. }
  856. /***<jscompress sourcefile="Taskbar.css" />*/
  857. /*任务管理器*/
  858. /*任务栏*/
  859. .U_MD_D_RW {
  860. z-index: 99;
  861. width: 100%;
  862. height: 65px;
  863. position: absolute;
  864. left: 0;
  865. bottom: 0;
  866. background-color: #505050;
  867. border-radius: 0 8px 0 8px;
  868. box-shadow: 0 0 30px 5px #212121;
  869. -webkit-box-shadow: 0 0 30px 5px #212121;
  870. }
  871. #U_MD_D_RW {
  872. width: 800px;
  873. color: #FFF;
  874. height: 100%;
  875. /*overflow: hidden;*/
  876. float: left;
  877. }
  878. #U_MD_D_RW div {
  879. color: #111;
  880. }
  881. #U_MD_D_RW .U_MD_D_BZMOA:hover {
  882. /*background-color:transparent;*/
  883. background-color: #6F6F6F;
  884. border: 0;
  885. padding: 6px;
  886. }
  887. #U_MD_D_RW .U_MD_D_BZMO {
  888. margin-left: 4px;
  889. position: relative;
  890. }
  891. #U_MD_D_RW .U_MD_D_BZMON {
  892. margin-top: 4px;
  893. color: #FFF;
  894. }
  895. .U_MD_D_RW_L {
  896. float: left;
  897. width: 21px;
  898. height: 100%;
  899. background-color: #00A8FD;
  900. position: relative;
  901. }
  902. .U_MD_D_RW_R {
  903. float: right;
  904. width: 21px;
  905. height: 100%;
  906. background-color: #6d6d6d;
  907. position: relative;
  908. }
  909. /*.U_MD_D_RW * { zoom:1; -moz-transform:scale(1); -webkit-transform:scale(1); -o-transform:scale(1); transform:scale(1); -ms-transform:scale(1); color:#333; }*/
  910. .U_MD_D_RW_T {
  911. text-align: center;
  912. padding: 5px 0;
  913. border-bottom: 1px solid # color: #006699;
  914. font-size: 13px;
  915. color: #FFF;
  916. margin-top: 16px;
  917. }
  918. .U_MD_D_RW_I {
  919. width: 21px;
  920. height: 45px;
  921. float: left;
  922. margin-top: 19px;
  923. }
  924. /*.U_MD_D_RW_IO { width:47px; height:47px; background-position:-729px -337px; margin:auto; cursor:pointer; }
  925. .U_MD_D_RW_IO:hover { background-position:-787px -339px; }*/
  926. *.U_MD_D_RW_IO {
  927. width: 21px;
  928. height: 100%;
  929. }
  930. .U_MD_D_RW_CD {
  931. width: 21px;
  932. margin-top: 16%;
  933. }
  934. .U_MD_D_RW_GU {
  935. width: 21px;
  936. height: 30%;
  937. /*background-color:gray;*/
  938. }
  939. .U_MD_D_RW_GU:hover {
  940. background-color: gray;
  941. }
  942. .U_MD_D_RW_GD {
  943. width: 21px;
  944. height: 30%;
  945. /*background-color:gray;*/
  946. position: absolute;
  947. bottom: 0;
  948. }
  949. .U_MD_D_RW_GD:hover {
  950. background-color: gray;
  951. }
  952. .U_MD_D_RW_GU_g {
  953. width: 21px;
  954. }
  955. .U_MD_D_RW_GD_g {
  956. width: 21px;
  957. }
  958. .U_MD_D_RW .U_MD_D_T_taskbar_Name {
  959. display: none;
  960. width: 115px;
  961. height: 31px;
  962. background: rgba(111, 111, 111, 1);
  963. border-radius: 1px;
  964. font-size: 15px;
  965. }
  966. #U_MD_D_RW .U_MD_D_T_taskbar_Close {
  967. display: none;
  968. width: 15px;
  969. height: 14px;
  970. background-color: red;
  971. /*border-radius: 100%;*/
  972. color: White;
  973. text-align: center;
  974. font-size: 14px;
  975. position: absolute;
  976. right: 9px;
  977. top: 8px;
  978. line-height: 11px;
  979. cursor: pointer;
  980. }
  981. #U_MD_D_RW .U_MD_D_BZMO:hover .U_MD_D_T_taskbar_Close {
  982. display: block;
  983. }
  984. #U_MD_D_RW .U_MD_D_BZMO:hover .U_MD_D_T_taskbar_Name {
  985. display: block;
  986. }
  987. .U_MD_D_T_taskbar_Bar {
  988. position: absolute;
  989. bottom: 0;
  990. width: 80%;
  991. background-color: #555;
  992. height: 56px;
  993. left: 10%;
  994. border-bottom: 0;
  995. box-shadow: 0 0 25px 3px #555;
  996. -webkit-box-shadow: 0 0 25px 3px #555;
  997. }
  998. .U_MD_D_T_taskbar_Bar_Main {
  999. float: left;
  1000. margin: 0 auto;
  1001. width: calc(100% - 18px);
  1002. height: 100%;
  1003. }
  1004. .U_MD_D_T_taskbar {
  1005. width: 50px;
  1006. height: 100%;
  1007. float: left;
  1008. margin: 3px 0 3px 3px;
  1009. position: relative;
  1010. }
  1011. .U_MD_D_T_taskbar_Main,
  1012. .U_MD_D_T_taskbar_Icon {
  1013. width: 100%;
  1014. height: 100%;
  1015. }
  1016. .U_MD_D_T_taskbar_Bar_Operate {
  1017. float: right;
  1018. width: 18px;
  1019. line-height: 28px;
  1020. display: none;
  1021. }
  1022. .U_MD_D_T_taskbar_Bar_Operate_Button {
  1023. font-size: 19px;
  1024. cursor: pointer;
  1025. text-align: center;
  1026. }
  1027. /***<jscompress sourcefile="main.css" />*/
  1028. html,
  1029. body {
  1030. margin: 0;
  1031. padding: 0;
  1032. }
  1033. .backs {
  1034. width: 100%;
  1035. float: left;
  1036. overflow: hidden;
  1037. }
  1038. .backs_left {
  1039. float: left;
  1040. width: 13%;
  1041. height: 2900px;
  1042. background-color: #015D98;
  1043. padding-top: 88px;
  1044. }
  1045. .backs_right {
  1046. width: 100%;
  1047. overflow: hidden;
  1048. display: inline-grid;
  1049. }
  1050. .backs_score {
  1051. width: 100%;
  1052. height: 56px;
  1053. text-indent: 26%;
  1054. font-size: 15px;
  1055. line-height: 56px;
  1056. color: #ffffff;
  1057. /* background-color:rgba(19,69,111,1); */
  1058. }
  1059. /* .backs_score:after {
  1060. float:right;
  1061. width:17px;
  1062. height:17px;
  1063. margin-top:12px;
  1064. margin-right:10px;
  1065. content:"";
  1066. background:url('../img/reply/update.png');
  1067. }
  1068. */
  1069. .backs_score>img {
  1070. display: block;
  1071. }
  1072. .backs_scoretwo {
  1073. width: 100%;
  1074. height: 56px;
  1075. text-indent: 15%;
  1076. font-size: 15px;
  1077. line-height: 56px;
  1078. color: #ffffff;
  1079. margin-left: 37px;
  1080. }
  1081. .backs_li {
  1082. width: 16%;
  1083. height: 50px;
  1084. font-size: 12px;
  1085. text-align: center;
  1086. float: left;
  1087. border: 1px solid;
  1088. font-size: 14px;
  1089. list-style-type: none;
  1090. line-height: 50px;
  1091. white-space: nowrap;
  1092. overflow: hidden;
  1093. text-overflow: ellipsis;
  1094. background-color: white;
  1095. }
  1096. .backs_ul {
  1097. /* width:98%;
  1098. */
  1099. font-size: 15px;
  1100. margin-top: -16px;
  1101. }
  1102. .backs_content {
  1103. width: 20%;
  1104. height: 50px;
  1105. text-align: center;
  1106. float: left;
  1107. font-size: 15px;
  1108. border: 1px solid;
  1109. list-style-type: none;
  1110. line-height: 50px;
  1111. white-space: nowrap;
  1112. overflow: hidden;
  1113. text-overflow: ellipsis;
  1114. background-color: white;
  1115. }
  1116. .backs_selet {
  1117. border: 1px solid;
  1118. height: 19px;
  1119. width: 158px;
  1120. padding-left: 8px;
  1121. margin-top: 10px;
  1122. }
  1123. .left {
  1124. float: left;
  1125. margin-left: 37px;
  1126. margin-top: 13px;
  1127. }
  1128. .backs_user {
  1129. float: left;
  1130. margin-top: 35px;
  1131. margin-left: 12%;
  1132. font-size: 12px;
  1133. color: black;
  1134. }
  1135. .backs_bigright {
  1136. float: right;
  1137. width: 87%;
  1138. height: 1024px;
  1139. background-color: rgba(242, 242, 242, 1);
  1140. }
  1141. .backs_seletbtn {
  1142. width: 56px;
  1143. height: 23px;
  1144. margin-left: 28px;
  1145. }
  1146. .backs_data {
  1147. width: 868px;
  1148. height: 40px;
  1149. float: left;
  1150. margin-left: 3%;
  1151. font-size: 12px;
  1152. margin-top: 35px;
  1153. }
  1154. .backs_p {
  1155. float: left;
  1156. /* margin-top:10px; */
  1157. margin: 12px 2px;
  1158. font-weight: bolder;
  1159. font-size: 13px;
  1160. }
  1161. .backs_input {
  1162. float: left;
  1163. border: 1px solid;
  1164. margin-top: 10px;
  1165. height: 19px;
  1166. width: 208px;
  1167. margin-left: 6px;
  1168. }
  1169. .backs_databox {
  1170. float: left;
  1171. /* line-height:40px;
  1172. */
  1173. padding-left: 20px;
  1174. }
  1175. .backs_pass {
  1176. width: 20.5%;
  1177. height: 30px;
  1178. text-align: center;
  1179. line-height: 30px;
  1180. margin: 8px 6%;
  1181. color: #fff;
  1182. background-color: #217EC4;
  1183. float: left;
  1184. border-radius: 5px;
  1185. cursor: pointer;
  1186. }
  1187. .backs_span {
  1188. float: left;
  1189. }
  1190. .backs_all {
  1191. float: left;
  1192. width: 100%;
  1193. }
  1194. .backs_all_div {
  1195. float: left;
  1196. list-style-type: none;
  1197. width: 80px;
  1198. height: 30px;
  1199. line-height: 30px;
  1200. text-align: center;
  1201. font-size: 22px;
  1202. cursor: pointer;
  1203. }
  1204. .backs_all_no {
  1205. float: left;
  1206. list-style-type: none;
  1207. margin-left: 20px;
  1208. width: 80px;
  1209. height: 30px;
  1210. line-height: 30px;
  1211. text-align: center;
  1212. font-size: 22px;
  1213. color: #999999;
  1214. cursor: pointer;
  1215. }
  1216. .backs_head {
  1217. width: 100%;
  1218. float: left;
  1219. }
  1220. .backs_insert {
  1221. position: absolute;
  1222. left: 570px;
  1223. top: 254px;
  1224. width: 300px;
  1225. height: 204px;
  1226. border: 1px solid;
  1227. }
  1228. .backs_inserttop {
  1229. width: 100%;
  1230. height: 35px;
  1231. background: inherit;
  1232. background-color: rgba(215, 215, 215, 1);
  1233. font-size: 16px;
  1234. line-height: 35px;
  1235. }
  1236. .backs_insertbottom {
  1237. background-color: #ffffff;
  1238. width: 100%;
  1239. height: 169px;
  1240. }
  1241. .backs_type {
  1242. float: left;
  1243. margin-left: 4%;
  1244. }
  1245. .backs_x {
  1246. float: right;
  1247. margin-right: 5%;
  1248. }
  1249. .backs_ok {
  1250. width: 90px;
  1251. height: 24px;
  1252. float: left;
  1253. background-color: #0098e0;
  1254. margin-left: 30px;
  1255. border-radius: 15%;
  1256. margin-top: 54px;
  1257. text-align: center;
  1258. color: #fff;
  1259. }
  1260. #backs_p {
  1261. width: 180px;
  1262. height: 38px;
  1263. background-color: rgba(215, 215, 215, 1);
  1264. float: left;
  1265. border: 1px solid;
  1266. line-height: 40px;
  1267. }
  1268. .switch {
  1269. float: right;
  1270. margin-right: 19%;
  1271. }
  1272. .switch>div {
  1273. float: right;
  1274. }
  1275. .ellipse {
  1276. width: 51px;
  1277. height: 23px;
  1278. border-radius: 63px;
  1279. background-color: #D7D7D7;
  1280. float: right;
  1281. position: relative;
  1282. }
  1283. .circle {
  1284. width: 16px;
  1285. height: 16px;
  1286. border: 1px solid;
  1287. border-radius: 50%;
  1288. position: absolute;
  1289. top: 2px;
  1290. left: 5px;
  1291. background-color: #fff;
  1292. }
  1293. .dustbin {
  1294. float: right;
  1295. width: 17px;
  1296. height: 17px;
  1297. margin-top: 21px;
  1298. margin-right: 10px;
  1299. display: none;
  1300. }
  1301. .update {
  1302. float: right;
  1303. width: 17px;
  1304. height: 17px;
  1305. margin-top: 21px;
  1306. margin-right: 10px;
  1307. display: none;
  1308. }
  1309. .dhl>li {
  1310. background-color: #4995CF;
  1311. color: white;
  1312. border: 1px solid black;
  1313. border-top: 0px;
  1314. }
  1315. .xh {
  1316. width: 7%;
  1317. border-right: 0px!important;
  1318. /* border-bottom:0px!important;
  1319. */
  1320. }
  1321. .yh {
  1322. width: 10%;
  1323. border-right: 0px!important;
  1324. }
  1325. .dhl {
  1326. margin-top: 21px;
  1327. }
  1328. .con {
  1329. border-right: 0px!important;
  1330. }
  1331. .ly {
  1332. border-right: 0px!important;
  1333. }
  1334. .sj {
  1335. border-right: 0px!important;
  1336. }
  1337. /***<jscompress sourcefile="Reply.css" />*/
  1338. .U_MD_R_comment {
  1339. background-color: #F7F7F7;
  1340. width: 100%;
  1341. height: 100%;
  1342. overflow: auto;
  1343. top: 0px;
  1344. left: 0px;
  1345. overflow-x: hidden;
  1346. overflow-y: scroll;
  1347. }
  1348. .U_MD_R_content {
  1349. padding: 0 30px;
  1350. overflow: hidden;
  1351. }
  1352. .U_MD_R_content_loading {
  1353. font-size: 22px;
  1354. text-align: center;
  1355. line-height: 50px;
  1356. cursor: pointer;
  1357. }
  1358. .U_MD_R_content_operation {
  1359. width: 100%;
  1360. border-bottom: 1px solid #e5e5e5;
  1361. overflow: hidden;
  1362. padding: 10px 0;
  1363. }
  1364. .U_MD_R_content_operation_userhead {
  1365. float: left;
  1366. width: 40px;
  1367. height: 40px;
  1368. margin: 10px;
  1369. border-radius: 40px;
  1370. }
  1371. .U_MD_R_content_operation_userhead img {
  1372. width: 100% !important;
  1373. height: 100% !important;
  1374. max-width: unset !important;
  1375. padding: unset !important;
  1376. margin: unset !important;
  1377. }
  1378. .U_MD_R_content_operation_right {
  1379. float: right;
  1380. min-width: 660px !important;
  1381. }
  1382. .U_MD_R_content_operation_userlogin {
  1383. font-size: 16px;
  1384. padding: 5px;
  1385. cursor: pointer
  1386. }
  1387. .U_MD_R_content_operation_right_bottom {
  1388. font-size: 14px;
  1389. padding: 10px 0;
  1390. }
  1391. .U_MD_R_content_operation_right_bottom_emoji {
  1392. float: left;
  1393. cursor: pointer;
  1394. width: 20px;
  1395. height: 20px;
  1396. border: none;
  1397. background: url(img/reply/emoji.png) 0% 0% / 20px no-repeat transparent;
  1398. margin: 5px 0px 0px 10px
  1399. }
  1400. .U_MD_R_content_operation_right_bottom_picturewarp {
  1401. float: left;
  1402. margin-left: 10px;
  1403. margin-top: 8px;
  1404. position: relative;
  1405. cursor: pointer;
  1406. }
  1407. .U_MD_R_content_operation_right_bottom_picturewarp img {
  1408. cursor: pointer;
  1409. max-width: unset !important;
  1410. padding: unset !important;
  1411. margin: unset !important;
  1412. }
  1413. .U_MD_R_content_operation_right_bottom_picturewarp input {
  1414. position: absolute;
  1415. left: 0;
  1416. opacity: 0;
  1417. width: 17px;
  1418. top: 0;
  1419. height: 15px;
  1420. cursor: pointer;
  1421. }
  1422. .U_MD_R_content_operation_right_bottom_release {
  1423. padding: 0px 20px;
  1424. height: 28px;
  1425. background-color: #4183C4;
  1426. float: right;
  1427. border-radius: 5px;
  1428. text-align: center;
  1429. line-height: 28px;
  1430. color: #fff;
  1431. cursor: pointer;
  1432. }
  1433. .U_MD_R_content_operation_right_bottom_imgloadbox {
  1434. /*margin-top:15px;*/
  1435. background-color: #f7f7f7;
  1436. }
  1437. .U_MD_R_content_operation_right_bottom_imgloadbox_warp {
  1438. width: 100px;
  1439. height: 100px;
  1440. margin-right: 10px;
  1441. position: relative;
  1442. cursor: pointer
  1443. }
  1444. .U_MD_R_content_operation_right_bottom_imgloadbox_warp img {
  1445. width: 100% !important;
  1446. height: 100% !important;
  1447. padding: unset!important;
  1448. margin: unset!important;
  1449. max-width: unset !important;
  1450. }
  1451. .U_MD_R_content_operation_right_bottom_imgloadbox_warp .closebtn {
  1452. cursor: pointer;
  1453. width: 25px;
  1454. height: 25px;
  1455. border: none;
  1456. background-image: url(img/reply/close.png);
  1457. z-index: 11;
  1458. background-size: cover;
  1459. position: absolute;
  1460. top: -11px;
  1461. right: -8px;
  1462. display: none
  1463. }
  1464. .U_MD_R_content_operation_right_bottom_imgloadbox_warp:hover.U_MD_R_content_operation_right_bottom_imgloadbox_warp .closebtn {
  1465. display: block
  1466. }
  1467. .U_MD_R_content_comment {
  1468. width: 100%;
  1469. }
  1470. .U_MD_R_content_warp_box {
  1471. width: calc(100% - 50px);
  1472. margin-left: 50px;
  1473. }
  1474. .U_MD_R_content_box {
  1475. width: 100%;
  1476. padding: 5px 0;
  1477. }
  1478. .U_MD_R_content_box_warp {
  1479. overflow: hidden;
  1480. border-bottom: 1px solid #e5e5e5;
  1481. }
  1482. .U_MD_R_content_box_userhead {
  1483. float: left;
  1484. width: 40px;
  1485. height: 40px;
  1486. margin: 10px;
  1487. border-radius: 40px;
  1488. }
  1489. .U_MD_R_content_box_userhead img {
  1490. width: 100%;
  1491. height: 100%;
  1492. max-width: unset !important;
  1493. padding: unset !important;
  1494. margin: unset !important;
  1495. border-radius: 40px;
  1496. }
  1497. .U_MD_R_content_box_content {
  1498. float: right;
  1499. /*min-width: 668px !important;*/
  1500. padding: 10px 0;
  1501. }
  1502. .U_MD_R_content_box_content_top {
  1503. overflow: hidden
  1504. }
  1505. .U_MD_R_content_box_content_top_name {
  1506. float: left;
  1507. margin-left: 10px;
  1508. }
  1509. .U_MD_R_content_box_content_top_time {
  1510. float: right;
  1511. margin-right: 20px;
  1512. }
  1513. .U_MD_R_content_box_content_text {
  1514. padding: 10px 0 5px 10px;
  1515. font-size: 15px;
  1516. line-height: 18px;
  1517. word-wrap: break-word;
  1518. /*overflow: hidden;*/
  1519. white-space: nowrap;
  1520. text-overflow: ellipsis;
  1521. white-space: pre-wrap;
  1522. }
  1523. .U_MD_R_content_box_content_text img {
  1524. padding: 10px 0 !important;
  1525. max-width: 200px !important;
  1526. margin: unset !important
  1527. }
  1528. .U_MD_R_content_box_content_bottom {
  1529. overflow: hidden;
  1530. padding: 5px 0 0px 10px;
  1531. font-size: 14px;
  1532. }
  1533. .U_MD_R_content_box_content_bottom_likeswarp {
  1534. float: left;
  1535. overflow: hidden;
  1536. cursor: pointer;
  1537. padding: 0 20px 0 0;
  1538. }
  1539. .U_MD_R_content_box_content_bottom_likeswarp img {
  1540. width: 20px;
  1541. height: 20px;
  1542. display: block;
  1543. float: left;
  1544. max-width: unset !important;
  1545. padding: unset !important;
  1546. margin: unset !important;
  1547. }
  1548. .U_MD_R_content_box_content_bottom_likeswarp_text {
  1549. float: left;
  1550. margin-left: 5px;
  1551. }
  1552. .U_MD_R_content_box_content_bottom_replywarp {
  1553. float: left;
  1554. overflow: hidden;
  1555. cursor: pointer;
  1556. padding: 0 20px 0 0;
  1557. }
  1558. .U_MD_R_content_box_content_bottom_replywarp img {
  1559. width: 20px;
  1560. height: 20px;
  1561. display: block;
  1562. float: left;
  1563. max-width: unset !important;
  1564. padding: unset !important;
  1565. margin: unset !important;
  1566. margin-top: 2px !important;
  1567. }
  1568. .U_MD_R_content_box_content_bottom_replywarp_text {
  1569. float: left;
  1570. margin-left: 5px;
  1571. margin-top: -2px;
  1572. }
  1573. .U_MD_R_content_box_content_bottom_showmorewarp {
  1574. float: left;
  1575. overflow: hidden;
  1576. cursor: pointer;
  1577. padding: 0 20px 0 0;
  1578. }
  1579. .U_MD_R_content_box_content_bottom_showmorewarp img {
  1580. width: 20px;
  1581. height: 20px;
  1582. display: block;
  1583. float: left;
  1584. margin-top: 2px;
  1585. max-width: unset !important;
  1586. padding: unset !important;
  1587. margin: unset !important;
  1588. margin-top: 2px !important;
  1589. }
  1590. .U_MD_R_content_box_content_bottom_showmore_text {
  1591. float: left;
  1592. margin-left: 7px;
  1593. margin-top: 0px;
  1594. }
  1595. .U_MD_R_content_box_content_edit {
  1596. margin-top: 10px;
  1597. }
  1598. .U_MD_R_content_box_content_edit .U_MD_R_Reply_Content {
  1599. min-height: 40px;
  1600. background: rgb(255, 255, 255);
  1601. border: 1px solid black;
  1602. }
  1603. /***<jscompress sourcefile="Picture.css" />*/
  1604. .U_MD_UI_Picture_picBox {
  1605. position: relative;
  1606. width: 100%;
  1607. height: 100%;
  1608. overflow: hidden;
  1609. background-color: #f5f5f5;
  1610. }
  1611. .U_MD_UI_Picture_picArea {
  1612. position: absolute;
  1613. width: 1290px;
  1614. }
  1615. .U_MD_UI_Picture_picArea>ul {
  1616. list-style-type: none;
  1617. padding: 0;
  1618. margin: 0;
  1619. }
  1620. #U_MD_UI_Picture_fa span:hover {
  1621. cursor: pointer;
  1622. }
  1623. .U_MD_UI_Picture_picArea img {
  1624. width: 100%;
  1625. vertical-align: top;
  1626. }
  1627. .U_MD_UI_Picture_picArea:hover {
  1628. cursor: Move;
  1629. }
  1630. #U_MD_UI_Picture_add:active {
  1631. background-image: url("img/pictureView/add-active.png") !important;
  1632. }
  1633. #U_MD_UI_Picture_narrow:active {
  1634. background-image: url("img/pictureView/narrow-active.png") !important;
  1635. }
  1636. #U_MD_UI_Picture_prev:active {
  1637. background-image: url("img/pictureView/prev-active.png") !important;
  1638. }
  1639. #U_MD_UI_Picture_next:active {
  1640. background-image: url("img/pictureView/next-active.png") !important;
  1641. }
  1642. #U_MD_UI_Picture_turnLeft:active {
  1643. background-image: url("img/pictureView/turnLeft-active.png") !important;
  1644. }
  1645. #U_MD_UI_Picture_turnRight:active {
  1646. background-image: url("img/pictureView/turnRight-active.png") !important;
  1647. }