@font-face {
  font-family: "pingfang";
  src: url("../font/PingFang.ttf");
}
@font-face {
  font-family: "kaiti";
  src: url("../font/KaiTi_GB2312.ttf");
}
@font-face {
  font-family: "philosopher";
  src: url("../font/Philosopher.ttf");
}
* {
  margin: 0;
  padding: 0;
  outline: none;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
}
h3 {
  font-weight: normal;
}
body {
  min-width: 1400px;
  font-family: "pingfang";
}
.wrapper {
  width: 1370px;
  margin: 0 auto;
}
.head-image {
  height: 180px;
  background: url(../images/bg-head.png) no-repeat top center;
  background-size: cover;
}
.head-image-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}
.head-image-wrapper .search {
  display: flex;
  flex-direction: column;
  margin-right: 90px;
}
.head-image-wrapper .search .link a {
  font-size: 14px;
  color: #fff;
  margin-right: 15px;
}
.head-image-wrapper .search .link i {
  display: inline-block;
  width: 9px;
  height: 9px;
  border: solid 2px #f9e109;
  border-radius: 5px;
  margin-right: 5px;
}
.head-image-wrapper .search .search-box {
  width: 270px;
  height: 40px;
  position: relative;
  margin-top: 15px;
}
.head-image-wrapper .search .search-input {
  width: 100%;
  height: 100%;
  line-height: 20px;
  padding: 10px 45px 10px 15px;
  color: #333;
  font-size: 16px;
  border: none;
  outline: none;
}
.head-image-wrapper .search .search-btn {
  position: absolute;
  right: 10px;
  top: 7.5px;
  width: 25px;
  height: 25px;
  background: url(../images/search.png) no-repeat;
  font-size: 0;
  border: none;
  outline: none;
  cursor: pointer;
}
.head-nav {
  background-color: #19591a;
  height: 70px;
}
.head-nav.fixed {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  transition: 0.3s;
  background: #fff;
  box-shadow: 1px 1px 10px #ccc;
}
.head-nav.fixed .item > a {
  color: #333 !important;
}
.head-nav-wrapper {
  display: flex;
}
.head-nav-wrapper .item {
  position: relative;
}
.head-nav-wrapper .item > a {
  padding: 0 38.8px;
  display: block;
  height: 70px;
  line-height: 70px;
  color: #fff;
  font-size: 18px;
}
.head-nav-wrapper .item > a::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 66px;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  z-index: 10;
  background-color: #a47d53;
  transition: 0.3s ease-out all;
}
.head-nav-wrapper .item.now > a::after,
.head-nav-wrapper .item > a:hover::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 66px;
  transform: translateX(-50%);
  width: 25%;
  height: 4px;
  z-index: 10;
  background-color: #a47d53;
  transition: 0.3s ease-out all;
}
.head-nav-wrapper .item .open {
  display: none;
  width: 100%;
  position: absolute;
  top: 70px;
  left: 0;
  z-index: 10;
  overflow: hidden;
}
.head-nav-wrapper .item .open a {
  display: block;
  width: 100%;
  text-align: center;
  background: rgba(25, 89, 26, 0.7);
  padding: 8px 0;
  color: #fff;
  font-size: 16px;
  line-height: 40px;
}
.head-nav-wrapper .item .open a:hover {
  color: #b38955;
}
.footer-link {
  background-color: #5d8560;
  height: 72px;
}
.footer-link-wrapper {
  display: flex;
  justify-content: space-evenly;
}
.footer-link-wrapper a {
  line-height: 72px;
  padding: 0 20px;
  font-size: 14px;
  color: #fff;
}
.footer-copyright {
  background-color: #19591a;
  height: 280px;
}
.footer-copyright-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copyright-wrapper .footer-content {
  display: flex;
  margin-left: 40px;
}
.footer-copyright-wrapper .footer-content div {
  padding: 0 20px;
}
.footer-copyright-wrapper .footer-content p {
  line-height: 42px;
  color: #fff;
}
.footer-copyright-wrapper .footer-content .left {
  border-right: 2px solid #fff;
}
.footer-copyright-wrapper .logo {
  flex: 1;
  display: flex;
  justify-content: center;
}