html {
  width: 100%;
  height: 100%;
}
body {
  width: 100%;
  position: relative;
  margin: 0;
  min-height: calc(100% - 80px);
  padding-bottom: 80px;
}
a {
  text-decoration: none;
}
span {
  display: block;
}
.none {
  display: none!important;
}
.visibility {
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
@keyframes opacity_1 {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.opacity_1 {
  animation: opacity_1 1000ms;
}
@keyframes roate_1 {
  0% {
    transform: rotate(0);
  }
  25% {
    transform: rotate(8deg);
  }
  50% {
    transform: rotate(0);
  }
  75% {
    transform: rotate(-8deg);
  }
  100% {
    transform: rotate(0);
  }
}
.roate_1 {
  animation: roate_1 4000ms linear infinite;
}
.header {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.header img {
  display: block;
}
.menu {
  width: 300px;
  height: 85%;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 100px;
  background-color: rgba(9, 67, 159, 0.6);
}
.menu .logo {
  width: 75%;
  margin: 0 auto;
  padding-top: 80px;
}
.menu .logo img {
  width: 100%;
}
.menu ul {
  padding: 0;
  margin: 0;
  margin-top: 50px;
  width: 100%;
}
.menu ul li {
  position: relative;
  list-style: none;
  width: 100%;
}
.menu ul li a {
  width: 100%;
  padding: 20px 40px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.menu ul li a span {
  color: white;
  font-size: 22px;
  text-transform: uppercase;
}
.menu ul li ul {
  display: none;
  position: absolute;
  margin-top: 0;
  top: 0;
  left: 100%;
  width: auto;
  background-color: rgba(9, 67, 159, 0.5);
}
.menu ul li ul li a {
  padding: 15px 35px;
  font-size: 16px;
  color: white;
  white-space: nowrap;
  justify-content: center;
}
.menu ul li:hover {
  background-color: rgba(9, 67, 159, 0.8);
}
.menu ul li:hover ul {
  display: block;
}
@media (max-width: 760px) {
  .menu {
    width: auto;
    height: auto;
    top: 30px;
    left: 0;
    background-color: rgba(9, 67, 159, 0.4);
  }
  .menu .logo {
    width: auto;
    margin: 0 auto;
    padding: 8px 20px;
  }
  .menu .logo img {
    width: 140px;
  }
  .menu ul {
    display: none;
  }
}
.right_btn {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
}
.right_btn .phone,
.right_btn .address {
  position: absolute;
  top: 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}
.right_btn .phone img,
.right_btn .address img {
  width: 35px;
}
.right_btn .phone p,
.right_btn .address p {
  margin: 0;
  position: absolute;
  top: 45px;
  right: 0;
  padding: 5px 0;
  background-color: rgba(255, 255, 255, 0.6);
}
.right_btn .phone p span,
.right_btn .address p span {
  width: 100%;
  color: #011890;
  font-size: 18px;
  box-sizing: border-box;
  white-space: nowrap;
  font-weight: 600;
  padding: 5px 20px;
  border-bottom: 1px solid #3f8be3;
}
.right_btn .phone p span:nth-last-child(1),
.right_btn .address p span:nth-last-child(1) {
  border-bottom: 0;
}
.right_btn .phone {
  right: 220px;
}
.right_btn .address {
  right: 120px;
}
@media (max-width: 760px) {
  .right_btn .phone,
  .right_btn .address {
    top: 40px;
  }
  .right_btn .phone img,
  .right_btn .address img {
    width: 22px;
  }
  .right_btn .phone p,
  .right_btn .address p {
    top: 45px;
    padding: 2px 0;
  }
  .right_btn .phone p span,
  .right_btn .address p span {
    font-size: 13px;
    padding: 2px 10px;
  }
  .right_btn .phone {
    right: 65px;
  }
  .right_btn .address {
    right: 20px;
  }
}
.menu2 {
  width: 100%;
  display: none;
  flex-flow: row wrap;
  background-color: #011890;
}
.menu2 a {
  width: 25%;
  box-sizing: border-box;
  padding: 10px 0;
  border-bottom: 1px solid #2d5eab;
  border-right: 1px solid #2d5eab;
  display: flex;
  justify-content: center;
  align-items: center;
}
.menu2 a span {
  margin: 0 auto;
  color: white;
  text-transform: uppercase;
  font-size: 14px;
}
.menu2 .active span {
  border-radius: 20px;
  border: 1px solid white;
  background-color: #cc242c;
  padding: 2px 8px;
}
.menu2 a:nth-child(n+5) {
  border-bottom: 0;
}
.menu2 a:nth-child(4) {
  border-right: 0;
}
.menu2 a:nth-child(8) {
  border-right: 0;
}
@media (max-width: 760px) {
  .menu2 {
    display: flex;
  }
}
.index_title_1 {
  position: relative;
  padding-top: 30px;
  display: inline-block;
}
.index_title_1 p {
  margin: 0;
  font-size: 70px;
  font-family: '黑体';
  color: rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}
.index_title_1 span {
  font-size: 36px;
  color: white;
  letter-spacing: 3px;
  position: relative;
  z-index: 3;
}
.index_title_1 i {
  display: block;
  width: 100%;
  position: absolute;
  z-index: 2;
  left: 0;
  background-color: #cc242c;
  bottom: 3px;
  height: 8px;
}
@media (max-width: 760px) {
  .index_title_1 {
    padding-top: 17px;
  }
  .index_title_1 p {
    font-size: 38px;
  }
  .index_title_1 span {
    font-size: 24px;
  }
  .index_title_1 i {
    height: 4px;
  }
}
.index_title_2 {
  position: relative;
  padding-bottom: 25px;
  display: inline-block;
}
.index_title_2 p {
  margin: 0;
  font-size: 62px;
  font-family: '黑体';
  color: rgba(45, 93, 172, 0.12);
  white-space: nowrap;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.index_title_2 span {
  font-size: 46px;
  color: black;
  letter-spacing: 3px;
  position: absolute;
  z-index: 3;
  top: 25px;
  left: 0;
}
.index_title_2 span:before {
  content: '';
  width: 100%;
  position: absolute;
  z-index: -2;
  left: 0;
  background-color: #2d5dac;
  bottom: 3px;
  height: 20px;
  border-radius: 10px;
}
@media (max-width: 760px) {
  .index_title_2 {
    padding-bottom: 10px;
  }
  .index_title_2 p {
    font-size: 38px;
  }
  .index_title_2 span {
    font-size: 28px;
    top: 15px;
  }
  .index_title_2 span:before {
    height: 12px;
  }
}
.more {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.more .white {
  border: 2px solid white;
  border-radius: 20px;
  padding: 8px 20px 12px 20px;
  overflow: hidden;
}
.more .white img {
  width: 30px;
}
.more .white .b {
  display: none;
}
.more .white:hover {
  background-color: white;
}
.more .white:hover .a {
  display: none;
}
.more .white:hover .b {
  display: block;
}
.more .blue {
  border: 2px solid #09439f;
  border-radius: 20px;
  padding: 8px 20px 12px 20px;
  overflow: hidden;
}
.more .blue img {
  width: 30px;
}
.more .blue .a {
  display: none;
}
.more .blue:hover {
  background-color: #09439f;
}
.more .blue:hover .b {
  display: none;
}
.more .blue:hover .a {
  display: block;
}
@media (max-width: 760px) {
  .more .white {
    border: 1px solid white;
    padding: 6px 15px 10px 15px;
  }
  .more .white img {
    width: 20px;
  }
  .more .blue {
    border: 1px solid 09439f;
    padding: 6px 15px 10px 15px;
  }
  .more .blue img {
    width: 20px;
  }
}
.our {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-flow: row wrap;
  position: relative;
}
.our img {
  display: block;
}
.our .lbox {
  width: 48%;
}
.our .lbox img {
  width: 100%;
}
.our .column {
  height: 100%;
  position: absolute;
  right: 52%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}
.our .column .list {
  margin-bottom: 15px;
  padding: 20px 50px;
  background-color: #cc242c;
  display: flex;
  align-items: center;
}
.our .column .list span {
  color: white;
  font-size: 24px;
}
.our .column .list .img {
  width: 0;
  overflow: hidden;
  transition: 500ms;
}
.our .column .list .img img {
  width: 30px;
}
.our .column .list:nth-last-child(1) {
  margin-bottom: 0;
}
.our .column .active {
  background-color: #09439f;
}
.our .column .active .img {
  margin-left: 25px;
  width: 35px;
}
.our .rbox {
  width: 52%;
  background-color: #09439f;
  box-sizing: border-box;
  padding: 0 12% 0 5%;
  display: flex;
  align-items: center;
}
.our .rbox .box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.our .rbox .box .text {
  width: 100%;
  margin-top: 30px;
  text-align: justify;
  color: white;
  letter-spacing: 1px;
  font-size: 18px;
  line-height: 55px;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
}
.our .rbox .box .more {
  margin-top: 20px;
}
@media (max-width: 1100px) {
  .our .lbox {
    width: 100%;
  }
  .our .column {
    width: 100%;
    height: auto;
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  .our .column .list {
    width: calc(100% / 3);
    margin-bottom: 0;
    padding: 20px 0;
    justify-content: center;
  }
  .our .column .list span {
    color: white;
    font-size: 20px;
  }
  .our .column .list .img img {
    width: 25px;
  }
  .our .column .active .img {
    margin-left: 5px;
    width: 25px;
  }
  .our .rbox {
    width: 100%;
    padding: 0 10%;
  }
  .our .rbox .box {
    padding: 30px 0 15px 0;
  }
  .our .rbox .box .more .white {
    margin-right: 30px;
  }
}
@media (max-width: 760px) {
  .our .column .list {
    padding: 15px 0;
  }
  .our .column .list span {
    font-size: 17px;
  }
  .our .column .list .img img {
    width: 15px;
  }
  .our .column .active .img {
    width: 15px;
  }
  .our .rbox {
    padding: 0 15px;
  }
  .our .rbox .box .text {
    margin-top: 20px;
    font-size: 15px;
    line-height: 30px;
    -webkit-line-clamp: 100;
  }
  .our .rbox .box .more {
    margin-top: 10px;
  }
}
.product {
  width: 100%;
  overflow: hidden;
  padding: 80px 0;
  background: url('../img/005.jpg') no-repeat;
  background-size: 100% 100%;
  position: relative;
}
.product img {
  display: block;
}
.product .our_title {
  width: 100%;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}
.product .our_title span {
  position: relative;
  text-align: left;
  white-space: nowrap;
  letter-spacing: 2px;
  font-size: 38px;
  color: #09439f;
}
.product .our_title span:after {
  width: 67%;
  color: #363636;
  content: attr(data-content);
  overflow: hidden;
  letter-spacing: 2px;
  position: absolute;
  top: 0;
  left: 0;
  text-align: left;
  white-space: nowrap;
  font-size: 38px;
}
.product .column {
  position: relative;
  width: 1200px;
  margin: 0 auto;
}
.product .column .swiper-button-next,
.product .column .swiper-button-prev:after {
  color: rgba(0, 0, 0, 0) !important;
}
.product .column .swiper-button-next,
.product .column .swiper-button-prev {
  display: block;
  width: 44px;
  height: 44px;
  margin-top: 0;
  top: 9px;
}
.product .column .swiper-button-next {
  right: 0;
  background: url('../img/right.png');
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.product .column .swiper-button-prev {
  left: 0;
  background: url('../img/left.png');
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.product .content {
  width: 90%;
  margin: 0 auto;
  margin-top: 100px;
  display: flex;
  flex-flow: row wrap;
}
.product .content .box {
  width: calc(100% - 200px);
}
.product .content .box .list {
  display: none;
}
.product .content .p_title {
  width: 200px;
  padding: 90px 0;
  box-sizing: border-box;
  background: url('../img/008_1.jpg') no-repeat;
  background-size: 100% 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.product .content .p_title p {
  margin: 0;
  width: 80%;
}
.product .content .p_title p span {
  text-align: right;
  color: white;
  letter-spacing: 2px;
  font-size: 32px;
}
.product .content .p_title p i {
  display: block;
  margin-top: 10px;
  width: 60px;
  height: 4px;
  border-radius: 15px;
  background-color: #bfd7fd;
  float: right;
}
.product .content .p_title .more {
  width: 80%;
}
@media (max-width: 1400px) {
  .product .column {
    width: 90%;
  }
}
@media (max-width: 760px) {
  .product {
    padding: 25px 0;
  }
  .product .our_title {
    margin-bottom: 10px;
  }
  .product .our_title span {
    font-size: 22px;
  }
  .product .our_title span:after {
    font-size: 22px;
  }
  .product .column .swiper-button-next,
  .product .column .swiper-button-prev {
    display: block;
    width: 25px;
    height: 25px;
    top: 18px;
  }
  .product .content {
    margin-top: 20px;
  }
  .product .content .box {
    width: 100%;
    order: 2;
  }
  .product .content .box .list {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
  }
  .product .content .box .list a {
    width: calc(50% - 8px);
    position: relative;
    margin-bottom: 60px;
  }
  .product .content .box .list a img {
    width: 100%;
  }
  .product .content .box .list a p {
    margin: 0;
    width: 100px;
    padding: 15px 0;
    position: absolute;
    z-index: 3;
    bottom: -34px;
    left: 50%;
    margin-left: -50px;
    transition: 500ms;
    background-color: #3e454c;
  }
  .product .content .box .list a p span {
    max-width: 95%;
    text-align: center;
    color: white;
    font-size: 14px;
  }
  .product .content .box .list a p img {
    width: 18px;
    margin: 0 auto;
    margin-top: 10px;
  }
  .product .content .box .list a:hover p {
    bottom: -15px;
    background-color: #cc242c;
  }
  .product .content .p_title {
    order: 1;
    width: 100%;
    padding: 15px;
    background: url('../img/008_2.jpg') no-repeat;
    background-size: 100% 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .product .content .p_title p {
    width: auto;
  }
  .product .content .p_title p span {
    text-align: left;
    font-size: 18px;
  }
  .product .content .p_title p i {
    margin-top: 3px;
    width: 30px;
    height: 3px;
    float: left;
  }
  .product .content .p_title .more {
    width: auto;
  }
}
.ge_index {
  width: 100%;
}
.ge_index img {
  width: 100%;
  display: block;
}
.ge_index .b {
  display: none;
}
@media (max-width: 760px) {
  .ge_index .a {
    display: none;
  }
  .ge_index .b {
    display: block;
  }
}
.sbal {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-flow: row wrap;
}
.sbal img {
  display: block;
}
.sbal a {
  width: 50%;
  overflow: hidden;
  padding: 100px 0;
  display: flex;
  justify-content: space-between;
  background-image: repeating-linear-gradient(to right, #f4f4f4, #bbc6da);
}
.sbal a .lbox {
  width: 50%;
  box-sizing: border-box;
  padding-left: 80px;
}
.sbal a .lbox .sa_title {
  width: 100%;
}
.sbal a .lbox .sa_title span {
  font-size: 44px;
  color: #004fab;
  letter-spacing: 2px;
}
.sbal a .lbox .sa_title p {
  margin: 0;
  color: #004fab;
  font-size: 22px;
  text-transform: uppercase;
}
.sbal a .lbox .text {
  color: #666666;
  font-size: 18px;
  line-height: 34px;
  text-align: justify;
  margin: 35px 0 60px 0;
}
.sbal a .lbox .more {
  justify-content: flex-start;
}
.sbal a .rbox {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sbal a .rbox .image {
  max-width: 85%;
  max-height: 95%;
  transition: 350ms;
}
.sbal a .rbox .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.sbal a:hover .lbox .more .blue {
  background-color: #09439f;
}
.sbal a:hover .lbox .more .blue .b {
  display: none;
}
.sbal a:hover .lbox .more .blue .a {
  display: block;
}
.sbal a:hover .rbox .image {
  transform: scale(1.05);
}
@media (max-width: 1200px) {
  .sbal a {
    width: 100%;
  }
  .sbal a .lbox {
    padding-left: 30px;
  }
  .sbal a:nth-child(2) {
    background-image: repeating-linear-gradient(to right, #bbc6da, #f4f4f4);
  }
  .sbal a:nth-child(2) .lbox {
    order: 2;
    padding-left: 0;
    padding-right: 30px;
  }
  .sbal a:nth-child(2) .rbox {
    order: 1;
  }
}
@media (max-width: 760px) {
  .sbal a {
    padding: 30px 0;
  }
  .sbal a .lbox {
    width: 55%;
    box-sizing: border-box;
    padding-left: 15px;
  }
  .sbal a .lbox .sa_title span {
    font-size: 20px;
  }
  .sbal a .lbox .sa_title p {
    font-size: 12px;
  }
  .sbal a .lbox .text {
    font-size: 12px;
    line-height: 19px;
    margin: 15px 0 20px 0;
  }
  .sbal a .rbox {
    width: 45%;
  }
  .sbal a:nth-child(2) .lbox {
    padding-right: 15px;
  }
}
.ldys {
  width: 100%;
  background: url('../img/013.jpg') no-repeat;
  background-size: cover;
  padding-bottom: 90px;
}
.ldys img {
  display: block;
}
.ldys .image {
  width: 100%;
  margin-top: -17px;
  margin-bottom: 40px;
  position: relative;
}
.ldys .image img {
  width: 340px;
  margin: 0 auto;
}
.ldys .box {
  width: 1450px;
  overflow: hidden;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.ldys .box .lbox,
.ldys .box .rbox {
  width: 27%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ldys .box .lbox .list,
.ldys .box .rbox .list {
  width: 100%;
  margin-bottom: 90px;
  transition: 400ms;
}
.ldys .box .lbox .list span,
.ldys .box .rbox .list span {
  font-size: 28px;
  font-weight: 600;
  color: white;
}
.ldys .box .lbox .list i,
.ldys .box .rbox .list i {
  display: block;
  width: 90px;
  height: 2px;
  margin-top: 8px;
  background-color: #f90811;
}
.ldys .box .lbox .list p,
.ldys .box .rbox .list p {
  margin: 0;
  margin-top: 25px;
  color: white;
  text-align: justify;
  letter-spacing: 1px;
  line-height: 26px;
  font-size: 14px;
}
.ldys .box .lbox .list:nth-child(2),
.ldys .box .rbox .list:nth-child(2) {
  width: 80%;
}
.ldys .box .lbox .list:nth-child(3),
.ldys .box .rbox .list:nth-child(3) {
  margin-bottom: 0;
}
.ldys .box .lbox .list:hover,
.ldys .box .rbox .list:hover {
  transform: scale(1.1);
}
.ldys .box .cbox {
  width: 46%;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ldys .box .cbox img {
  width: 100%;
}
.ldys .box .lbox {
  align-items: flex-start;
  margin-right: -2%;
}
.ldys .box .lbox .list i {
  float: left;
}
.ldys .box .rbox {
  align-items: flex-end;
  margin-left: -2%;
}
.ldys .box .rbox .list span {
  text-align: right;
}
.ldys .box .rbox .list p {
  text-align: left;
}
.ldys .box .rbox .list i {
  float: right;
}
@media (max-width: 1500px) {
  .ldys .box {
    width: 90%;
  }
}
@media (max-width: 1200px) {
  .ldys {
    background-position: top center;
    padding-bottom: 0;
  }
  .ldys .box {
    width: 100%;
    flex-flow: row wrap;
  }
  .ldys .box .lbox,
  .ldys .box .rbox {
    width: 100%;
    background-color: #d92729;
  }
  .ldys .box .lbox .list,
  .ldys .box .rbox .list {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 50px;
  }
  .ldys .box .lbox .list i,
  .ldys .box .rbox .list i {
    background-color: white;
  }
  .ldys .box .lbox .list:nth-child(2),
  .ldys .box .rbox .list:nth-child(2) {
    width: 90%;
  }
  .ldys .box .lbox .list:nth-child(3),
  .ldys .box .rbox .list:nth-child(3) {
    margin-bottom: 50px;
  }
  .ldys .box .lbox {
    order: 2;
    margin-right: 0;
    padding-top: 90px;
  }
  .ldys .box .rbox {
    order: 3;
    margin-left: 0;
    padding-bottom: 40px;
  }
  .ldys .box .cbox {
    width: 100%;
    order: 1;
    margin-bottom: 40px;
  }
  .ldys .box .cbox img {
    width: 70%;
  }
}
@media (max-width: 760px) {
  .ldys {
    background-size: 1700px auto;
  }
  .ldys .image {
    margin-top: -11px;
    margin-bottom: 30px;
  }
  .ldys .image img {
    width: 230px;
  }
  .ldys .box .lbox .list,
  .ldys .box .rbox .list {
    margin-bottom: 30px;
  }
  .ldys .box .lbox .list span,
  .ldys .box .rbox .list span {
    font-size: 24px;
  }
  .ldys .box .lbox .list i,
  .ldys .box .rbox .list i {
    width: 70px;
    height: 2px;
    margin-top: 5px;
  }
  .ldys .box .lbox .list p,
  .ldys .box .rbox .list p {
    margin-top: 15px;
    line-height: 24px;
    font-size: 14px;
  }
  .ldys .box .lbox .list:nth-child(3),
  .ldys .box .rbox .list:nth-child(3) {
    margin-bottom: 30px;
  }
  .ldys .box .lbox {
    padding-top: 50px;
  }
  .ldys .box .rbox {
    padding-bottom: 20px;
  }
  .ldys .box .cbox img {
    width: 90%;
  }
}
.honor {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.honor img {
  display: block;
}
.honor .bei_image {
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.honor .bei_image img {
  width: 1920px;
}
.honor .bei_image .b {
  display: none;
}
.honor .h_box {
  width: 1200px;
  position: absolute;
  top: 100px;
  left: 7%;
}
.honor .h_box .box {
  width: 100%;
  margin-top: 80px;
  display: flex;
  align-items: center;
}
.honor .h_box .box a {
  display: block;
  overflow: hidden;
  width: calc((100% - 40px) / 4);
  position: relative;
  margin-right: 20px;
}
.honor .h_box .box a img {
  width: 100%;
  box-sizing: border-box;
  padding: 2%;
  transition: 500ms;
}
.honor .h_box .box a P {
  width: 100%;
  height: 100%;
  margin: 0;
  position: absolute;
  top: 100%;
  left: 0;
  transition: 500ms;
}
.honor .h_box .box a P span {
  width: 90%;
  color: white;
  font-size: 26px;
  letter-spacing: 1px;
  text-align: center;
  position: absolute;
  z-index: 4;
  bottom: 9%;
  left: 5%;
}
.honor .h_box .box a p:before {
  content: '';
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to top, rgba(48, 96, 173, 0.95) 18%, rgba(48, 96, 173, 0.6) 45%, rgba(107, 182, 26, 0));
  filter: blur(3px);
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
}
.honor .h_box .box a:hover p {
  top: 0;
}
.honor .h_box .box a:nth-child(3) {
  width: calc((100% - 40px) / 2);
  margin-right: 0;
}
.honor .h_box .box a:before {
  content: '';
  background: url('../img/020.png');
  background-size: 100% 100%;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
}
.honor .h_box .box a:nth-child(3):before {
  background: url('../img/022.png');
  background-size: 100% 100%;
}
.honor .h_box .box a:nth-child(1) {
  transition-delay: 500ms;
}
.honor .h_box .box a:nth-child(2) {
  transition-delay: 300ms;
}
.honor .h_box .box a:nth-child(n+4) {
  display: none;
}
.honor .h_box .more {
  width: 100%;
  margin-top: 50px;
}
@media (max-width: 1400px) {
  .honor .h_box {
    width: 90%;
    left: 5%;
  }
}
@media (max-width: 1000px) {
  .honor .bei_image {
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .honor .bei_image img {
    width: 100%;
  }
  .honor .bei_image .a {
    display: none;
  }
  .honor .bei_image .b {
    display: block;
  }
  .honor .h_box .box {
    flex-flow: row wrap;
  }
  .honor .h_box .box a {
    width: calc((100% - 20px) / 2);
    margin-right: 0;
    margin-bottom: 30px;
  }
  .honor .h_box .box a:nth-child(1) {
    margin-right: 20px;
  }
  .honor .h_box .box a:nth-child(3) {
    width: 100%;
  }
}
@media (max-width: 760px) {
  .honor .h_box {
    top: 40px;
  }
  .honor .h_box .box {
    margin-top: 40px;
  }
  .honor .h_box .box a {
    width: calc((100% - 10px) / 2);
    margin-bottom: 20px;
  }
  .honor .h_box .box a:nth-child(1) {
    margin-right: 10px;
  }
  .honor .h_box .more {
    justify-content: flex-start;
    margin-left: 30px;
    margin-top: 10px;
  }
}
.new {
  width: 100%;
  padding-top: 80px;
  background-color: #f8f8f8;
  position: relative;
  margin-bottom: -140px;
}
.new img {
  display: block;
}
.new .new_title {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
}
.new .box {
  width: 80%;
  margin: 0 auto;
  margin-top: 70px;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.new .box a {
  width: 46%;
  display: flex;
  justify-content: flex-end;
  position: relative;
  margin-bottom: 40px;
  z-index: 10;
}
.new .box a .time {
  width: 80px;
  height: 80px;
  background-color: #09439f;
  transition: 300ms;
  text-align: center;
  line-height: 80px;
  font-size: 42px;
  font-weight: 600;
  color: white;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -40px;
}
.new .box a .text {
  width: calc(100% - 40px);
  box-sizing: border-box;
  padding: 30px 20px 30px 65px;
  background-color: white;
}
.new .box a .text span {
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #5d5d5d;
  letter-spacing: 1px;
  font-size: 26px;
}
.new .box a .text p {
  margin: 20px 0 30px 0;
  font-size: 18px;
  color: #acacac;
  text-align: justify;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.new .box a .text i {
  display: block;
  width: 90px;
  height: 4px;
  border-radius: 30px;
  transition: 300ms;
  background-color: #09439f;
}
.new .box a:nth-child(2) {
  transition-delay: 200ms!important;
}
.new .box a:nth-child(3) {
  transition-delay: 300ms!important;
}
.new .box a:nth-child(4) {
  transition-delay: 400ms!important;
}
.new .box a:hover .time {
  background-color: #cc242c;
}
.new .box a:hover .text i {
  background-color: #cc242c;
}
@media (max-width: 1200px) {
  .new {
    margin-bottom: -140px;
  }
  .new .new_title {
    justify-content: flex-start;
  }
  .new .box {
    width: 90%;
  }
  .new .box a {
    width: 100%;
  }
}
@media (max-width: 760px) {
  .new {
    padding-top: 40px;
    margin-bottom: -80px;
  }
  .new .box {
    margin-top: 30px;
  }
  .new .box a {
    margin-bottom: 25px;
  }
  .new .box a .time {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 26px;
    margin-top: -25px;
  }
  .new .box a .text {
    width: calc(100% - 25px);
    padding: 15px 15px 15px 40px;
  }
  .new .box a .text span {
    font-size: 17px;
  }
  .new .box a .text p {
    margin: 10px 0 15px 0;
    font-size: 12px;
  }
  .new .box a .text i {
    width: 60px;
    height: 2px;
  }
}
.cooperate {
  width: 100%;
  overflow: hidden;
  padding: 180px 0 70px;
  position: relative;
  z-index: 2;
  background: url('../img/017.jpg') no-repeat;
  background-size: cover;
}
.cooperate img {
  display: block;
}
.cooperate .coo_box {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.cooperate .coo_box .index_title_2 p {
  color: rgba(198, 198, 198, 0.2);
}
.cooperate .coo_box .index_title_2 span {
  color: white;
}
.cooperate .coo_box .index_title_2 span:before {
  background-color: #d92729;
}
.cooperate .coo_box .box {
  width: calc(100% - 270px);
  display: flex;
  justify-content: space-between;
}
.cooperate .coo_box .box .list {
  width: 24%;
  box-sizing: border-box;
  padding: 10px 20px;
  background-color: #d92729;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cooperate .coo_box .box .list img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cooperate .coo_box .box .list:nth-child(2) {
  transition-delay: 200ms!important;
}
.cooperate .coo_box .box .list:nth-child(3) {
  transition-delay: 300ms!important;
}
.cooperate .coo_box .box .list:nth-child(4) {
  transition-delay: 400ms!important;
}
@media (max-width: 1200px) {
  .cooperate {
    padding: 180px 0 70px;
  }
  .cooperate .coo_box {
    width: 90%;
    flex-direction: column;
  }
  .cooperate .coo_box .box {
    width: 100%;
    margin-top: 40px;
    flex-flow: row wrap;
  }
  .cooperate .coo_box .box .list {
    width: 49%;
    margin-bottom: 10px;
  }
}
@media (max-width: 760px) {
  .cooperate {
    padding: 80px 0 30px;
  }
  .cooperate .coo_box .box {
    margin-top: 30px;
  }
  .cooperate .coo_box .box .list {
    padding: 8px 10px;
  }
}
.foot {
  width: 100%;
  overflow: hidden;
  padding: 100px 0;
  background: url('../img/020.jpg') no-repeat;
  background-size: cover;
}
.foot img {
  display: block;
}
.foot .index_title_2 {
  width: 80%;
  margin: 0 auto;
  display: block;
}
.foot .index_title_2 p {
  color: rgba(234, 234, 234, 0.2);
}
.foot .index_title_2 span {
  color: white;
}
.foot .index_title_2 span:before {
  background-color: #d92729;
}
.foot .box {
  width: 80%;
  margin: 0 auto;
  display: flex;
}
.foot .box .lbox {
  width: calc(60% - 30px);
  margin-top: 30px;
  margin-left: 30px;
  position: relative;
}
.foot .box .lbox .text {
  box-sizing: border-box;
  width: 100%;
  padding: 50px 40px;
  position: relative;
  z-index: 3;
  background-color: #d92729;
}
.foot .box .lbox .text .logo {
  width: 100%;
  margin-bottom: 40px;
}
.foot .box .lbox .text .logo img {
  width: 320px;
}
.foot .box .lbox .text p {
  margin: 0;
  margin-bottom: 40px;
  display: flex;
  align-items: flex-start;
}
.foot .box .lbox .text p span {
  display: block;
  color: white;
  letter-spacing: 2px;
  font-size: 28px;
}
.foot .box .lbox .text p span:nth-child(1) {
  white-space: nowrap;
  line-height: 45px;
}
.foot .box .lbox .text p span:nth-child(2) {
  line-height: 45px;
}
.foot .box .lbox .text p:nth-last-child(1) {
  margin-bottom: 0;
}
.foot .box .lbox:before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #09439f;
  position: absolute;
  z-index: 1;
  top: -30px;
  left: -30px;
}
.foot .box .rbox {
  width: 40%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.foot .box .rbox .erwei img {
  width: 180px;
  border: 8px solid rgba(9, 67, 159, 0.5);
  border-radius: 5px;
}
.foot .box .rbox .erwei p {
  margin: 0;
  margin-top: 30px;
  display: flex;
  justify-content: center;
}
.foot .box .rbox .erwei p span {
  padding: 5px 30px;
  border-radius: 20px;
  background-color: #d92729;
  text-align: center;
  color: white;
  font-size: 22px;
}
@media (max-width: 1400px) {
  .foot .box {
    width: 90%;
  }
}
@media (max-width: 1200px) {
  .foot .box {
    flex-direction: column;
  }
  .foot .box .lbox {
    width: calc(100% - 30px);
  }
  .foot .box .rbox {
    width: 100%;
    padding-top: 40px;
  }
}
@media (max-width: 760px) {
  .foot {
    padding: 40px 0;
  }
  .foot .index_title_2 {
    width: calc(100% - 30px);
    padding-bottom: 5px;
  }
  .foot .box {
    width: 100%;
  }
  .foot .box .lbox {
    width: calc(100% - 15px);
    margin-top: 15px;
    margin-left: 15px;
  }
  .foot .box .lbox .text {
    padding: 15px;
  }
  .foot .box .lbox .text .logo {
    margin-bottom: 20px;
  }
  .foot .box .lbox .text .logo img {
    width: 200px;
  }
  .foot .box .lbox .text p {
    margin-bottom: 20px;
  }
  .foot .box .lbox .text p span {
    font-size: 20px;
  }
  .foot .box .lbox .text p span:nth-child(1) {
    line-height: 35px;
  }
  .foot .box .lbox .text p span:nth-child(2) {
    line-height: 35px;
  }
  .foot .box .lbox:before {
    top: -15px;
    left: -15px;
  }
  .foot .box .rbox .erwei img {
    width: 110px;
    border: 5px solid rgba(9, 67, 159, 0.5);
  }
  .foot .box .rbox .erwei p {
    margin-top: 20px;
  }
  .foot .box .rbox .erwei p span {
    padding: 3px 20px;
    font-size: 16px;
  }
}
@media (max-width: 760px) {
  body {
    min-height: calc(100% - 110px);
    padding-bottom: 110px;
  }
}
.foot_copyright {
  position: absolute;
  z-index: 30;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: #16499b;
  display: flex;
  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 {
    height: 40px;
    bottom: 70px;
  }
}
.tabber {
  width: 100%;
  height: 70px;
  display: none;
  justify-content: space-between;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 60;
}
.tabber a {
  width: calc(100% / 3);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.tabber a img {
  height: 22px;
  display: block;
}
.tabber a span {
  display: block;
  font-size: 16px;
  color: white;
  margin-left: 3px;
}
.tabber a:nth-child(1) {
  background-color: #09439f;
}
.tabber a:nth-child(2) {
  background-color: #d92729;
}
.tabber a:nth-child(3) {
  background-color: #393939;
}
@media (max-width: 760px) {
  .tabber {
    display: flex;
  }
}
.common_image {
  width: 100%;
  position: relative;
}
.common_image .logo {
  position: absolute;
  left: 50px;
  top: 50px;
  padding: 8px 20px;
  background-color: rgba(9, 67, 159, 0.4);
}
.common_image .logo img {
  width: 240px;
  display: block;
}
.common_image .image {
  width: 100%;
}
.common_image .image img {
  width: 100%;
  display: block;
}
.common_image .image .b {
  display: none;
}
@media (max-width: 760px) {
  .common_image .logo {
    left: 30px;
    top: 30px;
    padding: 5px 15px;
  }
  .common_image .logo img {
    width: 150px;
  }
  .common_image .image .a {
    display: none;
  }
  .common_image .image .b {
    display: block;
  }
}
.menu3 {
  width: 100%;
  height: 80px;
  background-color: #004fab;
}
.menu3 ul {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.menu3 ul li {
  list-style: none;
  height: 100%;
  display: flex;
  align-items: center;
  margin-right: 5px;
  position: relative;
}
.menu3 ul li a {
  text-decoration: none;
  color: white;
  padding: 10px 30px;
  border-radius: 8px;
  text-transform: uppercase;
  font-size: 18px;
}
.menu3 ul li ul {
  display: none;
  width: auto;
  height: auto;
  position: absolute;
  z-index: 20;
  top: 100%;
  left: 0;
  background-color: #004fab;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
  padding: 10px 0;
  border-radius: 0;
}
.menu3 ul li ul li {
  width: 100%;
  height: auto;
  margin-right: 0;
}
.menu3 ul li ul li a {
  width: 100%;
  padding: 10px;
  border-radius: 0;
  white-space: nowrap;
  color: white;
}
.menu3 ul li:nth-last-child(1) {
  margin-right: 0;
}
.menu3 ul .active a {
  background-color: white;
  color: black;
}
.menu3 ul li:hover a {
  background-color: white;
  color: black;
}
.menu3 ul li:hover ul {
  display: block;
}
.menu3 ul li:hover ul li a {
  background-color: #004fab;
  color: white;
}
.menu3 ul li:hover ul li:hover a {
  background-color: white;
  color: #004fab;
}
@media (max-width: 1200px) {
  .menu3 ul li a {
    padding: 10px;
    font-size: 16px;
  }
}
@media (max-width: 760px) {
  .menu3 {
    height: auto;
  }
  .menu3 ul {
    flex-flow: row wrap;
  }
  .menu3 ul li {
    width: 25%;
    padding: 5px 0;
    box-sizing: border-box;
    margin-right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid white;
    border-right: 1px solid white;
  }
  .menu3 ul li a {
    width: auto;
    padding: 5px 8px;
    text-align: center;
  }
  .menu3 ul li:nth-child(n+5) {
    border-bottom: 0;
  }
  .menu3 ul li:nth-child(4n) {
    border-right: 0;
  }
  .menu3 ul li:hover ul {
    display: none;
  }
}
.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: #cc242c;
  margin-top: 5px;
}
@media (max-width: 1200px) {
  .common .commonbox {
    width: 90%;
  }
}
@media (max-width: 540px) {
  .common {
    padding-top: 10px;
  }
  .common .commonbox .common_title {
    font-size: 20px;
  }
  .common .commonbox .common_title .ge {
    width: 40px;
    height: 3px;
  }
}
.com_our {
  width: 100%;
  overflow: hidden;
}
.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: #004fab;
  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: #004fab;
  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: 35px;
    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 .column_active {
    background-color: #cc242c;
  }
  .com_column_box .column a {
    width: auto;
    padding: 6px 10px;
    margin-bottom: 0;
    font-size: 16px;
    background-color: #004fab;
    margin-right: 15px;
    color: white;
    white-space: nowrap;
  }
  .com_column_box .column a:before {
    display: none;
  }
  .com_column_box .column a:after {
    display: none;
  }
  .com_column_box .column a:nth-last-child(1):before {
    display: none;
  }
  .com_column_box .column a:nth-last-child(1):after {
    display: none;
  }
  .com_column_box .com_content_box {
    width: 100%;
  }
}
.com_product_box {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
}
.com_product_box a {
  text-decoration: none;
  display: block;
  margin-right: 20px;
  margin-bottom: 20px;
  width: calc((100% - 40px) / 3);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  position: relative;
}
.com_product_box a .image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  justify-content: flex-start;
}
.com_product_box a .image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}
.com_product_box a span {
  display: block;
  width: calc(100% - 10px);
  padding: 8px 5px;
  text-align: center;
  color: white;
  background-color: #004fab;
  position: absolute;
  bottom: 0;
  left: 0;
}
.com_product_box a:hover .image img {
  transform: scale(1.2);
  transition: 300ms;
}
.com_product_box a:hover span {
  background-color: #d92729;
}
.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: #004ac2;
  color: white;
  cursor: pointer;
}
.com_new_box {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.com_new_box a {
  width: 46%;
  display: flex;
  justify-content: flex-end;
  position: relative;
  margin-bottom: 40px;
  z-index: 10;
}
.com_new_box a .time {
  width: 80px;
  height: 80px;
  background-color: #09439f;
  transition: 300ms;
  text-align: center;
  line-height: 80px;
  font-size: 42px;
  font-weight: 600;
  color: white;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -40px;
}
.com_new_box a .text {
  width: calc(100% - 40px);
  box-sizing: border-box;
  padding: 30px 20px 30px 65px;
  background-color: #f8f8f8;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}
.com_new_box a .text span {
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #5d5d5d;
  letter-spacing: 1px;
  font-size: 26px;
}
.com_new_box a .text p {
  margin: 20px 0 30px 0;
  font-size: 18px;
  color: #acacac;
  text-align: justify;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.com_new_box a .text i {
  display: block;
  width: 90px;
  height: 4px;
  border-radius: 30px;
  transition: 300ms;
  background-color: #09439f;
}
.com_new_box a:nth-child(2) {
  transition-delay: 200ms!important;
}
.com_new_box a:nth-child(3) {
  transition-delay: 300ms!important;
}
.com_new_box a:nth-child(4) {
  transition-delay: 400ms!important;
}
.com_new_box a:hover .time {
  background-color: #cc242c;
}
.com_new_box a:hover .text i {
  background-color: #cc242c;
}
@media (max-width: 1000px) {
  .com_new_box a {
    width: 100%;
    margin-bottom: 25px;
  }
  .com_new_box a .time {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 26px;
    margin-top: -25px;
  }
  .com_new_box a .text {
    width: calc(100% - 25px);
    padding: 15px 15px 15px 40px;
  }
  .com_new_box a .text span {
    font-size: 17px;
  }
  .com_new_box a .text p {
    margin: 10px 0 15px 0;
    font-size: 12px;
  }
  .com_new_box a .text i {
    width: 60px;
    height: 2px;
  }
}
