body {
  --style-color: #ED1C24;
  --sub-color: #4FB848;
}

/* 头部代码开始*/
.header {
  width: 100%;
  background: #000;
  position: relative;
  z-index: 101;
}

.header .daohangzong {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .container {
  max-width: 100%;
}

.header .daohang1 {
  flex-shrink: 0;
}

.header .daohang1 img {
  width: auto;
  height: 25px;
}

.header .daohang3 {
  margin-left: 10px;
}

.header .icon-list {
  display: flex;
  align-items: center;
  line-height: 1;
}

.header .icon-list li {
  color: #fff;
  font-size: 20px;
}

.header .icon-list li:not(:last-child) {
  margin-right: 10px;
}

.header .icon-list li i {
  font-size: inherit;
}

/* 头部代码结束*/
/* 导航响应式开始*/
@media (min-width: 992px) {
  .header .container {
    padding: 0 18px;
  }

  .header .daohangzong {
    height: 69px;
  }

  .header .daohang1 img {
    height: 44px;
  }

  .header .daohang3 {
    margin-left: 20px;
  }

  .header .icon-list li:not(:last-child) {
    margin-right: 20px;
  }
}