html {
  width: 100%;
  height: 100%;
  position: relative;
}
body {
  width: 100%;
  height: 100%;
  position: relative;
  margin: 0;
}
.body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
@media (max-width: 760px) {
  .body {
    height: auto;
    overflow: visible;
  }
}
.page {
  width: 100%;
  height: 100%;
  transition: 1200ms;
  transform: translateY(0px);
  position: relative;
  z-index: 2;
}
.page .box {
  width: 100%;
  height: 100%;
  position: relative;
}
@media (max-width: 760px) {
  .page {
    height: auto;
    padding-bottom: 100px;
    min-height: calc(100% - 100px);
    display: flex;
    flex-direction: column;
  }
  .page .t_swiper {
    order: 1;
  }
  .page .menu2 {
    order: 2;
  }
  .page .our {
    order: 3;
  }
  .page .product {
    order: 4;
  }
  .page .power {
    order: 6;
  }
  .page .new {
    order: 5;
  }
  .page .contact {
    order: 7;
  }
}
.o_page {
  width: 100%;
  height: auto;
  position: relative;
  padding-bottom: 30px;
  min-height: calc(100% - 30px);
}
@media (max-width: 760px) {
  .o_page {
    padding-bottom: 100px;
    min-height: calc(100% - 100px);
  }
}
@keyframes opacity {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.opacity {
  animation: opacity 1000ms;
}
.none {
  display: none!important;
}
@keyframes up_down {
  0% {
    transform: translateY(-8px);
  }
  50% {
    transform: translateY(8px);
  }
  100% {
    transform: translateY(-8px);
  }
}
.up_down {
  animation: up_down 2000ms linear infinite;
}
.href_btn {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 40px;
  width: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.href_btn .btn {
  margin: 15px 0;
  transition: 500ms;
}
.href_btn .btn i {
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: white;
}
.href_btn .btn_active {
  display: block;
  padding: 4px;
  border-radius: 50%;
  border: 1px solid white;
}
@media (max-width: 760px) {
  .href_btn {
    display: none;
  }
}
.header {
  width: 100%;
  background-color: black;
  padding: 40px 0;
  position: absolute;
  z-index: 30;
  top: 0;
  left: 0;
}
.header .header_box {
  width: 1500px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .header_box .logo {
  width: 260px;
}
.header .header_box .logo img {
  width: 100%;
  display: block;
}
.header .header_box ul {
  margin: 0;
  padding: 0;
  display: flex;
}
.header .header_box ul li {
  list-style: none;
  margin-right: 50px;
  position: relative;
}
.header .header_box ul li a {
  text-decoration: none;
  display: block;
  font-weight: 600;
  color: #c9b899;
  font-size: 18px;
}
.header .header_box ul li ul {
  display: none;
  width: auto;
  min-width: 100%;
  background-color: black;
  padding: 10px 0;
  position: absolute;
  top: 100%;
  left: 0;
}
.header .header_box ul li ul li {
  padding: 5px 10px;
  margin-right: 0;
  margin-bottom: 10px;
}
.header .header_box ul li ul li a {
  white-space: nowrap;
}
.header .header_box ul li ul li:hover {
  background-color: #c9b899;
}
.header .header_box ul li ul li:hover a {
  color: black;
}
.header .header_box ul li:hover {
  border-bottom: 1px solid #c9b899;
}
.header .header_box ul li:hover ul {
  display: block;
}
.header .header_box ul li:nth-last-child(1) {
  margin-right: 0;
}
@media (max-width: 1500px) {
  .header {
    padding: 25px 0;
  }
  .header .header_box {
    width: 96%;
    flex-direction: column;
  }
  .header .header_box .logo {
    width: 100%;
  }
  .header .header_box .logo img {
    width: 260px;
    margin: 0 auto;
  }
  .header .header_box ul {
    width: 100%;
    margin-top: 20px;
    justify-content: space-around;
  }
  .header .header_box ul li {
    margin-right: 0;
  }
}
@media (max-width: 760px) {
  .header {
    padding: 15px 0;
  }
  .header .header_box {
    width: 100%;
  }
  .header .header_box .logo img {
    width: 260px;
  }
  .header .header_box ul {
    display: none;
  }
}
.float_image {
  width: 100%;
  position: absolute;
  z-index: 30;
  bottom: 10%;
  left: 0;
}
.float_image img {
  width: 80px;
  margin: 0 auto;
  display: block;
}
@media (max-width: 760px) {
  .float_image {
    bottom: 15%;
  }
  .float_image img {
    width: 60px;
    margin: 0 auto;
    display: block;
  }
}
.menu2 {
  width: 100%;
  padding: 8px 12px;
  background: url('../img/009.jpg') no-repeat;
  background-size: 100% 100%;
  border-top: 1px solid white;
  box-sizing: border-box;
  display: none;
  justify-content: space-between;
  flex-flow: row wrap;
}
.menu2 a {
  display: block;
  text-decoration: none;
  width: 25%;
  padding: 15px 0;
  margin-bottom: 8px;
  color: #75401e;
  font-size: 17px;
  text-align: center;
  background-image: linear-gradient(to bottom, #e3c8b7 30%, #edd2bf, #b98868 75%);
  position: relative;
}
.menu2 a:before {
  content: "";
  width: 2px;
  height: 80%;
  background-color: #75401e;
  position: absolute;
  top: 10%;
  right: -1px;
}
.menu2 a:nth-child(4n):before {
  display: none;
}
.menu2 a:nth-child(1) {
  border-radius: 7px 0 0 7px;
}
.menu2 a:nth-child(4) {
  border-radius: 0 7px 7px 0;
}
.menu2 a:nth-child(5) {
  border-radius: 7px 0 0 7px;
}
.menu2 a:nth-child(8) {
  border-radius: 0 7px 7px 0;
}
@media (max-width: 760px) {
  .menu2 {
    display: flex;
  }
}
.our {
  background: url('../img/004.jpg') no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.our .our_box {
  width: 100%;
  display: flex;
  justify-content: center;
}
.our .our_box .left_box {
  width: 700px;
  box-sizing: border-box;
  padding: 40px 20px;
  background-color: rgba(65, 42, 19, 0.8);
  position: relative;
}
.our .our_box .left_box .title {
  width: 100%;
  display: flex;
  margin-bottom: 20px;
}
.our .our_box .left_box .title span:nth-child(1) {
  display: block;
  color: #d4bd93;
  font-size: 24px;
}
.our .our_box .left_box .title span:nth-child(2) {
  margin-left: 10px;
  display: block;
  color: #d4bd93;
  text-transform: uppercase;
  font-size: 22px;
}
.our .our_box .left_box p {
  margin: 0;
  margin-bottom: 20px;
  width: calc(100% - 100px);
  text-align: justify;
  color: #d4bd93;
  line-height: 24px;
  font-size: 15px;
}
.our .our_box .left_box .video {
  width: 100%;
  position: relative;
}
.our .our_box .left_box .video video {
  position: absolute;
  top: 35px;
  left: 50%;
  margin-left: -250px;
  width: 500px;
  display: block;
}
.our .our_box .left_box .more {
  width: 60px;
  text-decoration: none;
  position: absolute;
  right: 0;
  top: 19%;
}
.our .our_box .left_box .more span {
  width: 60px;
  height: 70px;
  display: block;
  text-align: center;
  line-height: 70px;
  color: #46270b;
  background-color: #d5be95;
}
.our .our_box .left_box .more img {
  width: 60px;
  display: block;
}
.our .our_box .left_box .more .b {
  display: none;
}
.our .our_box .right_box {
  width: 300px;
  position: relative;
}
.our .our_box .right_box .title {
  width: 100%;
  height: 150px;
  background: url('../img/005_1.jpg') no-repeat;
  background-size: 100% 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.our .our_box .right_box .title span {
  display: block;
  width: 60px;
  text-align: center;
  color: #46270b;
  padding: 10px 20px;
  border: 2px solid #46270b;
  font-size: 24px;
}
.our .our_box .right_box .text {
  background-color: #64441e;
  width: 100%;
  height: calc(100% - 150px);
  box-sizing: border-box;
  padding: 25px 15px;
}
.our .our_box .right_box .text p {
  margin: 0;
  margin-bottom: 22px;
  color: #d4bd93;
}
.our .our_box .right_box .more {
  position: absolute;
  left: 0;
  top: 19%;
}
.our .our_box .right_box .more img {
  width: 70px;
  display: block;
}
@media (max-width: 1200px) {
  .our .our_box .left_box {
    width: 90%;
  }
  .our .our_box .left_box .video video {
    position: initial;
    margin: 0 auto;
  }
  .our .our_box .right_box {
    display: none;
  }
}
@media (max-width: 760px) {
  .our {
    background: transparent;
    padding: 70px 0 20px 0;
  }
  .our .our_box .left_box {
    padding: 10px 15px 50px 15px;
    background: url('../img/004_2.jpg') no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
  }
  .our .our_box .left_box .title {
    order: 2;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .our .our_box .left_box .title span:nth-child(1) {
    padding: 0 40px;
    font-size: 26px;
    position: relative;
  }
  .our .our_box .left_box .title span:nth-child(1):before {
    content: "";
    width: 25px;
    height: 10px;
    background-color: #d4bd93;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -5px;
  }
  .our .our_box .left_box .title span:nth-child(1):after {
    content: "";
    width: 25px;
    height: 10px;
    background-color: #d4bd93;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -5px;
  }
  .our .our_box .left_box .title span:nth-child(2) {
    margin-left: 0;
    color: #a99b90;
    font-size: 18px;
  }
  .our .our_box .left_box p {
    order: 3;
    width: 100%;
    margin-bottom: 25px;
    line-height: 28px;
    font-size: 18px;
  }
  .our .our_box .left_box .video {
    order: 1;
    margin-top: -50px;
    margin-bottom: 15px;
  }
  .our .our_box .left_box .video video {
    width: 90%;
  }
  .our .our_box .left_box .more {
    width: auto;
    right: 15px;
    top: initial;
    bottom: 10px;
    display: flex;
    justify-content: center;
  }
  .our .our_box .left_box .more span {
    order: 2;
    width: 50px;
    height: 40px;
    font-size: 14px;
    line-height: 40px;
  }
  .our .our_box .left_box .more img {
    order: 1;
    width: auto;
    height: 40px;
  }
  .our .our_box .left_box .more .a {
    display: none;
  }
  .our .our_box .left_box .more .b {
    display: block;
  }
}
.product {
  background: url('../img/008_1.jpg') no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.product .pro_box {
  width: 1000px;
}
.product .pro_box .title_box {
  width: 100%;
  background-color: rgba(65, 42, 19, 0.8);
  position: relative;
}
.product .pro_box .title_box .title {
  width: 250px;
  height: 120px;
  background: url('../img/005_2.jpg') no-repeat;
  background-size: 100% 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.product .pro_box .title_box .title span:nth-child(1) {
  color: #8c5625;
  font-size: 24px;
}
.product .pro_box .title_box .title span:nth-child(2) {
  color: #8c5625;
  text-transform: uppercase;
  font-size: 12px;
}
.product .pro_box .title_box a {
  text-decoration: none;
  width: 120px;
  height: 120px;
  background-color: #6b4b25;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -30px;
  right: 0;
}
.product .pro_box .title_box a span {
  display: block;
  width: 70px;
  height: 70px;
  padding: 10px;
  box-sizing: border-box;
  background: url('../img/006.png') no-repeat;
  background-size: 100% 100%;
  text-align: center;
  line-height: 25px;
  color: #9d855c;
  font-size: 18px;
}
.product .pro_box .content {
  width: 100%;
  height: 360px;
  display: flex;
  justify-content: center;
}
.product .pro_box .content .image1 {
  width: 33%;
  height: 100%;
  overflow: hidden;
}
.product .pro_box .content .image1 img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.product .pro_box .content .image2 {
  width: 22%;
  height: 100%;
  overflow: hidden;
}
.product .pro_box .content .image2 img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.product .pro_box .content a {
  width: 25%;
  display: block;
  text-decoration: none;
}
.product .pro_box .content a .image {
  width: 100%;
  height: 40%;
  overflow: hidden;
}
.product .pro_box .content a .image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.product .pro_box .content a p {
  margin: 0;
  width: 100%;
  height: 60%;
  box-sizing: border-box;
  padding: 15px 10px;
  background-color: #6b4b25;
}
.product .pro_box .content a p span {
  width: 100%;
  text-align: justify;
  color: #d4bd93;
  display: block;
  margin-bottom: 10px;
}
.product .pro_box .content a p span:nth-child(1) {
  font-size: 22px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product .pro_box .content a p span:nth-child(2) {
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.product .pro_box .content a .image_t2 {
  display: none;
}
.product .pro_box .content a:nth-child(3) p {
  height: 35%;
  background-color: #ceb68a;
}
.product .pro_box .content a:nth-child(3) p span {
  color: #46270b;
}
.product .pro_box .content a:nth-child(3) p span:nth-child(2) {
  -webkit-line-clamp: 2;
}
.product .pro_box .content a:nth-child(3) .image_t2 {
  display: block;
  width: 100%;
  height: 25%;
}
.product .pro_box .content a:nth-child(3) .image_t2 img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.product .pro_box .content a:nth-child(n+4) {
  display: none;
}
.product .more2 {
  display: none;
  width: auto;
  text-decoration: none;
  position: absolute;
  right: 15px;
  top: initial;
  bottom: 10px;
  justify-content: center;
}
.product .more2 span {
  width: 50px;
  height: 40px;
  font-size: 14px;
  line-height: 40px;
  color: #46270b;
  background-color: #d5be95;
  text-align: center;
}
.product .more2 img {
  height: 40px;
}
@media (max-width: 1100px) {
  .product .pro_box {
    width: 700px;
  }
  .product .pro_box .content .image1 {
    width: 20%;
  }
  .product .pro_box .content .image2 {
    width: 14%;
  }
  .product .pro_box .content a {
    width: 33%;
  }
}
@media (max-width: 760px) {
  .product {
    background: url('../img/008_2.jpg') no-repeat;
    padding: 20px 0 60px 0;
  }
  .product .pro_box {
    width: 96%;
  }
  .product .pro_box .title_box {
    background-color: rgba(65, 42, 19, 0);
    margin-bottom: 15px;
  }
  .product .pro_box .title_box .title {
    width: 100%;
    height: auto;
    background: initial;
  }
  .product .pro_box .title_box .title span:nth-child(1) {
    color: #d5be94;
    padding: 0 40px;
    font-size: 26px;
    position: relative;
  }
  .product .pro_box .title_box .title span:nth-child(1):before {
    content: "";
    width: 25px;
    height: 10px;
    background-color: #d4bd93;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -5px;
  }
  .product .pro_box .title_box .title span:nth-child(1):after {
    content: "";
    width: 25px;
    height: 10px;
    background-color: #d4bd93;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -5px;
  }
  .product .pro_box .title_box .title span:nth-child(2) {
    color: #a19d9a;
    font-size: 14px;
  }
  .product .pro_box .title_box a {
    display: none;
  }
  .product .pro_box .content {
    padding: 8px;
    height: auto;
    box-sizing: border-box;
    background-color: #d2d2d0;
    background-color: rgba(200, 200, 199, 0.9);
    border-radius: 10px;
    flex-flow: row wrap;
    justify-content: space-between;
  }
  .product .pro_box .content .image1 {
    display: none;
  }
  .product .pro_box .content .image2 {
    display: none;
  }
  .product .pro_box .content a {
    width: calc(50% - 5px);
    margin-bottom: 20px;
    border-bottom: 10px solid #731b0f;
  }
  .product .pro_box .content a .image {
    height: auto;
    overflow: initial;
  }
  .product .pro_box .content a .image img {
    width: 100%;
    height: auto;
    object-fit: initial;
  }
  .product .pro_box .content a p {
    margin: 0;
    width: 100%;
    height: auto;
    padding: 15px 10px;
    background-color: #ebd4b2;
    display: flex;
    flex-direction: column;
  }
  .product .pro_box .content a p span {
    margin-bottom: 10px;
  }
  .product .pro_box .content a p span:nth-child(1) {
    width: auto;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    margin-bottom: 10px;
    border-radius: 20px;
    padding: 3px 10px;
    background-color: #731b0f;
    color: #ebd4b2;
    font-size: 17px;
  }
  .product .pro_box .content a p span:nth-child(2) {
    height: 65px;
    color: #8c5726;
  }
  .product .pro_box .content a .image_t2 {
    display: none;
  }
  .product .pro_box .content a:nth-child(3) p {
    height: auto;
    background-color: #ebd4b2;
  }
  .product .pro_box .content a:nth-child(3) p span:nth-child(1) {
    color: #ebd4b2;
  }
  .product .pro_box .content a:nth-child(3) p span:nth-child(2) {
    -webkit-line-clamp: 3;
  }
  .product .pro_box .content a:nth-child(3) .image_t2 {
    display: none;
  }
  .product .pro_box .content a:nth-child(n+4) {
    display: block;
  }
  .product .more2 {
    display: flex;
  }
}
.power {
  background: url('../img/010.jpg') no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.power .title {
  width: 96%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  position: relative;
}
.power .title img {
  width: 1920px;
  display: block;
  margin: 0 auto;
}
.power .title a {
  display: block;
  width: 80px;
  height: 80px;
  position: absolute;
  left: 50%;
  bottom: 0;
  margin-left: -40px;
}
.power .title2 {
  display: none;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.power .title2 span:nth-child(1) {
  color: #46270a;
  padding: 0 40px;
  font-size: 26px;
  position: relative;
}
.power .title2 span:nth-child(1):before {
  content: "";
  width: 25px;
  height: 10px;
  background-color: #46270a;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -5px;
}
.power .title2 span:nth-child(1):after {
  content: "";
  width: 25px;
  height: 10px;
  background-color: #46270a;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -5px;
}
.power .title2 span:nth-child(2) {
  color: #956e2e;
  text-transform: uppercase;
  font-size: 14px;
}
.power .power_box {
  width: 1000px;
  margin-top: 70px;
  position: relative;
}
.power .power_box .swiper-button-next,
.power .power_box .swiper-button-prev:after {
  color: rgba(0, 0, 0, 0) !important;
}
.power .power_box .swiper-button-next,
.power .power_box .swiper-button-prev {
  display: none;
  width: 25px;
  height: 40px;
  margin-top: -20px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.power .power_box .swiper-button-next {
  right: 0;
  background-image: url('../img/right.png');
}
.power .power_box .swiper-button-prev {
  left: 0;
  background-image: url('../img/left.png');
}
@media (max-width: 1100px) {
  .power .power_box {
    width: 700px;
  }
}
@media (max-width: 760px) {
  .power {
    padding: 30px 0;
  }
  .power .title {
    display: none;
  }
  .power .title2 {
    display: flex;
  }
  .power .power_box {
    width: 92%;
    box-sizing: border-box;
    padding: 0 35px;
    margin-top: 20px;
  }
  .power .power_box .swiper-button-next,
  .power .power_box .swiper-button-prev {
    display: block;
  }
}
.new {
  background: url('../img/013.jpg') no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.new .new_box {
  width: 1000px;
  padding: 40px 60px;
  box-sizing: border-box;
  background-color: rgba(247, 223, 179, 0.8);
  display: flex;
  justify-content: space-between;
}
.new .new_box .left_box {
  width: 68%;
}
.new .new_box .left_box .title {
  margin-left: 30px;
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
}
.new .new_box .left_box .title span:nth-child(1) {
  color: #8d5826;
  font-size: 24px;
}
.new .new_box .left_box .title span:nth-child(2) {
  color: #8d5826;
  text-transform: uppercase;
  font-size: 12px;
}
.new .new_box .left_box .title i {
  display: block;
  margin-top: 2px;
  width: 70px;
  height: 4px;
  background-color: #8d5826;
}
.new .new_box .left_box .content {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.new .new_box .left_box .content .column {
  width: 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.new .new_box .left_box .content .column a {
  text-decoration: none;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  text-align: center;
  line-height: 80px;
  color: #bb996f;
  background-color: #8d5826;
  font-size: 12px;
}
.new .new_box .left_box .content .list {
  width: calc(100% - 100px);
}
.new .new_box .left_box .content .list a {
  text-decoration: none;
  margin-bottom: 25px;
}
.new .new_box .left_box .content .list a .image {
  width: 49%;
  display: none;
  align-items: center;
}
.new .new_box .left_box .content .list a .image img {
  width: 100%;
  display: block;
}
.new .new_box .left_box .content .list a .text span {
  display: block;
  color: #8d5826;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  padding-bottom: 5px;
  font-size: 19px;
}
.new .new_box .left_box .content .list a .text p {
  margin: 0;
  color: #8d5826;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 15px;
}
.new .new_box .left_box .content .list a .text .btn {
  width: 100%;
  margin-top: 5px;
  display: flex;
  justify-content: flex-end;
}
.new .new_box .left_box .content .list a .text .btn img {
  width: 30px;
  display: block;
}
.new .new_box .left_box .content .list a .text .btn .b {
  display: none;
}
.new .new_box .left_box .content .list a:nth-child(n+4) {
  display: none;
}
.new .new_box .left_box .content .list a:hover .text span {
  font-weight: 600;
}
.new .new_box .right_box {
  width: 28%;
  margin-top: 40px;
}
.new .new_box .right_box a {
  width: 100%;
  text-decoration: none;
}
.new .new_box .right_box a .image {
  width: 100%;
  margin-bottom: 10px;
}
.new .new_box .right_box a .image img {
  width: 100%;
  display: block;
}
.new .new_box .right_box a .text {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}
.new .new_box .right_box a .text span:nth-child(1) {
  color: #8d5826;
  font-size: 24px;
}
.new .new_box .right_box a .text span:nth-child(2) {
  color: #8d5826;
  text-transform: uppercase;
  font-size: 12px;
}
.new .new_box .right_box a .text i {
  display: block;
  margin-top: 2px;
  width: 70px;
  height: 4px;
  background-color: #8d5826;
}
.new .new_box .right_box a strong {
  display: block;
  font-weight: 400;
  color: #8d5826;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  padding-bottom: 5px;
  font-size: 19px;
}
.new .new_box .right_box a p {
  margin: 0;
  color: #8d5826;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: 15px;
}
.new .new_box .right_box a .btn {
  width: 100%;
  margin-top: 5px;
  display: flex;
  justify-content: flex-end;
}
.new .new_box .right_box a .btn img {
  width: 30px;
  display: block;
}
.new .new_box .right_box a:hover span {
  font-weight: 600;
}
.new .new_box .right_box a:nth-child(n+2) {
  display: none;
}
.new .more2 {
  display: none;
  width: auto;
  text-decoration: none;
  position: absolute;
  right: 15px;
  top: initial;
  bottom: 10px;
  justify-content: center;
}
.new .more2 span {
  width: 50px;
  height: 40px;
  font-size: 14px;
  line-height: 40px;
  color: #46270b;
  background-color: #d5be95;
  text-align: center;
}
.new .more2 img {
  height: 40px;
}
@media (max-width: 1100px) {
  .new .new_box {
    width: 700px;
    padding: 40px 30px;
  }
}
@media (max-width: 760px) {
  .new {
    background: #f3ece6;
    padding: 20px 0 60px 0;
  }
  .new .new_box {
    width: 96%;
    padding: 0;
    background-color: rgba(247, 223, 179, 0);
  }
  .new .new_box .left_box {
    width: 100%;
  }
  .new .new_box .left_box .title {
    margin-left: 0;
    margin-bottom: 15px;
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  .new .new_box .left_box .title span:nth-child(1) {
    color: #46270b;
    padding: 0 40px;
    font-size: 26px;
    position: relative;
  }
  .new .new_box .left_box .title span:nth-child(1):before {
    content: "";
    width: 25px;
    height: 10px;
    background-color: #46270b;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -5px;
  }
  .new .new_box .left_box .title span:nth-child(1):after {
    content: "";
    width: 25px;
    height: 10px;
    background-color: #46270b;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -5px;
  }
  .new .new_box .left_box .title span:nth-child(2) {
    color: #b7aaa3;
    font-size: 14px;
  }
  .new .new_box .left_box .title i {
    display: none;
  }
  .new .new_box .left_box .content {
    flex-direction: column;
  }
  .new .new_box .left_box .content .column {
    display: none;
  }
  .new .new_box .left_box .content .list {
    width: 100%;
  }
  .new .new_box .left_box .content .list a {
    width: 100%;
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
  }
  .new .new_box .left_box .content .list a .image {
    display: flex;
  }
  .new .new_box .left_box .content .list a .text {
    width: 49%;
    padding: 5px 0;
  }
  .new .new_box .left_box .content .list a .text span {
    padding-bottom: 5px;
    font-size: 17px;
  }
  .new .new_box .left_box .content .list a .text p {
    font-size: 13px;
  }
  .new .new_box .left_box .content .list a .text .btn img {
    width: 30px;
    display: block;
  }
  .new .new_box .left_box .content .list a .text .btn .a {
    display: none;
  }
  .new .new_box .left_box .content .list a .text .btn .b {
    display: block;
  }
  .new .new_box .left_box .content .list a:nth-child(n+4) {
    display: flex;
  }
  .new .new_box .left_box .content .list a:nth-child(2n) .image {
    order: 2;
  }
  .new .new_box .left_box .content .list a:nth-child(2n) .text {
    order: 1;
  }
  .new .new_box .right_box {
    display: none;
  }
  .new .more2 {
    display: flex;
  }
}
.contact {
  background: url('../img/020.jpg') no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.contact .title {
  width: 96%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  position: relative;
}
.contact .title img {
  width: 1920px;
  display: block;
  margin: 0 auto;
}
.contact .title a {
  display: block;
  width: 80px;
  height: 80px;
  position: absolute;
  left: 50%;
  bottom: 0;
  margin-left: -40px;
}
.contact .title2 {
  width: 100%;
  display: none;
  justify-content: center;
}
.contact .title2 span {
  color: #6b4b25;
  display: block;
  border-bottom: 5px solid #6b4b25;
  font-size: 24px;
}
.contact .con_box {
  margin-top: 20px;
}
.contact .con_box .phone img {
  width: 400px;
  margin: 0 auto;
  display: block;
}
.contact .con_box .text {
  margin: 25px 0;
}
.contact .con_box .text p {
  margin: 0;
  color: #7c551d;
  text-align: center;
  font-size: 22px;
}
.contact .con_box .erwei {
  margin: 0 auto;
  width: 200px;
  padding: 45px 0;
  background: url('../img/019.png') no-repeat;
  background-size: 100% 100%;
}
.contact .con_box .erwei img {
  width: 130px;
  display: block;
  margin: 0 auto;
  border: 1px solid #6b4924;
  border-radius: 20px;
}
.contact .con_box .erwei span {
  display: block;
  text-align: center;
  width: 100%;
  margin-top: 10px;
  color: #7c551d;
  font-size: 14px;
}
.contact .con_box .image {
  display: none;
}
.contact .con_box .image img {
  width: 50px;
  display: block;
  margin: 0 auto;
}
@media (max-width: 760px) {
  .contact {
    background: url('../img/022.png') no-repeat, #f3ece6;
    background-size: 100% auto;
    background-position: center bottom;
    padding-top: 30px;
    padding-bottom: 50px;
  }
  .contact .title {
    display: none;
  }
  .contact .title2 {
    display: flex;
  }
  .contact .con_box {
    margin-top: 20px;
  }
  .contact .con_box .phone {
    width: 100%;
  }
  .contact .con_box .phone img {
    width: 80%;
  }
  .contact .con_box .text {
    margin: 20px 0;
  }
  .contact .con_box .text p {
    font-size: 18px;
  }
  .contact .con_box .erwei {
    display: none;
  }
  .contact .con_box .image {
    display: block;
  }
  .contact .foot_copyright {
    display: none;
  }
}
.foot_copyright {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row wrap;
}
.foot_copyright .fc {
  text-decoration: none;
  color: white;
  font-size: 12px;
  margin: 0 4px;
}
@media (max-width: 760px) {
  .foot_copyright {
    background-color: transparent;
    position: fixed;
    z-index: 4;
  }
}
.tabber {
  width: 100%;
  box-sizing: border-box;
  padding: 0 25px;
  height: 100px;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 3;
  background-color: #765834;
  display: none;
  justify-content: space-between;
}
.tabber a {
  width: 100px;
  height: 100px;
  background-color: #e6a33a;
  text-decoration: none;
  display: block;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -30px;
}
.tabber a span {
  display: block;
  width: 88px;
  height: 88px;
  text-align: center;
  line-height: 88px;
  color: #7c5221;
  border: 1px solid white;
  font-size: 18px;
}
.tabber a:nth-child(1) span {
  background: url('../img/home.png') no-repeat;
  background-size: 65px 65px;
  background-position: center center;
}
.tabber a:nth-child(2) span {
  background: url('../img/phone.png') no-repeat;
  background-size: 65px 65px;
  background-position: center center;
}
.tabber a:nth-child(3) span {
  background: url('../img/address.png') no-repeat;
  background-size: 65px 65px;
  background-position: center center;
}
@media (max-width: 760px) {
  .tabber {
    display: flex;
  }
}
.common_image {
  width: 100%;
  min-height: 10px;
}
.common_image img {
  width: 100%;
  display: block;
}
.common_image .b {
  display: none;
}
@media (max-width: 760px) {
  .common_image .a {
    display: none;
  }
  .common_image .b {
    display: block;
  }
}
.common {
  width: 100%;
  overflow: hidden;
  margin-top: 30px;
  margin-bottom: 40px;
}
.common .commonbox {
  width: 1200px;
  margin: 0 auto;
}
.common .commonbox .common_title {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 3px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #676767;
}
.common .commonbox .common_title .ge {
  width: 60px;
  height: 5px;
  background-color: #008800;
  margin-top: 5px;
}
@media (max-width: 1200px) {
  .common .commonbox {
    width: 90%;
  }
}
@media (max-width: 540px) {
  .common {
    margin-top: 10px;
    margin-bottom: 40px;
  }
  .common .commonbox .common_title {
    font-size: 22px;
  }
  .common .commonbox .common_title .ge {
    width: 50px;
    height: 4px;
  }
}
.com_our {
  width: 100%;
}
.com_our .com_our_title {
  width: 100%;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: black;
}
.com_our .time {
  width: 100%;
  text-align: center;
  font-size: 14px;
  color: #636363;
}
.com_our .com_our_content {
  width: 100%;
  margin-top: 10px;
  text-align: justify;
}
.com_our .com_our_content img {
  max-width: 100%;
}
.com_column_box {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.com_column_box .column {
  width: 160px;
  height: 100%;
}
.com_column_box .column h2 {
  width: 100%;
  padding: 10px 0;
  letter-spacing: 2px;
  color: black;
  text-align: center;
  background-color: #e5e8eb;
  margin: 0;
  border-bottom: 3px solid #008800;
  font-size: 20px;
}
.com_column_box .column .column_active {
  background-color: #18a106;
  color: white;
}
.com_column_box .column a {
  display: block;
  text-decoration: none;
  position: relative;
  width: calc(100% - 22px);
  text-align: center;
  padding: 15px 10px;
  color: #6c6c6c;
  font-size: 18px;
  border-left: 1px solid #cacaca;
  border-right: 1px solid #cacaca;
  border-bottom: 1px solid #cacaca;
}
.com_column_box .column a:hover {
  background-color: #18a106;
  color: white;
}
.com_column_box .com_content_box {
  width: calc(100% - 180px);
}
@media (max-width: 1200px) {
  .com_column_box {
    flex-direction: column;
    justify-content: center;
  }
  .com_column_box .column {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 0 4px 0;
    border: 0;
  }
  .com_column_box .column h2 {
    display: none;
  }
  .com_column_box .column a {
    width: auto;
    padding: 6px 10px;
    margin-bottom: 0;
    font-size: 16px;
    background-color: #008800;
    margin-right: 15px;
    color: white;
    white-space: nowrap;
  }
  .com_column_box .column a:before {
    display: none;
  }
  .com_column_box .column a:after {
    display: none;
  }
  .com_column_box .column a:nth-last-child(1):before {
    display: none;
  }
  .com_column_box .column a:nth-last-child(1):after {
    display: none;
  }
  .com_column_box .com_content_box {
    width: 100%;
  }
}
.com_product_box {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
}
.com_product_box a {
  text-decoration: none;
  display: block;
  margin-right: 20px;
  margin-bottom: 20px;
  width: calc((100% - 40px) / 3);
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
}
.com_product_box a .image {
  width: 100%;
  overflow: hidden;
}
.com_product_box a .image img {
  display: block;
  width: 100%;
  transition: 500ms;
}
.com_product_box a span {
  display: block;
  width: calc(100% - 10px);
  padding: 5px;
  text-align: center;
  color: white;
  background-color: #18a106;
}
.com_product_box a:hover .image img {
  transform: scale(1.1);
}
.com_product_box a:nth-child(3n) {
  margin-right: 0;
}
@media (max-width: 760px) {
  .com_product_box a {
    width: calc((100% - 20px) / 2);
  }
  .com_product_box a:nth-child(3n) {
    margin-right: 20px;
  }
  .com_product_box a:nth-child(2n) {
    margin-right: 0;
  }
}
.pagination {
  width: 100%;
  margin-top: 10px;
  display: flex;
  justify-content: center;
}
.pagination .btn-group {
  width: 200px;
  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: 85px;
  height: 34px;
  line-height: 34px;
  text-align: center;
}
.pagination .btn-group .pagebtn_s {
  color: #bebebe;
  border: 1px solid #bebebe;
}
.pagination .btn-group .pagebtn_a {
  text-decoration: none;
  color: black;
  border: 1px solid black;
}
.pagination .btn-group .pagebtn_a:hover {
  background-color: #71c733;
  color: white;
  cursor: pointer;
}
.com_new_box {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.com_new_box a {
  text-decoration: none;
  width: 46%;
  margin-bottom: 30px;
  padding-bottom: 18px;
  display: block;
  border-bottom: 1px solid #1bb606;
}
.com_new_box a span {
  display: block;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: black;
  margin-bottom: 15px;
  font-size: 22px;
}
.com_new_box a p {
  margin: 0;
  width: 100%;
  text-align: justify;
  color: #919191;
  line-height: 26px;
  font-size: 18px;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.com_new_box a:hover span {
  color: #18A106;
}
@media (max-width: 760px) {
  .com_new_box a {
    width: 100%;
  }
  .com_new_box a span {
    font-size: 20px;
  }
  .com_new_box a p {
    line-height: 24px;
    font-size: 16px;
  }
}
