@import "fonts.css";

* {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

li {
  list-style: none;
}
.container-fluid{
  padding-right: 0px;
  padding-left: 0px;
}
@media screen and (min-width: 1280px) {
  .container {
    width: 1280px;
  }
}

header {
  height: 120px;
}

header .logo a {
  display: block;
  max-width: 500px;
  height: 120px;
}

header .logo a h1 {
  display: none;
}

header .logo a img {
  height: 100%;
  width: 100%;
}

header .search-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 120px;
}

header .search-content .nav a {
  font-size: 14px;
  color: #828282;
}

header .search-content .nav a:hover {
  color: #29965a;
}

header .search-content .nav span {
  margin: 0px 5px;
  font-size: 14px;
  color: #828282;
}

header .search-content .search {
  margin-top: 10px;
  padding: 3px 15px;
  max-width: 200px;
  border-radius: 18px;
  border: 1px solid #346552;
}

header .search-content .search input {
  max-width: 150px;
  outline: none;
  border: 0;
  font-size: 12px;
  color: #8b8b8b;
}

header .search-content .search i {
  vertical-align: middle;
  color: #346552;
  cursor: pointer;
}


nav {
  background: rgba(16, 71, 41, 0.8);
}
nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
nav ul li {
  float: left;
}
nav ul li.tab{
  display: inline-block;
}
nav ul li a, .dropbtn {
  display: inline-block;
  text-align: center;
  padding: 12px 16px;
  min-width: 128px;
}

nav ul li.tab a{
  text-decoration: none;
  color: white;
  font-size: 18px;
  font-weight: 500;
}

nav ul li a:hover, .tab:hover .dropbtn {
  background-color: #1f4932;
}


nav .tab-menu{
  display: none;
  position: absolute;
  background-color: #1f4932;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  transition: all 2s ease;
  z-index: 100;
}
nav .tab-menu .link{
  display: block;
  min-width: 128px;
  padding: 10px 16px;
  text-align: left;
  text-decoration: none;
  color: white;
  font-size: 16px;
  font-weight: 500;
}

nav .tab-menu a:hover {background-color: #1f4932;}

nav .tab:hover .tab-menu {
  display: block;
}

.content {
  background: url("../images/bg.jpg") no-repeat top;
  background-size: 100% 25.5vw;
  background-color: #f1fbf5;
}


footer {
  padding: 54px 0 40px 0;
  background: url("../images/footbg.png") no-repeat #17512e center;
  background-size: 100% 100%;
}

footer .row {
  padding-bottom: 40px;
  border-bottom: 1px solid #315d40;
}

footer .row .title {
  color: #ffffff;
  font-size: 16px;
}

footer .row ul li,
footer .row a {
  color: #aebfb4;
  font-size: 14px;
}

footer .row ul li {
  margin: 8px 0px;
}

footer .location {
  margin: 12px 0px 10px;
  color: #aebfb4;
  font-size: 14px;
}

footer .right {
  padding-top: 10px;
  color: #c7d0cb;
  border-top: 1px solid #418859;
}

footer .right a {
  color: #c7d0cb;
}

footer .beian img {
  height: 12px;
  width: 12px;
}

@media screen and (max-width: 1200px) {
  nav ul li a, .dropbtn {
    min-width: 100px;
  }
  nav .tab-menu a{
    min-width: 100px;
  }
}
@media screen and (max-width: 768px) {
  header {
    height: 180px;
  }

  header .logo {
    margin-top: 20px;
  }

  header .logo a {
    height: 78px !important;
  }

  header .search-content {
    height: 60px;
  }

  nav {
    display: none;
  }
}