html {
  width: 100%;
  height: 100%;
}
body {
  width: 100%;
  min-height: calc(100% - 32px);
  padding-bottom: 32px;
  position: relative;
  margin: 0;
  background-color: #f5f4f4;
}
.header {
  width: 100%;
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
}
.header .box {
  width: 1500px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .box .logo {
  width: 220px;
}
.header .box .logo img {
  width: 100%;
  display: block;
}
.header .box .menu {
  width: calc(100% - 250px);
  display: flex;
  justify-content: flex-end;
}
.header .box .menu ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-flow: row wrap;
}
.header .box .menu ul .active a {
  color: #f1ad16;
  font-weight: 600;
}
.header .box .menu ul li {
  list-style: none;
  padding: 5px;
  border-radius: 5px;
  position: relative;
}
.header .box .menu ul li a {
  text-decoration: none;
  display: block;
  color: black;
  letter-spacing: 1px;
  font-size: 21px;
}
.header .box .menu ul li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 22;
  padding: 20px 0;
  background-color: white;
  border-radius: 4px;
}
.header .box .menu ul li ul li {
  margin: 0;
  padding: 5px 8px;
  border-radius: 0;
}
.header .box .menu ul li ul li a {
  font-size: 20px;
  white-space: nowrap;
  text-align: left;
}
.header .box .menu ul li ul li:hover {
  background-color: #f1ad16;
}
.header .box .menu ul li ul li:hover a {
  color: white;
}
.header .box .menu ul li ul li:nth-child(2n):hover {
  background-color: #f1ad16;
}
.header .box .menu ul li ul li:nth-last-child(1) {
  display: block;
}
.header .box .menu ul li ul li:nth-child(2n) {
  margin: 0;
}
.header .box .menu ul li:hover {
  background-color: rgba(255, 255, 255, 0.4);
}
.header .box .menu ul li:hover ul {
  display: block;
}
.header .box .menu ul li:nth-child(2n):hover {
  background-color: rgba(255, 255, 255, 0);
}
.header .box .menu ul li:nth-child(2n) {
  margin: 0 10px;
  font-size: 21px;
}
.header .box .menu ul li:nth-last-child(1) {
  display: none;
}
@media (max-width: 1500px) {
  .header .box {
    width: 90%;
  }
}
@media (max-width: 1200px) {
  .header .box .logo {
    width: 160px;
  }
  .header .box .menu {
    display: none;
  }
}
@media (max-width: 760px) {
  .header .box {
    justify-content: center;
  }
  .header .box .logo {
    width: 120px;
  }
}
.top_image {
  width: 100%;
  overflow: hidden;
}
.top_image img {
  display: block;
  width: 1920px;
}
@media (max-width: 760px) {
  .top_image img {
    width: auto;
    height: 34px;
  }
}
.menu2 {
  width: 100%;
  display: none;
}
.menu2 ul {
  width: 100%;
  padding: 0;
  margin: 0;
  display: flex;
}
.menu2 ul .active {
  background-color: #a8c2fb;
}
.menu2 ul li {
  list-style: none;
  width: calc((100% - 7px) / 6);
  padding: 12px 0;
  border-right: 1px solid #a8c2fb;
  background-color: #f9bc02;
  position: relative;
}
.menu2 ul li a {
  text-decoration: none;
  color: black;
  width: 100%;
  display: block;
  text-align: center;
  letter-spacing: 1px;
  font-size: 20px;
}
.menu2 ul li ul {
  display: none;
  width: auto;
  min-width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 22;
  padding: 20px 0;
  background-color: white;
}
.menu2 ul li ul li {
  width: 100%;
  box-sizing: border-box;
  padding: 5px;
  border-right: 0;
  background-color: white;
}
.menu2 ul li ul li a {
  white-space: nowrap;
}
.menu2 ul li:nth-last-child(1) {
  border-right: 0;
}
.menu2 ul li:hover {
  background-color: #a8c2fb;
}
.menu2 ul li:hover ul {
  display: block;
}
@media (max-width: 1200px) {
  .menu2 {
    display: block;
  }
}
@media (max-width: 760px) {
  .menu2 {
    background: url('../img/029.jpg') no-repeat;
    background-size: cover;
    padding-bottom: 40px;
  }
  .menu2 ul {
    box-sizing: border-box;
    padding: 8px 15px;
    flex-flow: row wrap;
    justify-content: center;
  }
  .menu2 ul .active {
    background-color: initial;
  }
  .menu2 ul li {
    width: 33%;
    padding: 0;
    border-right: 0;
    background-color: initial;
  }
  .menu2 ul li a {
    width: 40px;
    margin: 0 auto;
    color: #a81b08;
    padding: 29px 25px;
    background: url('../img/028.png') no-repeat;
    background-size: 100% 100%;
    letter-spacing: 0;
    font-weight: 600;
    font-size: 16px;
  }
  .menu2 ul li ul {
    display: none!important;
  }
  .menu2 ul li:nth-last-child(1) {
    border-right: 0;
  }
  .menu2 ul li:hover {
    background-color: initial;
  }
}
@media (max-width: 360px) {
  .menu2 ul {
    padding: 8px 10px;
  }
  .menu2 ul li a {
    padding: 25px 20px;
    font-size: 15px;
  }
}
.number {
  width: 100%;
  height: 130px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #b20405;
}
.number .num {
  width: 240px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.number .num p {
  margin: 0;
  position: relative;
}
.number .num p span:nth-child(1) {
  font-size: 40px;
  letter-spacing: 2px;
}
.number .num p span:nth-child(2) {
  position: absolute;
  top: 5px;
  right: -30px;
  font-size: 18px;
}
.number .num span {
  display: block;
  text-align: center;
  color: white;
  letter-spacing: 2px;
  font-size: 18px;
}
.number .ge {
  width: 2px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  position: relative;
}
.number .ge:before {
  content: "";
  width: 4px;
  height: 14px;
  background-color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -7px;
  margin-left: -2px;
}
@media (max-width: 760px) {
  .number {
    height: 90px;
  }
  .number .num {
    width: 160px;
  }
  .number .num p span:nth-child(1) {
    font-size: 28px;
  }
  .number .num p span:nth-child(2) {
    top: 2px;
    right: -20px;
    font-size: 14px;
  }
  .number .num span {
    font-size: 14px;
  }
}
@media (max-width: 540px) {
  .number {
    height: 75px;
  }
  .number .num {
    width: calc((100% / 3) - 8px);
  }
  .number .num p span:nth-child(1) {
    font-size: 24px;
  }
  .number .num p span:nth-child(2) {
    top: 2px;
    right: -15px;
    font-size: 12px;
  }
  .number .num span {
    font-size: 12px;
  }
  .number .ge:nth-child(1) {
    display: none;
  }
  .number .ge:nth-last-child(1) {
    display: none;
  }
}
.our {
  width: 100%;
  overflow: hidden;
  display: flex;
}
.our .box_left .text,
.our .box_right .text {
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 400ms;
  width: 100%;
  height: 40%;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: flex-end;
}
.our .box_left .text .text_box,
.our .box_right .text .text_box {
  width: calc(70% - 40px);
  height: 100%;
  margin-right: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}
.our .box_left .text .text_box span,
.our .box_right .text .text_box span {
  display: block;
  width: 100%;
  color: white;
  font-size: 30px;
}
.our .box_left .text .text_box p,
.our .box_right .text .text_box p {
  margin: 20px 0;
  color: white;
  font-size: 15px;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.our .box_left .text .text_box .btn,
.our .box_right .text .text_box .btn {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}
.our .box_left .text .text_box .btn a,
.our .box_right .text .text_box .btn a {
  padding: 5px 0;
}
.our .box_left .text .text_box .btn a img,
.our .box_right .text .text_box .btn a img {
  width: 80px;
  display: block;
}
.our .box_left .text:hover,
.our .box_right .text:hover {
  height: 60%;
}
.our .box_left {
  width: 50%;
  position: relative;
}
.our .box_left .image {
  width: 100%;
}
.our .box_left .image img {
  width: 100%;
  display: block;
}
.our .box_right {
  width: 50%;
  position: relative;
}
.our .box_right .image {
  width: 100%;
}
.our .box_right .image img {
  width: 100%;
  display: block;
}
.our .box_right .image .b {
  display: none;
}
.our .box_right .text .text_box .p2 {
  display: none;
}
@media (max-width: 1400px) {
  .our .box_left .text .text_box,
  .our .box_right .text .text_box {
    width: calc(90% - 40px);
  }
  .our .box_left .image {
    overflow: hidden;
  }
  .our .box_left .image img {
    width: 700px;
  }
  .our .box_right .image {
    overflow: hidden;
  }
  .our .box_right .image img {
    width: 700px;
  }
}
@media (max-width: 760px) {
  .our {
    position: relative;
    justify-content: flex-end;
  }
  .our .box_left {
    width: 95%;
  }
  .our .box_left .image {
    box-sizing: border-box;
    border-top: 3px solid;
    border-left: 3px solid;
    border-bottom: 3px solid;
    border-image: linear-gradient(45deg, #ff6e02, #ff9a01, #ffee00, #ff6e02) 25 25 25 25;
  }
  .our .box_left .text {
    bottom: 3px;
    height: 35%;
  }
  .our .box_left .text .text_box {
    width: calc(100% - 30px);
    margin: 0 auto;
  }
  .our .box_left .text .text_box span {
    color: #b20405;
    text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
    font-size: 24px;
  }
  .our .box_left .text .text_box p {
    margin: 8px 0;
    -webkit-line-clamp: 3;
  }
  .our .box_left .text .text_box .btn {
    justify-content: flex-end;
  }
  .our .box_left .text .text_box .btn a img {
    width: 60px;
  }
  .our .box_left .text:hover {
    height: 50%;
  }
  .our .box_right {
    width: 200px;
    position: absolute;
    top: -40px;
    left: 0;
  }
  .our .box_right .image {
    width: 100%;
  }
  .our .box_right .image img {
    width: 100%;
  }
  .our .box_right .image .a {
    display: none;
  }
  .our .box_right .image .b {
    display: block;
  }
  .our .box_right .text {
    height: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    display: block;
  }
  .our .box_right .text .text_box {
    width: calc(100% - 30px);
    height: 100%;
    margin: 0 auto;
    align-items: center;
  }
  .our .box_right .text .text_box span {
    color: #b20405;
    text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
    font-size: 22px;
  }
  .our .box_right .text .text_box p {
    width: 100%;
    margin: 0;
    -webkit-line-clamp: 1;
  }
  .our .box_right .text .text_box p strong {
    width: 100%;
    display: block;
    color: black;
    font-weight: 400;
    padding: 2px 0;
    font-size: 16px;
  }
  .our .box_right .text .text_box .p1 {
    display: none;
  }
  .our .box_right .text .text_box .p2 {
    display: block;
  }
  .our .box_right .text .text_box .btn {
    justify-content: flex-end;
  }
  .our .box_right .text .text_box .btn a img {
    width: 60px;
    display: block;
  }
  .our .box_right .text:hover {
    height: 50%;
  }
}
@media (max-width: 540px) {
  .our .box_left .image img {
    width: 600px;
  }
  .our .box_left .text:hover {
    height: 50%;
  }
}
.title {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.title span {
  display: block;
  width: 450px;
  height: 115px;
  box-sizing: border-box;
  padding: 0 28px;
  line-height: 115px;
  text-align-last: justify;
  font-size: 44px;
}
.title .t_b {
  width: 450px;
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.title .t_b i {
  width: 130px;
  height: 1px;
}
.title .t_b p {
  margin: 0;
  color: #ac161f;
}
.title_a span {
  background: url('../img/009_2.png') no-repeat;
  background-size: 100% 100%;
}
.title_a .t_b i {
  background-color: #ac161f;
}
.title_a .t_b p {
  color: #ac161f;
}
.title_b span {
  background: url('../img/009_1.png') no-repeat;
  background-size: 100% 100%;
  color: white;
}
.title_b .t_b i {
  background-color: #ffcd4f;
}
.title_b .t_b p {
  color: white;
}
@media (max-width: 760px) {
  .title span {
    width: 260px;
    height: 65px;
    padding: 0 18px;
    line-height: 65px;
    font-size: 24px;
  }
  .title .t_b {
    width: 260px;
  }
  .title .t_b i {
    width: 50px;
  }
  .title .t_b p {
    font-size: 14px;
  }
}
.more {
  width: 100%;
  margin-top: 20px;
  display: flex;
  justify-content: center;
}
.more a {
  display: block;
  text-decoration: none;
  padding: 10px 30px;
  font-size: 20px;
}
.more_a a {
  color: #a81b08;
  background: url('../img/018_1.png') no-repeat;
  background-size: 100% 100%;
}
.more_b a {
  color: white;
  background: url('../img/018_2.png') no-repeat;
  background-size: 100% 100%;
}
@media (max-width: 760px) {
  .more a {
    padding: 5px 15px;
    font-size: 16px;
  }
}
.product {
  width: 100%;
  padding: 50px 0;
  overflow: hidden;
  background: no-repeat, #fffef2;
  background-position: center bottom;
  background-size: 80% auto;
}
.product .box {
  width: 78%;
  margin: 0 auto;
  margin-top: 40px;
}
.product .other {
  width: 100%;
  margin: 0 auto;
  margin-top: 80px;
  display: flex;
  justify-content: center;
  position: relative;
}
.product .other .image img {
  height: 45px;
  display: block;
}
.product .other .image .b {
  display: none;
}
.product .other .more_a {
  width: auto;
  margin: 0 100px;
}
@media (max-width: 1200px) {
  .product .other .image img {
    height: 30px;
  }
  .product .other .more_a {
    margin: 0 50px;
  }
}
@media (max-width: 760px) {
  .product {
    background-size: 100% auto;
  }
  .product .box {
    width: 90%;
    margin-top: 20px;
  }
  .product .other {
    width: 90%;
    margin-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  .product .other .image img {
    height: auto;
    width: 140px;
  }
  .product .other .image .a {
    display: none;
  }
  .product .other .image .b {
    display: block;
  }
  .product .other .more_a {
    width: 100%;
    margin: 0;
    position: absolute;
    top: 100%;
  }
}
.base {
  width: 100%;
  overflow: hidden;
  padding: 50PX 0;
  background: url('../img/013.jpg') no-repeat;
  background-size: cover;
}
.base .box {
  box-sizing: border-box;
  width: 70%;
  margin: 0 auto;
  margin-top: 30px;
  padding: 50px;
  background-color: rgba(255, 255, 255, 0.4);
}
.base .box .list {
  display: flex;
  flex-flow: column wrap;
}
.base .box .list a {
  display: block;
  box-sizing: border-box;
  text-decoration: none;
  border: 4px solid white;
  border-radius: 8px;
}
.base .box .list a img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.base .box .list a:nth-child(1) {
  width: 50%;
}
.base .box .list a:nth-child(n+2) {
  width: calc((50% - 16px) / 2);
  height: calc((100% - 5px) / 2);
  margin-left: 8px;
}
.base .box .list a:nth-child(2n) {
  margin-bottom: 5px;
}
.base .box .list a:nth-child(n+6) {
  display: none;
}
@media (max-width: 1000px) {
  .base .box {
    width: 90%;
  }
}
@media (max-width: 760px) {
  .base {
    padding: 20px 0 100px 0;
  }
  .base .box {
    padding: 0;
    margin-top: 15px;
    background-color: rgba(255, 255, 255, 0);
  }
  .base .box .list {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
  }
  .base .box .list a {
    border-radius: 5px;
    margin-bottom: 10px;
  }
  .base .box .list a:nth-child(1) {
    width: calc((100% - 10px) / 2);
  }
  .base .box .list a:nth-child(n+2) {
    width: calc((100% - 10px) / 2);
    height: auto;
    margin-left: 0;
  }
  .base .box .list a:nth-child(2n) {
    margin-bottom: 10px;
  }
  .base .box .list a:nth-child(n+5) {
    display: block;
  }
}
.certificate {
  width: 100%;
  background: url('../img/014_1.jpg') no-repeat;
  background-size: 100% 100%;
  padding: 40px 0;
}
.certificate .box_center {
  display: none;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}
.certificate .box_center .image_box {
  width: 80%;
  padding: 3.8%;
  background: url('../img/014_4.png') no-repeat;
  background-size: 100% 100%;
  box-sizing: border-box;
  position: relative;
}
.certificate .box_center .image_box .image {
  width: 100%;
  border-radius: 50%;
  overflow: hidden;
}
.certificate .box_center .image_box .image img {
  width: 100%;
  display: block;
  height: 100%;
  object-fit: cover;
}
.certificate .box_center .image_box:before {
  content: "";
  width: 112%;
  height: 51%;
  background: url('../img/014_3.png') no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: -9%;
  left: -7%;
}
.certificate .box_center .image_box:after {
  display: none;
  content: "";
  width: 118%;
  height: 60%;
  background: url('../img/014_5.png') no-repeat;
  background-size: 100% 100%;
  position: absolute;
  bottom: -9%;
  left: -10%;
}
.certificate .box {
  width: 80%;
  overflow: hidden;
  margin: 0 auto;
  padding-top:30px;
  display: flex;
  justify-content: space-between;
}
.certificate .box .box_left .list,
.certificate .box .box_right .list {
  position: relative;
}
.certificate .box .box_left .list .beijing,
.certificate .box .box_right .list .beijing {
  width: 140%;
  position: absolute;
  z-index: 1;
  top: -20%;
  left: -20%;
}
.certificate .box .box_left .list .beijing img,
.certificate .box .box_right .list .beijing img {
  width: 100%;
  display: block;
}
.certificate .box .box_left .list img,
.certificate .box .box_right .list img {
  display: block;
  width: 100%;
  position: relative;
  z-index: 2;
}
.certificate .box .box_left .list a,
.certificate .box .box_right .list a {
  text-decoration: none;
  margin: 0 auto;
  width: 100%;
  margin-top: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}
.certificate .box .box_left .list a img,
.certificate .box .box_right .list a img {
  width: 70px;
  display: block;
}
.certificate .box .box_left .list a span,
.certificate .box .box_right .list a span {
  display: block;
  margin-left: 5px;
  color: black;
  letter-spacing: 1px;
}
.certificate .box .box_left .list a img:nth-last-child(1),
.certificate .box .box_right .list a img:nth-last-child(1) {
  display: none;
}
.certificate .box .box_left {
  width: 33%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-end;
}
.certificate .box .box_left .list:nth-child(1) {
  width: 100%;
}
.certificate .box .box_left .list:nth-child(2) {
  width: 60%;
  margin-top: 160px;
  margin-right: -20%;
}
.certificate .box .box_center {
  width: 30%;
  display: flex;
}
.certificate .box .box_right {
  width: 33%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
/*.certificate .box .box_right .list:nth-child(1) {*/
/*  width: 60%;*/
/*  margin-top: 20%;*/
/*}*/
/*.certificate .box .box_right .list:nth-child(2) {*/
/*  width: 96%;*/
/*}*/
.certificate .box .box_right .list:nth-child(1) {
  width: 100%;
}
.certificate .box .box_right .list:nth-child(2) {
  width: 60%;
  margin-top: 160px;
  margin-right: -20%;
}
@media (max-width: 1000px) {
  .certificate .box {
    width: 96%;
  }
}
@media (max-width: 760px) {
  .certificate {
    padding: 0 0 20px 0;
  }
  .certificate .title {
    display: none;
  }
  .certificate .box_center {
    display: flex;
    width: 90%;
    margin: 0 auto;
    margin-bottom: 45px;
  }
  .certificate .box_center .image_box {
    width: 55%;
    padding: 2.5%;
    margin-top: -12%;
  }
  .certificate .box_center .image_box:before {
    display: none;
  }
  .certificate .box_center .image_box:after {
    display: block;
  }
  .certificate .box {
    width: 90%;
    flex-direction: column;
  }
  .certificate .box .box_left .list a,
  .certificate .box .box_right .list a {
    width: 90px;
    display: block;
    margin: 10px auto;
  }
  .certificate .box .box_left .list a img,
  .certificate .box .box_right .list a img {
    display: none;
  }
  .certificate .box .box_left .list a span,
  .certificate .box .box_right .list a span {
    font-size: 18px;
  }
  .certificate .box .box_left .list a img:nth-last-child(1),
  .certificate .box .box_right .list a img:nth-last-child(1) {
    display: block;
    width: 20px;
    margin: 0 auto;
  }
  .certificate .box .box_left {
    order: 1;
    width: 100%;
    align-items: flex-start;
  }
  .certificate .box .box_left .list a {
    margin: 10px auto;
  }
  .certificate .box .box_left .list:nth-child(1) {
    width: 90%;
    margin: 10px auto;
  }
  .certificate .box .box_left .list:nth-child(2) {
    display: none;
  }
  .certificate .box .box_center {
    display: none;
  }
  .certificate .box .box_right {
    order: 2;
    width: 100%;
    align-items: flex-end;
  }
  /*.certificate .box .box_right .list:nth-child(1) {*/
  /*  display: none;*/
  /*}*/
  /*.certificate .box .box_right .list:nth-child(2) {*/
  /*  width: 55%;*/
  /*  margin-top: -20%;*/
  /*}*/
  .certificate .box .box_right .list:nth-child(1) {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 0;
  }
  .certificate .box .box_right .list:nth-child(2) {
    display: none;
  }
}
.new {
  width: 100%;
  padding: 40px 0;
  overflow: hidden;
  background: url('../img/020.jpg') no-repeat;
  background-size: cover;
}
.new .box {
  width: 80%;
  height: 680px;
  margin: 0 auto;
  margin-top: 30px;
  box-sizing: border-box;
  padding: 50px;
  background-color: rgba(255, 255, 255, 0.4);
  display: flex;
  flex-flow: column wrap;
  justify-content: space-between;
}
.new .box a {
  width: calc(50% - 20px);
  margin-left: 20px;
  text-decoration: none;
  display: block;
  position: relative;
}
.new .box a .image {
  width: 100%;
  height: 580px;
  display: none;
  overflow: hidden;
}
.new .box a .image img {
  width: 100%;
  display: block;
  height: 100%;
  object-fit: cover;
}
.new .box a .text {
  background-color: white;
  width: 100%;
  box-sizing: border-box;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.new .box a .text .time {
  box-sizing: border-box;
  width: 100px;
  height: 100px;
  border: 2px solid;
  border-image: linear-gradient(45deg, #f4c45d, #856837, #f4c45d, #ff6e02) 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.new .box a .text .time .year {
  transform: rotate(-15deg);
  overflow: hidden;
  height: 25px;
  border-bottom: 2px solid #b17f13;
  width: 80px;
  margin: 0 auto;
}
.new .box a .text .time .year span {
  transform: rotate(15deg);
  display: block;
  position: relative;
  width: 100%;
  color: #b17f13;
  text-align: center;
  margin-bottom: 5px;
  font-size: 24px;
}
.new .box a .text .time .month {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.new .box a .text .time .month span {
  width: auto;
  color: #b17f13;
  font-size: 24px;
}
.new .box a .text .time .month span:nth-child(1):before {
  display: none;
}
.new .box a .text .time .month span:nth-child(2) {
  font-size: 34px;
  line-height: 38px;
}
.new .box a .text .time:before {
  content: "";
  width: 8px;
  height: 30px;
  background-color: #a87f28;
  position: absolute;
  top: 50%;
  left: -5px;
  margin-top: -15px;
}
.new .box a .text p {
  width: calc(100% - 150px);
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.new .box a .text p span {
  display: block;
  color: black;
}
.new .box a .text p span:nth-child(1) {
  font-size: 22px;
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.new .box a .text p span:nth-child(2) {
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.new .box a .text .btn {
  width: 35px;
}
.new .box a .text .btn img {
  display: block;
  width: 100%;
}
.new .box a .text .btn .b {
  display: none;
}
.new .box a:nth-child(1) {
  width: 50%;
  height: auto;
  margin-left: 0;
}
.new .box a:nth-child(1) .image {
  display: block;
}
.new .box a:nth-child(1) .text {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: rgba(168, 127, 40, 0.7);
}
.new .box a:nth-child(1) .text .time {
  display: none;
}
.new .box a:nth-child(1) .text p {
  width: 100%;
}
.new .box a:nth-child(1) .text p span:nth-child(1) {
  width: 100%;
  text-align: center;
  font-size: 26px;
  color: white;
}
.new .box a:nth-child(1) .text p span:nth-child(2) {
  display: none;
}
.new .box a:nth-child(1) .text .btn {
  display: none;
}
.new .box a:hover .text {
  background-color: rgba(168, 127, 40, 0.7);
}
.new .box a:hover .text .time {
  border-image: linear-gradient(45deg, white, white, white, white) 1;
}
.new .box a:hover .text .time span:nth-child(1):before {
  background-color: rgba(168, 127, 40, 0.7);
  border-top: 2px solid white;
}
.new .box a:hover .text .time .year {
  border-bottom: 2px solid white;
}
.new .box a:hover .text .time .year span {
  color: white;
}
.new .box a:hover .text .time .month span {
  color: white;
}
.new .box a:hover .text .time:before {
  background-color: white;
}
.new .box a:hover .text p span {
  color: white;
}
.new .box a:hover .text .btn .b {
  display: block;
}
.new .box a:hover .text .btn .a {
  display: none;
}
@media (max-width: 1200px) {
  .new .box {
    width: 90%;
    height: auto;
    flex-flow: row wrap;
  }
  .new .box a {
    width: 100%;
    margin-left: 0;
    margin-bottom: 20px;
  }
  .new .box a:nth-child(1) {
    width: 100%;
  }
  .new .box a:nth-child(1) .image {
    display: block;
    width: 100%;
    height: auto;
  }
  .new .box a:nth-child(1) .image img {
    height: auto;
    width: 100%;
  }
}
@media (max-width: 760px) {
  .new .box {
    padding: 20px 10px;
  }
  .new .box a .text {
    padding: 10px 5px;
  }
  .new .box a .text .time {
    width: 65px;
    height: 65px;
  }
  .new .box a .text .time .year {
    height: 19px;
    border-bottom: 1px solid #b17f13;
    width: 45px;
  }
  .new .box a .text .time .year span {
    margin-bottom: 0;
    font-size: 16px;
  }
  .new .box a .text .time .month span {
    font-size: 16px;
  }
  .new .box a .text .time .month span:nth-child(2) {
    font-size: 24px;
    line-height: 26px;
  }
  .new .box a .text .time:before {
    content: "";
    width: 5px;
    height: 10px;
    background-color: #a87f28;
    position: absolute;
    top: 50%;
    left: -4px;
    margin-top: -5px;
  }
  .new .box a .text p {
    width: calc(100% - 100px);
  }
  .new .box a .text p span:nth-child(1) {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .new .box a .text p span:nth-child(2) {
    font-size: 14px;
  }
  .new .box a .text .btn {
    width: 25px;
  }
  .new .box a .text .btn img {
    display: block;
    width: 100%;
  }
  .new .box a .text .btn .b {
    display: none;
  }
  .new .box a:nth-child(1) {
    width: 100%;
  }
  .new .box a:nth-child(1) .image {
    display: block;
    width: 100%;
    height: auto;
  }
  .new .box a:nth-child(1) .image img {
    height: auto;
    width: 100%;
  }
  .new .box a:nth-child(1) .text p {
    width: 100%;
  }
  .new .box a:nth-child(1) .text p span:nth-child(1) {
    font-size: 18px;
    margin: 0;
  }
}
@keyframes left_1 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes right_1 {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}
.left_1 {
  animation: left_1 12000ms linear infinite;
}
.right_1 {
  animation: right_1 12000ms linear infinite;
}
@keyframes left_2 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes right_2 {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}
.left_2 {
  animation: left_2 15000ms linear infinite;
}
.right_2 {
  animation: right_2 15000ms linear infinite;
}
.foot {
  width: 100%;
  height: 660px;
  overflow: hidden;
  background: url('../img/025.jpg') no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.foot .text {
  display: none;
  width: 226px;
  position: absolute;
  top: 20px;
  left: 50%;
  margin-left: -113px;
  justify-content: space-between;
  align-items: center;
  background-color: white;
}
.foot .text img:nth-child(1) {
  width: 18px;
  display: block;
  margin-left: 3px;
}
.foot .text img:nth-last-child(1) {
  width: 50px;
  padding: 1px;
}
.foot .text span {
  display: block;
  margin-right: 10px;
}
.foot .box_1 {
  width: 100%;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}
.foot .box_1 p {
  margin: 0;
  width: 220px;
  background-image: linear-gradient(to bottom, #e1e2e1, white, #e1e2e1);
}
.foot .box_1 p img {
  display: block;
  width: 50px;
  margin: 35px auto;
}
.foot .box_1 p span {
  display: block;
  box-sizing: border-box;
  width: 100%;
  padding: 0 5px;
  padding-bottom: 30px;
  color: #014795;
  word-wrap: break-word;
  word-break: break-all;
  text-align: center;
}
.foot .box_1 p:nth-child(2) {
  margin: 0 60px;
}
.foot .box_2 {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.foot .box_2 .image {
  padding: 0 30px;
}
.foot .box_2 .image .img {
  padding: 15px 40px;
  background-image: linear-gradient(to bottom, #e1e2e1, white, #e1e2e1);
}
.foot .box_2 .image .img img {
  width: 150px;
  display: block;
}
.foot .box_2 .image span {
  display: block;
  width: 100%;
  text-align: center;
  color: #014795;
  margin-top: 20px;
}
.foot .huadong {
  width: 100%;
  height: 180px;
  position: absolute;
  bottom: 0;
  left: 0;
  overflow: hidden;
}
.foot .huadong .image {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}
.foot .huadong .image img {
  display: block;
}
.foot .huadong .image:nth-child(1) {
  z-index: 2;
}
.foot .huadong .image:nth-child(1) img {
  position: relative;
  z-index: 2;
}
.foot .huadong .image:nth-child(2) {
  z-index: 1;
}
.foot .huadong .image:nth-child(2) img {
  position: relative;
  z-index: 1;
}
.foot .huadong .image:nth-child(3) img {
  position: relative;
  z-index: 3;
}
@media (max-width: 1000px) {
  .foot .box_1 p:nth-child(2) {
    margin: 0 30px;
  }
  .foot .huadong .image:nth-child(1) img {
    height: 86px;
  }
  .foot .huadong .image:nth-child(2) img {
    height: 66px;
  }
  .foot .huadong .image:nth-child(3) img {
    height: 60px;
  }
}
@media (max-width: 760px) {
  .foot {
    height: 300px;
    background: url('../img/032.png') no-repeat;
    background-size: 100% 270px;
  }
  .foot .text {
    display: flex;
  }
  .foot .box_1 {
    display: none;
  }
  .foot .box_2 .image {
    padding: 0;
  }
  .foot .box_2 .image .img {
    padding: 10px 20px;
    background-image: initial;
    background-color: rgba(255, 255, 255, 0.4);
  }
  .foot .box_2 .image .img img {
    width: 100px;
    display: block;
  }
  .foot .box_2 .image span {
    margin-top: 10px;
  }
  .foot .box_2 .image:nth-child(1) {
    margin-right: 30px;
  }
}
@media (max-width: 760px) {
  body {
    padding-bottom: 102px;
    min-height: calc(100% - 102px);
  }
}
.foot_copyright {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 32px;
  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 {
    width: 96%;
    padding: 0 2%;
    justify-content: center;
    bottom: 70px;
  }
}
.tabber {
  width: 100%;
  height: 70px;
  display: none;
  justify-content: space-between;
  background-color: #b20405;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 60;
}
.tabber a {
  width: 33%;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  align-items: center;
  justify-content: center;
}
.tabber a img {
  width: 34px;
  display: block;
}
.tabber a span {
  display: block;
  font-size: 13px;
  color: white;
  margin-top: 3px;
}
.tabber a:nth-child(2) {
  width: calc(33% - 2px);
  border-left: 1px solid white;
  border-right: 1px solid white;
}
@media (max-width: 760px) {
  .tabber {
    display: flex;
  }
}
.common_image {
  width: 100%;
  min-height: 10px;
}
.common_image img {
  width: 100%;
  display: block;
}
.common {
  width: 100%;
  overflow: hidden;
  padding-top: 30px;
  padding-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: 50px;
  height: 5px;
  background-color: #b17f13;
  margin-top: 5px;
}
@media (max-width: 1200px) {
  .common .commonbox {
    width: 90%;
  }
}
@media (max-width: 540px) {
  .common {
    padding-top: 10px;
    padding-bottom: 20px;
  }
  .common .commonbox .common_title {
    font-size: 20px;
  }
  .common .commonbox .common_title .ge {
    width: 40px;
    height: 3px;
  }
}
.com_our {
  width: 100%;
}
.com_our .com_our_title {
  width: 100%;
  text-align: center;
  font-size: 20px;
  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;
  font-size: 20px;
}
.com_column_box .column .column_active {
  background-color: #0c773e;
  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: #0c773e;
  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: #b17f13;
    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);
}
.com_product_box a .image {
  overflow: hidden;
}
.com_product_box a .image img {
  display: block;
  width: 100%;
}
.com_product_box a span {
  display: block;
  width: calc(100% - 10px);
  padding: 5px;
  text-align: center;
  color: white;
  background-color: #b17f13;
}
.com_product_box a:hover .image img {
  transform: scale(1.2);
  transition: 300ms;
}
.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: 20px;
  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: 75px;
  height: 30px;
  line-height: 30px;
  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: #6199e3;
  color: white;
  cursor: pointer;
}
.com_new_box {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.com_new_box a {
  width: 48%;
  display: block;
  text-decoration: none;
  color: black;
  padding-bottom: 20px;
  margin-bottom: 10px;
  border-bottom: 2px solid black;
}
.com_new_box a .time {
  display: block;
  width: 100%;
  font-size: 14px;
  margin: 5px 0;
}
.com_new_box a span {
  display: block;
  width: 100%;
  font-weight: 600;
  margin: 3px 0;
  font-size: 24px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.com_new_box a p {
  margin: 0;
  font-size: 16px;
  text-align: justify;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.com_new_box a:hover {
  border-bottom: 2px solid #b17f13;
}
.com_new_box a:hover span {
  color: #b17f13;
}
@media (max-width: 760px) {
  .com_new_box a {
    width: 100%;
  }
}
