@charset "UTF-8";
/*
* common style for all pages
*/
.font {
  font-size: 2.1rem;
  font-weight: bold;
  color: #b12d18;
  position: absolute;
  top: 140px;
  right: 313px;
  z-index: 1000;
}
.header {
  box-sizing: border-box;
  height: 160px;
  padding: 0 160px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .logo {
  flex: 0 0 644px;
}
.header .logo a img {
  width: 100%;
}
.header .navbar {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 54px;
}
.header .navbar nav {
  display: flex;
  align-items: center;
}
.header .navbar nav a {
  position: relative;
}
.header .navbar nav a::after {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  background-color: #f39b00;
  opacity: 0;
  transition: opacity 0.3s;
  margin-top: 7px;
}
.header .navbar nav a:hover::after {
  opacity: 1;
}
.header .navbar nav a.item {
  font-family: "微软雅黑,黑体";
  font-size: 2.1rem;
  color: #606060;
  letter-spacing: 4px;
  padding-right: 76px;
}
.header .navbar nav a.phone {
  font-size: 2.9rem;
  color: #c6000b;
  padding-left: 65px;
  letter-spacing: 4px;
}
.header .navbar nav a.phone::after {
  opacity: 0;
}
.header .navbar nav a.phone:hover::after {
  opacity: 0;
}
.footer {
  height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.footer .navbar {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 30px;
  padding-top: 20px;
}
.footer .navbar nav {
  display: flex;
  align-items: center;
}
.footer .navbar nav a {
  position: relative;
}
.footer .navbar nav a::after {
  content: "";
  display: block;
  width: 100%;
  height: 6px;
  background-color: #f39b00;
  opacity: 0;
  transition: opacity 0.3s;
  margin-top: 14px;
}
.footer .navbar nav a:hover::after {
  opacity: 1;
}
.footer .navbar nav a.item {
  font-family: "微软雅黑,黑体";
  font-size: 2.1rem;
  color: #444444;
  letter-spacing: 4px;
  padding-right: 76px;
}
.footer .cprt {
  flex: 1;
  font-size: 1.5rem;
  color: #606060;
  font-family: "宋体";
}
.container {
  width: 100%;
  overflow: hidden;
}
.container .imgbox {
  width: 100%;
}
.container .imgbox img {
  width: 100%;
  height: auto;
  min-height: 1px;
}
