/* 通用css 会对全部页面进行修改 
   非必要css不要写入 */

* {
  margin: 0;
  padding: 0;
}
*, ::after, ::before {
  box-sizing: unset;
}
a {
  text-decoration: none;
  /* 去除下划线 */
}
/* 这里限制的header的高度 */
@media screen and (min-width: 1400px) {
  /* .header {
    height: 135px;
    overflow: hidden;
  } */
}
@media screen and (max-width: 1400px) {
  .header-iframe {
    width: 100%;
    border: none;
    height: 100vh;
    position: absolute;
    z-index: 999;
  }
}