leftnav.css 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  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: 12px 黑体 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. width: 100%;
  24. border-top: solid 1px #9ed2f1;
  25. border-left: solid 1px #9ed2f1;
  26. border-right: solid 1px #9ed2f1;
  27. background: #FFF;
  28. text-align: center;
  29. height: 40px;
  30. line-height: 40px;
  31. font-size: 16px;
  32. color: #f39800;
  33. font-weight: bold;
  34. cursor: pointer;
  35. }
  36. .list-title p{
  37. float: left;
  38. width: 50%;
  39. }
  40. h1 {
  41. color: #FFF;
  42. font-size: 24px;
  43. font-weight: 400;
  44. text-align: center;
  45. margin-top: 80px;
  46. }
  47. h1 a {
  48. color: #f39800;
  49. font-size: 16px;
  50. }
  51. .accordion {
  52. width: 100%;
  53. border: solid 1px #9ed2f1;
  54. background: #FFF;
  55. }
  56. .accordion .link {
  57. cursor: pointer;
  58. display: block;
  59. padding:15px 15px 32px 50px;
  60. color: #4D4D4D;
  61. font-size: 12px;
  62. font-weight: 700;
  63. position: relative;
  64. -webkit-transition: all 0.4s ease;
  65. -o-transition: all 0.4s ease;
  66. transition: all 0.4s ease;
  67. }
  68. .accordion .link p {
  69. float: left;
  70. width: 50%;
  71. }
  72. .accordion .link p:nth-of-type(2) {
  73. text-align: center;
  74. color: #e00c25;
  75. }
  76. .accordion li:last-child .link {
  77. border-bottom: 0;
  78. }
  79. /*.accordion li{
  80. cursor: pointer;
  81. }*/
  82. .accordion li i {
  83. position: absolute;
  84. top: 16px;
  85. left: 12px;
  86. font-size: 18px;
  87. color: #595959;
  88. -webkit-transition: all 0.4s ease;
  89. -o-transition: all 0.4s ease;
  90. transition: all 0.4s ease;
  91. }
  92. .accordion li i.fa-chevron-down {
  93. left: 12px;
  94. right: auto;
  95. font-size: 12px;
  96. }
  97. .accordion li.open .link {
  98. color: #0085cb;
  99. }
  100. .accordion li.open i {
  101. color: #0085cb;
  102. }
  103. .accordion li.open i.fa-chevron-down {
  104. -webkit-transform: rotate(180deg);
  105. -ms-transform: rotate(180deg);
  106. -o-transform: rotate(180deg);
  107. transform: rotate(180deg);
  108. }
  109. /**
  110. * Submenu
  111. -----------------------------*/
  112. .submenu {
  113. display: none;
  114. /* background: #f5f5f5;*/
  115. font-size: 12px;
  116. }
  117. /*.submenu li {
  118. border-bottom: 1px solid #d6d7dc;
  119. }*/
  120. .submenu div {
  121. display: block;
  122. text-decoration: none;
  123. color: #666;
  124. -webkit-transition: all 0.25s ease;
  125. -o-transition: all 0.25s ease;
  126. transition: all 0.25s ease;
  127. padding: 10px 15px 27px 50px;
  128. }
  129. .submenu div p{
  130. float: left;
  131. width: 50%;
  132. }
  133. .submenu div p:nth-of-type(2){
  134. text-align: center;
  135. color: #e00c25;
  136. }
  137. /*http://www.jq22.com*/