﻿* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  outline: none;
  color: #000;
}
.show {
  transition: all 3s;
  max-height: 1000px !important;
}
@media (max-width: 360px) {
  body {
    min-width: 360px;
  }
}
.header_top .row {
  height: 45px;
  align-items: center;
}
.header_top .link {
  display: flex;
}
.header_top .link a {
  display: block;
  position: relative;
  color: #000;
  font-weight: bold;
  font-size: 15px;
  padding: 5px 15px;
}
.header_top .link a:not(:last-child)::after {
  content: "";
  display: block;
  position: absolute;
  top: 9px;
  right: 0;
  width: 1px;
  height: 13px;
  background-color: #707070;
}
.header_top .search {
  width: 80%;
  max-width: 200px;
  height: 30px;
  border: 1px solid #000;
  border-radius: 4px;
  margin-right: 12px;
}
.header_top .search input {
  width: 100%;
  border: none;
  outline: none;
}
.header_img {
  padding-left: 0;
  padding-right: 0;
}
.header_img img {
  display: block;
  width: 100%;
  height: 100%;
}
.header_nav_site {
  display: flex;
}
.header_nav_site .item {
  position: relative;
  flex: 1;
}
.header_nav_site .item:not(:last-child) > a {
  border-right: 0.5px solid #ffffff;
}
.header_nav_site .item a {
  text-align: center;
  display: block;
  font-size: 20px;
  font-weight: bold;
  line-height: 50px;
  color: #ffffff;
  background-color: #bd1a2d;
}
.header_nav_site .item .open {
  display: none;
  position: absolute;
  z-index: 20;
  top: 50px;
  left: -0.5px;
  width: 100%;
}
.header_nav_site .item:hover .open {
  display: block;
}
.header_nav_phone {
  position: relative;
  padding-left: 0;
  padding-right: 0;
}
.header_nav_phone .nav {
  height: 70px;
  background-color: #bd1a2d;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header_nav_phone .nav .logo img {
  width: 140px;
  margin-left: 20px;
}
.header_nav_phone .nav .title {
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 1.5px;
}
.header_nav_phone .nav .humbuger img {
  width: 35px;
  margin-right: 20px;
  cursor: pointer;
}
.header_nav_phone .nav_open {
  max-height: 0;
  overflow: hidden;
  position: absolute;
  z-index: 50;
  top: 70px;
  left: 0;
  display: flex;
  flex-direction: column;
  background-color: #bd1a2d;
}
.header_nav_phone .nav_open .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100vw;
  height: 50px;
  padding: 0 20px;
  color: #ffffff;
  background-color: #bd1a2d;
}
.header_nav_phone .nav_open .item_sub {
  max-height: 0;
  overflow: hidden;
}
.header_nav_phone .nav_open .item_sub .item {
  padding-left: 35px;
}
.header_nav_phone .nav_open .sub_item {
  display: flex;
}
.footer {
  padding: 0 100px;
}
.footer .link {
  display: flex;
}
.footer .link a {
  flex: 1;
  color: #707070;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  padding-bottom: 12px;
}
.footer .copyright {
  overflow: hidden;
  border-top: 1px solid #bd1a2d;
  padding: 10px 0;
  text-align: center;
  line-height: 26px;
}
@media (max-width: 992px) {
  .header_nav_site {
    display: none;
  }
  .header_nav_site a {
    font-size: 16px !important;
  }
  .footer {
    padding: 0;
  }
}