public.css 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  1. *{
  2. margin: 0;
  3. padding: 0;
  4. }
  5. .noScroll::-webkit-scrollbar {
  6. display: none; /* Chrome Safari */
  7. }
  8. .noScroll {
  9. scrollbar-width: none; /* firefox */
  10. -ms-overflow-style: none; /* IE 10+ */
  11. }
  12. .header{
  13. width: 100%;
  14. height: 110px;
  15. position: fixed;
  16. top: 0;
  17. left: 0;
  18. z-index: 999;
  19. /*mix-blend-mode: difference;*/
  20. background-color: #ffffffad;
  21. }
  22. .content{
  23. width: 100%;
  24. position: relative;
  25. /*top: 110px;*/
  26. }
  27. .conBox{
  28. width: 1320px;
  29. margin: 0 auto;
  30. }
  31. .dropMap{
  32. position: absolute;
  33. top: 100%;
  34. background-color: #fff;
  35. box-shadow: 1px 0 4px #c2bfbf;
  36. color: black;
  37. }
  38. .drop-default{
  39. width: 740px;
  40. height: 340px;
  41. display: flex;
  42. }
  43. .drop-default .drop-menus{
  44. width: 250px;
  45. height: 100%;
  46. /*border-right: 1px solid darkgray;*/
  47. padding: 5px;
  48. box-sizing: border-box;
  49. box-shadow: 1px 0 1px gray;
  50. }
  51. .drop-default .drop-menus .menu{
  52. width: 100%;
  53. height: 50px;
  54. display: flex;
  55. align-items: center;
  56. padding: 0 5px;
  57. font-size: 1.1em;
  58. cursor: default;
  59. }
  60. .drop-default .drop-menus .now {
  61. background-color: #b9b7b7;
  62. color: white;
  63. }
  64. .drop-default .drop-view{
  65. width: 540px;
  66. box-sizing: border-box;
  67. padding: 5px;
  68. overflow: auto;
  69. cursor: default;
  70. }
  71. .drop-default .drop-view .sub-item{
  72. width: 100%;
  73. height: 110px;
  74. display: flex;
  75. align-items: center;
  76. }
  77. .drop-default .drop-view .now-sub{
  78. background-color: #f3f3f3;
  79. }
  80. .drop-default .drop-view .sub-item .con{
  81. width: 100%;
  82. height: 90px;
  83. display: flex;
  84. }
  85. .drop-default .drop-view .sub-item .img-box{
  86. display: flex;
  87. justify-content: center;
  88. align-items: center;
  89. width: 90px;
  90. height: 90px;
  91. box-sizing: border-box;
  92. padding: 5px;
  93. border-radius: 3px;
  94. box-shadow: 1px 1px 3px beige;
  95. flex-shrink: 0;
  96. }
  97. .img-box img{
  98. display: block;
  99. max-width: 100%;
  100. max-height: 100%;
  101. }
  102. .drop-default .drop-view .sub-item .text-box{
  103. width: 420px;
  104. }
  105. .drop-default .drop-view .sub-item .text-box .name{
  106. }
  107. .drop-default .drop-view .sub-item .text-box .remark{
  108. font-size: 0.9em;
  109. }
  110. .blurImg{
  111. width: 100%;
  112. height: 100%;
  113. display: block;
  114. z-index: 1;
  115. position: absolute;
  116. left: 0;
  117. top: 0;
  118. }
  119. .blur{
  120. -webkit-filter: blur(5px); /* Chrome, Opera */
  121. -moz-filter: blur(5px);
  122. -ms-filter: blur(5px);
  123. filter: blur(5px);
  124. }
  125. .footer{
  126. box-shadow: 1px 1px 3px black;
  127. margin-top: 20px;
  128. }
  129. .footer-list{
  130. display: flex;
  131. padding: 15px 0;
  132. justify-content: space-between;
  133. }
  134. .footer-list .footerItem{
  135. /*width: calc(1320px / 5);*/
  136. }
  137. .footer-list .footerItem .title{
  138. font-size: 1.4em;
  139. color: black;
  140. padding-top: 10px;
  141. padding-bottom: 20px;
  142. }
  143. .footer-list .footerItem .footer-list-item{
  144. display: block;
  145. height: 35px;
  146. }
  147. .footer-list .footerItem .footer-list-item:hover{
  148. color: #1e45e7;
  149. }
  150. .big-title{
  151. height: 80px;
  152. font-size: 2.5em;
  153. display: flex;
  154. justify-content: center;
  155. align-items: center;
  156. margin-top: 70px;
  157. margin-bottom: 70px;
  158. letter-spacing: 0.5rem;
  159. position: relative;
  160. }
  161. .big-title .hr{
  162. width: 80px;
  163. height: 4px;
  164. background-color: orangered;
  165. position: absolute;
  166. bottom: 5px;
  167. }
  168. /**
  169. 图片框,可以加上动态效果
  170. */
  171. .imgBox{
  172. display: block;
  173. position: relative;
  174. overflow: hidden;
  175. }
  176. .imgBox > img{
  177. display: block;
  178. position: absolute;
  179. left: 0;
  180. top: 0;
  181. width: 100%;
  182. height: 100%;
  183. transition: all .5s;
  184. }