style.css 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. .container {
  2. background-color: #f2f2f2;
  3. height: 100%;
  4. }
  5. .header {
  6. background: #333333;
  7. font-size: 18px;
  8. overflow: hidden;
  9. height: 68px !important;
  10. display: flex;
  11. align-items: center;
  12. justify-content: space-between;
  13. }
  14. .header img {
  15. height: 28px;
  16. }
  17. .header .span {
  18. float: right;
  19. color: #fff;
  20. font-size: 14px;
  21. /* top: 50%;
  22. right: 25px; */
  23. /* position: absolute; */
  24. /* transform: translateY(-50%); */
  25. vertical-align: middle
  26. }
  27. .header .span .icon {
  28. margin-right: 5px;
  29. }
  30. .aside {
  31. background-color: #fff;
  32. box-shadow: 5px 5px 10px rgba(0,0,0,0.1);
  33. position: relative;
  34. z-index: 2
  35. }
  36. .aside > p {
  37. padding-left: 20px;
  38. line-height: 60px;
  39. font-size: 12px;
  40. color: #999999;
  41. }
  42. .nav .p {
  43. height: 58px;
  44. line-height: 58px;
  45. font-size: 14px;
  46. color: #999999;
  47. cursor: pointer;
  48. padding-left: 45px;
  49. padding-right: 20px;
  50. position: relative;
  51. display: block;
  52. }
  53. .nav .p .i {
  54. position: absolute;
  55. left: 20px;
  56. top: 50%;
  57. margin-top: -9px;
  58. }
  59. .nav .p.active {
  60. background-color: #f2f2f2;
  61. color: #333333;
  62. }
  63. .main {
  64. padding: 0;
  65. position: relative;
  66. z-index: 1;
  67. }
  68. .nav-head {
  69. padding: 0 25px;
  70. height: 60px;
  71. background-color: #fff;
  72. position: relative;
  73. box-shadow: 5px 0px 10px rgba(0, 0, 0, 0.1)
  74. }
  75. .main h4 {
  76. font-size: 18px;
  77. line-height: 60px;
  78. font-weight: 400;
  79. }
  80. .main h4 span {
  81. padding-left: 15px;
  82. }
  83. .main h4 p {
  84. display: inline-block;
  85. }
  86. .main h4 p span i::after {
  87. content: ':'
  88. }
  89. .main h4 p span b {
  90. font-weight: normal;
  91. }
  92. .main h4 p span.strong i {
  93. font-size: 14px;
  94. color: #f56c6c;
  95. }
  96. .main h4 p span.strong b {
  97. font-size: 18px;
  98. color: #f56c6c;
  99. }
  100. .main h4 p span.strong b::after {
  101. content: '点';
  102. font-size: 14px;
  103. }
  104. .nav-head div {
  105. position: absolute;
  106. height: 16px;
  107. top: 50%;
  108. right: 25px;
  109. margin-top: -8px;
  110. color: #999999;
  111. }
  112. .nav-head .link {
  113. color: inherit;
  114. line-height: 16px;
  115. font-size: 14px;
  116. }
  117. .nav-head .link::after {
  118. content: '>';
  119. padding: 0 5px;
  120. }
  121. .nav-head .link:last-child::after {
  122. display: none;
  123. }
  124. .show-view {
  125. margin: 30px;
  126. }