menu.css 951 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. * {
  2. padding: 0;
  3. margin: 0;
  4. }
  5. .left{
  6. width:120px;
  7. float:left;
  8. }
  9. ul {
  10. list-style-type: none;
  11. }
  12. .menu_head {
  13. width: 155px;
  14. height: 47px;
  15. line-height: 47px;
  16. padding-left: 38px;
  17. font-size: 17px;
  18. color: #475052;
  19. cursor: pointer;
  20. border: 1px solid #e1e1e1;
  21. position: relative;
  22. margin: 0px;
  23. font-weight: bold;
  24. background: #f1f1f1 url(../img/pro_left.png) center right no-repeat;
  25. }
  26. .menu_list .current {
  27. background: #f1f1f1 url(../img/pro_down.png) center right no-repeat;
  28. }
  29. .menu_body {
  30. width: 223px;
  31. height: auto;
  32. overflow: hidden;
  33. line-height: 38px;
  34. border-left: 1px solid #e1e1e1;
  35. backguound: #fff;
  36. border-right: 1px solid #e1e1e1;
  37. }
  38. .menu_body a {
  39. display: block;
  40. width: 223px;
  41. height: 38px;
  42. line-height: 38px;
  43. padding-left: 38px;
  44. color: #777;
  45. background: #fff;
  46. text-decoration: none;
  47. border-bottom: 1px solid #e1e1e1;
  48. }