.language {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 0.31rem;
  border: 1px solid #FFFFFF;
  border-radius: 4px;
  box-sizing: border-box;
}
.language span {
  font-size: 0.15rem;
  line-height: 0.8;
  cursor: pointer;
}
.language span.active {
  color: #fe3800;
}
header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  z-index: 999;
}
header .logo {
  width: 2.7rem;
  height: 0.9rem;
  background-color: #fe3800;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .logo img {
  width: 2.06rem;
  height: auto;
}
header .header-pc {
  display: flex;
  align-items: center;
  height: 0.84rem;
  flex: 1;
  background-color: #01073d;
  color: #fff;
}
header .header-pc .navbar {
  flex: 1;
  height: 100%;
  margin-left: 1rem;
  margin-right: 1rem;
}
header .header-pc .navbar-nav {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}
header .header-pc .navbar-nav a {
  color: #fff;
  text-align: center;
  padding: 0 10px;
  position: relative;
  font-size: 0.16rem;
}
header .header-pc .navbar-nav a.active {
  color: #fe3800;
}
header .header-pc .navbar-nav a.active::after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #fe3800;
  bottom: -0.1rem;
}
header .header-pc .navbar-nav a:hover {
  color: #fe3800;
}
header .header-pc .navbar-nav a:hover::after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #fe3800;
  bottom: -0.1rem;
}
header .header-pc .contact {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 0.84rem;
  margin-right: 0.55rem;
  margin-left: 0.2rem;
}
header .header-pc .contact:hover i {
  color: #fe3800;
}
header .header-pc .contact:hover a {
  color: #fe3800;
}
header .header-pc .contact i {
  font-size: 0.2rem;
}
header .header-pc .contact a {
  color: #fff;
  margin-left: 0.1rem;
  font-size: .16rem;
}
.header-pc {
  display: block;
}
.header-mobile {
  display: none;
  background-color: #01073d;
  height: 0.84rem;
  flex: 1;
  color: #fff;
  align-items: center;
}
.header-mobile .contact {
  flex: 1;
  text-align: center;
}
.header-mobile .contact a {
  color: #fff;
}
.header-mobile .label16 {
  width: 40px;
  height: 30px;
  display: block;
  position: relative;
  cursor: pointer;
  margin-right: 0.2rem;
  overflow: hidden;
}
.header-mobile .inp16 {
  display: none;
}
.header-mobile .inp16:checked + nav {
  display: block;
}
.header-mobile .line16 {
  width: inherit;
  height: 4px;
  border-radius: 2px;
  display: block;
  background-color: #fff;
  position: absolute;
  top: 0;
  transition: all 0.24s ease-in-out;
}
.header-mobile .line16:nth-of-type(2) {
  top: 13px;
}
.header-mobile .line16:nth-of-type(3) {
  top: 26px;
}
.header-mobile .inp16:checked ~ .line16:nth-of-type(1) {
  transform: rotate(45deg);
  top: 13px;
}
.header-mobile .inp16:checked ~ .line16:nth-of-type(2) {
  width: 0;
}
.header-mobile .inp16:checked ~ .line16:nth-of-type(3) {
  transform: rotate(-45deg);
  top: 13px;
}
.header-mobile nav {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0.84rem;
  left: 0;
  z-index: 999;
  background-color: #01073d;
}
.header-mobile .navbar-nav {
  width: 100%;
  height: 100%;
  padding: 0 10px;
  box-sizing: border-box;
}
.header-mobile .navbar-nav a {
  display: block;
  color: #fff;
  text-align: center;
  padding: 0 10px;
  position: relative;
  line-height: 3;
}
.header-mobile .navbar-nav a:hover {
  color: #fe3800;
  border-bottom: 1px solid #fe3800;
}
@media screen and (max-width: 1000px) {
  header .logo {
    width: 2rem;
  }
  header .logo img {
    width: 1.5rem;
  }
  .header-mobile {
    display: flex;
  }
  header .header-pc {
    display: none;
  }
}
