amap.css 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. .info {
  2. border: solid 1px silver;
  3. }
  4. div.info-top {
  5. position: relative;
  6. background: none repeat scroll 0 0 #F9F9F9;
  7. border-bottom: 1px solid #CCC;
  8. border-radius: 5px 5px 0 0;
  9. }
  10. div.info-top div {
  11. display: inline-block;
  12. color: #333333;
  13. font-size: 14px;
  14. font-weight: bold;
  15. line-height: 31px;
  16. padding: 0 10px;
  17. }
  18. div.info-top img {
  19. position: absolute;
  20. top: 10px;
  21. right: 10px;
  22. transition-duration: 0.25s;
  23. }
  24. div.info-top img:hover {
  25. box-shadow: 0px 0px 5px #000;
  26. }
  27. div.info-middle {
  28. font-size: 12px;
  29. padding: 6px;
  30. line-height: 20px;
  31. }
  32. div.info-bottom {
  33. height: 0px;
  34. width: 100%;
  35. clear: both;
  36. text-align: center;
  37. }
  38. div.info-bottom img {
  39. position: relative;
  40. z-index: 104;
  41. }
  42. span {
  43. margin-left: 5px;
  44. font-size: 11px;
  45. }
  46. .info-middle img {
  47. float: left;
  48. margin-right: 6px;
  49. }