image.css 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948
  1. @charset "utf-8";
  2. /* dialog样式 */
  3. .wrapper {
  4. zoom: 1;
  5. width: 630px;
  6. *width: 626px;
  7. height: 380px;
  8. margin: 0 auto;
  9. padding: 10px;
  10. position: relative;
  11. font-family: sans-serif;
  12. }
  13. /*tab样式框大小*/
  14. .tabhead {
  15. float: left;
  16. }
  17. .tabbody {
  18. width: 100%;
  19. height: 346px;
  20. position: relative;
  21. clear: both;
  22. }
  23. .tabbody .panel {
  24. position: absolute;
  25. width: 0;
  26. height: 0;
  27. background: #fff;
  28. overflow: hidden;
  29. display: none;
  30. }
  31. .tabbody .panel.focus {
  32. width: 100%;
  33. height: 346px;
  34. display: block;
  35. }
  36. /* 图片对齐方式 */
  37. .alignBar {
  38. float: right;
  39. margin-top: 5px;
  40. position: relative;
  41. }
  42. .alignBar .algnLabel {
  43. float: left;
  44. height: 20px;
  45. line-height: 20px;
  46. }
  47. .alignBar #alignIcon {
  48. zoom: 1;
  49. _display: inline;
  50. display: inline-block;
  51. position: relative;
  52. }
  53. .alignBar #alignIcon span {
  54. float: left;
  55. cursor: pointer;
  56. display: block;
  57. width: 19px;
  58. height: 17px;
  59. margin-right: 3px;
  60. margin-left: 3px;
  61. background-image: url(./images/alignicon.jpg);
  62. }
  63. .alignBar #alignIcon .none-align {
  64. background-position: 0 -18px;
  65. }
  66. .alignBar #alignIcon .left-align {
  67. background-position: -20px -18px;
  68. }
  69. .alignBar #alignIcon .right-align {
  70. background-position: -40px -18px;
  71. }
  72. .alignBar #alignIcon .center-align {
  73. background-position: -60px -18px;
  74. }
  75. .alignBar #alignIcon .none-align.focus {
  76. background-position: 0 0;
  77. }
  78. .alignBar #alignIcon .left-align.focus {
  79. background-position: -20px 0;
  80. }
  81. .alignBar #alignIcon .right-align.focus {
  82. background-position: -40px 0;
  83. }
  84. .alignBar #alignIcon .center-align.focus {
  85. background-position: -60px 0;
  86. }
  87. /* 远程图片样式 */
  88. #remote {
  89. z-index: 200;
  90. }
  91. #remote .top {
  92. width: 100%;
  93. margin-top: 25px;
  94. }
  95. #remote .left {
  96. display: block;
  97. float: left;
  98. width: 300px;
  99. height: 10px;
  100. }
  101. #remote .right {
  102. display: block;
  103. float: right;
  104. width: 300px;
  105. height: 10px;
  106. }
  107. #remote .row {
  108. margin-left: 20px;
  109. clear: both;
  110. height: 40px;
  111. }
  112. #remote .row label {
  113. text-align: center;
  114. width: 50px;
  115. zoom: 1;
  116. _display: inline;
  117. display: inline-block;
  118. vertical-align: middle;
  119. }
  120. #remote .row label.algnLabel {
  121. float: left;
  122. }
  123. #remote input.text {
  124. width: 150px;
  125. padding: 3px 6px;
  126. font-size: 14px;
  127. line-height: 1.42857143;
  128. color: #555;
  129. background-color: #fff;
  130. background-image: none;
  131. border: 1px solid #ccc;
  132. border-radius: 4px;
  133. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  134. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  135. -webkit-transition: border-color ease-in-out .15s, box-shadow
  136. ease-in-out .15s;
  137. transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  138. }
  139. #remote input.text:focus {
  140. border-color: #66afe9;
  141. outline: 0;
  142. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px
  143. rgba(102, 175, 233, .6);
  144. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px
  145. rgba(102, 175, 233, .6);
  146. }
  147. #remote #url {
  148. width: 500px;
  149. margin-bottom: 2px;
  150. }
  151. #remote #width, #remote #height {
  152. width: 20px;
  153. margin-left: 2px;
  154. margin-right: 2px;
  155. }
  156. #remote #border, #remote #vhSpace, #remote #title {
  157. width: 180px;
  158. margin-right: 5px;
  159. }
  160. #remote #lock {
  161. }
  162. #remote #lockicon {
  163. zoom: 1;
  164. _display: inline;
  165. display: inline-block;
  166. width: 20px;
  167. height: 20px;
  168. background: url("../../themes/default/images/lock.gif") -13px -13px
  169. no-repeat;
  170. vertical-align: middle;
  171. }
  172. #remote #preview {
  173. clear: both;
  174. width: 260px;
  175. height: 240px;
  176. z-index: 9999;
  177. margin-top: 10px;
  178. background-color: #eee;
  179. overflow: hidden;
  180. }
  181. /* 上传图片 */
  182. .tabbody #upload.panel {
  183. width: 0;
  184. height: 0;
  185. overflow: hidden;
  186. position: absolute !important;
  187. clip: rect(1px, 1px, 1px, 1px);
  188. background: #fff;
  189. display: block;
  190. }
  191. .tabbody #upload.panel.focus {
  192. width: 100%;
  193. height: 346px;
  194. display: block;
  195. clip: auto;
  196. }
  197. #upload .queueList {
  198. margin: 0;
  199. width: 100%;
  200. height: 100%;
  201. position: absolute;
  202. overflow: hidden;
  203. }
  204. #upload p {
  205. margin: 0;
  206. }
  207. .element-invisible {
  208. width: 0 !important;
  209. height: 0 !important;
  210. border: 0;
  211. padding: 0;
  212. margin: 0;
  213. overflow: hidden;
  214. position: absolute !important;
  215. clip: rect(1px, 1px, 1px, 1px);
  216. }
  217. #upload .placeholder {
  218. margin: 10px;
  219. border: 2px dashed #e6e6e6;
  220. *border: 0px dashed #e6e6e6;
  221. height: 172px;
  222. padding-top: 150px;
  223. text-align: center;
  224. background: url(./images/image.png) center 70px no-repeat;
  225. color: #cccccc;
  226. font-size: 18px;
  227. position: relative;
  228. top: 0;
  229. *top: 10px;
  230. }
  231. #upload .placeholder .webuploader-pick {
  232. font-size: 18px;
  233. background: #00b7ee;
  234. border-radius: 3px;
  235. line-height: 44px;
  236. padding: 0 30px;
  237. *width: 120px;
  238. color: #fff;
  239. display: inline-block;
  240. margin: 0 auto 20px auto;
  241. cursor: pointer;
  242. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  243. }
  244. #upload .placeholder .webuploader-pick-hover {
  245. background: #00a2d4;
  246. }
  247. #filePickerContainer {
  248. text-align: center;
  249. }
  250. #upload .placeholder .flashTip {
  251. color: #666666;
  252. font-size: 12px;
  253. position: absolute;
  254. width: 100%;
  255. text-align: center;
  256. bottom: 20px;
  257. }
  258. #upload .placeholder .flashTip a {
  259. color: #0785d1;
  260. text-decoration: none;
  261. }
  262. #upload .placeholder .flashTip a:hover {
  263. text-decoration: underline;
  264. }
  265. #upload .placeholder.webuploader-dnd-over {
  266. border-color: #999999;
  267. }
  268. #upload .filelist {
  269. list-style: none;
  270. margin: 0;
  271. padding: 0;
  272. overflow-x: hidden;
  273. overflow-y: auto;
  274. position: relative;
  275. height: 300px;
  276. }
  277. #upload .filelist:after {
  278. content: '';
  279. display: block;
  280. width: 0;
  281. height: 0;
  282. overflow: hidden;
  283. clear: both;
  284. position: relative;
  285. }
  286. #upload .filelist li {
  287. width: 113px;
  288. height: 113px;
  289. background: url(./images/bg.png);
  290. text-align: center;
  291. margin: 9px 0 0 9px;
  292. *margin: 6px 0 0 6px;
  293. position: relative;
  294. display: block;
  295. float: left;
  296. overflow: hidden;
  297. font-size: 12px;
  298. }
  299. #upload .filelist li p.log {
  300. position: relative;
  301. top: -45px;
  302. }
  303. #upload .filelist li p.title {
  304. position: absolute;
  305. top: 0;
  306. left: 0;
  307. width: 100%;
  308. overflow: hidden;
  309. white-space: nowrap;
  310. text-overflow: ellipsis;
  311. top: 5px;
  312. text-indent: 5px;
  313. text-align: left;
  314. }
  315. #upload .filelist li p.progress {
  316. position: absolute;
  317. width: 100%;
  318. bottom: 0;
  319. left: 0;
  320. height: 8px;
  321. overflow: hidden;
  322. z-index: 50;
  323. margin: 0;
  324. border-radius: 0;
  325. background: none;
  326. -webkit-box-shadow: 0 0 0;
  327. }
  328. #upload .filelist li p.progress span {
  329. display: none;
  330. overflow: hidden;
  331. width: 0;
  332. height: 100%;
  333. background: #1483d8 url(./images/progress.png) repeat-x;
  334. -webit-transition: width 200ms linear;
  335. -moz-transition: width 200ms linear;
  336. -o-transition: width 200ms linear;
  337. -ms-transition: width 200ms linear;
  338. transition: width 200ms linear;
  339. -webkit-animation: progressmove 2s linear infinite;
  340. -moz-animation: progressmove 2s linear infinite;
  341. -o-animation: progressmove 2s linear infinite;
  342. -ms-animation: progressmove 2s linear infinite;
  343. animation: progressmove 2s linear infinite;
  344. -webkit-transform: translateZ(0);
  345. }
  346. @
  347. -webkit-keyframes progressmove { 0% {
  348. background-position: 0 0;
  349. }
  350. 100%
  351. {
  352. background-position
  353. :
  354. 17
  355. px
  356. 0;
  357. }
  358. }
  359. @
  360. -moz-keyframes progressmove { 0% {
  361. background-position: 0 0;
  362. }
  363. 100%
  364. {
  365. background-position
  366. :
  367. 17
  368. px
  369. 0;
  370. }
  371. }
  372. @
  373. keyframes progressmove { 0% {
  374. background-position: 0 0;
  375. }
  376. 100%
  377. {
  378. background-position
  379. :
  380. 17
  381. px
  382. 0;
  383. }
  384. }
  385. #upload .filelist li p.imgWrap {
  386. position: relative;
  387. z-index: 2;
  388. line-height: 113px;
  389. vertical-align: middle;
  390. overflow: hidden;
  391. width: 113px;
  392. height: 113px;
  393. -webkit-transform-origin: 50% 50%;
  394. -moz-transform-origin: 50% 50%;
  395. -o-transform-origin: 50% 50%;
  396. -ms-transform-origin: 50% 50%;
  397. transform-origin: 50% 50%;
  398. -webit-transition: 200ms ease-out;
  399. -moz-transition: 200ms ease-out;
  400. -o-transition: 200ms ease-out;
  401. -ms-transition: 200ms ease-out;
  402. transition: 200ms ease-out;
  403. }
  404. #upload .filelist li img {
  405. width: 100%;
  406. }
  407. #upload .filelist li p.error {
  408. background: #f43838;
  409. color: #fff;
  410. position: absolute;
  411. bottom: 0;
  412. left: 0;
  413. height: 28px;
  414. line-height: 28px;
  415. width: 100%;
  416. z-index: 100;
  417. display: none;
  418. }
  419. #upload .filelist li .success {
  420. display: block;
  421. position: absolute;
  422. left: 0;
  423. bottom: 0;
  424. height: 40px;
  425. width: 100%;
  426. z-index: 200;
  427. background: url(./images/success.png) no-repeat right bottom;
  428. background: url(./images/success.gif) no-repeat right bottom \9;
  429. }
  430. #upload .filelist li.filePickerBlock {
  431. width: 113px;
  432. height: 113px;
  433. background: url(./images/image.png) no-repeat center 12px;
  434. border: 1px solid #eeeeee;
  435. border-radius: 0;
  436. }
  437. #upload .filelist li.filePickerBlock div.webuploader-pick {
  438. width: 100%;
  439. height: 100%;
  440. margin: 0;
  441. padding: 0;
  442. opacity: 0;
  443. background: none;
  444. font-size: 0;
  445. }
  446. #upload .filelist div.file-panel {
  447. position: absolute;
  448. height: 0;
  449. filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,
  450. startColorstr='#80000000', endColorstr='#80000000') \0;
  451. background: rgba(0, 0, 0, 0.5);
  452. width: 100%;
  453. top: 0;
  454. left: 0;
  455. overflow: hidden;
  456. z-index: 300;
  457. }
  458. #upload .filelist div.file-panel span {
  459. width: 24px;
  460. height: 24px;
  461. display: inline;
  462. float: right;
  463. text-indent: -9999px;
  464. overflow: hidden;
  465. background: url(./images/icons.png) no-repeat;
  466. background: url(./images/icons.gif) no-repeat \9;
  467. margin: 5px 1px 1px;
  468. cursor: pointer;
  469. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  470. -webkit-user-select: none;
  471. -moz-user-select: none;
  472. -ms-user-select: none;
  473. user-select: none;
  474. }
  475. #upload .filelist div.file-panel span.rotateLeft {
  476. display: none;
  477. background-position: 0 -24px;
  478. }
  479. #upload .filelist div.file-panel span.rotateLeft:hover {
  480. background-position: 0 0;
  481. }
  482. #upload .filelist div.file-panel span.rotateRight {
  483. display: none;
  484. background-position: -24px -24px;
  485. }
  486. #upload .filelist div.file-panel span.rotateRight:hover {
  487. background-position: -24px 0;
  488. }
  489. #upload .filelist div.file-panel span.cancel {
  490. background-position: -48px -24px;
  491. }
  492. #upload .filelist div.file-panel span.cancel:hover {
  493. background-position: -48px 0;
  494. }
  495. #upload .statusBar {
  496. height: 45px;
  497. border-bottom: 1px solid #dadada;
  498. margin: 0 10px;
  499. padding: 0;
  500. line-height: 45px;
  501. vertical-align: middle;
  502. position: relative;
  503. }
  504. #upload .statusBar .progress {
  505. border: 1px solid #1483d8;
  506. width: 198px;
  507. background: #fff;
  508. height: 18px;
  509. position: absolute;
  510. top: 12px;
  511. display: none;
  512. text-align: center;
  513. line-height: 18px;
  514. color: #6dbfff;
  515. margin: 0 10px 0 0;
  516. }
  517. #upload .statusBar .progress span.percentage {
  518. width: 0;
  519. height: 100%;
  520. left: 0;
  521. top: 0;
  522. background: #1483d8;
  523. position: absolute;
  524. }
  525. #upload .statusBar .progress span.text {
  526. position: relative;
  527. z-index: 10;
  528. }
  529. #upload .statusBar .info {
  530. display: inline-block;
  531. font-size: 14px;
  532. color: #666666;
  533. }
  534. #upload .statusBar .btns {
  535. position: absolute;
  536. top: 7px;
  537. right: 0;
  538. line-height: 30px;
  539. }
  540. #filePickerBtn {
  541. display: inline-block;
  542. float: left;
  543. }
  544. #upload .statusBar .btns .webuploader-pick, #upload .statusBar .btns .uploadBtn,
  545. #upload .statusBar .btns .uploadBtn.state-uploading, #upload .statusBar .btns .uploadBtn.state-paused
  546. {
  547. background: #ffffff;
  548. border: 1px solid #cfcfcf;
  549. color: #565656;
  550. padding: 0 18px;
  551. display: inline-block;
  552. border-radius: 3px;
  553. margin-left: 10px;
  554. cursor: pointer;
  555. font-size: 14px;
  556. float: left;
  557. -webkit-user-select: none;
  558. -moz-user-select: none;
  559. -ms-user-select: none;
  560. user-select: none;
  561. }
  562. #upload .statusBar .btns .webuploader-pick-hover, #upload .statusBar .btns .uploadBtn:hover,
  563. #upload .statusBar .btns .uploadBtn.state-uploading:hover, #upload .statusBar .btns .uploadBtn.state-paused:hover
  564. {
  565. background: #f0f0f0;
  566. }
  567. #upload .statusBar .btns .uploadBtn, #upload .statusBar .btns .uploadBtn.state-paused
  568. {
  569. background: #00b7ee;
  570. color: #fff;
  571. border-color: transparent;
  572. }
  573. #upload .statusBar .btns .uploadBtn:hover, #upload .statusBar .btns .uploadBtn.state-paused:hover
  574. {
  575. background: #00a2d4;
  576. }
  577. #upload .statusBar .btns .uploadBtn.disabled {
  578. pointer-events: none;
  579. filter: alpha(opacity = 60);
  580. -moz-opacity: 0.6;
  581. -khtml-opacity: 0.6;
  582. opacity: 0.6;
  583. }
  584. /* 图片管理样式 */
  585. #online {
  586. width: 100%;
  587. height: 336px;
  588. padding: 10px 0 0 0;
  589. }
  590. #online #imageList {
  591. width: 100%;
  592. height: 100%;
  593. overflow-x: hidden;
  594. overflow-y: auto;
  595. position: relative;
  596. }
  597. #online ul {
  598. display: block;
  599. list-style: none;
  600. margin: 0;
  601. padding: 0;
  602. }
  603. #online li {
  604. float: left;
  605. display: block;
  606. list-style: none;
  607. padding: 0;
  608. width: 113px;
  609. height: 113px;
  610. margin: 0 0 9px 9px;
  611. *margin: 0 0 6px 6px;
  612. background-color: #eee;
  613. overflow: hidden;
  614. cursor: pointer;
  615. position: relative;
  616. }
  617. #online li.clearFloat {
  618. float: none;
  619. clear: both;
  620. display: block;
  621. width: 0;
  622. height: 0;
  623. margin: 0;
  624. padding: 0;
  625. }
  626. #online li img {
  627. cursor: pointer;
  628. }
  629. #online li .icon {
  630. cursor: pointer;
  631. width: 113px;
  632. height: 113px;
  633. position: absolute;
  634. top: 0;
  635. left: 0;
  636. z-index: 2;
  637. border: 0;
  638. background-repeat: no-repeat;
  639. }
  640. #online li .icon:hover {
  641. width: 107px;
  642. height: 107px;
  643. border: 3px solid #1094fa;
  644. }
  645. #online li.selected .icon {
  646. background-image: url(images/success.png);
  647. background-image: url(images/success.gif) \9;
  648. background-position: 75px 75px;
  649. }
  650. #online li.selected .icon:hover {
  651. width: 107px;
  652. height: 107px;
  653. border: 3px solid #1094fa;
  654. background-position: 72px 72px;
  655. }
  656. /* 图片搜索样式 */
  657. #search .searchBar {
  658. width: 100%;
  659. height: 30px;
  660. margin: 10px 0 5px 0;
  661. padding: 0;
  662. }
  663. #search input.text {
  664. width: 150px;
  665. padding: 3px 6px;
  666. font-size: 14px;
  667. line-height: 1.42857143;
  668. color: #555;
  669. background-color: #fff;
  670. background-image: none;
  671. border: 1px solid #ccc;
  672. border-radius: 4px;
  673. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  674. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  675. -webkit-transition: border-color ease-in-out .15s, box-shadow
  676. ease-in-out .15s;
  677. transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  678. }
  679. #search input.text:focus {
  680. border-color: #66afe9;
  681. outline: 0;
  682. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px
  683. rgba(102, 175, 233, .6);
  684. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px
  685. rgba(102, 175, 233, .6);
  686. }
  687. #search input.searchTxt {
  688. margin-left: 5px;
  689. padding-left: 5px;
  690. background: #FFF;
  691. width: 300px;
  692. *width: 260px;
  693. height: 21px;
  694. line-height: 21px;
  695. float: left;
  696. dislay: block;
  697. }
  698. #search .searchType {
  699. width: 65px;
  700. height: 28px;
  701. padding: 0;
  702. line-height: 28px;
  703. border: 1px solid #d7d7d7;
  704. border-radius: 0;
  705. vertical-align: top;
  706. margin-left: 5px;
  707. float: left;
  708. dislay: block;
  709. }
  710. #search #searchBtn, #search #searchReset {
  711. display: inline-block;
  712. margin-bottom: 0;
  713. margin-right: 5px;
  714. padding: 4px 10px;
  715. font-weight: 400;
  716. text-align: center;
  717. vertical-align: middle;
  718. cursor: pointer;
  719. background-image: none;
  720. border: 1px solid transparent;
  721. white-space: nowrap;
  722. font-size: 14px;
  723. border-radius: 4px;
  724. -webkit-user-select: none;
  725. -moz-user-select: none;
  726. -ms-user-select: none;
  727. user-select: none;
  728. vertical-align: top;
  729. float: right;
  730. }
  731. #search #searchBtn {
  732. color: white;
  733. border-color: #285e8e;
  734. background-color: #3b97d7;
  735. }
  736. #search #searchReset {
  737. color: #333;
  738. border-color: #ccc;
  739. background-color: #fff;
  740. }
  741. #search #searchBtn:hover {
  742. background-color: #3276b1;
  743. }
  744. #search #searchReset:hover {
  745. background-color: #eee;
  746. }
  747. #search .msg {
  748. margin-left: 5px;
  749. }
  750. #search .searchList {
  751. width: 100%;
  752. height: 300px;
  753. overflow: hidden;
  754. clear: both;
  755. }
  756. #search .searchList ul {
  757. margin: 0;
  758. padding: 0;
  759. list-style: none;
  760. clear: both;
  761. width: 100%;
  762. height: 100%;
  763. overflow-x: hidden;
  764. overflow-y: auto;
  765. zoom: 1;
  766. position: relative;
  767. }
  768. #search .searchList li {
  769. list-style: none;
  770. float: left;
  771. display: block;
  772. width: 115px;
  773. margin: 5px 10px 5px 20px;
  774. *margin: 5px 10px 5px 15px;
  775. padding: 0;
  776. font-size: 12px;
  777. box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
  778. -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
  779. -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
  780. position: relative;
  781. vertical-align: top;
  782. text-align: center;
  783. overflow: hidden;
  784. cursor: pointer;
  785. filter: alpha(Opacity = 100);
  786. -moz-opacity: 1;
  787. opacity: 1;
  788. border: 2px solid #eee;
  789. }
  790. #search .searchList li.selected {
  791. filter: alpha(Opacity = 40);
  792. -moz-opacity: 0.4;
  793. opacity: 0.4;
  794. border: 2px solid #00a0e9;
  795. }
  796. #search .searchList li p {
  797. background-color: #eee;
  798. margin: 0;
  799. padding: 0;
  800. position: relative;
  801. width: 100%;
  802. height: 115px;
  803. overflow: hidden;
  804. }
  805. #search .searchList li p img {
  806. cursor: pointer;
  807. border: 0;
  808. }
  809. #search .searchList li a {
  810. color: #999;
  811. border-top: 1px solid #F2F2F2;
  812. background: #FAFAFA;
  813. text-align: center;
  814. display: block;
  815. padding: 0 5px;
  816. width: 105px;
  817. height: 32px;
  818. line-height: 32px;
  819. white-space: nowrap;
  820. text-overflow: ellipsis;
  821. text-decoration: none;
  822. overflow: hidden;
  823. word-break: break-all;
  824. }
  825. #search .searchList a:hover {
  826. text-decoration: underline;
  827. color: #333;
  828. }
  829. #search .searchList .clearFloat {
  830. clear: both;
  831. }