Nessuna descrizione
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

style.css 18KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807
  1. /* ----------------Reset Css--------------------- */
  2. html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  3. a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp,
  4. small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
  5. fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
  6. article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary,
  7. time, mark, audio, video, input {
  8. margin: 0;
  9. padding: 0;
  10. border: none;
  11. outline: 0;
  12. font-size: 100%;
  13. font: inherit;
  14. vertical-align: baseline;
  15. }
  16. html, body, form, fieldset, p, div, h1, h2, h3, h4, h5, h6 {
  17. -webkit-text-size-adjust: none;
  18. }
  19. article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  20. display: block;
  21. }
  22. body {
  23. font-family: arial, sans-serif;
  24. }
  25. ol, ul, li {
  26. list-style: none;
  27. }
  28. blockquote, q {
  29. quotes: none;
  30. }
  31. blockquote:before, blockquote:after, q:before, q:after {
  32. content: '';
  33. content: none;
  34. }
  35. ins {
  36. text-decoration: none;
  37. }
  38. del {
  39. text-decoration: line-through;
  40. }
  41. table {
  42. border-collapse: collapse;
  43. border-spacing: 0;
  44. }
  45. /* ------------ */
  46. .tabs{
  47. overflow:hidden;
  48. margin:5px;
  49. }
  50. .tabs li{
  51. display:inline-block;
  52. *display:inline;
  53. *zoom:1;
  54. margin-left:10px;
  55. padding:0 18px;
  56. height:40px;
  57. line-height:40px;
  58. cursor:pointer;
  59. text-align:center;
  60. background:#fff;
  61. border:1px solid #CFCFCF;
  62. border-radius:3px;
  63. color:#565656;
  64. font-size:14px;
  65. transition:background .3s;
  66. -moz-transition:background .3s;
  67. -webkit-transition:background .3s;
  68. -o-transition:background .3s;
  69. }
  70. .tabs li.checked,
  71. .tabs li:hover{
  72. color:#fff;
  73. background:#00B7EE;
  74. border-color:transparent;
  75. }
  76. .container{
  77. margin:5px;
  78. /* border:3px dashed #E6E6E6; */
  79. }
  80. .container .area{
  81. position:relative;
  82. margin:5px;
  83. min-height:200px;
  84. _height:200px;
  85. }
  86. .container .search-area,
  87. .container .manage-area{
  88. display:none;
  89. }
  90. .container .search-area.loading,
  91. .container .manage-area.loading{
  92. background:url(../images/loading.gif) no-repeat center center;
  93. }
  94. #uploader .queueList {
  95. margin: 20px;
  96. }
  97. .element-invisible {
  98. position: absolute !important;
  99. clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  100. clip: rect(1px,1px,1px,1px);
  101. }
  102. #uploader .placeholder {
  103. min-height: 200px;
  104. padding-top: 100px;
  105. padding-top: 148px\9;
  106. *min-height: 218px;
  107. *padding-top: 168px;
  108. text-align: center;
  109. background: url(../images/image.png) center 20px no-repeat;
  110. color: #cccccc;
  111. font-size: 18px;
  112. position: relative;
  113. }
  114. #uploader .placeholder .webuploader-pick {
  115. font-size: 18px;
  116. background: #00b7ee;
  117. border-radius: 3px;
  118. line-height: 44px;
  119. padding: 0 30px;
  120. color: #fff;
  121. display: inline-block;
  122. margin: 20px auto;
  123. cursor: pointer;
  124. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  125. }
  126. #uploader .placeholder .webuploader-pick-hover {
  127. background: #00a2d4;
  128. }
  129. #uploader .placeholder .flashTip {
  130. color: #666666;
  131. font-size: 12px;
  132. position: absolute;
  133. width: 100%;
  134. text-align: center;
  135. bottom: 20px;
  136. }
  137. #uploader .placeholder .flashTip a {
  138. color: #0785d1;
  139. text-decoration: none;
  140. }
  141. #uploader .placeholder .flashTip a:hover {
  142. text-decoration: underline;
  143. }
  144. #uploader .placeholder.webuploader-dnd-over {
  145. border-color: #999999;
  146. }
  147. #uploader .placeholder.webuploader-dnd-over.webuploader-dnd-denied {
  148. border-color: red;
  149. }
  150. #uploader .filelist {
  151. list-style: none;
  152. margin: 0;
  153. padding: 0;
  154. }
  155. #uploader .filelist:after {
  156. content: '';
  157. display: block;
  158. width: 0;
  159. height: 0;
  160. overflow: hidden;
  161. clear: both;
  162. }
  163. #uploader .filelist li {
  164. width: 110px;
  165. height: 110px;
  166. background: url(../images/bg.png) no-repeat;
  167. text-align: center;
  168. margin: 0 8px 20px 0;
  169. position: relative;
  170. display: inline;
  171. float: left;
  172. overflow: hidden;
  173. font-size: 12px;
  174. }
  175. #uploader .filelist li p.log {
  176. position: relative;
  177. top: -45px;
  178. }
  179. #uploader .filelist li p.title {
  180. position: absolute;
  181. top: 0;
  182. left: 0;
  183. width: 100%;
  184. overflow: hidden;
  185. white-space: nowrap;
  186. text-overflow : ellipsis;
  187. top: 5px;
  188. text-indent: 5px;
  189. text-align: left;
  190. }
  191. #uploader .filelist li p.progress {
  192. position: absolute;
  193. width: 100%;
  194. bottom: 0;
  195. left: 0;
  196. height: 8px;
  197. overflow: hidden;
  198. z-index: 50;
  199. }
  200. #uploader .filelist li p.progress span {
  201. display: none;
  202. overflow: hidden;
  203. width: 0;
  204. height: 100%;
  205. background: #1483d8 url(../images/progress.png) repeat-x;
  206. -webit-transition: width 200ms linear;
  207. -moz-transition: width 200ms linear;
  208. -o-transition: width 200ms linear;
  209. -ms-transition: width 200ms linear;
  210. transition: width 200ms linear;
  211. -webkit-animation: progressmove 2s linear infinite;
  212. -moz-animation: progressmove 2s linear infinite;
  213. -o-animation: progressmove 2s linear infinite;
  214. -ms-animation: progressmove 2s linear infinite;
  215. animation: progressmove 2s linear infinite;
  216. -webkit-transform: translateZ(0);
  217. }
  218. @-webkit-keyframes progressmove {
  219. 0% {
  220. background-position: 0 0;
  221. }
  222. 100% {
  223. background-position: 17px 0;
  224. }
  225. }
  226. @-moz-keyframes progressmove {
  227. 0% {
  228. background-position: 0 0;
  229. }
  230. 100% {
  231. background-position: 17px 0;
  232. }
  233. }
  234. @keyframes progressmove {
  235. 0% {
  236. background-position: 0 0;
  237. }
  238. 100% {
  239. background-position: 17px 0;
  240. }
  241. }
  242. #uploader .filelist li p.imgWrap {
  243. position: relative;
  244. z-index: 2;
  245. line-height: 110px;
  246. vertical-align: middle;
  247. overflow: hidden;
  248. width: 110px;
  249. height: 110px;
  250. color:#1094FA;
  251. font-size:14px;
  252. -webkit-transform-origin: 50% 50%;
  253. -moz-transform-origin: 50% 50%;
  254. -o-transform-origin: 50% 50%;
  255. -ms-transform-origin: 50% 50%;
  256. transform-origin: 50% 50%;
  257. -webit-transition: 200ms ease-out;
  258. -moz-transition: 200ms ease-out;
  259. -o-transition: 200ms ease-out;
  260. -ms-transition: 200ms ease-out;
  261. transition: 200ms ease-out;
  262. }
  263. #uploader .filelist li img {
  264. width: 100%;
  265. }
  266. #uploader .filelist li p.error {
  267. background: #f43838;
  268. color: #fff;
  269. position: absolute;
  270. bottom: 0;
  271. left: 0;
  272. height: 28px;
  273. line-height: 28px;
  274. width: 100%;
  275. z-index: 100;
  276. }
  277. #uploader .filelist li .success {
  278. display: block;
  279. position: absolute;
  280. left: 0;
  281. bottom: 0;
  282. height: 40px;
  283. width: 100%;
  284. z-index: 200;
  285. background: url(../images/success.png) no-repeat right bottom;
  286. _background: url(../images/success.gif) no-repeat right bottom;
  287. }
  288. #uploader .filelist div.file-panel {
  289. position: absolute;
  290. height: 0;
  291. filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#80000000', endColorstr='#80000000')\0;
  292. background: rgba( 0, 0, 0, 0.5 );
  293. width: 100%;
  294. top: 0;
  295. left: 0;
  296. overflow: hidden;
  297. z-index: 300;
  298. transition:height .5s;
  299. -moz-transition:height .5s;
  300. -webkit-transition:height .5s;
  301. -o-transition:height .5s;
  302. }
  303. #uploader .filelist div.file-panel span {
  304. width: 24px;
  305. height: 24px;
  306. display: inline;
  307. float: right;
  308. text-indent: -9999px;
  309. overflow: hidden;
  310. background: url(../images/icons.png) no-repeat;
  311. _background: url(../images/icons.gif) no-repeat;
  312. margin: 5px 1px 1px;
  313. cursor: pointer;
  314. }
  315. #uploader .filelist div.file-panel span.rotateLeft {
  316. background-position: 0 -24px;
  317. }
  318. #uploader .filelist div.file-panel span.rotateLeft:hover {
  319. background-position: 0 0;
  320. }
  321. #uploader .filelist div.file-panel span.rotateRight {
  322. background-position: -24px -24px;
  323. }
  324. #uploader .filelist div.file-panel span.rotateRight:hover {
  325. background-position: -24px 0;
  326. }
  327. #uploader .filelist div.file-panel span.cancel {
  328. background-position: -48px -24px;
  329. }
  330. #uploader .filelist div.file-panel span.cancel:hover {
  331. background-position: -48px 0;
  332. }
  333. #uploader .statusBar {
  334. height: 63px;
  335. border-bottom: 1px solid #dadada;
  336. padding: 0 20px;
  337. line-height: 63px;
  338. vertical-align: middle;
  339. position: relative;
  340. }
  341. #uploader .statusBar .progress {
  342. border: 1px solid #1483d8;
  343. width: 198px;
  344. background: #fff;
  345. height: 18px;
  346. position: relative;
  347. display: inline-block;
  348. text-align: center;
  349. line-height: 20px;
  350. color: #6dbfff;
  351. position: relative;
  352. margin-right: 10px;
  353. }
  354. #uploader .statusBar .progress span.percentage {
  355. width: 0;
  356. height: 100%;
  357. left: 0;
  358. top: 0;
  359. background: #1483d8;
  360. position: absolute;
  361. }
  362. #uploader .statusBar .progress span.text {
  363. position: relative;
  364. z-index: 10;
  365. }
  366. #uploader .statusBar .info {
  367. display: inline-block;
  368. font-size: 14px;
  369. color: #666666;
  370. }
  371. #uploader .statusBar .btns {
  372. position: absolute;
  373. top: 10px;
  374. right: 20px;
  375. line-height: 40px;
  376. }
  377. #filePicker{
  378. *width:250px;
  379. }
  380. #filePicker2 {
  381. display: inline-block;
  382. float: left;
  383. }
  384. #uploader .statusBar .btns .webuploader-pick,
  385. #uploader .statusBar .btns .uploadBtn,
  386. #uploader .statusBar .btns .saveBtn,
  387. #uploader .statusBar .btns .uploadBtn.state-uploading,
  388. #uploader .statusBar .btns .uploadBtn.state-paused {
  389. background: #ffffff;
  390. border: 1px solid #cfcfcf;
  391. color: #565656;
  392. padding: 0 18px;
  393. display: inline-block;
  394. border-radius: 3px;
  395. margin-left: 10px;
  396. cursor: pointer;
  397. font-size: 14px;
  398. float: left;
  399. }
  400. #uploader .statusBar .btns .webuploader-pick-hover,
  401. #uploader .statusBar .btns .uploadBtn:hover,
  402. #uploader .statusBar .btns .uploadBtn.state-uploading:hover,
  403. #uploader .statusBar .btns .uploadBtn.state-paused:hover {
  404. background: #f0f0f0;
  405. }
  406. #uploader .statusBar .btns .uploadBtn , #uploader .statusBar .btns .saveBtn {
  407. background: #00b7ee;
  408. color: #fff;
  409. border-color: transparent;
  410. }
  411. #uploader .statusBar .btns .uploadBtn:hover {
  412. background: #00a2d4;
  413. }
  414. #uploader .statusBar .btns .uploadBtn.disabled {
  415. pointer-events: none;
  416. opacity: 0.6;
  417. }
  418. .container .area .choose-btns{
  419. position:relative;
  420. padding:0 10px;
  421. height:60px;
  422. line-height:60px;
  423. vertical-align:middle;
  424. border-bottom:1px solid #DADADA;
  425. }
  426. .container .area .choose-btns .submit,
  427. .container .area .choose-btns .btn{
  428. position:relative;
  429. float:right;
  430. margin:8px 0 0 15px;
  431. width:60px;
  432. height:40px;
  433. line-height:40px;
  434. cursor:pointer;
  435. text-align:center;
  436. background:#fff;
  437. border:1px solid #CFCFCF;
  438. border-radius:3px;
  439. color:#565656;
  440. font-size:14px;
  441. }
  442. .container .area .choose-btns .checked{
  443. color:#fff;
  444. background:#00B7EE;
  445. border-color:transparent;
  446. }
  447. .container .area .choose-btns .search{
  448. float:left;
  449. }
  450. .container .area .choose-btns .search .key{
  451. float:left;
  452. margin:8px 0 0 0;
  453. padding:11px 5px;
  454. width:300px;
  455. font-size:14px;
  456. color:#555;
  457. border:1px solid #CFCFCF;
  458. line-height:14px;
  459. border-radius:3px;
  460. background:#fff;
  461. }
  462. .container .area .choose-btns .search .key:focus{
  463. border-color:#66AFE9;
  464. }
  465. .container .area .choose-btns .submit{
  466. float:left;
  467. }
  468. .container .area .file-list .nofile{
  469. text-align:center;
  470. line-height:50px;
  471. color:#00B7EE
  472. }
  473. .container .area .file-list .file{
  474. overflow:hidden;
  475. position:relative;
  476. float:left;
  477. margin:10px 10px 0 0;
  478. height:120px;
  479. width:120px;
  480. font-size:12px;
  481. text-align:center;
  482. border:1px solid #ccc;
  483. }
  484. .container .area .file-list .file:hover,
  485. .container .area .file-list .file.checked{
  486. border-color:#1094FA;
  487. }
  488. .container .area .file-list .file .file-panel {
  489. left:0;
  490. overflow:hidden;
  491. position:absolute;
  492. top:-30px;
  493. height:30px;
  494. width:100%;
  495. z-index:5;
  496. background:rgba(0, 0, 0, 0.5);
  497. filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='#80000000', endColorstr='#80000000')\0;
  498. transition:top .5s;
  499. -moz-transition:top .5s;
  500. -webkit-transition:top .5s;
  501. -o-transition:top .5s;
  502. -moz-user-select:none;
  503. -webkit-user-select:none;
  504. -ms-user-select:none;
  505. user-select:none;
  506. }
  507. .container .area .file-list .file:hover .file-panel{
  508. top:0;
  509. }
  510. .container .area .file-list .file .file-panel span {
  511. width: 24px;
  512. height: 24px;
  513. display: inline;
  514. float: right;
  515. text-indent: -9999px;
  516. overflow: hidden;
  517. background: url(../images/icons.png) no-repeat;
  518. _background: url(../images/icons.gif) no-repeat;
  519. margin: 5px 1px 1px;
  520. cursor: pointer;
  521. }
  522. .container .area .file-list .file .file-panel span.cancel {
  523. background-position: -48px -24px;
  524. }
  525. .container .area .file-list .file .file-panel span.cancel:hover {
  526. background-position: -48px 0;
  527. }
  528. .container .area .file-list .file .img{
  529. position:relative;
  530. display:table-cell;
  531. height:100px;
  532. width:120px;
  533. vertical-align:middle;
  534. text-align:center;
  535. z-index:1;
  536. }
  537. .container .area .file-list .file .img img{
  538. position:relative;
  539. vertical-align:middle;
  540. z-index:1;
  541. }
  542. .container .area .file-list .file .icon{
  543. position:absolute;
  544. left:0;
  545. top:0;
  546. height:99px;
  547. width:100%;
  548. border:0 none;
  549. cursor:pointer;
  550. z-index:2;
  551. background:none;
  552. }
  553. .container .area .file-list .file.checked .icon{
  554. border-bottom:1px solid #1094FA;
  555. background:transparent url(../images/success.png) no-repeat right bottom;
  556. _background:transparent url(../images/success.gif) no-repeat right bottom;
  557. }
  558. .container .area .file-list .file .desc{
  559. overflow:hidden;
  560. position:absolute;
  561. left:0;
  562. bottom:0;
  563. padding:0 5px;
  564. height:20px;
  565. width:100%;
  566. font-size:14px;
  567. color:#666;
  568. line-height:20px;
  569. text-overflow:ellipsis;
  570. z-index:2;
  571. cursor:default;
  572. background:#efefef;
  573. }
  574. .area li .file-global{
  575. background:url(../images/url.png) no-repeat center center;
  576. }
  577. .area li .file-vsd{
  578. background:url(../images/vsd.png) no-repeat center center;
  579. }
  580. .area li .file-wav{
  581. background:url(../images/wav.png) no-repeat center center;
  582. }
  583. .area li .file-wma{
  584. background:url(../images/wma.png) no-repeat center center;
  585. }
  586. .area li .file-wmv{
  587. background:url(../images/wmv.png) no-repeat center center;
  588. }
  589. .area li .file-xlsx{
  590. background:url(../images/xlsx.png) no-repeat center center;
  591. }
  592. .area li .file-zip{
  593. background:url(../images/zip.png) no-repeat center center;
  594. }
  595. .area li .file-mov{
  596. background:url(../images/mov.png) no-repeat center center;
  597. }
  598. .area li .file-mp3{
  599. background:url(../images/mp3.png) no-repeat center center;
  600. }
  601. .area li .file-mpeg{
  602. background:url(../images/mpeg.png) no-repeat center center;
  603. }
  604. .area li .file-pdf{
  605. background:url(../images/pdf.png) no-repeat center center;
  606. }
  607. .area li .file-png{
  608. background:url(../images/png.png) no-repeat center center;
  609. }
  610. .area li .file-pptx{
  611. background:url(../images/pptx.png) no-repeat center center;
  612. }
  613. .area li .file-proj{
  614. background:url(../images/proj.png) no-repeat center center;
  615. }
  616. .area li .file-psd{
  617. background:url(../images/psd.png) no-repeat center center;
  618. }
  619. .area li .file-pst{
  620. background:url(../images/pst.png) no-repeat center center;
  621. }
  622. .area li .file-pub{
  623. background:url(../images/pub.png) no-repeat center center;
  624. }
  625. .area li .file-rar{
  626. background:url(../images/rar.png) no-repeat center center;
  627. }
  628. .area li .file-readme{
  629. background:url(../images/readme.png) no-repeat center center;
  630. }
  631. .area li .file-settings{
  632. background:url(../images/settings.png) no-repeat center center;
  633. }
  634. .area li .file-text{
  635. background:url(../images/text.png) no-repeat center center;
  636. }
  637. .area li .file-tiff{
  638. background:url(../images/tiff.png) no-repeat center center;
  639. }
  640. .area li .file-eml{
  641. background:url(../images/eml.png) no-repeat center center;
  642. }
  643. .area li .file-eps{
  644. background:url(../images/eps.png) no-repeat center center;
  645. }
  646. .area li .file-fla{
  647. background:url(../images/fla.png) no-repeat center center;
  648. }
  649. .area li .file-gif{
  650. background:url(../images/gif.png) no-repeat center center;
  651. }
  652. .area li .file-html{
  653. background:url(../images/html.png) no-repeat center center;
  654. }
  655. .area li .file-ind{
  656. background:url(../images/ind.png) no-repeat center center;
  657. }
  658. .area li .file-ini{
  659. background:url(../images/ini.png) no-repeat center center;
  660. }
  661. .area li .file-jpg,
  662. .area li .file-jpeg{
  663. background:url(../images/jpeg.png) no-repeat center center;
  664. }
  665. .area li .file-jsf{
  666. background:url(../images/jsf.png) no-repeat center center;
  667. }
  668. .area li .file-midi{
  669. background:url(../images/midi.png) no-repeat center center;
  670. }
  671. .area li .file-css{
  672. background:url(../images/css.png) no-repeat center center;
  673. }
  674. .area li .file-docx{
  675. background:url(../images/docx.png) no-repeat center center;
  676. }
  677. .area li .file-bmp{
  678. background:url(../images/bmp.png) no-repeat center center;
  679. }
  680. .area li .file-avi{
  681. background:url(../images/avi.png) no-repeat center center;
  682. }
  683. .area li .file-accdb{
  684. background:url(../images/accdb.png) no-repeat center center;
  685. }
  686. /*上传图片弹出框*/
  687. .upload-main{
  688. position: relative;
  689. }
  690. .upload-main-left{
  691. width: 142px;
  692. height: 100%;
  693. float: left;
  694. text-align: center;
  695. border-right: 1px solid #e3e2e8;
  696. position: relative;
  697. }
  698. .upload-nav{
  699. margin-right:-1px;
  700. }
  701. .upload-nav li a{
  702. display: block;
  703. height: 65px;
  704. line-height: 65px;
  705. cursor: pointer;
  706. border: 1px solid transparent;
  707. border-left: 0;
  708. border-right-color: #e3e2e8;
  709. transition: border-bottom .2s ease,border-top .2s ease;
  710. margin-top: -1px;
  711. font-size: 14px;
  712. white-space: nowrap;
  713. overflow: hidden;
  714. text-overflow: ellipsis;
  715. text-decoration:none;
  716. color: #333;
  717. }
  718. .upload-nav .upload-nav-active {
  719. color: #00b7ee;
  720. border-right-color: #fff;
  721. border-top-color: #e3e2e8;
  722. border-bottom-color: #e3e2e8;
  723. border-left:5px solid #00b7ee;
  724. }
  725. .upload-content{
  726. position: relative;
  727. height: 100%;
  728. overflow: hidden;
  729. }
  730. .upload-btn {
  731. position: absolute;
  732. margin-top: 10px;
  733. left:50%;
  734. display: inline-block;
  735. padding: 0 18px;
  736. height: 32px;
  737. line-height: 32px;
  738. cursor: pointer;
  739. text-align: center;
  740. background: #00b7ee;
  741. border: 1px solid #00b7ee;
  742. border-radius: 3px;
  743. color: #fff;
  744. font-size: 14px;
  745. }
  746. .upload-button{
  747. position: absolute;
  748. height: 36px;
  749. width: 100%;
  750. bottom: 20px;
  751. right: 0;
  752. border-top:1px solid #eee ;
  753. background-color: #fff;
  754. }
  755. .ztreeContent{
  756. height:100%;
  757. overflow-y: scroll;
  758. }