header.css 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. html,body{
  2. width: 100%;
  3. height: 100%;
  4. font-family: "微软雅黑";
  5. }
  6. #app{
  7. max-width: 450px!important;
  8. min-width: 320px!important;
  9. margin: 0 auto;
  10. }
  11. header {
  12. width: 100%;
  13. height: 60px;
  14. background-color: #141414;
  15. display: flex;
  16. justify-content: center;
  17. align-items: center;
  18. }
  19. header > div {
  20. width: 92%;
  21. height: 24px;
  22. display: flex;
  23. justify-content: space-between;
  24. }
  25. #app > header > div > h2 {
  26. margin: 0;
  27. padding: 0;
  28. display: flex;
  29. justify-content: center;
  30. align-items: center;
  31. color: #ffffff;
  32. font-size: 22px;
  33. }
  34. header > div > a {
  35. display: flex;
  36. }
  37. header > div>a.left{
  38. display: flex;
  39. width: 24px;
  40. height: 24px;
  41. }
  42. header > div>a.right{
  43. display: flex;
  44. width: 24px;
  45. height: 24px;
  46. }
  47. footer {
  48. display: flex;
  49. flex-direction: column;
  50. width: 100%;
  51. height: 90px;
  52. background-color: #141414;
  53. }
  54. footer > .callme {
  55. display: flex;
  56. justify-content: space-between;
  57. width: 100%;
  58. height: 64px;
  59. border-bottom: 1px solid #2c2c2c;
  60. padding-left: 8%;
  61. }
  62. footer > .callme > .telphone {
  63. display: flex;
  64. flex-direction: column;
  65. justify-content: center;
  66. padding-left: 10px;
  67. }
  68. footer > .callme > .telphone > p {
  69. font-size: 15px;
  70. color: #ffffff;
  71. margin-bottom: 6px;
  72. }
  73. footer > .callme > .telphone > span {
  74. font-size: 17px;
  75. color: #ffffff;
  76. }
  77. footer > .callme > .online {
  78. display: flex;
  79. height: 100%;
  80. }
  81. footer > .callme > .online > img {
  82. display: flex;
  83. height: 100%;
  84. }
  85. footer > .copy {
  86. display: flex;
  87. flex: 1;
  88. justify-content: center;
  89. align-items: center;
  90. width: 100%;
  91. }
  92. footer > .copy > span {
  93. font-size: 12px;
  94. color: #ffffff;
  95. }