index.css 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. list-style: none;
  5. text-decoration: none;
  6. box-sizing: border-box;
  7. }
  8. #box {
  9. display: flex;
  10. flex-direction: column;
  11. }
  12. #header {
  13. width: 100%;
  14. background: #fff !important;
  15. position: sticky;
  16. top: 0;
  17. left: 0;
  18. }
  19. .header-top {
  20. display: flex;
  21. }
  22. #header .header-top .headerTop-left{
  23. flex: 1;
  24. height: 65px;
  25. background: url("../images/icon_kugou1.png") no-repeat;
  26. background-size: 90%;
  27. background-position: 10px;
  28. }
  29. #header .header-top .headerTop-right{
  30. flex: 2;
  31. height: 65px;
  32. display: flex;
  33. flex-direction: row-reverse;
  34. align-items: center;
  35. }
  36. #header .header-top .headerTop-right .downLogo {
  37. background: #00BAFF;
  38. color: #fff;
  39. font-size: 12px;
  40. width: 72px;
  41. height: 25px;
  42. line-height: 25px;
  43. border-radius: 20px;
  44. padding: 4px 0;
  45. margin-right: 10px;
  46. display: flex;
  47. justify-content: center;
  48. align-items: center;
  49. }
  50. #header .header-top .headerTop-right .member{
  51. width: 88px;
  52. height: 25px;
  53. border-radius: 20px;
  54. display: flex;
  55. margin-right: 15px;
  56. background: linear-gradient(90deg, #F5CE79 20%, #E5BD61 80%);
  57. }
  58. #header .header-top .headerTop-right .member img{
  59. width: 15px;
  60. height: 15px;
  61. margin-left: 10px;
  62. margin-top: 6px;
  63. }
  64. #header .header-top .headerTop-right .member span{
  65. font-size: 12px;
  66. color: #fff;
  67. margin-top: 4px;
  68. margin-left: 6px;
  69. }
  70. #main {
  71. height: 100%;
  72. }
  73. #main .container {
  74. width: 94%;
  75. margin: 0 auto;
  76. }
  77. #main .container .nav {
  78. width: 100%;
  79. height: 57px;
  80. display: flex;
  81. background: #fbf8f8 !important;
  82. position: sticky;
  83. top: 65px;
  84. left: 0;
  85. }
  86. #main .container .nav .nav-left {
  87. flex: 1;
  88. height: 100%;
  89. display: flex;
  90. justify-content: center;
  91. align-items: center;
  92. }
  93. #main .container .nav .nav-left ul {
  94. display: flex;
  95. flex: 1;
  96. align-items: center;
  97. }
  98. #main .container .nav .nav-left ul li {
  99. flex: 1;
  100. font-size: 16px;
  101. color: #818894;
  102. margin-left: 10px;
  103. }
  104. #main .container .nav .nav-right {
  105. width: 30px;
  106. height: 100%;
  107. display: flex;
  108. align-items: center;
  109. flex-direction: row-reverse;
  110. }
  111. #main .container .nav .nav-right img {
  112. width: 15px;
  113. height: 15px;
  114. }
  115. #main .container .nav .nav-left ul .active {
  116. flex: 1;
  117. font-size: 21px;
  118. font-weight: bold;
  119. color: #000000 !important;
  120. margin-top: 22px;
  121. margin-left: 0;
  122. }
  123. #main .container .nav .nav-left ul .active::after {
  124. content: ' ';
  125. width: 6px;
  126. height: 6px;
  127. display: inline-block;
  128. border-radius: 50%;
  129. background: #00BAFF;
  130. margin-left: 16px;
  131. margin-bottom: 10px;
  132. }
  133. #main .container .scroll {
  134. width: 100%;
  135. height: 800px;
  136. background: #ff0;
  137. }
  138. .scroll .vase {
  139. display: flex;
  140. flex-wrap: wrap;
  141. }
  142. .scroll .vase dl {
  143. flex: 1;
  144. background: #f00;
  145. }
  146. .scroll .vase dl dt img {
  147. width: 103px;
  148. height: 103px;
  149. }