@charset "UTF-8";
html,
body,
div,
p,
ul,
li,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
form,
button,
textarea,
iframe,
table,
th,
td,
dd,
dt {
  border: none;
  margin: 0;
  padding: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  outline: none;
  font-weight: normal;
  -moz-user-select: none;
  /*火狐*/
  -webkit-user-select: none;
  /*webkit浏览器*/
  -ms-user-select: none;
  /*IE10*/
  -khtml-user-select: none;
  /*早期浏览器*/
  user-select: none;
}

html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  width: 100%;
  background: #fffef1;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  width: 100%;
  position: relative;
  text-align: center;
  min-width: 1200px;
  padding-top: 1rem;
  max-width: 1920px;
  margin: 0 auto;
  overflow-x: hidden;
}

input::-webkit-search-cancel-button {
  display: none;
}

input[type=search]::-ms-clear {
  display: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  /*背景颜色*/
  box-shadow: 0 0 0 60px #eee inset;
  /*字的颜色*/
  -webkit-text-fill-color: #878787;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #55B53D;
}

a {
  display: block;
  color: black;
  text-decoration: none;
}

img {
  display: block;
}

@keyframes smoothScale {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.header {
  width: 100%;
  max-width: 1920px;
  height: 1rem;
  background: #fffef1;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  display: flex;
  align-items: center;
  z-index: 1000;
  min-width: 1200px;
}

.header .header-icon {
  margin-left: 1.28rem;
  width: 200px;
  height: 60px;
}

.header .header-icon img {
  width: 90%;
  height: 90%;
  display: block;
}

.header .header-bto {
  margin-left: 1.1rem;
  display: flex;
  align-items: center;
}

.header .header-bto .header-item {
  padding: 0 .25rem;
  position: relative;
  font-size: .26rem;
  color: #000;
  cursor: pointer;
}

.header .header-bto .header-item::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 1px;
  height: .5rem;
  background: linear-gradient(to bottom, transparent, #43a476, transparent);
}

.header .header-bto .header-item:last-child::after {
  display: none;
}

.header .header-bto .header-item:hover {
  color: #55b53d;
}

.header .header-bto .header-search {
  display: flex;
  margin-left: .32rem;
}

.header .header-bto .header-search i {
  font-size: .32rem;
  color: #55b53d;
  font-weight: 400;
  cursor: pointer;
}

.h-search-form-inner {
  display: none;
  position: fixed;
  top: 1rem;
  right: 0;
  width: 100%;
  padding: 0.3rem;
  z-index: 1000;
  line-height: 0;
  background: url("/assets/img/home-bg.png") no-repeat center center;
  background-size: cover;
}

.h-search-form-inner .search-form {
  position: relative;
}

.h-search-form-inner .search-form label {
  font-size: 0;
}

.h-search-form-inner .search-form label span {
  position: absolute;
  top: -10000em;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  word-wrap: normal !important;
}

.h-search-form-inner .search-form label .search-field {
  width: 5rem;
  padding: 0 0 0 0.2rem;
  height: 0.49rem;
  line-height: 1;
  opacity: .5;
  border-color: #e6e6e6;
  color: #55B53D;
  border: none;
  background: #f6f6f6;
  box-sizing: border-box;
  outline: none;
  font-family: "Nunito Sans", sans-serif;
  font-size: 0.16rem;
}

.h-search-form-inner .search-form label .search-submit {
  background: #55B53D;
  border: none;
  height: .48rem;
  width: 1.1rem;
  line-height: .4rem;
  outline: none;
  text-align: center;
  color: #b5b5b5;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  vertical-align: bottom;
}

.h-search-form-inner .search-form label .search-submit i {
  font-size: .42rem;
  color: #fff;
}

.h-search-form-inner .search-form label .close {
  display: inline;
  height: .49rem;
  line-height: .49rem;
  width: 0.49rem;
  background: #55B53D;
  color: #fff;
  border: none;
  font-size: .22rem;
  margin-left: .32rem;
  vertical-align: bottom;
}
