You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

170 line
2.3 KiB

  1. html,
  2. body {
  3. background-color: #F4F4F4;
  4. min-width: auto;
  5. }
  6. .header {
  7. position: fixed;
  8. left: 0;
  9. top: 0;
  10. right: 0;
  11. font-size: 30px;
  12. color: #fff;
  13. background-color: #4A94FF;
  14. padding: 0 20px;
  15. height: 68px;
  16. line-height: 68px;
  17. }
  18. .navList {
  19. position: fixed;
  20. top: 68px;
  21. left: 0;
  22. bottom: 0;
  23. background-color: #fff;
  24. width: 142px;
  25. padding: 0 20px;
  26. overflow: auto;
  27. }
  28. .navBox {
  29. text-align: center;
  30. padding: 40px 0 20px;
  31. border-bottom: 2px solid #E3E9F1;
  32. cursor: pointer;
  33. }
  34. .navImg {
  35. line-height: 0;
  36. margin-bottom: 12px;
  37. }
  38. .navImg img {
  39. width: 38px;
  40. }
  41. .navTxt {
  42. width: 72px;
  43. height: 26px;
  44. line-height: 26px;
  45. color: #424242;
  46. margin: 0 auto;
  47. border-radius: 13px;
  48. }
  49. .navBox.active {
  50. border-color: #4A94FF;
  51. }
  52. .navBox.active .navTxt {
  53. background-color: #4A94FF;
  54. color: #fff;
  55. }
  56. .teachBox {
  57. margin: 88px 20px 0 162px;
  58. }
  59. .teachCon {
  60. background-color: #fff;
  61. padding-bottom: 22px;
  62. }
  63. .teachT {
  64. height: 55px;
  65. padding: 0 34px;
  66. line-height: 54px;
  67. border-bottom: 1px solid #D8D8D8;
  68. }
  69. .teachT span {
  70. font-weight: bold;
  71. color: #595959;
  72. font-size: 20px;
  73. }
  74. .teachWord {
  75. float: right;
  76. }
  77. .teachWord a {
  78. display: inline-block;
  79. vertical-align: middle;
  80. height: 34px;
  81. line-height: 32px;
  82. padding: 0 10px;
  83. border: 1px solid #D3D3D3;
  84. border-radius: 17px;
  85. color: #424242;
  86. margin-left: 10px;
  87. transition: all 0.3s;
  88. -moz-transition: all 0.3s;
  89. -ms-transition: all 0.3s;
  90. -o-transition: all 0.3s;
  91. -webkit-transition: all 0.3s;
  92. margin-top: -4px;
  93. }
  94. .teachWord a:hover {
  95. background-color: #F7B600;
  96. border-color: #F7B600;
  97. color: #fff;
  98. }
  99. .teachModule {
  100. height: 500px;
  101. background-color: #999;
  102. margin: 22px 34px 0;
  103. }
  104. .teachListBox {
  105. margin-top: 20px;
  106. background-color: #fff;
  107. overflow: auto;
  108. padding: 15px 20px;
  109. white-space: nowrap;
  110. text-align: center;
  111. }
  112. .teachList {
  113. display: inline-block;
  114. vertical-align: middle;
  115. text-align: center;
  116. margin: 0 20px;
  117. width: 100px;
  118. }
  119. .teachListImg {
  120. line-height: 0;
  121. }
  122. .teachListImg img {
  123. width: 56px;
  124. }
  125. .teachListTxt {
  126. margin-top: 10px;
  127. color: #424242;
  128. }
  129. ::-webkit-scrollbar-track-piece {
  130. width: 1px;
  131. background-color: #142452;
  132. }
  133. ::-webkit-scrollbar {
  134. width: 1px;
  135. height: 6px
  136. }
  137. ::-webkit-scrollbar-thumb {
  138. height: 6px;
  139. background-color: #3F71FF;
  140. border-radius: 6px;
  141. }
  142. ::-webkit-scrollbar-thumb:hover {
  143. background: #3F71FF;
  144. }