body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
button,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

body,
html {
  scroll-behavior: smooth;
  font-family: "Noto Sans SC";
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

@font-face {
  font-family: 'DIN-Medium';
  src: url('../fonts/DIN-Medium.otf');
}
:root {
  --Noto-Sans-SC: 'Noto Sans SC', sans-serif;
  --Noto-Serif-SC: 'Noto Serif SC', sans-serif;
  --Roboto: 'Roboto', sans-serif;
  --Abel: 'Abel', sans-serif;
  --Barlow-Condensed: 'Barlow Condensed', sans-serif;
  --Din: 'DIN-Medium', sans-serif;
}
a {
  text-decoration: none;
  color: #333;
  display: block;
}

p {
  color: #434343;
}

a:hover {
  text-decoration: none;
}

a img {
  border-bottom-style: none;
  border-right-style: none;
  border-top-style: none;
  border-left-style: none;
}

div {
  padding-bottom: 0px;
  list-style-type: none;
  margin: 0px;
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 0px;
}

li {
  padding-bottom: 0px;
  list-style-type: none;
  margin: 0px;
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 0px;
}

p,
strong,
em {
  padding-bottom: 0px;
  list-style-type: none;
  margin: 0px;
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 0px;
  font-weight: normal;
}

form {
  padding-bottom: 0px;
  list-style-type: none;
  margin: 0px;
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 0px;
}

em {
  font-style: normal;
  font-weight: normal;
}

table {
  padding-bottom: 0px;
  list-style-type: none;
  margin: 0px;
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 0px;
}

dt {
  padding-bottom: 0px;
  list-style-type: none;
  margin: 0px;
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 0px;
}

dl {
  padding-bottom: 0px;
  list-style-type: none;
  margin: 0px;
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 0px;
}

dd {
  padding-bottom: 0px;
  list-style-type: none;
  margin: 0px;
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 0px;
}

tr {
  padding-bottom: 0px;
  list-style-type: none;
  margin: 0px;
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 0px;
}

input,
textarea,
select {
  outline: none;
  border: 0;
}

.cl {
  height: 0px;
  clear: both;
}

.fl {
  float: left;
  display: block;
}

.fr {
  float: right;
}


.c {
  *zoom: 1;
}

.c:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
}

.txt-c {
  text-align: center;
}

.txt-l {
  text-align: left !important;
}

.txt-r {
  text-align: right;
}

.bg-black {
  background: #000;
}

.col-black {
  color: #000;
}

.col-white {
  color: #fff !important;
}

strong {
  font-weight: bold;
}

i {
  font-style: normal;
}

.m {
  margin: 0 auto;
}

.blue {
  color: #0056a1;
}
@font-face {
    font-family: "arial";
    src: url(../fonts/arial.ttf);
}

.container{
  width: 1400px;
  margin: 0 auto;
}
/* .zw{
  height: 170px;
} */
header .header .header-top{
  height: 100px;
}
header .header .header-top{
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all .3s;
}
header .header .header-top .logo{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .header .header-top form {
  position: relative;
}
header .header .header-top form input{
	width: 261px;
	height: 42px;
	background-color: #ffffff;
	border: solid 1px #356d3c;
  padding: 0 45px 0 15px;
  font-size: 14px;
}
header .header .header-top form button{
  position: absolute;
  top: 50%;
  right: 0;
  cursor: pointer;
  background-color: #356d3c;
  width: 60px;
	height: 42px;
  transform: translateY(-50%);
}
.header-bot{
  width: 100%;
  height: 60px;
	background-color: #356d3c;
}
.header-bot ul{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-bot ul li{
  transition: all .5s;
  width: calc(100% / 9);
  text-align: center;
  position: relative;
}
.header-bot ul li a{
  line-height: 60px;
  font-size: 18px;
	letter-spacing: 1px;
	color: #fbfcfb;
}
.header-bot ul li:hover{
	background-color: rgba(173,180,159,.9);
}
.header-bot ul .nav-active{
	background-color: rgba(173,180,159,.9) !important;
}
header{
  width: 100%;
  height: 160px;
  position: fixed;
  top: 0;
  z-index: 99;
  transition: all .3s;
}
.header-fixed{
  animation: top-bottom .6s ease-in-out;
  height: auto;
}
@keyframes top-bottom {
  0% {
    transform: translate(0, -100%);
  }
  100% {
    transform: translate(0, 0);
  }
}
.header-fixed .header-top{
  height: 0 !important;
  opacity: 0;
}


.header-bot ul li .son-nav{
  width: 100%;
  position: absolute;
  left: 0;
  top: 200%;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  transition: all .5s;
    box-shadow: 1px 1px 7px #bebaba;
}
.header-bot ul li .son-nav a{
    color: #333;
    font-size: 16px;
    line-height: 28px;
    transition: all .5s;
    border-bottom: 1px solid #e6e2e2;
    padding: 3% 1%;
}
.header-bot ul li .son-nav a:nth-last-child(1){
    border-bottom: none;
}
.header-bot ul li .son-nav a:hover{
    background: #356d3c;
  color: #fff;
  font-weight: 550;
}
.header-bot ul li:hover .son-nav{
  opacity: 1;
  visibility: visible;
  top: 100%;
}