index.css 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. #app-container {
  2. -webkit-font-smoothing: antialiased;
  3. -moz-osx-font-smoothing: grayscale;
  4. -webkit-tap-highlight-color: transparent;
  5. font-size: 14px;
  6. color: #666;
  7. height: 100%;
  8. background: #fff;
  9. overflow-x: auto;
  10. overflow-y: hidden;
  11. min-width: 1200px;
  12. }
  13. #main {
  14. height: 100%;
  15. min-width: 1200px;
  16. }
  17. .header-container .wrapper, .header-container {
  18. display: -webkit-box;
  19. display: -ms-flexbox;
  20. display: flex;
  21. -webkit-box-pack: center;
  22. -ms-flex-pack: center;
  23. justify-content: center;
  24. }
  25. .header-container {
  26. position: relative;
  27. z-index: 1000;
  28. background: #fff;
  29. -webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,.1);
  30. box-shadow: 0 0 10px 0 rgba(0,0,0,.1);
  31. height: 70px;
  32. }
  33. .header-container .wrapper{
  34. width: 1200px;
  35. min-width: 1200px;
  36. -webkit-box-pack: justify;
  37. -ms-flex-pack: justify;
  38. justify-content: space-between;
  39. }
  40. .text{
  41. margin-left: 10px;
  42. font-size: 22px;
  43. }
  44. .v-link{
  45. color: #666;
  46. -webkit-transition: all .2s ease;
  47. transition: all .2s ease;
  48. -webkit-user-select: none;
  49. -moz-user-select: none;
  50. -ms-user-select: none;
  51. user-select: none;
  52. letter-spacing: 1px;
  53. display: -webkit-box;
  54. display: -ms-flexbox;
  55. display: flex;
  56. -webkit-box-align: center;
  57. -ms-flex-align: center;
  58. align-items: center;
  59. }
  60. .v-link.selected, .v-link:hover {
  61. color: #4490f1;
  62. }
  63. .header-container .wrapper .search-wrapper{
  64. width: 500px;
  65. }
  66. .hospital-search {
  67. display: -webkit-box;
  68. display: -ms-flexbox;
  69. display: flex;
  70. -webkit-box-direction: normal;
  71. -webkit-box-orient: vertical;
  72. -ms-flex-direction: column;
  73. flex-direction: column;
  74. -webkit-box-align: center;
  75. -ms-flex-align: center;
  76. align-items: center;
  77. -webkit-box-pack: center;
  78. -ms-flex-pack: center;
  79. justify-content: center;
  80. }
  81. .hospital-search .search-input{
  82. width: 100%;
  83. }
  84. .col-right-bottom, .hospital-search {
  85. display: -webkit-box;
  86. display: -ms-flexbox;
  87. display: flex;
  88. -webkit-box-direction: normal;
  89. }
  90. /* 头部右侧 */
  91. .header-container .wrapper .right-wrapper {
  92. width: 166px;
  93. display: -webkit-box;
  94. display: -ms-flexbox;
  95. display: flex;
  96. -webkit-box-orient: horizontal;
  97. -webkit-box-direction: normal;
  98. -ms-flex-direction: row;
  99. flex-direction: row;
  100. -webkit-box-pack: center;
  101. -ms-flex-pack: center;
  102. justify-content: center;
  103. -webkit-box-align: center;
  104. -ms-flex-align: center;
  105. align-items: center;
  106. -webkit-box-pack: justify;
  107. -ms-flex-pack: justify;
  108. justify-content: space-between;
  109. }