header.css 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378
  1. .header-module{
  2. position: fixed;
  3. top: 0;
  4. width: 100%;
  5. z-index: 100;
  6. background-color: #F2F2F4;
  7. /* border-bottom: 1px solid rgba(0, 0, 0, 0.08); */
  8. }
  9. .header-common{
  10. display: flex;
  11. align-items: center;
  12. justify-content: space-between;
  13. height: 48px;
  14. }
  15. .header-common .header-left{
  16. display: flex;
  17. align-items: center;
  18. font-size: 14px;
  19. line-height: 22px;
  20. }
  21. .header-left .img-home{
  22. width: 18px;
  23. height: 18px;
  24. margin-right: 2px;
  25. }
  26. .header-left .home-title{
  27. color:#1d1d1d;
  28. }
  29. .header-left .home-message{
  30. margin-left: 20px;
  31. color:#686868;
  32. }
  33. .header-left .home-site {
  34. position: relative;
  35. display: flex;
  36. align-items: center;
  37. height: 48px;
  38. }
  39. .header-left .site-btn{
  40. width: 100px;
  41. height: 30px;
  42. margin-left: 20px;
  43. border-radius: 4px;
  44. font-size: 14px;
  45. line-height: 30px;
  46. color: #fff;
  47. background: #2CB7CA;
  48. border: 0;
  49. outline: 0;
  50. }
  51. .header-left .home-site:hover .site-dropdown-panel {
  52. display: inline-block;
  53. }
  54. .site-dropdown-panel{
  55. display: none;
  56. position: absolute;
  57. left: 20px;
  58. top: 44px;
  59. width: 398px;
  60. background: #fff;
  61. box-shadow: 0 0 28px 0 rgba(0, 0, 0, 0.12);
  62. border: 1px solid #ececec;
  63. border-radius: 8px;
  64. }
  65. .site-dropdown-panel .dropdown-header{
  66. padding: 16px;
  67. border-bottom: 1px solid#e0e0e0;
  68. font-size: 16px;
  69. line-height: 24px;
  70. color: #1d1d1d;
  71. }
  72. .site-dropdown-panel .dropdown-content{
  73. padding: 16px;
  74. }
  75. .site-dropdown-panel .dropdown-list{
  76. display: flex;
  77. align-items: center;
  78. font-size: 14px;
  79. color: #686868;
  80. }
  81. .site-dropdown-panel .list-label{
  82. font-weight: 700;
  83. margin-right: 8px;
  84. }
  85. .site-dropdown-panel .list-value{
  86. margin-right: 20px;
  87. }
  88. .site-dropdown-panel .list-value:hover{
  89. color: #2ABED1;
  90. text-decoration: underline;
  91. }
  92. .header-right{
  93. display: flex;
  94. height: 100%;
  95. }
  96. .header-right ul {
  97. display: flex;
  98. align-items: center;
  99. height: 100%;
  100. }
  101. .header-right .header-right-list{
  102. position: relative;
  103. margin-left: 32px;
  104. height: 100%;
  105. display: flex;
  106. align-items: center;
  107. justify-content: center;
  108. }
  109. .jynav-list{
  110. display: flex;
  111. flex-direction: column;
  112. position: absolute;
  113. left: 50%;
  114. top: 48px;
  115. transform: translate(-50%, 0%);
  116. line-height: 34px;
  117. padding: 24px;
  118. background: #fff;
  119. border-radius: 0px 0px 4px 4px;
  120. box-shadow: 0px 6px 8px 0px rgba(0, 0, 0, 0.08);
  121. font-size: 14px;
  122. display: none;
  123. text-align: left;
  124. border-top: 1px solid rgba(0, 0, 0, 0.1);
  125. }
  126. .jynav-list span a {
  127. color: #1D1D1D;
  128. font-size: 14px;
  129. white-space: nowrap;
  130. }
  131. .jynav-list span a:hover {
  132. color: #2CB7CA;
  133. font-size: 14px;
  134. }
  135. .jy-rember a {
  136. display: flex;
  137. align-items: center;
  138. }
  139. .jynav-list.case-row-group{
  140. width: auto;
  141. flex-direction: row;
  142. align-items: center;
  143. justify-content: space-between;
  144. }
  145. .jynav-list.case-row-group .case-item+.case-item {
  146. margin-left: 32px;
  147. }
  148. .jynav-list.case-row-group .case-item img {
  149. width: 32px;
  150. height: 32px;
  151. margin-bottom: 4px;
  152. object-fit: contain;
  153. }
  154. .jynav-list.case-row-group .case-item:hover {
  155. background: rgba(44, 183, 202, 0.08);
  156. color: #2ABED1;
  157. }
  158. .jynav-list.case-row-group .active {
  159. background: rgba(44, 183, 202, 0.08);
  160. color: #2ABED1 !important;
  161. }
  162. .jynav-list.case-row-group .case-item strong {
  163. white-space: nowrap;
  164. font-style: normal;
  165. font-weight: 400;
  166. font-size: 14px;
  167. line-height: 22px;
  168. }
  169. .jynav-list.case-row-group .case-item {
  170. display: flex;
  171. flex-direction: column;
  172. justify-content: center;
  173. min-width: 160px;
  174. min-height: 90px;
  175. padding: 16px 24px;
  176. color: #1D1D1D;
  177. border-radius: 4px;
  178. }
  179. .time-free {
  180. display: flex;
  181. justify-content: center;
  182. align-items: center;
  183. margin-left: 8px;
  184. width: 42px;
  185. height: 19px;
  186. background: #FF3A20;
  187. border-radius: 9px 9px 9px 0px;
  188. font-size: 12px;
  189. font-weight: 400;
  190. color: #FFFFFF;
  191. }
  192. .header-right-list a{
  193. font-size: 14px;
  194. color: #1D1D1D;
  195. }
  196. .jynav-list-title{
  197. position: relative;
  198. display: flex;
  199. align-items: center;
  200. height: 100%;
  201. }
  202. .jynav-list-title.set-after::after{
  203. position: absolute;
  204. bottom: 0;
  205. left: 50%;
  206. transform: translate(-50%, 0%);
  207. content: '';
  208. width: 28px;
  209. height: 1px;
  210. background: #2cb7ca;
  211. }
  212. .header-right-list a:hover,
  213. .header-right-list a:active {
  214. color: #2cb7ca;
  215. }
  216. .header-right-list.login{
  217. width: 88px;
  218. background: #2ABED1;
  219. }
  220. .header-right-list.login a{
  221. color: #fff;
  222. }
  223. .header-right-list.login a:hover{
  224. color: #fff;
  225. }
  226. #downloadApp .download-scan-group{
  227. position: relative;
  228. margin: 0 auto;
  229. margin-top: 200px;
  230. width: 336px;
  231. height: 458px;
  232. box-shadow: 0px 0px 20px rgba(8, 31, 38, 0.12);
  233. border-radius: 8px;
  234. box-sizing: border-box;
  235. }
  236. .download-scan-group .close-icon {
  237. position: absolute;
  238. display: block;
  239. width: 30px;
  240. height: 30px;
  241. top: 76px;
  242. right: 12px;
  243. }
  244. #downloadApp img {
  245. display: block;
  246. width: 100%;
  247. }
  248. #downloadApp p {
  249. font-size: 14px;
  250. line-height: 22px;
  251. text-align: center;
  252. color: #1D1D1D;
  253. margin-top: 2px;
  254. }
  255. .useronline{
  256. /* width:70px; */
  257. display: flex;
  258. align-items: center;
  259. height:100%;
  260. margin-left:40px;
  261. line-height:0px;
  262. background:none;
  263. color:#666666;
  264. border: solid 0px #000;
  265. border-color:#CCCCCC;
  266. position:relative;
  267. }
  268. #login.useronline {
  269. background: transparent;
  270. }
  271. .useronline .loginBtn {
  272. display: flex;
  273. align-items: center;
  274. justify-content: center;
  275. width: 100px!important;
  276. height: 30px!important;
  277. background: #2ABED1 !important;
  278. margin: unset !important;
  279. border: 0;
  280. font-size: 14px;
  281. color: #fff !important;
  282. border-radius: 4px;
  283. }
  284. .useronline .user-avatar{
  285. width: 32px;
  286. height: 32px;
  287. position: relative;
  288. float: left;
  289. cursor: pointer;
  290. overflow: hidden;
  291. border-radius: 50%;
  292. border: 1px solid #E0E0E0;
  293. }
  294. .work-user-info {
  295. position: absolute;
  296. top: 48px;
  297. left: -58px;
  298. width: 150px;
  299. padding: 0;
  300. border: none;
  301. background: #FFFFFF;
  302. box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.1000), 0px 8px 10px 1px rgba(0, 0, 0, 0.0600), 0px 3px 14px 2px rgba(0, 0, 0, 0.0500);
  303. border-radius: 8px;
  304. overflow: hidden;
  305. font-size: 14px;
  306. font-weight: 400;
  307. color: #1D1D1D;
  308. line-height: 22px;
  309. }
  310. .work-user-info .info-group span {
  311. overflow: hidden;
  312. text-overflow: ellipsis;
  313. white-space: nowrap;
  314. max-width: 100%;
  315. }
  316. .work-user-info .info-group {
  317. padding: 18px 16px 8px 16px;
  318. display: flex;
  319. flex-direction: column;
  320. align-items: center;
  321. justify-content: center;
  322. overflow: hidden;
  323. text-overflow: ellipsis;
  324. white-space: nowrap;
  325. }
  326. .work-user-info .out-button {
  327. width: 100%;
  328. height: 34px;
  329. line-height: 34px;
  330. background: #F5F6F7;
  331. text-align: center;
  332. font-size: 12px;
  333. font-weight: 400;
  334. color: #686868;
  335. cursor: pointer;
  336. }
  337. .work-link {
  338. display: flex;
  339. align-items: center;
  340. margin-left: 16px;
  341. padding: 0 12px;
  342. height: 100%;
  343. background: #2CB7CA;
  344. font-weight: 400;
  345. font-size: 16px;
  346. color: #fff;
  347. cursor: pointer;
  348. }
  349. .work-link:hover{
  350. color: #fff;
  351. }