header-mobile.css 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. .header {
  2. display: flex;
  3. align-items: center;
  4. justify-content: space-between;
  5. height: 2.75rem;
  6. width: 100%;
  7. padding-right: 0.9375rem;
  8. position: fixed;
  9. top: 0;
  10. left: 0;
  11. right: 0;
  12. z-index: 1000;
  13. }
  14. .header-logo {
  15. width: 7.4688rem;
  16. height: 2.625rem;
  17. }
  18. .header-right {
  19. display: flex;
  20. align-items: center;
  21. }
  22. .header-right .header-language {
  23. font-size: 0.8125rem;
  24. font-weight: 400;
  25. color: #999999;
  26. user-select: none;
  27. }
  28. .header-right .header-language > .current {
  29. color: #1e55a6;
  30. }
  31. .header-right .header-menu {
  32. width: 1rem;
  33. height: 1rem;
  34. margin-left: 0.625rem;
  35. }
  36. .header-nav {
  37. height: calc(100vh - 2.75rem);
  38. overflow: hidden;
  39. position: fixed;
  40. transition: height 0.25s;
  41. top: 2.75rem;
  42. left: 0;
  43. right: 0;
  44. z-index: 1000;
  45. border-top: 0.0625rem solid rgba(151, 151, 151, 0.1);
  46. display: none;
  47. background-color: #fff;
  48. }
  49. .header-nav > a {
  50. font-size: 1rem;
  51. font-weight: 400;
  52. color: rgba(34, 34, 34, 0.8);
  53. text-decoration: none;
  54. height: 2.75rem;
  55. padding: 0 0.9375rem;
  56. border-top: 0.0625rem solid rgba(151, 151, 151, 0.1);
  57. display: flex;
  58. align-items: center;
  59. justify-content: space-between;
  60. }
  61. .header-nav > a .current {
  62. color: #1d52a2;
  63. }
  64. .header-nav > a .icon {
  65. display: block;
  66. width: 1rem;
  67. text-align: center;
  68. }