class.css 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. ::-webkit-scrollbar {
  2. width: 0px;
  3. background-color: #F5F5F5;
  4. }
  5. /*定义滚动条轨道 内阴影+圆角*/
  6. ::-webkit-scrollbar-track {
  7. -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  8. border-radius: 10px;
  9. background-color: #F5F5F5;
  10. }
  11. /*定义滑块 内阴影+圆角*/
  12. ::-webkit-scrollbar-thumb {
  13. border-radius: 10px;
  14. -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
  15. background-color: #ccc;
  16. }
  17. .class-cont{
  18. position: fixed;
  19. overflow-x: hidden;
  20. overflow-y: auto;
  21. height: calc(100% - 101px);
  22. max-width: 640px;
  23. }
  24. .class-cont .class-hd{
  25. float: left;
  26. width: 28%;
  27. height: 100%;
  28. position: fixed;
  29. overflow-y: auto;
  30. }
  31. .class-cont .class-bd{
  32. float: right;
  33. width: 72%;
  34. }
  35. .class-cont .class-hd>li {
  36. border-bottom: 1px solid #e6e6e6;
  37. text-align: center;
  38. font-size: 1rem;
  39. }
  40. .class-cont .class-hd>li:last-child {
  41. border-bottom: none;
  42. }
  43. .class-cont .class-hd>li>a {
  44. line-height: 2.4rem;
  45. margin-right: 0;
  46. }
  47. .class-cont .class-hd>li.active{
  48. border-bottom: transparent;
  49. }
  50. .class-cont .class-hd>li.active>a, .class-cont .class-hd>li.active>a:focus, .class-cont .class-hd>li.active>a:hover {
  51. cursor: default;
  52. background-color: #fff;
  53. border: none;
  54. }
  55. .class-bd-cont{
  56. padding: 0 1rem;
  57. }
  58. .class-bd-cont .bd-box{
  59. }
  60. .class-bd-cont .bd-box .bd-box-title{
  61. font-size: 1.2rem;
  62. line-height: 3rem;
  63. color: #777;
  64. }
  65. .class-bd-cont .bd-box .bd-box-info{}
  66. .class-bd-cont .bd-box .bd-box-info .info-item{
  67. text-align: center;
  68. margin-bottom: 1rem;
  69. }
  70. .class-bd-cont .bd-box .bd-box-info .info-item img{
  71. width: 80%;
  72. }
  73. .class-bd-cont .bd-box .bd-box-info .info-item p{
  74. font-size: 0.8rem;
  75. line-height: 2.5rem;
  76. color: #777;
  77. }
  78. /*搜索页面*/
  79. .search-hot{
  80. padding: 0.625rem;
  81. }
  82. .search-hd{
  83. font-size: 1.25rem;
  84. color: #777;
  85. }
  86. .search-hot-bd{}
  87. .search-hot-bd li{
  88. float: left;
  89. list-style-type: none;
  90. font-size: 0.8rem;
  91. color: #777;
  92. margin-right: 10px;
  93. margin-bottom: 8px;
  94. background: #fff;
  95. padding: 2px 10px;
  96. border-radius: 4px;
  97. }
  98. .search-history{
  99. padding: 0.625rem;
  100. }
  101. .search-history-bd{
  102. border-radius: 4px;
  103. }
  104. .search-history-bd li{
  105. border-bottom: 1px solid #eee;
  106. line-height: 3rem;
  107. padding: 0 0.625rem;
  108. color: #777;
  109. font-size: 1.1rem;
  110. }
  111. .search-history-bd li:last-child{
  112. border-bottom: none;
  113. }
  114. .search-history-bd li i{
  115. margin-right: 5px;
  116. font-size: 1.3rem;
  117. }