leftnav.css 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. -webkit-box-sizing: border-box;
  5. -moz-box-sizing: border-box;
  6. box-sizing: border-box;
  7. }
  8. body {
  9. background: #fff;
  10. font: 14px 黑体 Microsoft YaHei, arial, sans-serif;
  11. }
  12. ul {
  13. list-style-type: none;
  14. }
  15. a {
  16. color: #f39800;
  17. text-decoration: none;
  18. }
  19. /** =======================
  20. * Contenedor Principal
  21. ===========================*/
  22. .list-title{
  23. display: inline-block;
  24. width: 100%;
  25. max-width: 200px;
  26. border-top: solid 1px #ccc;
  27. border-left: solid 1px #ccc;
  28. border-right: solid 1px #ccc;
  29. background: #FFF;
  30. text-align: center;
  31. height: 60px;
  32. line-height: 60px;
  33. font-size: 20px;
  34. color: #f39800;
  35. font-weight: bold;
  36. cursor: pointer;
  37. }
  38. h1 {
  39. color: #FFF;
  40. font-size: 24px;
  41. font-weight: 400;
  42. text-align: center;
  43. margin-top: 80px;
  44. }
  45. h1 a {
  46. color: #f39800;
  47. font-size: 16px;
  48. }
  49. .accordion {
  50. width: 100%;
  51. background: #FFF;
  52. border-top: 1px solid #69A3EC;
  53. border-bottom: 1px solid #69A3EC;
  54. padding:0;
  55. }
  56. .account-l{
  57. width:100%;
  58. }
  59. .accordion .link {
  60. text-align: center;
  61. cursor: pointer;
  62. display: block;
  63. padding: 15px 15px 15px 42px;
  64. color: #4D4D4D;
  65. font-size: 14px;
  66. font-weight: 700;
  67. border-bottom: 1px solid #69A3EC;
  68. position: relative;
  69. -webkit-transition: all 0.4s ease;
  70. -o-transition: all 0.4s ease;
  71. transition: all 0.4s ease;
  72. }
  73. .accordion li:last-child .link {
  74. border-bottom: 0;
  75. }
  76. .accordion li{
  77. cursor: pointer;
  78. }
  79. .accordion li i {
  80. position: absolute;
  81. top: 16px;
  82. left: 12px;
  83. font-size: 18px;
  84. color: #595959;
  85. -webkit-transition: all 0.4s ease;
  86. -o-transition: all 0.4s ease;
  87. transition: all 0.4s ease;
  88. }
  89. .accordion li i.fa-chevron-down {
  90. right: 12px;
  91. left: auto;
  92. font-size: 16px;
  93. }
  94. .accordion li.open .link {
  95. color: #1A74E2;
  96. }
  97. .accordion li.open i {
  98. color: #1A74E2;
  99. }
  100. .accordion li.open i.fa-chevron-down {
  101. -webkit-transform: rotate(180deg);
  102. -ms-transform: rotate(180deg);
  103. -o-transform: rotate(180deg);
  104. transform: rotate(180deg);
  105. }
  106. /**
  107. * Submenu
  108. -----------------------------*/
  109. .submenu {
  110. display: none;
  111. background: #1A74E2;
  112. font-size: 14px;
  113. margin:0;
  114. padding:0;
  115. color:#fff;
  116. }
  117. .submenu a {
  118. display: block;
  119. text-decoration: none;
  120. text-align: center;
  121. color: #fff;
  122. padding: 12px;
  123. padding-left: 42px;
  124. -webkit-transition: all 0.25s ease;
  125. -o-transition: all 0.25s ease;
  126. transition: all 0.25s ease;
  127. }
  128. /*http://www.jq22.com*/