index.css 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. /* css reset 重置样式 */
  2. * {
  3. margin: 0;
  4. padding: 0;
  5. }
  6. li {
  7. list-style: none;
  8. }
  9. h1 {
  10. font-weight: normal;
  11. }
  12. /* 头部区域 */
  13. header {
  14. height: 1rem;
  15. background-color: #e54847;
  16. position: relative;
  17. }
  18. header h1 {
  19. text-align: center;
  20. font-size: 0.35rem;
  21. line-height: 1rem;
  22. color: #fff;
  23. }
  24. header .menu {
  25. position: absolute;
  26. height: 1rem;
  27. line-height: 1rem;
  28. right: 20px;
  29. top: 0;
  30. color: #fff;
  31. font-size: 0.35rem;
  32. }
  33. /* 导航栏区域 */
  34. nav {
  35. height: .9rem;
  36. border-bottom: 1px solid #e6e6e6;
  37. display: flex;
  38. justify-content: space-between;
  39. font-size: 0.3rem;
  40. line-height: .9rem;
  41. padding: 0 20px;
  42. }
  43. nav .address {
  44. position: relative;
  45. }
  46. nav .address .city {
  47. font-size: 0.25rem;
  48. color: #666;
  49. }
  50. nav .address::after {
  51. content: "";
  52. display: block;
  53. width: 0;
  54. height: 0;
  55. border-top: .1rem solid #ddd;
  56. border-right: .1rem solid transparent;
  57. border-left: .1rem solid transparent;
  58. /* border-bottom:.1rem solid transparent; */
  59. position: absolute;
  60. top: 50%;
  61. right: -15px;
  62. transform: translateY(-50%);
  63. }
  64. nav .nav ul {
  65. display: flex;
  66. }
  67. nav .nav {
  68. position: relative;
  69. }
  70. nav .nav .under-line {
  71. width: 6vw;
  72. height: 4px;
  73. background-color: #e54847;
  74. position: absolute;
  75. bottom: 4px;
  76. left: 3vw;
  77. border-radius: 2px;
  78. }
  79. nav .nav li {
  80. font-size: 0.3rem;
  81. width: 10vw;
  82. text-align: center;
  83. color: #666;
  84. font-weight: 700;
  85. margin: 0 1.3vw;
  86. }
  87. /* nav .nav.wait .under-line{
  88. left: 13vw;
  89. } */
  90. nav .search i.iconfont {
  91. color: #e54847;
  92. font-weight: 700;
  93. font-size: 0.3rem;
  94. }