html {
  width: 100%;
  height: 100%;
}
body {
  width: 100%;
  position: relative;
  margin: 0;
  min-height: calc(100% - 40px);
  padding-bottom: 40px;
}
a {
  text-decoration: none;
}
.none {
  display: none!important;
}
.visibility {
  visibility: visible!important;
}
span {
  display: block;
}
@keyframes opacity_1 {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.opacity_1 {
  animation: opacity_1 1000ms;
}
@keyframes rotate_1 {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes rotate_2 {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(-360deg);
  }
}
@keyframes rotate_3 {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(-360deg);
  }
}
.rotate_1 {
  animation: rotate_1 16000ms linear infinite;
}
.rotate_2 {
  animation: rotate_2 16000ms linear infinite;
}
.rotate_3 {
  animation: rotate_3 16000ms linear infinite;
}
.header {
  width: 100%;
  height: 85px;
  display: flex;
  justify-content: center;
  position: absolute;
  top: 20px;
  left: 0;
  z-index: 10;
}
.header img {
  display: block;
}
.header .h_box {
  height: 100%;
  display: flex;
  align-items: center;
  background-color: white;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.header .h_box .logo {
  padding: 0 15px;
}
.header .h_box .logo img {
  width: 340px;
}
.header .h_box .menu {
  height: 100%;
}
.header .h_box .menu ul {
  height: 100%;
  padding: 0;
  margin: 0;
  display: flex;
}
.header .h_box .menu ul li {
  height: 100%;
  list-style: none;
  padding: 0 15px;
  position: relative;
}
.header .h_box .menu ul li a {
  line-height: 85px;
  padding: 8px 0;
  color: black;
  font-size: 18px;
  position: relative;
}
.header .h_box .menu ul li a:before {
  display: none;
  content: '';
  width: 80%;
  height: 1px;
  background-image: linear-gradient(to right, rgba(57, 179, 66, 0.05), #8f0419, rgba(57, 179, 66, 0.05));
  position: absolute;
  bottom: 0;
  left: 10%;
}
.header .h_box .menu ul li a:hover {
  color: #8f0419;
}
.header .h_box .menu ul li a:hover:before {
  display: block;
}
.header .h_box .menu ul li .ul {
  display: none;
  padding: 10px 8px 0 8px;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
  background-color: white;
  position: absolute;
  z-index: 5;
  top: 100%;
  left: 0;
}
.header .h_box .menu ul li .ul p {
  margin: 0;
  box-sizing: border-box;
  padding-right: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.header .h_box .menu ul li .ul p a {
  padding: 10px 12px;
  color: #7a7a7a;
  white-space: nowrap;
  line-height: 15px;
  font-size: 16px;
}
.header .h_box .menu ul li .ul p a:before {
  display: none!important;
}
.header .h_box .menu ul li .ul p a:hover {
  color: white;
  background-color: #044ac4;
}
.header .h_box .menu ul li .ul p:before {
  content: '';
  width: 100%;
  height: 1px;
  background-image: linear-gradient(to right, rgba(57, 179, 66, 0.1), #044ac4, rgba(57, 179, 66, 0.1));
  position: absolute;
  bottom: 0;
  left: 0;
}
.header .h_box .menu ul li:hover .ul {
  display: block;
}
.header .h_box .menu ul .active a {
  color: #8f0419;
}
.header .h_box .menu ul .active a:before {
  display: block;
}
.header .c_h_box {
  border-radius: 10px;
}
.header .select {
  height: 100%;
  position: relative;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.header .select .phone_box {
  width: 250px;
  box-sizing: border-box;
  padding: 25px 0;
  padding-left: 25px;
  background-color: #8f0419;
  position: absolute;
  z-index: 2;
  top: 2px;
  left: 2px;
}
.header .select .phone_box .box {
  display: flex;
  align-items: center;
}
.header .select .phone_box .box img {
  width: 40px;
}
.header .select .phone_box .box p {
  margin: 0;
  margin-left: 6px;
}
.header .select .phone_box .box p span {
  color: white;
  white-space: nowrap;
}
.header .select .phone_box .box p span:nth-child(1) {
  font-size: 14px;
}
.header .select .phone_box .box p span:nth-child(2) {
  font-size: 24px;
}
.header .select .phone_box .box:nth-child(2) {
  margin-top: 35px;
}
.header .select .select_btn {
  width: 85px;
  height: 100%;
  padding-left: 250px;
  background-color: #F6C579;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.header .select .select_btn img {
  width: 40px;
  margin-left: 7px;
}
.header .select .select_btn span {
  color: #504f4d;
  letter-spacing: 3px;
  font-size: 14px;
  margin-top: -5px;
}
.header .select .input_box {
  position: absolute;
  z-index: 3;
  top: 100%;
  right: 0;
  padding: 8px;
  background-color: white;
  border-radius: 8px;
}
.header .select .input_box .form {
  display: flex;
  justify-content: center;
}
.header .select .input_box .form .input {
  width: 150px;
  height: 30px;
  padding: 2px 5px;
  outline: none;
  box-sizing: border-box;
  border: 1px solid #d3d3d3;
}
.header .select .input_box .form button {
  margin: 0;
  width: 50px;
  height: 30px;
  text-align: center;
  color: white;
  cursor: pointer;
  background-color: #014299;
  font-size: 14px;
}
.header .select .input_box:before {
  content: '';
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-bottom: 10px solid white;
  position: absolute;
  top: -10px;
  right: 20px;
}
@media (max-width: 1600px) {
  .header {
    height: auto;
    display: block;
  }
  .header .h_box {
    height: auto;
    flex-direction: column;
    background-color: transparent;
  }
  .header .h_box .logo {
    background-color: white;
    height: 70px;
    padding: 0 30px;
    display: flex;
    align-items: center;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
  }
  .header .h_box .menu {
    height: 70px;
    background-color: white;
    border-radius: 8px;
    padding: 0 10px;
  }
  .header .h_box .menu ul li {
    padding: 0 8px;
  }
  .header .h_box .menu ul li a {
    line-height: 70px;
  }
  .header .select {
    position: absolute;
    top: 100%;
    right: 0%;
    height: 85px;
  }
  .header .select .phone_box {
    width: auto;
    height: auto;
    padding: 0;
    padding-left: 0;
    background-color: transparent;
    top: calc(100% + 60px);
    left: 0;
  }
  .header .select .phone_box .box {
    width: 85px;
    height: 85px;
    border-radius: 10px;
    justify-content: center;
    background-color: #8f0419;
    position: relative;
  }
  .header .select .phone_box .box img {
    width: 40px;
  }
  .header .select .phone_box .box p {
    /*visibility: hidden;*/
    /*opacity: 0;*/
    /*transition: 400ms;*/
    height: 85px;
    padding: 0 15px;
    margin-left: 0;
    background-color: #8f0419;
    border-radius: 10px;
    position: absolute;
    top: 0;
    right: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  /*.header .select .phone_box .box:hover p {*/
  /*  visibility: visible;*/
  /*  opacity: 1;*/
  /*}*/
  .header .select .select_btn {
    border-radius: 10px;
    padding-left: 0;
  }
}
@media (max-width: 760px) {
  .header {
    position: static;
  }
  .header .h_box .logo {
    display: none;
  }
  .header .h_box .menu {
    width: 100%;
    height: auto;
    border-radius: 08px;
    padding: 0;
  }
  .header .h_box .menu ul {
    flex-flow: row wrap;
    height: auto;
    margin-bottom: 10px;
  }
  .header .h_box .menu ul li {
    width: 25%;
    height: auto;
    padding: 0;
    border-bottom: 1px dashed #fd7d00;
  }
  .header .h_box .menu ul li a {
    display: block;
    padding: 12px;
    font-size: 16px;
    box-sizing: border-box;
    width: 100%;
    text-align: center;
    line-height: 20px;
  }
  .header .h_box .menu ul li .ul {
    display: none!important;
  }
  .header .h_box .menu ul .active a {
    color: #fd7d00;
  }
  .header .h_box .menu ul .active a:before {
    background-image: linear-gradient(to right, rgba(248, 123, 0, 0.1), #f87b00, rgba(248, 123, 0, 0.1));
  }
  .header .select {
    position: absolute;
    z-index: 50;
    top: 130px;
    right: 0%;
    height: 50px;
  }
  .header .select .phone_box {
    top: calc(100% + 25px);
  }
  .header .select .phone_box .box {
    width: 50px;
    height: 50px;
    border-radius: 5px;
  }
  .header .select .phone_box .box img {
    width: 24px;
  }
  .header .select .phone_box .box p {
    height: 50px;
    padding: 0 5px;
    border-radius: 5px;
    /*visibility: hidden;*/
    /*opacity: 1;*/
    /*transition: 0ms;*/
  }
  .header .select .phone_box .box p span:nth-child(1) {
    font-size: 12px;
  }
  .header .select .phone_box .box p span:nth-child(2) {
    font-size: 16px;
  }
  .header .select .phone_box .box:nth-child(2) {
    margin-top: 20px;
  }
  /*.header .select .phone_box .box:hover p {*/
  /*  visibility: hidden;*/
  /*  opacity: 1;*/
  /*}*/
  .header .select .select_btn {
    width: 50px;
    border-radius: 5px;
  }
  .header .select .select_btn img {
    width: 24px;
    margin-left: 0;
  }
  .header .select .select_btn span {
    font-size: 14px;
    margin-top: -2px;
  }
  .header .select .input_box {
    padding: 4px;
  }
  .header .select .input_box .form .input {
    width: 120px;
    height: 25px;
  }
  .header .select .input_box .form button {
    height: 25px;
    font-size: 12px;
  }
}
.h_logo {
  display: none;
}
@media (max-width: 760px) {
  .h_logo {
    display: block;
    position: absolute;
    z-index: 5;
    top: 30px;
    left: 30px;
    border-radius: 10px;
    padding: 4px 10px;
    border: 2px solid white;
    background-color: #fd7d00;
  }
  .h_logo img {
    width: 200px;
  }
}
.index_title_1 {
  width: 100%;
  display: flex;
  justify-content: center;
}
.index_title_1 .it_box {
  position: relative;
}
.index_title_1 .it_box strong {
  display: block;
  margin: 0;
  padding-bottom: 40px;
  font-size: 110px;
  line-height: 120px;
  text-transform: uppercase;
  background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.1), transparent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: skewX(-12deg);
}
.index_title_1 .it_box span {
  position: absolute;
  top: 65px;
  left: 0;
  text-align: left;
  white-space: nowrap;
  letter-spacing: 1px;
  font-size: 60px;
  font-weight: 600;
  color: #333333;
  transform: skewX(-12deg);
}
.index_title_1 .it_box span:after {
  color: #8f0419;
  content: attr(data-content);
  overflow: hidden;
  letter-spacing: 1px;
  position: absolute;
  top: 0;
  left: 0;
  text-align: left;
  white-space: nowrap;
  font-size: 60px;
  padding-bottom: 5px;
  border-bottom: 3px solid #fd7d00;
}
.index_title_1 .it_box .span_1:after {
  width: 50%;
}
.index_title_1 .it_box .span_2:after {
  width: 40%;
}
@media (max-width: 760px) {
  .index_title_1 {
    width: 80%;
    margin: 0 auto;
  }
  .index_title_1 .it_box strong {
    padding-bottom: 20px;
    font-size: 54px;
    line-height: 60px;
  }
  .index_title_1 .it_box span {
    top: 30px;
    font-size: 32px;
  }
  .index_title_1 .it_box span:after {
    font-size: 32px;
    padding-bottom: 2px;
    border-bottom: 2px solid #fd7d00;
  }
}
.our {
  width: 100%;
  overflow: hidden;
  padding: 100px 0 80px 0;
  background: url('../img/005_1.jpg') no-repeat;
  background-size: cover;
  background-position: center bottom;
  position: relative;
}
.our img {
  display: block;
}
.our .our_box {
  width: 85%;
  margin: 0 auto;
  display: flex;
  flex-flow: row wrap;
}
.our .our_box .box_1 {
  width: 52%;
  padding-top: 80px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  position: relative;
}
.our .our_box .box_1 .image {
  position: relative;
  width: calc(100% - 60px);
}
.our .our_box .box_1 .image img {
  width: 100%;
  position: relative;
  z-index: 3;
}
.our .our_box .box_1 .image:before {
  content: '';
  background-color: #8f0419;
  width: 100%;
  height: calc(100% + 30px);
  position: absolute;
  bottom: 10px;
  right: 30px;
  z-index: 1;
}
.our .our_box .box_1 .image:after {
  content: '';
  position: absolute;
  bottom: 40px;
  right: 60px;
  z-index: 2;
  width: 100%;
  height: calc(100% + 40px);
  box-sizing: border-box;
  border: 2px solid #fd7d00;
}
.our .our_box .box_2 {
  width: 48%;
}
.our .our_box .box_2 .text {
  width: 90%;
  margin-top: 50px;
  margin-left: 10%;
  font-size: 24px;
  line-height: 50px;
  text-align: justify;
}
.our .our_box .box_3 {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.our .our_box .box_3 a {
  display: block;
  padding: 20px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.our .our_box .box_3 a img {
  width: 55px;
  transition: 500ms;
}
.our .our_box .box_3 a span {
  /*color: #504f4d;*/
  font-size: 30px;
  margin-left: 12px;
}
.our .our_box .box_3 a:nth-child(2n-1) {
  background-color: #8f0419;
}

.our .our_box .box_3 a:nth-child(2n) {
  background-color: #f6c579;
}
.our .our_box .box_3 a:nth-child(2n-1) span {
  color: #ffffff;
}
.our .our_box .box_3 a:nth-child(2n) span {
  color:#504f4d ;
}
.our .our_box .box_3 .more img {
  width: 40px;
}
.our .our_box .box_3 a:hover img {
  transform: rotateY(180deg);
}
@media (max-width: 1200px) {
  .our .our_box {
    width: 96%;
  }
  .our .our_box .box_1 {
    width: 100%;
  }
  .our .our_box .box_2 {
    width: 100%;
  }
  .our .our_box .box_2 .index_title_1 {
    justify-content: flex-start;
  }
  .our .our_box .box_2 .text {
    width: 90%;
    margin: 0 auto;
  }
  .our .our_box .box_3 {
    margin-top: 40px;
  }
  .our .our_box .box_3 a {
    width: 30%;
    padding: 20px 0;
  }
  .our .our_box .box_3 a img {
    width: 45px;
  }
  .our .our_box .box_3 a span {
    font-size: 24px;
  }
  .our .our_box .box_3 .more {
    width: 10%;
  }
  .our .our_box .box_3 .more img {
    width: 30px;
  }
}
@media (max-width: 760px) {
  .our {
    padding: 110px 0 40px 0;
    background: url('../img/005_2.jpg') no-repeat;
    background-size: cover;
    background-position: center bottom;
  }
  .our .our_box .box_1 {
    padding-top: 30px;
  }
  .our .our_box .box_1 .image {
    width: calc(100% - 30px);
  }
  .our .our_box .box_1 .image:before {
    height: calc(100% + 10px);
    bottom: 5px;
    right: 15px;
  }
  .our .our_box .box_1 .image:after {
    bottom: 20px;
    right: 30px;
    height: calc(100% + 15px);
  }
  .our .our_box .box_2 .index_title_1 {
    position: absolute;
    top: 10px;
    left: 10%;
  }
  .our .our_box .box_2 .text {
    margin-top: 20px;
    font-size: 16px;
    line-height: 28px;
  }
  .our .our_box .box_3 {
    margin-top: 20px;
  }
  .our .our_box .box_3 a {
    width: 29%;
    padding: 10px 0;
  }
  .our .our_box .box_3 a img {
    width: 22px;
  }
  .our .our_box .box_3 a span {
    font-size: 12px;
    margin-left: 4px;
  }
  .our .our_box .box_3 .more {
    width: 13%;
  }
  .our .our_box .box_3 .more img {
    width: 20px;
  }
}
.product {
  width: 100%;
  overflow: hidden;
  background-color: #efefef;
  padding-top: 100px;
}
.product img {
  display: block;
}
.product .p_box {
  width: 1500px;
  margin: 0 auto;
}
.product .p_box .box_1 {
  width: 100%;
  position: relative;
}
.product .p_box .box_1 .index_title_1 {
  justify-content: flex-start;
}
.product .p_box .box_1 .btn_box {
  display: flex;
  position: absolute;
  bottom: 0;
  right: 0;
}
.product .p_box .box_1 .btn_box .column {
  display: flex;
  margin-right: 10px;
}
.product .p_box .box_1 .btn_box .column a {
  display: block;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 8px 12px;
  color: black;
  border: 1px solid #fd7d00;
  border-radius: 5px;
  margin: 4px 0;
  margin-right: 12px;
}
.product .p_box .box_1 .btn_box .column a:hover {
  color: #044ac4;
}
.product .p_box .box_1 .btn_box .column .more {
  display: none;
}
.product .p_box .box_1 .btn_box .swiper_btn {
  position: relative;
  width: 240px;
  height: 54px;
  margin: 4px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product .p_box .box_1 .btn_box .swiper_btn .swiper-button-next,
.product .p_box .box_1 .btn_box .swiper_btn .swiper-button-prev:after {
  color: rgba(0, 0, 0, 0) !important;
}
.product .p_box .box_1 .btn_box .swiper_btn .swiper-button-next,
.product .p_box .box_1 .btn_box .swiper_btn .swiper-button-prev {
  display: block;
  width: 80px;
  height: 54px;
  border-radius: 8px;
  margin-top: 0;
  position: static;
}
.product .p_box .box_1 .btn_box .swiper_btn .swiper-button-next {
  right: 0;
  background: url('../img/right.png'), #f6c579;
  background-repeat: no-repeat;
  background-size: 40px 26px;
  background-position: center center;
}
.product .p_box .box_1 .btn_box .swiper_btn .swiper-button-prev {
  left: 0;
  background: url('../img/left.png'), #f6c579;
  background-repeat: no-repeat;
  background-size: 40px 26px;
  background-position: center center;
}
.product .p_box .box_1 .btn_box .swiper_btn .more {
  width: 80px;
  height: 54px;
  background-color: #8f0419;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product .p_box .box_1 .btn_box .swiper_btn .more img {
  width: 40px;
}
.product .p_box .box_2 {
  display: none;
  width: 100%;
  margin-top: 20px;
  flex-flow: row wrap;
  justify-content: space-between;
}
.product .p_box .box_2 a {
  width: calc((100% - 8px) / 2);
  margin-right: 8px;
  margin-bottom: 15px;
  display: block;
  background-color: #f6c579;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.product .p_box .box_2 a .image {
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
}
.product .p_box .box_2 a .image img {
  width: 100%;
  display: block;
  transition: 500ms;
}
.product .p_box .box_2 a .text {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 4px;
}
.product .p_box .box_2 a .text strong {
  display: block;
  width: 100%;
  text-align: justify;
  color: white;
  font-size: 14px;
}
.product .p_box .box_2 a .text .list_box {
  margin-top: 5px;
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.product .p_box .box_2 a .text .list_box span {
  margin: 4px 0px;
  font-size: 12px;
  color: white;
  letter-spacing: 0;
  padding: 4px 4px;
  background: url('../img/009.png') no-repeat;
  background-size: 100% 100%;
}
.product .p_box .box_2 a:nth-child(2n) {
  margin-right: 0;
}
.product .p_box .p_more {
  width: 100%;
  display: none;
}
.product .p_box .p_more .pm_box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 30px;
  margin: 0 auto;
  margin-top: 15px;
  background-color: #fd7d00;
  border-radius: 8px;
}
.product .p_box .p_more .pm_box img {
  width: 30px;
}
@media (max-width: 1500px) {
  .product .p_box {
    width: 96%;
  }
  .product .p_box .box_1 .btn_box {
    margin-top: 30px;
    width: 100%;
    justify-content: space-between;
    position: static;
  }
  .product .p_box .box_1 .btn_box .column {
    width: calc(100% - 250px);
    flex-flow: row wrap;
  }
}
@media (max-width: 760px) {
  .product {
    padding-top: 30px;
    padding-bottom: 40px;
  }
  .product .p_box .box_1 .btn_box {
    margin-top: 20px;
  }
  .product .p_box .box_1 .btn_box .column {
    width: 100%;
    justify-content: space-between;
    margin-right: 0;
  }
  .product .p_box .box_1 .btn_box .column a {
    width: 49%;
    box-sizing: border-box;
    text-align: center;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 5px 0;
    margin: 4px 0;
    margin-right: 0;
  }
  .product .p_box .box_1 .btn_box .column .more {
    display: block;
  }
  .product .p_box .box_1 .btn_box .swiper_btn {
    display: none;
  }
  .product .p_box .box_2 {
    display: flex;
  }
  .product .p_box .p_more {
    display: block;
  }
}
.index_box_1 {
  width: 100%;
  overflow: hidden;
  padding: 100px 0;
  background: url('../img/010.jpg') no-repeat;
  background-size: cover;
}
.index_box_1 img {
  display: block;
}
.index_box_1 .ibbox {
  width: 82%;
  margin: 0 auto;
  display: flex;
}
.index_box_1 .ibbox .box_left {
  width: 50%;
  overflow: hidden;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}
.index_box_1 .ibbox .box_left .image {
  width: 94%;
  padding: 24% 0;
  position: relative;
  z-index: 2;
}
.index_box_1 .ibbox .box_left .image img {
  width: 100%;
}
.index_box_1 .ibbox .box_left .image .text {
  position: absolute;
  z-index: 2;
  bottom: 4%;
  left: -4%;
  max-width: 95%;
  display: flex;
  justify-content: flex-start;
}
.index_box_1 .ibbox .box_left .image .text span {
  max-width: 100%;
  box-sizing: border-box;
  color: white;
  padding: 14px 8px;
  border-radius: 15px;
  border: 5px solid #57c6ff;
  background-color: #0081ff;
  font-weight: 600;
  font-size: 28px;
  transform: skewX(-10deg);
}
.index_box_1 .ibbox .box_left .img_box {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}
.index_box_1 .ibbox .box_left .img_box img {
  position: absolute;
  top: 50%;
  left: 50%;
}
.index_box_1 .ibbox .box_left .img_box .a {
  width: 100%;
  margin-top: -50%;
  margin-left: -50%;
}
.index_box_1 .ibbox .box_left .img_box .b {
  width: 92%;
  margin-top: -46%;
  margin-left: -46%;
}
.index_box_1 .ibbox .box_left .img_box .c {
  width: 86%;
  margin-top: -43%;
  margin-left: -43%;
}
.index_box_1 .ibbox .box_left .img_box .d {
  width: 64%;
  margin-top: -32%;
  margin-left: -32%;
}
.index_box_1 .ibbox .box_right {
  width: 50%;
  box-sizing: border-box;
  padding-left: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.index_box_1 .ibbox .box_right .listbox {
  width: 100%;
  margin-bottom: 45px;
}
.index_box_1 .ibbox .box_right .listbox .list {
  width: 100%;
  display: flex;
  align-items: center;
  transition: 400ms;
}
.index_box_1 .ibbox .box_right .listbox .list img {
  width: 85px;
}
.index_box_1 .ibbox .box_right .listbox .list .text {
  margin-left: 15px;
  width: calc(100% - 100px);
}
.index_box_1 .ibbox .box_right .listbox .list .text strong {
  display: block;
  padding-left: 15px;
  color: white;
  font-family: '黑体';
  font-size: 23px;
  position: relative;
}
.index_box_1 .ibbox .box_right .listbox .list .text strong:before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: white;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -2px;
}
.index_box_1 .ibbox .box_right .listbox .list .text p {
  margin: 0;
  margin-top: 10px;
  text-align: justify;
  color: white;
  line-height: 26px;
  font-size: 17px;
}
.index_box_1 .ibbox .box_right .listbox .list:hover {
  transform: scale(1.05);
}
.index_box_1 .ibbox .box_right .listbox:nth-last-child(1) {
  margin-bottom: 0;
}
.index_box_1 .ibbox .box_right .listbox:nth-child(1) {
  margin-left: -15%;
}
.index_box_1 .ibbox .box_right .listbox:nth-child(2) {
  margin-left: -3%;
}
.index_box_1 .ibbox .box_right .listbox:nth-child(4) {
  margin-left: -3%;
}
.index_box_1 .ibbox .box_right .listbox:nth-child(5) {
  margin-left: -15%;
}
@media (max-width: 1200px) {
  .index_box_1 .ibbox {
    flex-flow: row wrap;
  }
  .index_box_1 .ibbox .box_left {
    width: 100%;
  }
  .index_box_1 .ibbox .box_left .image .text {
    left: -1%;
    width: 100%;
    justify-content: center;
  }
  .index_box_1 .ibbox .box_right {
    width: 100%;
    padding-left: 0;
    margin-top: 40px;
  }
  .index_box_1 .ibbox .box_right .listbox:nth-child(1) {
    margin-left: 0;
  }
  .index_box_1 .ibbox .box_right .listbox:nth-child(2) {
    margin-left: 0;
  }
  .index_box_1 .ibbox .box_right .listbox:nth-child(4) {
    margin-left: 0;
  }
  .index_box_1 .ibbox .box_right .listbox:nth-child(5) {
    margin-left: 0;
  }
}
@media (max-width: 760px) {
  .index_box_1 {
    padding: 40px 0;
  }
  .index_box_1 .ibbox {
    width: 96%;
  }
  .index_box_1 .ibbox .box_left .image .text span {
    font-size: 13px;
    padding: 8px 4px;
    border-radius: 6px;
    border: 2px solid #57c6ff;
  }
  .index_box_1 .ibbox .box_right {
    margin-top: 20px;
  }
  .index_box_1 .ibbox .box_right .listbox {
    margin-bottom: 20px;
  }
  .index_box_1 .ibbox .box_right .listbox .list img {
    width: 45px;
  }
  .index_box_1 .ibbox .box_right .listbox .list .text {
    margin-left: 10px;
    width: calc(100% - 55px);
  }
  .index_box_1 .ibbox .box_right .listbox .list .text strong {
    padding-left: 8px;
    font-size: 14px;
  }
  .index_box_1 .ibbox .box_right .listbox .list .text strong:before {
    width: 2px;
    height: 2px;
    margin-top: -1px;
  }
  .index_box_1 .ibbox .box_right .listbox .list .text p {
    margin: 0;
    margin-top: 5px;
    line-height: 16px;
    font-size: 12px;
  }
}
@font-face {
  font-family: '优设标体黑';
  background: url('../img/003.png');
  src: url('../font/YouSheBiaoTiHei-2.ttf');
}
.index_title_2 {
  width: 100%;
  position: relative;
}
.index_title_2 strong {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 110px;
  line-height: 120px;
  text-transform: uppercase;
  color: #e1e1e1;
}
.index_title_2 span {
  font-weight: 600;
  font-family: '优设标体黑';
  letter-spacing: 3px;
}
.index_title_2 p {
  margin: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: absolute;
  top: 18px;
  left: 0;
}
.index_title_2 p .span_c_1 {
  color: black;
  line-height: 46px;
  margin-bottom: 4px;
  font-size: 62px;
}
.index_title_2 p .span_c_2 {
  color: #8f0419;
  line-height: 70px;
  font-size: 90px;
}
.index_title_2 .text {
  width: 100%;
  display: flex;
  justify-content: center;
  position: absolute;
  top: 24px;
  left: 0;
}
.index_title_2 .text .span_content {
  font-size: 62px;
  text-align: left;
  white-space: nowrap;
  letter-spacing: 3px;
  color: #8f0419;
  transform: skewX(-8deg);
}
.index_title_2 .text .span_content:after {
  width: 50%;
  color: black;
  content: attr(data-content);
  overflow: hidden;
  letter-spacing: 3px;
  position: absolute;
  top: 0;
  left: 0;
  text-align: left;
  white-space: nowrap;
  font-size: 62px;
}
@media (max-width: 1200px) {
  .index_title_2 strong {
    font-size: 80px;
    line-height: 90px;
  }
  .index_title_2 p {
    top: 18px;
    left: 0;
  }
  .index_title_2 p .span_c_1 {
    line-height: 46px;
    margin-bottom: 4px;
    font-size: 48px;
  }
  .index_title_2 p .span_c_2 {
    line-height: 70px;
    font-size: 76px;
  }
  .index_title_2 .text {
    top: 16px;
  }
  .index_title_2 .text .span_content {
    font-size: 48px;
  }
  .index_title_2 .text .span_content:after {
    font-size: 48px;
  }
}
@media (max-width: 760px) {
  .index_title_2 strong {
    font-size: 36px;
    line-height: 60px;
  }
  .index_title_2 p {
    top: 18px;
    left: 0;
  }
  .index_title_2 p .span_c_1 {
    line-height: 22px;
    margin-bottom: 0;
    font-size: 22px;
  }
  .index_title_2 p .span_c_2 {
    line-height: 30px;
    font-size: 30px;
  }
  .index_title_2 .st_b {
    font-size: 46px;
    line-height: 60px;
  }
  .index_title_2 .text {
    top: 13px;
  }
  .index_title_2 .text .span_content {
    font-size: 28px;
  }
  .index_title_2 .text .span_content:after {
    font-size: 28px;
  }
}
.index_box_2 {
  width: 100%;
  padding: 100px 0 140px 0;
  overflow: hidden;
  background-color: #f5f5f5;
}
.index_box_2 img {
  display: block;
}
.index_box_2 .ib_span {
  width: 100%;
  display: flex;
  justify-content: center;
}
.index_box_2 .ib_span span {
  font-size: 28px;
  letter-spacing: 2px;
  padding: 2px 40px;
  border-radius: 50px;
  border: 1px solid #fd7d00;
}
.index_box_2 .box {
  width: 80%;
  margin: 0 auto;
  margin-top: 100px;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.index_box_2 .box .list {
  position: relative;
}
.index_box_2 .box .list .list_box {
  width: 100%;
  position: relative;
  z-index: 2;
}
.index_box_2 .box .list .list_box .title {
  width: 100%;
  display: flex;
}
.index_box_2 .box .list .list_box .title .img img {
  width: 100%;
}
.index_box_2 .box .list .list_box .image {
  width: 100%;
}
.index_box_2 .box .list .list_box .image img {
  width: 100%;
}
.index_box_2 .box .list .xian {
  position: absolute;
  z-index: 1;
  transition-delay: 400ms!important;
}
.index_box_2 .box .list .xian img {
  width: 100%;
}
.index_box_2 .box .phone {
  width: 35%;
  margin-top: 140px;
  position: relative;
}
.index_box_2 .box .phone .ph_box {
  width: 100%;
  position: relative;
  z-index: 2;
}
.index_box_2 .box .phone .ph_box img {
  width: 100%;
}
.index_box_2 .box .phone .ph_box .b {
  display: none;
}
.index_box_2 .box .phone .xian {
  position: absolute;
  z-index: 1;
}
.index_box_2 .box .phone .xian img {
  width: 100%;
}
.index_box_2 .box .phone .x_1 {
  display: none;
}
.index_box_2 .box .list:nth-child(1) {
  width: 46%;
}
.index_box_2 .box .list:nth-child(1) .title {
  margin-left: 35%;
}
.index_box_2 .box .list:nth-child(1) .title .img {
  width: 85%;
}
.index_box_2 .box .list:nth-child(1) .x_1 {
  width: 80%;
  bottom: 7%;
  left: 49%;
}
.index_box_2 .box .list:nth-child(1) .x_2 {
  width: 75%;
  top: 80%;
  left: 10%;
}
.index_box_2 .box .list:nth-child(2) {
  width: 45%;
  margin-top: 20px;
}
.index_box_2 .box .list:nth-child(2) .title {
  justify-content: center;
}
.index_box_2 .box .list:nth-child(2) .title .img {
  width: 70%;
}
.index_box_2 .box .list:nth-child(2) .x_1 {
  width: 70%;
  right: 10%;
  top: 90%;
}
.index_box_2 .box .list:nth-child(2) .x_2 {
  display: none;
}
.index_box_2 .box .list:nth-child(3) {
  width: 52%;
  margin-top: 30px;
}
.index_box_2 .box .list:nth-child(3) .title {
  justify-content: center;
  margin-bottom: 40px;
}
.index_box_2 .box .list:nth-child(3) .title .img {
  width: 56%;
}
.index_box_2 .box .list:nth-child(4) {
  width: 43%;
  margin-top: 90px;
}
.index_box_2 .box .list:nth-child(4) .title {
  justify-content: flex-end;
}
.index_box_2 .box .list:nth-child(4) .title .img {
  width: 64%;
}
.index_box_2 .box .list:nth-child(4) .image {
  margin-top: -15px;
}
.index_box_2 .box .list:nth-child(4) .x_1 {
  display: none;
}
.index_box_2 .box .list:nth-child(5) {
  width: 52%;
  margin-top: 100px;
  margin-left: 10%;
}
.index_box_2 .box .list:nth-child(5) .title {
  margin-left: 45%;
}
.index_box_2 .box .list:nth-child(5) .title .img {
  width: 77%;
}
.index_box_2 .box .list:nth-child(5) .x_1 {
  width: 70%;
  left: 40%;
  bottom: 60%;
}
.index_box_2 .box .list:nth-child(5) .x_2 {
  display: none;
}
@media (max-width: 1200px) {
  .index_box_2 .ib_span span {
    font-size: 24px;
    padding: 2px 30px;
  }
  .index_box_2 .box {
    width: 96%;
  }
}
@media (max-width: 760px) {
  .index_box_2 {
    padding: 40px 0;
  }
  .index_box_2 .ib_span span {
    font-size: 14px;
    padding: 2px 15px;
  }
  .index_box_2 .box {
    margin-top: 30px;
  }
  .index_box_2 .box .phone {
    width: 75%;
    margin-top: 20px;
    margin-left: 10%;
  }
  .index_box_2 .box .phone .ph_box {
    width: 100%;
  }
  .index_box_2 .box .phone .ph_box .a {
    display: none;
  }
  .index_box_2 .box .phone .ph_box .b {
    display: block;
  }
  .index_box_2 .box .phone .x_1 {
    display: block;
    width: 70%;
    right: 10%;
    bottom: 40%;
  }
  .index_box_2 .box .list .title {
    margin-bottom: 8px;
  }
  .index_box_2 .box .list:nth-child(1) {
    width: 100%;
  }
  .index_box_2 .box .list:nth-child(1) .title {
    margin-left: 0;
  }
  .index_box_2 .box .list:nth-child(1) .title .img {
    width: 85%;
  }
  .index_box_2 .box .list:nth-child(1) .x_1 {
    display: none;
  }
  .index_box_2 .box .list:nth-child(1) .x_2 {
    width: 68%;
    top: 80%;
    left: 4%;
  }
  .index_box_2 .box .list:nth-child(2) {
    width: 90%;
    margin: 0 5%;
    margin-top: 20px;
  }
  .index_box_2 .box .list:nth-child(2) .title .img {
    width: 74%;
  }
  .index_box_2 .box .list:nth-child(2) .x_1 {
    display: none;
  }
  .index_box_2 .box .list:nth-child(2) .x_2 {
    display: block;
    width: 70%;
    top: 95%;
    left: 23%;
  }
  .index_box_2 .box .list:nth-child(3) {
    width: 100%;
    margin-top: 20px;
  }
  .index_box_2 .box .list:nth-child(3) .title {
    margin-bottom: 0;
  }
  .index_box_2 .box .list:nth-child(3) .title .img {
    width: 62%;
  }
  .index_box_2 .box .list:nth-child(4) {
    width: 90%;
    margin-top: 20px;
    margin-left: 8%;
  }
  .index_box_2 .box .list:nth-child(4) .title .img {
    width: 65%;
  }
  .index_box_2 .box .list:nth-child(4) .image {
    margin-top: -15px;
  }
  .index_box_2 .box .list:nth-child(4) .x_1 {
    display: block;
    width: 68%;
    bottom: 75%;
    left: 18%;
  }
  .index_box_2 .box .list:nth-child(5) {
    width: 100%;
    margin-top: 20px;
    margin-left: 0;
  }
  .index_box_2 .box .list:nth-child(5) .title {
    margin-left: 0;
    justify-content: center;
  }
  .index_box_2 .box .list:nth-child(5) .title .img {
    width: 86%;
  }
  .index_box_2 .box .list:nth-child(5) .x_1 {
    display: none;
  }
  .index_box_2 .box .list:nth-child(5) .x_2 {
    display: block;
    width: 20%;
    bottom: 40%;
    right: 3%;
  }
}
.photo_partner {
  background: url('../img/018.png'), #fcfefd;
  background-repeat: no-repeat;
  background-size: cover;
}
.photo {
  overflow: hidden;
  width: 100%;
  padding: 100px 0;
}
.photo .box_top {
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.photo .box_top .index_title_1 {
  width: auto;
  justify-content: flex-start;
}
.photo .box_top .index_title_1 .it_box strong {
  background-image: -webkit-linear-gradient(rgba(244, 244, 244, 0.5), transparent);
}
.photo .box_top a {
  width: 80px;
  height: 48px;
  border: 2px solid white;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.photo .box_top a img {
  width: 40px;
}
.photo .list {
  width: 96%;
  margin: 0 auto;
  margin-top: 25px;
  display: none;
  flex-flow: row wrap;
}
.photo .list a {
  width: calc((100% - 10px) / 2);
  margin-right: 10px;
  margin-bottom: 10px;
  display: block;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 15px;
  overflow: hidden;
}
.photo .list a .image {
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  box-sizing: border-box;
  border: 1px solid white;
}
.photo .list a .image img {
  width: 100%;
  display: block;
}
.photo .list a span {
  text-align: center;
  color: black;
  font-weight: 600;
  padding: 10px;
  box-sizing: border-box;
  font-size: 14px;
}
.photo .list a:nth-child(2n) {
  margin-right: 0;
}
@media (max-width: 760px) {
  .photo {
    padding: 40px 0;
  }
  .photo .box_top .index_title_1 {
    margin: 0;
  }
  .photo .box_top a {
    width: 40px;
    height: 24px;
  }
  .photo .box_top a img {
    width: 20px;
  }
  .photo .list {
    display: flex;
  }
  .photo .list a:nth-child(n+9){
    display: none;
  }
}
.partner {
  width: 100%;
  overflow: hidden;
  padding-bottom: 100px;
}
.partner .pt_swiper_box {
  width: 85%;
  margin: 0 auto;
  margin-top: 80px;
  position: relative;
}
.partner .pt_swiper_box .swiper-button-next,
.partner .pt_swiper_box .swiper-button-prev:after {
  color: rgba(0, 0, 0, 0) !important;
}
.partner .pt_swiper_box .swiper-button-next,
.partner .pt_swiper_box .swiper-button-prev {
  display: block;
  width: 22px;
  height: 40px;
  margin-top: -20px;
}
.partner .pt_swiper_box .swiper-button-next {
  right: 0;
  background: url('../img/right2.png');
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center center;
}
.partner .pt_swiper_box .swiper-button-prev {
  left: 0;
  background: url('../img/left2.png');
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center center;
}
@media (max-width: 1200px) {
  .partner .pt_swiper_box {
    width: 96%;
  }
}
@media (max-width: 760px) {
  .partner {
    padding-bottom: 40px;
  }
  .partner .pt_swiper_box {
    margin-top: 25px;
  }
  .partner .pt_swiper_box .swiper-button-next,
  .partner .pt_swiper_box .swiper-button-prev {
    width: 16px;
    height: 30px;
    margin-top: -15px;
  }
}
.list_honor {
  background: url('../img/022_1.jpg') no-repeat;
  background-size: cover;
}
.list_honor img {
  display: block;
}
@media (max-width: 760px) {
  .list_honor {
    background: #fefefe;
  }
}
.index_box_3 {
  width: 85%;
  padding-top: 20px;
  overflow: hidden;
  margin: 0 auto;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}
.index_box_3 .list .lbox {
  width: 160px;
  height: 150px;
  border-radius: 10px;
  background-color: #f6c579;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.index_box_3 .list .lbox img {
  width: 48px;
  height: 50px;
  object-fit: contain;
  transition: 400ms;
}
.index_box_3 .list .lbox span {
  color: white;
  font-weight: 600;
  margin-top: 8px;
  transform: skewX(-8deg);
  font-size: 26px;
}
.index_box_3 .list .lbox p {
  margin: 0;
  position: absolute;
  top: -20px;
  left: -20px;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background-color: #8f0419;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 1200ms;
}
.index_box_3 .list .lbox p strong {
  color: white;
  font-weight: 600;
  font-size: 50px;
  transform: skewX(-8deg);
}
.index_box_3 .list .lbox:hover img {
  transform: rotate(30deg);
}
.index_box_3 .list .lbox:hover p {
  transform: rotate(360deg);
}
@media (max-width: 1550px) {
  .index_box_3 .list {
    width: 25%;
    margin-bottom: 35px;
  }
  .index_box_3 .list .lbox {
    margin: 0 auto;
  }
  .index_box_3 .list:nth-child(n+5) {
    margin-bottom: 0;
  }
}
@media (max-width: 1200px) {
  .index_box_3 {
    width: calc(96% - 40px);
  }
}
@media (max-width: 760px) {
  .index_box_3 {
    width: calc(96% - 10px);
  }
  .index_box_3 .list {
    margin-bottom: 25px;
  }
  .index_box_3 .list .lbox {
    width: 70px;
    height: 70px;
    border-radius: 4px;
  }
  .index_box_3 .list .lbox img {
    width: 26px;
    height: 30px;
  }
  .index_box_3 .list .lbox span {
    margin-top: 4px;
    font-size: 12px;
  }
  .index_box_3 .list .lbox p {
    top: -10px;
    left: -10px;
    width: 30px;
    height: 30px;
  }
  .index_box_3 .list .lbox p strong {
    font-size: 20px;
  }
}
.honor {
  padding: 100px 0;
  overflow: hidden;
  width: 100%;
  position: relative;
}
.honor .box {
  width: 96%;
  margin: 0 auto;
  margin-top: 30px;
  display: none;
  justify-content: space-between;
  flex-flow: row wrap;
}
.honor .box a {
  width: calc((100% - 10px) / 2);
  display: block;
  margin-bottom: 10px;
}
.honor .box a .image {
  width: 100%;
  overflow: hidden;
}
.honor .box a .image img {
  width: 100%;
}
.honor .b_image {
  width: 100%;
  position: absolute;
  z-index: 1;
  bottom: -3%;
  left: 0;
}
.honor .b_image img {
  width: 100%;
}
@media (max-width: 760px) {
  .honor {
    padding: 40px 0;
    background: url('../img/022_2.jpg'), url('../img/022_1.jpg');
    background-repeat: no-repeat, no-repeat;
    background-size: 50% auto,100% auto;
    background-position: left top,center bottom;
  }
  .honor .box {
    display: flex;
  }
  .honor .box a:nth-child(n+9) {
      display: none;
    }
  .honor .b_image {
    display: none;
  }
}
@keyframes up_1 {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-200%);
  }
}
@keyframes up_2 {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-100%);
  }
}
@keyframes up_stop {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(0);
  }
}
.up_1 {
  animation: up_1 16000ms linear infinite;
  animation-delay: 2000ms;
}
.up_2 {
  animation: up_1 16000ms linear infinite;
  animation-delay: 10000ms;
}
.up_3 {
  animation: up_2 8000ms linear;
  animation-fill-mode: forwards;
}
@media (max-width: 760px) {
  .up_3 {
    animation: up_stop;
    animation-fill-mode: none;
  }
}
.new {
  overflow: hidden;
  width: 100%;
  background-color: #f6f8fb;
}
.new img {
  display: block;
}
.new .ib_span {
  width: 100%;
  display: flex;
  justify-content: center;
}
.new .ib_span span {
  font-size: 28px;
  letter-spacing: 2px;
  padding: 2px 40px;
  border-radius: 50px;
  border: 1px solid #fd7d00;
}
.new .new_image {
  width: 100%;
  margin-top: 60px;
}
.new .new_image img {
  width: 100%;
}
.new .column {
  width: 100%;
  display: flex;
}
.new .column .list {
  width: calc(100% / 3);
  background-color: #044ac4;
  border-bottom: 5px solid #f6f8fb;
  padding: 20px 0;
  transition: 400ms;
  display: flex;
  justify-content: center;
  align-items: center;
}
.new .column .list span {
  color: white;
  font-size: 26px;
}
.new .column .list img {
  width: 25px;
  margin-left: 10px;
}
.new .column .list:hover {
  border-bottom: 5px solid #fd7d00;
}
.new .column .active {
  border-bottom: 5px solid #fd7d00;
}
.new .box {
  width: 85%;
  margin: 0 auto;
  padding: 100px 0;
}
.new .box .box_1 {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.new .box .box_1 .box_left {
  width: 48%;
  display: flex;
  align-items: center;
}
.new .box .box_1 .box_left a {
  width: 100%;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  display: block;
  padding: 40px;
  background-color: white;
  border-bottom: 2px solid #fd7d00;
}
.new .box .box_1 .box_left a img {
  width: 100%;
}
.new .box .box_1 .box_left a .text {
  padding-top: 50px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.new .box .box_1 .box_left a .text .time {
  width: 140px;
  color: #292929;
  font-size: 24px;
}
.new .box .box_1 .box_left a .text span {
  width: calc(100% - 170px);
  color: #292929;
  letter-spacing: 1px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 24px;
}
.new .box .box_1 .box_right {
  width: 48%;
}
.new .box .box_1 .box_right a {
  width: 100%;
  box-sizing: border-box;
  padding: 35px 40px 35px 100px;
  border-bottom: 2px dashed #dadada;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.new .box .box_1 .box_right a .time {
  width: 140px;
  color: #292929;
  font-size: 24px;
}
.new .box .box_1 .box_right a span {
  width: calc(100% - 200px);
  color: #292929;
  letter-spacing: 1px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 24px;
}
.new .box .box_1 .box_right a img {
  width: 12px;
}
.new .box .box_1 .box_right a:before {
  content: '';
  width: 30px;
  height: 8px;
  background-color: #fd7d00;
  position: absolute;
  top: 50%;
  left: 45px;
  margin-top: -4px;
}
.new .box .box_1 .box_right a:hover {
  background-color: white;
  border-bottom: 2px solid white;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.new .box .box_2 {
  width: 100%;
  height: 750px;
  overflow: hidden;
  position: relative;
}
.new .box .box_2 .list_box {
  width: 100%;
}
.new .box .box_2 .list_box .list {
  width: 100%;
  height: 240px;
  padding: 0 40px;
  box-sizing: border-box;
  background-color: white;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.new .box .box_2 .list_box .list strong,
.new .box .box_2 .list_box .list a,
.new .box .box_2 .list_box .list p {
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.new .box .box_2 .list_box .list .box_top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.new .box .box_2 .list_box .list .box_top strong {
  width: 50px;
  height: 50px;
  border-radius: 4px;
  text-align: center;
  line-height: 50px;
  color: white;
  background-color: #fd7d00;
  font-size: 28px;
}
.new .box .box_2 .list_box .list .box_top a {
  width: calc(100% - 70px);
  color: #fd7d00;
  -webkit-line-clamp: 1;
  font-size: 24px;
}
.new .box .box_2 .list_box .list .box_top a:hover {
  text-decoration: underline;
}
.new .box .box_2 .list_box .list .box_bottom {
  width: 100%;
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.new .box .box_2 .list_box .list .box_bottom strong {
  width: 50px;
  height: 50px;
  border-radius: 4px;
  text-align: center;
  line-height: 50px;
  color: white;
  background-color: #707070;
  font-size: 28px;
}
.new .box .box_2 .list_box .list .box_bottom p {
  margin: 0;
  width: calc(100% - 70px);
  color: #707070;
  font-size: 24px;
}
.new .box .box_2 .list_box .list:nth-child(n+5) {
  display: none;
}
.new .box .box_2 .list_box:nth-child(1) {
  position: absolute;
  top: 0;
  left: 0;
}
.new .box .box_2 .list_box:nth-child(2) {
  position: absolute;
  top: 100%;
  left: 0;
}
.new .box .box_2 .list_box:nth-child(3) {
  position: absolute;
  top: 100%;
  left: 0;
}
.new .box .box_2:hover .list_box {
  animation-play-state: paused;
}
@media (max-width: 1200px) {
  .new .box .box_1 {
    flex-flow: row wrap;
  }
  .new .box .box_1 .box_left {
    width: 100%;
  }
  .new .box .box_1 .box_right {
    width: 100%;
    margin-top: 40px;
  }
}
@media (max-width: 760px) {
  .new {
    padding-bottom: 20px;
  }
  .new .ib_span span {
    font-size: 12px;
    padding: 2px 10px;
    letter-spacing: 1px;
  }
  .new .new_image {
    margin-top: 20px;
  }
  .new .column .list {
    border-bottom: 2px solid #f6f8fb;
    padding: 10px 0;
  }
  .new .column .list span {
    font-size: 16px;
  }
  .new .column .list img {
    width: 14px;
    margin-left: 4px;
  }
  .new .column .list:hover {
    border-bottom: 2px solid #fd7d00;
  }
  .new .column .active {
    border-bottom: 2px solid #fd7d00;
  }
  .new .box {
    padding: 25px 0;
    width: 96%;
  }
  .new .box .box_1 .box_left a {
    padding: 20px;
  }
  .new .box .box_1 .box_left a .text {
    padding-top: 20px;
  }
  .new .box .box_1 .box_left a .text .time {
    width: 75px;
    font-size: 12px;
  }
  .new .box .box_1 .box_left a .text span {
    width: calc(100% - 90px);
    font-size: 14px;
  }
  .new .box .box_1 .box_right {
    margin-top: 20px;
  }
  .new .box .box_1 .box_right a {
    padding: 15px 15px 15px 50px;
    border-bottom: 1px dashed #b5b5b5;
  }
  .new .box .box_1 .box_right a .time {
    width: 75px;
    font-size: 12px;
  }
  .new .box .box_1 .box_right a span {
    width: calc(100% - 90px);
    font-size: 14px;
  }
  .new .box .box_1 .box_right a img {
    width: 5px;
  }
  .new .box .box_1 .box_right a:before {
    width: 18px;
    height: 4px;
    left: 20px;
    margin-top: -2px;
  }
  .new .box .box_1 .box_right a:hover {
    border-bottom: 1px solid white;
  }
  .new .box .box_2 {
    height: auto;
    overflow: visible;
  }
  .new .box .box_2 .list_box {
    position: static!important;
  }
  .new .box .box_2 .list_box .list {
    height: 130px;
    padding: 0 20px;
    box-sizing: border-box;
    margin-bottom: 15px;
  }
  .new .box .box_2 .list_box .list .box_top strong {
    width: 30px;
    height: 30px;
    border-radius: 4px;
    line-height: 30px;
    font-size: 16px;
  }
  .new .box .box_2 .list_box .list .box_top a {
    width: calc(100% - 50px);
    font-size: 16px;
  }
  .new .box .box_2 .list_box .list .box_bottom strong {
    width: 30px;
    height: 30px;
    border-radius: 4px;
    line-height: 30px;
    font-size: 16px;
  }
  .new .box .box_2 .list_box .list .box_bottom p {
    width: calc(100% - 50px);
    font-size: 16px;
  }
  .new .box .box_2 .list_box:nth-child(n+2) {
    display: none!important;
  }
}
.link {
  width: 100%;
  background-color: #f6f8fb;
  display: flex;
  justify-content: center;
}
.link img {
  display: block;
}
.link .link_box {
  width: 85%;
  margin-bottom: -50px;
  margin-left: -3%;
  position: relative;
  z-index: 5;
}
.link .link_box i {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: #fd7d00;
  border-radius: 15px;
  transform: skewX(-10deg);
}
.link .link_box .box {
  width: 100%;
  height: 100px;
  box-sizing: border-box;
  padding: 0 40px;
  background-color: #044ac4;
  border-radius: 15px;
  display: flex;
  align-items: center;
  transform: skewX(-10deg);
}
.link .link_box .box .title {
  transform: skewX(10deg);
  display: flex;
  justify-content: center;
  align-items: center;
}
.link .link_box .box .title img {
  width: 35px;
}
.link .link_box .box .title span {
  color: white;
  letter-spacing: 2px;
}
.link .link_box .box .title span:nth-child(2) {
  margin-left: 30px;
  font-size: 30px;
  font-weight: 600;
}
.link .link_box .box .title span:nth-child(3) {
  font-size: 34px;
  margin: 0 10px;
}
.link .link_box .box .title span:nth-child(4) {
  font-size: 34px;
}
.link .link_box .box .abox {
  width: calc(100% - 320px);
  transform: skewX(10deg);
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.link .link_box .box .abox a {
  display: block;
  color: white;
  margin: 5px 0;
  font-size: 20px;
  margin-left: 50px;
  position: relative;
}
.link .link_box .box .abox a:before {
  content: '';
  width: 1px;
  height: 24px;
  background-color: rgba(255, 255, 255, 0.8);
  position: absolute;
  top: 50%;
  right: -25px;
  margin-top: -12px;
}
@media (max-width: 760px) {
  .link .link_box {
    width: 90%;
    margin-bottom: -30px;
  }
  .link .link_box i {
    top: -10px;
    right: -10px;
    border-radius: 8px;
  }
  .link .link_box .box {
    height: 60px;
    padding: 0 15px;
    border-radius: 8px;
  }
  .link .link_box .box .title img {
    width: 16px;
  }
  .link .link_box .box .title span:nth-child(2) {
    margin-left: 3px;
    font-size: 14px;
  }
  .link .link_box .box .title span:nth-child(3) {
    font-size: 14px;
    margin: 0 3px;
  }
  .link .link_box .box .title span:nth-child(4) {
    font-size: 14px;
  }
  .link .link_box .box .abox {
    width: calc(100% - 140px);
  }
  .link .link_box .box .abox a {
    margin: 4px 0;
    font-size: 12px;
    margin-left: 10px;
  }
  .link .link_box .box .abox a:before {
    width: 1px;
    height: 12px;
    right: -5px;
    margin-top: -6px;
  }
  .link .link_box .box .abox a:nth-child(n+5) {
    display: none;
  }
}
@media (max-width: 370px) {
  .link .link_box .box .abox a:nth-child(n+3) {
    display: none;
  }
}
.foot {
  width: 100%;
  display: flex;
}
.foot img {
  display: block;
}
.foot .box_1 {
  width: 50%;
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.foot .box_1 .ib_span {
  width: 100%;
  display: flex;
  justify-content: center;
}
.foot .box_1 .ib_span span {
  font-size: 28px;
  letter-spacing: 2px;
  padding: 2px 40px;
  border-radius: 50px;
  border: 1px solid #fd7d00;
}
.foot .box_1 .list_box {
  margin-top: 80px;
}
.foot .box_1 .list_box .list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 30px;
}
.foot .box_1 .list_box .list .img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 1px solid #949494;
  display: flex;
  justify-content: center;
  align-items: center;
}
.foot .box_1 .list_box .list .img img {
  width: 55px;
  height: 50px;
  object-fit: contain;
}
.foot .box_1 .list_box .list p {
  margin: 0;
  margin-left: 25px;
}
.foot .box_1 .list_box .list p span {
  color: #0073ea;
  font-size: 26px;
}
.foot .box_1 .list_box .list p strong {
  color: #4a4a4a;
  font-size: 40px;
}
.foot .box_1 .list_box .list:nth-last-child(1) {
  margin-bottom: 0;
}
.foot .box_2 {
  width: 50%;
  position: relative;
  /*z-index: 2;*/
}
.foot .box_2 .image {
  width: 100%;
  height: 840px;
}
.foot .box_2 .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.foot .box_2 .erwei {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.foot .box_2 .erwei .img {
  padding: 8px;
  margin: 0 15px;
  background-color: #f6c579;
  border: 6px solid #fd7d00;
}
.foot .box_2 .erwei .img img {
  width: 140px;
}
.foot .box_2 .erwei .img span {
  width: 100%;
  text-align: center;
  color: white;
  margin-top: 8px;
  font-size: 14px;
}
@media (max-width: 1400px) {
  .foot {
    flex-flow: row wrap;
    padding: 100px 0;
  }
  .foot .box_1 {
    width: 100%;
  }
  .foot .box_2 {
    width: 100%;
  }
  .foot .box_2 .image {
    display: none;
  }
  .foot .box_2 .erwei {
    width: 100%;
    padding-top: 40px;
    height: auto;
    position: static;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .foot .box_2 .erwei .img {
    margin: 0 30px;
  }
}
@media (max-width: 760px) {
  .foot {
    padding: 60px 0 30px 0;
  }
  .foot .box_1 .ib_span span {
    font-size: 12px;
    padding: 2px 10px;
    letter-spacing: 1px;
  }
  .foot .box_1 .list_box {
    margin-top: 30px;
    max-width: 96%;
  }
  .foot .box_1 .list_box .list {
    margin-bottom: 20px;
  }
  .foot .box_1 .list_box .list .img {
    width: 50px;
    height: 50px;
  }
  .foot .box_1 .list_box .list .img img {
    width: 35px;
    height: 30px;
  }
  .foot .box_1 .list_box .list p {
    margin: 0;
    margin-left: 10px;
  }
  .foot .box_1 .list_box .list p span {
    font-size: 14px;
  }
  .foot .box_1 .list_box .list p strong {
    font-size: 22px;
  }
  .foot .box_2 .erwei {
    padding-top: 20px;
  }
  .foot .box_2 .erwei .img {
    padding: 6px;
    margin: 0 20px;
    border: 4px solid #fd7d00;
  }
  .foot .box_2 .erwei .img img {
    width: 100px;
  }
  .foot .box_2 .erwei .img span {
    margin-top: 6px;
    font-size: 12px;
  }
}
@media (max-width: 760px) {
  body {
    min-height: calc(100% - 110px);
    padding-bottom: 110px;
  }
}
.foot_copyright {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #044ac4;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}
.foot_copyright .fc {
  text-decoration: none;
  color: white;
  font-size: 12px;
  margin: 0 4px;
}
@media (max-width: 760px) {
  .foot_copyright {
    bottom: 70px;
  }
}
.tabber {
  width: 100%;
  height: 70px;
  display: none;
  justify-content: space-between;
  background-color: #044ac4;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 60;
}
.tabber a {
  width: 25%;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  position: relative;
}
.tabber a img {
  height: 26px;
  display: block;
}
.tabber a span {
  display: block;
  font-size: 14px;
  color: white;
  margin-top: 3px;
}
.tabber .active {
  background-color: #f6c579;
}
.tabber a:before {
  content: '';
  width: 1px;
  height: 36px;
  background-color: white;
  position: absolute;
  top: 50%;
  margin-top: -18px;
  right: -0.5px;
}
.tabber a:nth-last-child(1):before {
  display: none;
}
@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;
  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: #fd7d00;
  margin-top: 5px;
}
.common .commonbox .common_title_2 {
  letter-spacing: 2px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #676767;
}
.common .commonbox .common_title_2 .text {
  display: flex;
  align-items: center;
}
.common .commonbox .common_title_2 .text span {
  font-size: 22px;
  color: #fd7d00;
}
.common .commonbox .common_title_2 .text p {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  margin: 0 10px;
}
.common .commonbox .common_title_2 .ge {
  width: 50px;
  height: 5px;
  background-color: #fd7d00;
  margin-top: 5px;
}
@media (max-width: 1200px) {
  .common .commonbox {
    width: 90%;
  }
}
@media (max-width: 1200px) {
  .common .commonbox .common_title_2 {
    letter-spacing: 1px;
  }
  .common .commonbox .common_title_2 .text span {
    font-size: 16px;
  }
  .common .commonbox .common_title_2 .text p {
    font-size: 20px;
    margin: 0 5px;
  }
}
@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: 180px;
  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: #fd7d00;
  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: #fd7d00;
  color: white;
}
.com_column_box .com_content_box {
  width: calc(100% - 200px);
}
@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: #044ac4;
    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;
   background-color: #044ac4;
  display: block;
  margin-right: 20px;
  margin-bottom: 20px;
  width: calc((100% - 40px) / 3);
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.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;
 
}
.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;
  }
  .com_product_box a:nth-child(n+9) {
    display: none;
  }
}
.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: #fd7d00;
  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%;
  box-sizing: border-box;
  display: block;
  text-decoration: none;
  color: black;
  padding: 20px 15px;
  margin-bottom: 20px;
  border-bottom: 2px solid #fd7d00;
}
.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: 22px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.com_new_box a p {
  margin: 0;
  font-size: 14px;
  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 #044ac4;
  box-shadow: 0 0 2px rgba(51, 178, 83, 0.6);
}
.com_new_box a:hover span {
  color: #044ac4;
}
@media (max-width: 760px) {
  .com_new_box a {
    width: 100%;
  }
  .com_new_box a span {
    font-size: 18px;
  }
}
.com_select_box {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.com_select_box a {
  width: 100%;
  box-sizing: border-box;
  display: block;
  text-decoration: none;
  color: black;
  padding: 20px 15px;
  margin-bottom: 20px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}
.com_select_box a .box_top {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.com_select_box a .box_top .time {
  display: block;
  width: 100px;
  text-align: right;
  font-size: 14px;
}
.com_select_box a .box_top span {
  display: block;
  width: calc(100% - 100px);
  font-weight: 600;
  font-size: 22px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.com_select_box a p {
  margin: 0;
  margin-top: 6px;
  font-size: 14px;
  text-align: justify;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.com_select_box a:hover {
  box-shadow: 0 0 4px rgba(51, 178, 83, 0.6);
}
.com_select_box a:hover span {
  color: #044ac4;
}
@media (max-width: 760px) {
  .com_select_box a .box_top .time {
    width: 80px;
    font-size: 12px;
  }
  .com_select_box a .box_top span {
    width: calc(100% - 80px);
    font-size: 16px;
  }
  .com_select_box a p {
    margin-top: 6px;
    font-size: 14px;
  }
}
.tabber{
  box-shadow: 0 0 3px #fc4609;
}