html {
  width: 100%;
  height: 100%;
}
body {
  width: 100%;
  min-height: 100%;
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin: 0;
  overflow-x: hidden;
}
@keyframes right {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.right {
  animation: right 500ms;
}
.left {
  animation: left 500ms;
}
.header {
  width: 100%;
  overflow: hidden;
}
.header .header_box {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .header_box .image img {
  display: block;
}
.header .header_box .menu_x {
  display: none;
  margin-right: 30px;
}
.header .header_box .menu_x .image_btn {
  padding: 4px 8px;
  background-color: #90d900;
  border-radius: 5px;
}
.header .header_box .menu_x .image_btn img {
  display: block;
  width: 40px;
}
.menu {
  width: 100%;
  background: linear-gradient(#90d900, #64ab00);
  display: flex;
  justify-content: center;
}
.menu .menu_box {
  margin: 0 auto;
}
.menu .menu_box ul {
  list-style: none;
  height: auto;
  margin: 0;
}
.menu .menu_box ul li {
  float: left;
  height: auto;
  position: relative;
}
.menu .menu_box ul li .menu_active {
  background: linear-gradient(#d9d9d9, #a2a2a2);
}
.menu .menu_box ul li a {
  height: 40px;
  display: block;
  text-decoration: none;
  color: white;
  font-size: 14px;
  padding: 0 40px;
  line-height: 40px;
}
.menu .menu_box ul li a:hover {
  background: linear-gradient(#d9d9d9, #a2a2a2);
}
.menu .menu_box ul li .menu2_box {
  display: none;
  width: 100%;
  padding: 10px 0;
  position: absolute;
  background-color: white;
  top: 40px;
  left: 0;
  z-index: 10;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.menu .menu_box ul li .menu2_box ul {
  width: 100%;
  margin: 0;
  padding: 0;
}
.menu .menu_box ul li .menu2_box ul li {
  width: 100%;
}
.menu .menu_box ul li .menu2_box ul li a {
  width: 100%;
  height: 30px;
  display: block;
  color: black;
  text-decoration: none;
  font-size: 14px;
  text-align: center;
  padding: initial;
  line-height: 30px;
}
.menu .menu_box ul li .menu2_box ul li a:hover {
  background: initial;
  color: #90d900;
}
.menu .menu_box ul li:hover .menu2_box {
  display: block;
}
.menu_hide {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  display: none;
  justify-content: space-between;
  overflow: hidden;
}
.menu_hide .menu_box {
  z-index: 40;
  width: 60%;
  padding-top: 20px;
  height: 100%;
  background-color: white;
  position: absolute;
}
.menu_hide .menu_box ul {
  padding: 0;
  margin: 0;
}
.menu_hide .menu_box ul li {
  text-decoration: none;
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  color: black;
}
.menu_hide .menu_box ul li a {
  width: calc(100% - 40px);
  padding: 0 20px;
  text-decoration: none;
  border-bottom: 1px solid #e3e3e3;
  color: black;
  line-height: 35px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.menu_hide .menu_box ul li a img {
  height: 14px;
  display: block;
}
.menu_hide .menu_box ul li ul {
  display: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
.menu_hide .menu_box ul li ul li {
  width: 100%;
  text-decoration: none;
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: black;
}
.menu_hide .menu_box ul li ul li a {
  width: calc(100% - 60px);
  padding: 0 20px 0 40px;
  text-decoration: none;
  border-bottom: 1px solid #e3e3e3;
  color: black;
  line-height: 35px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.menu_hide .menu_box ul li ul li a img {
  height: 14px;
  display: block;
}
.menu_hide .Mask {
  position: relative;
  z-index: 30;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.1;
}
.title_index {
  width: 100%;
  height: 40px;
  margin: 30px 0;
  overflow: hidden;
  border-bottom: 1px solid #7aad63;
  position: relative;
  display: flex;
}
.title_index .text1 {
  font-size: 16px;
  color: #7aad63;
  margin-left: 50px;
  line-height: 40px;
  white-space: nowrap;
}
.title_index .text2 {
  font-size: 12px;
  color: black;
  margin-left: 20px;
  text-transform: uppercase;
  margin-top: auto;
  margin-bottom: auto;
}
.title_index:before {
  content: '';
  background-color: #7aad63;
  width: 50px;
  height: 20px;
  transform: skewX(45deg);
  position: absolute;
  left: -20px;
  bottom: 0;
}
.main {
  width: 100%;
  margin-bottom: 30px;
}
.main .main_box {
  width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.main .main_box .product {
  width: 870px;
}
.main .main_box .product .product_box {
  width: calc(100% - 20px);
  padding: 0 10px;
}
.main .main_box .product .product_box .swiper .swiper-slide .image {
  overflow: hidden;
  padding: 5px;
  margin: 10px;
  border: 1px solid #efef;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}
.main .main_box .product .product_box .swiper .swiper-slide .image img {
  width: calc(100% - 10px);
  margin: auto 0;
  padding: 5px;
  border: 1px solid #efefef;
  display: block;
}
.main .main_box .new {
  width: 220px;
}
.main .main_box .new .new_con {
  width: 100%;
  height: calc(100% - 121px);
  display: flex;
  flex-flow: row wrap;
  padding-top: 10px;
}
.main .main_box .new .new_box {
  width: 200px;
  display: none;
  padding: 10px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  color: black;
}
.main .main_box .new .new_box .image {
  width: 100%;
  height: 140px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main .main_box .new .new_box .image img {
  /*width: 100%;*/
  height: 100%;
  display: block;
}
.main .main_box .new .new_box .new_text {
  width: 100%;
}
.main .main_box .new .new_box .new_text .text1 {
  font-size: 14px;
  margin-top: 2px;
}
.main .main_box .new .new_box .new_text .text2 {
  color: #888888;
  font-size: 12px;
  margin: 5px 0;
}
.main .main_box .new .new_box .new_text .text3 {
  font-size: 14px;
  color: #5f5f5f;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  word-break: break-all;
}
.main .main_box .new .new_box:nth-child(1) {
  display: block;
}
.main .main_box .about {
  width: 30%;
}
.main .main_box .about .about_box {
  width: 100%;
}
.main .main_box .about .about_box .text {
  padding: 0 10px;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 1px;
  text-align: justify;
}
.main .main_box .about .about_box .text p img {
  display: none;
}
.main .main_box .video {
  width: 30%;
}
.main .main_box .video .video_box {
  width: 100%;
}
.main .main_box .video .video_box video {
  padding: 0 10px;
  width: calc(100% - 20px);
}
.main .main_box .contact {
  width: 30%;
}
.main .main_box .contact .contact_box {
  width: 100%;
}
.main .main_box .contact .contact_box .text {
  width: 100%;
}
.main .main_box .contact .contact_box .text p {
  padding: 0 10px;
  font-size: 16px;
  margin: 5px 0;
}
.foot {
  width: 100%;
  height: 60px;
  font-size: 14px;
  color: white;
  background: #7aad63;
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}
.foot .foot1 {
  white-space: nowrap;
  text-decoration: none;
  color: white;
  margin: 0 6px;
}
.tabber {
  width: 100%;
  height: 50px;
  display: none;
  justify-content: space-between;
  background-color: #55a030;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.tabber .tabber_btn {
  width: 30%;
}
.tabber .tabber_btn a {
  height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  align-items: center;
  justify-content: center;
}
.tabber .tabber_btn a img {
  width: 22px;
}
.tabber .tabber_btn a span {
  display: block;
  font-size: 12px;
  color: white;
  margin-top: 3px;
}
@media (max-width: 1200px) {
  .header {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .header .header_box {
    width: 96%;
  }
  .header .header_box .menu_x {
    display: block;
  }
  .menu {
    display: none;
  }
}
@media (max-width: 1100px) {
  .main {
    width: 100%;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
  }
  .main .main_box {
    width: 96%;
    margin: 0 auto;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
  }
  .main .main_box .product {
    width: 100%;
  }
  .main .main_box .new {
    width: 100%;
  }
  .main .main_box .new .new_con {
    width: 100%;
    height: auto;
    display: flex;
    flex-flow: row wrap;
  }
  .main .main_box .new .new_box {
    width: 100%;
    display: flex;
    margin-bottom: 10px;
  }
  .main .main_box .new .new_box .image {
    width: 15%;
    height: auto;
    display: flex;
    align-items: center;
  }
  .main .main_box .new .new_box .image img {
    width: 100%;
    height: auto;
    display: block;
  }
  .main .main_box .new .new_box .new_text {
    width: calc(85% - 40px);
    padding: 10px 20px;
  }
  .main .main_box .new .new_box .new_text .text1 {
    font-size: 18px;
  }
  .main .main_box .new .new_box .new_text .text2 {
    color: #888888;
    font-size: 14px;
  }
  .main .main_box .new .new_box .new_text .text3 {
    font-size: 14px;
    -webkit-line-clamp: 2;
  }
  .main .main_box .new .new_box:nth-child(1) {
    display: flex;
  }
  .main .main_box .about {
    width: 100%;
  }
  .main .main_box .video {
    width: 45%;
  }
  .main .main_box .video .video_box {
    width: 100%;
  }
  .main .main_box .contact {
    width: 45%;
  }
}
@media (max-width: 760px) {
  .main .main_box .new .new_box .image {
    width: 20%;
  }
  .main .main_box .new .new_box .new_text .text3 {
    font-size: 14px;
    -webkit-line-clamp: 2;
  }
}
@media (max-width: 540px) {
  body {
    padding-bottom: 80px;
  }
  .header .header_box .image {
    width: 60%;
  }
  .header .header_box .image img {
    width: 100%;
  }
  .header .header_box .menu_x {
    margin-right: 10px;
  }
  .header .header_box .menu_x .image_btn img {
    width: 32px;
  }
  .main .main_box .new .new_box .new_text {
    padding: 5px 20px;
  }
  .main .main_box .new .new_box .new_text .text1 {
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .main .main_box .new .new_box .new_text .text2 {
    font-size: 12px;
  }
  .main .main_box .new .new_box .new_text .text3 {
    -webkit-line-clamp: 1;
    display: none;
  }
  .main .main_box .video {
    width: 109%;
  }
  .main .main_box .video .video_box {
    width: 100%;
  }
  .main .main_box .contact {
    width: 100%;
  }
  .foot {
    height: 30px;
    bottom: 50px;
    font-size: 12px;
    background: #c3f4bc;
  }
  .foot .foot1 {
    color: black;
  }
  .tabber {
    display: flex;
  }
}
.top_image {
  width: 100%;
}
.top_image img {
  width: 100%;
  display: block;
}
.other_content {
  width: 100%;
  background-color: #f2f2f2;
}
.other_content .content_box {
  width: 1200px;
  background-color: white;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.other_content .content_box .list_bar {
  width: calc(25% - 80px);
  padding: 0 40px;
  margin-bottom: 40px;
}
.other_content .content_box .list_bar .bar_title {
  width: 100%;
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.other_content .content_box .list_bar .list {
  width: 100%;
}
.other_content .content_box .list_bar .list a {
  display: block;
  width: calc(100% - 20px);
  padding: 20px 10px;
  text-decoration: none;
  background-color: #55a030;
  color: white;
  border-bottom: 1px solid white;
}
.other_content .content_box .list_main {
  width: calc(75% - 40px);
  padding-right: 40px;
  margin-bottom: 40px;
}
.other_content .content_box .list_main .tab {
  width: 100%;
  padding: 40px 0;
  font-size: 15px;
  color: #818181;
}
.other_content .content_box .list_main .tab a {
  text-decoration: none;
  color: #747474;
}
.other_content .content_box .list_main .tab .tab_g {
  margin: 0 3px;
}
.other_content .content_box .list_main .tab .tab_c {
  color: black;
}
.other_content .content_box .list_main .tab .tab_c:hover {
  color: #55a030;
}
.list_conent_1 {
  width: 100%;
}
.list_conent_1 .list_conent_title {
  width: 100%;
  text-align: center;
  font-size: 26px;
  color: #55a030;
  margin-bottom: 20px;
}
.list_conent_1 .time {
  width: 100%;
  text-align: center;
  font-size: 14px;
  color: #55a030;
  margin-bottom: 20px;
}
.list_conent_1 .cont_box {
  width: calc(100% - 10px);
  padding: 8px 5px 0 5px;
  border-top: 1px solid #cacaca;
  text-align: justify;
  word-wrap: break-word;
  white-space: normal;
  word-break: break-all;
}
.list_conent_1 .cont_box img {
  width: 100%;
}
.list_conent_1 .contact_box {
  text-align: center;
}
.list_conent_2 {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
}
.list_conent_2 a {
  width: calc((100% - 46px) / 3);
  display: block;
  text-decoration: none;
  color: #5a5a5a;
  font-size: 16px;
  margin-right: 20px;
  margin-bottom: 25px;
  border: 1px solid #55a030;
}
.list_conent_2 a .image {
  width: 100%;
}
.list_conent_2 a .image img {
  width: 100%;
  display: block;
  padding: 15px 0;
}
.list_conent_2 a .text {
  width: calc(100% - 40px);
  padding: 20px 20px;
  border-top: 1px solid #55a030;
}
.list_conent_2 a:nth-child(3n) {
  margin-right: 0;
}
.list_conent_3 {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
}
.list_conent_3 a {
  width: calc((100% - 46px) / 3);
  display: block;
  text-decoration: none;
  color: #5a5a5a;
  font-size: 16px;
  margin-right: 20px;
  margin-bottom: 25px;
  border: 1px solid #55a030;
}
.list_conent_3 a .image {
  width: 100%;
}
.list_conent_3 a .image img {
  width: 100%;
  display: block;
}
.list_conent_3 a .text {
  padding: 20px;
  width: calc(100% - 40px);
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.list_conent_3 a .text .list_3_title {
  width: 100%;
  color: black;
  font-size: 5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.list_conent_3 a .text .list_3_text {
  width: 100%;
  font-size: 12px;
  color: #7f7f7f;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  word-break: break-all;
}
.list_conent_3 a .text .list_3_time {
  width: 100%;
  font-size: 12px;
  color: #b1b1b1;
  padding: 10px 0;
}
.list_conent_3 a:nth-child(3n) {
  margin-right: 0;
}
.pagination {
  width: 100%;
  display: flex;
  justify-content: center;
}
.pagination .btn-group {
  width: 160px;
  margin: 5px 0 20px 0;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}
.pagination .btn-group .pagebtn_a,
.pagination .btn-group .pagebtn_s {
  width: 60px;
  height: 30px;
  border: 1px solid #D7D4D4;
  line-height: 30px;
  text-align: center;
  color: black;
  text-decoration:none;
}
.pagination .btn-group .pagebtn_a:hover {
  background-color: #55a030;
  color: white;
}
.pagination .btn-group .pagebtn_s {
  background-color: #f9f9f9;
}
@media (max-width: 1200px) {
  .other_content .content_box {
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .other_content .content_box .list_bar {
    width: 96%;
    padding: initial;
    margin-bottom: 0;
  }
  .other_content .content_box .list_bar .bar_title {
    display: none;
  }
  .other_content .content_box .list_bar .list {
    margin-top: 20px;
  }
  .other_content .content_box .list_main {
    width: 96%;
    padding: initial;
  }
}
@media (max-width: 760px) {
  .list_conent_2 {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
  }
  .list_conent_2 a {
    width: calc((100% - 24px) / 2);
    display: block;
    text-decoration: none;
    color: #5a5a5a;
    font-size: 14px;
    margin-right: 0;
    margin-bottom: 25px;
    border: 1px solid #55a030;
  }
  .list_conent_2 a .text {
    padding: 5px 20px;
  }
  .list_conent_2 a:nth-child(2n) {
    margin-left: 20px;
  }
  .list_conent_2 a:nth-child(3n) {
    margin-right: 0;
  }
  .list_conent_3 a {
    width: 100%;
    display: flex;
    font-size: 14px;
    margin-right: 0;
    border: 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  }
  .list_conent_3 a .image {
    width: 30%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .list_conent_3 a .image img {
    width: 100%;
    display: block;
  }
  .list_conent_3 a .text {
    padding: 8px 20px;
    width: calc(70% - 40px);
  }
  .list_conent_3 a .text .list_3_title {
    font-size: 17px;
  }
  .list_conent_3 a .text .list_3_text {
    font-size: 14px;
    -webkit-line-clamp: 2;
  }
  .list_conent_3 a .text .list_3_time {
    font-size: 12px;
    padding: 5px 0;
  }
  .list_conent_3 a:nth-child(3n) {
    margin-right: 0;
  }
}
@media (max-width: 560px) {
  .other_content .content_box .list_bar .list {
    width: 100%;
    overflow-y: scroll;
    display: flex;
    background-color: #55a030;
  }
  .other_content .content_box .list_bar .list a {
    width: 25%;
    flex-shrink: 0;
    padding: 8px 0;
    border-right: 1px solid white;
    font-size: 15px;
    text-align: center;
  }
  .other_content .content_box .list_bar .list a:nth-last-child(1) {
    border-right: 0;
  }
  .other_content .content_box .list_main {
    width: 96%;
    padding: initial;
    margin-bottom: 10px;
  }
  .other_content .content_box .list_main .tab {
    padding: 15px 0;
    font-size: 14px;
  }
  .list_conent_1 .list_conent_title {
    margin-bottom: 10px;
  }
  .list_conent_1 .time {
    margin-bottom: 1;
  }
  .list_conent_3 a .text {
    padding: 5px 20px;
  }
  .list_conent_3 a .text .list_3_title {
    font-size: 14px;
  }
  .list_conent_3 a .text .list_3_text {
    font-size: 12px;
    -webkit-line-clamp: 1;
  }
  .list_conent_3 a .text .list_3_time {
    font-size: 10px;
  }
}
