/* 导航栏-PC */
.header {
  height: 131px;
  width: calc(100% - 167px - 164px);
  padding: 0 167px 0 164px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  background: #E71A1E;
  /* box-shadow: 0px 0px 83px 0px #000000; */
}

.header_m {
  display: none;
}

.header_m_menu_item_txt>span>a {
  text-decoration: none;
  color: #333;
}


.header_content {
  /* max-width: 1589px; */
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header_logo {
  cursor: pointer;
}

.header_logo img {
  width: 450px;
  height: 100%;
}


.header_menu_box {
  max-width: 70%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-around;
}

.header_contact {
  max-width: 70%;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header_contact_btn {
  height: 100%;
}

.lines {
  width: 1px;
  height: 100%;
  background: #C9C9C9;
  margin: 0 36px;
}

.header_contact_btn {
  transition: all .2s linear;
}

.header_contact_btn>a {
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  color: #FFFFFF;
}

.header_contact_btn:hover {
  text-shadow: 0 0 8px #fff;
}

.header_menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header_menu_item {
  padding: 0 54px;
  height: 29px;
  cursor: pointer;
  border-right: 1px solid #C9C9C9;
  transition: all .2s linear;
}

.header_menu_item>a {
  font-weight: 500;
  font-size: 18px;
  color: #FFFFFF;
  text-decoration: none;
}

.header_menu_item:hover {
  text-shadow: 0 0 8px #fff;
}

.header_menu_item_last {
  border-right: 1px solid #C9C9C9;
}



@media only screen and (max-width: 1360px) {
  .header {
    height: 131px;
    width: calc(100% - 10px - 10px);
    padding: 0 10px 0 10px;
    position: fixed;
    top: 0;
    left: 0;
    background: #E71A1E;
    /* box-shadow: 1px 7px 83px 7px #131313; */
  }

  .header_menu_item_last {
    border-right: none;
  }
}

@media only screen and (max-width: 1035px) {
  .header_menu_item {
    padding: 0 20px;
  }
}

@media only screen and (max-width: 768px) {
  .header {
    display: none;
  }

  .header_m {
    display: block;
    width: 100%;
    height: 80px;
    position: relative;
  }

  .header_m_top {
    width: calc(100% - 60px);
    height: 80px;
    background: #E71A1E;
    padding: 0 30px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 199;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .header_m_top>a>img {
    width: 60%;
  }

  .header_m_top>img {
    width: 5%;
  }

  .header_m_menu_list {
    width: 100%;
    position: absolute;
    top: 80px;
    z-index: 99;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    box-shadow: 0 0 20px #fff;
    overflow-y: auto;
  }

  .header_m_menu_item {
    width: 100%;
    border-bottom: 1px solid #DCDCDC;
    font-weight: 400;
    font-size: 30px;
    color: #282A32;
  }

  .header_m_menu_item_txt {
    padding: 20px;
    margin-right: 20px;
    display: flex;
    font-size: 22px;
    align-items: center;
    justify-content: space-between;
  }

  .header_m_menu_item_txt>a {
    font-weight: 400;
    font-size: 22px;
    color: #282A32;
    text-decoration: none;
  }

  .header_m_menu_item_list {
    width: 100%;
  }

  .header_m_menu_item_item {
    width: calc(100% - 60px);
    background-color: #FDE8E8;
    border-bottom: 1px solid #DCDCDC;
    padding: 18px 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .header_m_menu_item_item>a {
    font-weight: 500;
    font-size: 18px;
    color: #484848;
    text-decoration: none;
  }

  .header_m_menu_item_item_no_border {
    border: none;
  }

  .imgBox {
    width: 20px;
    height: 20px;
    background: #E71A1E;
    border-radius: 50%;
    margin-left: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .imgBox>img {
    width: 15px;
    height: 8px;
  }

  .fade-enter-active {
    transition: top .5s;
  }


  .fade-enter {
    top: -1020px;
  }


  .fade1-enter-active {
    transition: opacity 1s;
  }

  .fade1-enter {
    opacity: 0;
  }
}

.new_label-series_page {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px; /* 或者你的图标大小 */
  height: 40px; /* 或者你的图标大小 */
  background-image: url('..//images/new_label_1.png-suoliu.webp');
  background-size: cover;
}
.new_label-layout:before {
  content: "";
  position: relative;/*absolute;*/
  top: -10px;
  left: 0;
  width: 30px; /* 图标宽度 */
  height: 30px; /* 图标高度 */
  background-image: url('..//images/new_label_1.png-suoliu.webp');
  background-size: cover; /* 或者 contain，根据需求 */
}
@media only screen and (max-width: 560px) {}