html {
  width: 100%;
  height: 100%;
}
body {
  width: 100%;
  min-height: 100%;
  position: relative;
  margin: 0;
  padding-bottom: 290px;
}
@keyframes right {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.right {
  animation: right 500ms;
}
.left {
  animation: left 500ms;
}
.index_title {
  width: 100%;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}
.index_title span {
  display: block;
  position: relative;
  color: white;
  font-size: 26px;
  background-color: #0262b8;
  text-align: center;
  text-indent: 23px;
  line-height: 50px;
  width: 240px;
  height: 50px;
  border-right: 30px solid #f97d1b;
}
.index_title span:before {
  content: '';
  width: 0;
  height: 0;
  border-color: transparent #0262b8 transparent transparent;
  border-style: solid;
  border-width: 0 16px 50px 0;
  transform: rotate(180deg);
  position: absolute;
  bottom: 0;
  right: -15px;
}
.index_title span::after {
  content: '';
  width: 0;
  height: 0;
  border-color: transparent #f67c1b transparent transparent;
  border-style: solid;
  border-width: 0 16px 50px 0;
  transform: rotate(180deg);
  position: absolute;
  bottom: 0;
  right: -45px;
}
.header {
  width: 100%;
}
.header .header_box {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .header_box .logo {
  padding: 30px 0 30px 0;
}
.header .header_box .logo img {
  display: block;
}
.header .header_box .contact {
  display: flex;
  align-items: center;
  padding: 30px 0 30px 0;
}
.header .header_box .contact img {
  width: 45px;
  height: 45px;
}
.header .header_box .contact p {
  margin-left: 5px;
  display: flex;
  flex-direction: column;
}
.header .header_box .contact p span {
  color: black;
  font-size: 14px;
}
.header .header_box .contact p span:nth-child(2) {
  color: #f97d1b;
  font-size: 22px;
}
.header .header_box .menu_x {
  display: none;
}
.header .header_box .menu_x .image_btn {
  padding: 8px;
  background-color: #005aa1;
  border-radius: 5px;
}
.header .header_box .menu_x .image_btn img {
  width: 40px;
  height: 30px;
  display: block;
}
@media (max-width: 1200px) {
  .header .header_box {
    width: 96%;
  }
  .header .header_box .contact {
    display: none;
  }
  .header .header_box .menu_x {
    display: block;
  }
}
@media (max-width: 1000px) {
  .header .header_box .logo img {
    width: 400px;
  }
  .header .header_box .contact {
    display: none;
  }
}
@media (max-width: 540px) {
  .header .header_box .logo img {
    width: 300px;
  }
}
@media (max-width: 400px) {
  .header .header_box .logo img {
    width: 240px;
  }
}
.menu {
  width: 100%;
  overflow: hidden;
  background-color: #0262b8;
  display: flex;
  justify-content: center;
}
.menu .menu_box ul {
  padding: 0;
  margin: 0;
}
.menu .menu_box ul li {
  float: left;
  list-style: none;
  padding: 15px 0;
}
.menu .menu_box ul li a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  padding: 0 40px;
  border-left: 1px solid white;
}
.menu .menu_box ul .menu_active {
  background-color: #fa7821;
}
.menu .menu_box ul li:nth-child(1) a {
  border-left: 0;
}
.menu .menu_box ul li:hover {
  background-color: #fa7821;
}
@media (max-width: 1200px) {
  .menu {
    display: none;
  }
}
.menu_hide {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  display: none;
  justify-content: space-between;
  overflow: hidden;
}
.menu_hide .menu_box {
  z-index: 40;
  width: 60%;
  padding-top: 20px;
  height: 100%;
  background-color: white;
  position: absolute;
}
.menu_hide .menu_box ul {
  padding: 0;
  margin: 0;
}
.menu_hide .menu_box ul li {
  text-decoration: none;
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  color: black;
}
.menu_hide .menu_box ul li a {
  width: calc(100% - 40px);
  padding: 0 20px;
  text-decoration: none;
  border-bottom: 1px solid #e3e3e3;
  color: black;
  line-height: 35px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.menu_hide .menu_box ul li a img {
  height: 14px;
  display: block;
}
.menu_hide .menu_box ul li ul {
  display: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
.menu_hide .menu_box ul li ul li {
  width: 100%;
  text-decoration: none;
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: black;
}
.menu_hide .menu_box ul li ul li a {
  width: calc(100% - 60px);
  padding: 0 20px 0 40px;
  text-decoration: none;
  border-bottom: 1px solid #e3e3e3;
  color: black;
  line-height: 35px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.menu_hide .menu_box ul li ul li a img {
  height: 14px;
  display: block;
}
.menu_hide .Mask {
  position: relative;
  z-index: 30;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.1;
}
.introduce {
  width: 100%;
  padding: 30px 0;
  background: url(../img/003.jpg) no-repeat;
  background-size: 100%;
}
.introduce .introducebox {
  width: 1200px;
  margin: 0 auto;
}
.introduce .introducebox .intro_image {
  width: 110%;
}
.introduce .introducebox .intro_image img {
  width: 100%;
  display: block;
}
.introduce .introducebox .text {
  width: 100%;
  text-align: justify;
  font-size: 26px;
  color: black;
  line-height: 40px;
  text-indent: 2em;
}
@media (max-width: 1500px) {
  .introduce .introducebox .intro_image {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media (max-width: 1200px) {
  .introduce .introducebox {
    width: 90%;
  }
}
@media (max-width: 760px) {
  .introduce .introducebox .text {
    font-size: 18px;
    line-height: 26px;
  }
}
.index_image {
  width: 100%;
}
.index_image img {
  width: 100%;
  display: block;
}
.product {
  width: 100%;
}
.product .index_title {
  margin-bottom: 50px;
}
.product .productbox {
  width: 1400px;
  position: relative;
  margin: 0 auto;
}
.product .productbox .swiper-button-next,
.product .productbox .swiper-button-prev:after {
  color: rgba(0, 0, 0, 0) !important;
}
.product .productbox .swiper-button-next,
.product .productbox .swiper-button-prev {
  width: 42px;
  height: 42px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.product .productbox .swiper-button-next {
  right: 0;
  background-image: url(../img/right.png);
}
.product .productbox .swiper-button-prev {
  left: 0;
  background-image: url(../img/left.png);
}
@media (max-width: 1400px) {
  .product .productbox {
    width: 90%;
  }
}
@media (max-width: 540px) {
  .product .index_title {
    margin-top: 15px;
  }
}
.address {
  width: 100%;
  padding-top: 100px;
  margin-top: 30px;
  background: url(../img/003.jpg) no-repeat;
  background-size: 100%;
  background-position: top;
  padding-bottom: 30px;
}
.address .addressbox {
  width: 1400px;
  position: relative;
  margin: 0 auto;
  
}
.address .addressbox .swiper-button-next,
.address .addressbox .swiper-button-prev:after {
  color: rgba(0, 0, 0, 0) !important;
}
.address .addressbox .swiper-button-next,
.address .addressbox .swiper-button-prev {
  width: 42px;
  height: 42px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.address .addressbox .swiper-button-next {
  right: 0;
  background-image: url(../img/right.png);
}
.address .addressbox .swiper-button-prev {
  left: 0;
  background-image: url(../img/left.png);
}
@media (max-width: 1400px) {
  .address .addressbox {
    width: 90%;
  }
}
@media (max-width: 540px) {
  .product .index_title {
    margin-top: 15px;
  }
}
.honor {
  width: 100%;
  background: url(../img/012.png) no-repeat;
  background-size: 100% 100%;
  padding: 50px 0;
}
.honor .honorbox {
  width: 1400px;
  padding-top: 20px;
  position: relative;
  margin: 0 auto;
}
.honor .honorbox .swiper-button-next,
.honor .honorbox .swiper-button-prev:after {
  color: rgba(0, 0, 0, 0) !important;
}
.honor .honorbox .swiper-button-next,
.honor .honorbox .swiper-button-prev {
  width: 42px;
  height: 42px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.honor .honorbox .swiper-button-next {
  right: 0;
  background-image: url(../img/right.png);
}
.honor .honorbox .swiper-button-prev {
  left: 0;
  background-image: url(../img/left.png);
}
@media (max-width: 1400px) {
  .honor .honorbox {
    width: 90%;
  }
}
.case {
  width: 100%;
  background: url(../img/003.jpg) no-repeat;
  background-size: 100%;
  padding: 50px 0;
}
.case .casebox {
  width: 1400px;
  padding-top: 20px;
  position: relative;
  margin: 0 auto;
}
.case .casebox .swiper-button-next,
.case .casebox .swiper-button-prev:after {
  color: rgba(0, 0, 0, 0) !important;
}
.case .casebox .swiper-button-next,
.case .casebox .swiper-button-prev {
  width: 42px;
  height: 42px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.case .casebox .swiper-button-next {
  right: 0;
  background-image: url(../img/right.png);
}
.case .casebox .swiper-button-prev {
  left: 0;
  background-image: url(../img/left.png);
}
@media (max-width: 1400px) {
  .case .casebox {
    width: 90%;
  }
}
.new {
  width: 100%;
  padding: 40px 0;
  background: url(../img/012.png) no-repeat;
  background-size: 100% 100%;
}
.new .newbox {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
}
.new .newbox .video {
  width: 48%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.new .newbox .video video {
  width: 100%;
}
.new .newbox .new_box {
  width: 48%;
}
.new .newbox .new_box a {
  width: 100%;
  display: block;
  text-decoration: none;
  color: black;
  padding-bottom: 20px;
  margin-bottom: 10px;
  border-bottom: 2px solid black;
}
.new .newbox .new_box a .time {
  width: 100%;
}
.new .newbox .new_box a .time span {
  font-size: 17px;
  font-weight: 600;
}
.new .newbox .new_box a p {
  width: 100%;
  margin: 3px 0;
  font-size: 24px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.new .newbox .new_box a .text {
  height: 48px;
  font-size: 16px;
  position: relative;
  line-height: 24px;
  overflow: hidden;
  text-align: justify;
}
.new .newbox .new_box a .text:after {
  content: "...";
  position: absolute;
  background: url(../img/012.png) no-repeat;
  background-size: auto;
  background-position: center center;
  width: 16px;
  height: 24px;
  top: 24px;
  right: 0;
}
@media (max-width: 1200px) {
  .new .newbox {
    width: 90%;
  }
}
@media (max-width: 760px) {
  .new .newbox {
    flex-direction: column;
    justify-content: center;
  }
  .new .newbox .video {
    width: 100%;
  }
  .new .newbox .new_box {
    width: 100%;
    margin-top: 20px;
  }
}
.foot {
  width: 100%;
  height: 210px;
  padding: 40px 0;
  background: url(../img/013.png) no-repeat;
  background-size: 100% 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.foot .footbox {
  width: 1400px;
  margin: 0 auto;
}
.foot .footbox .foot_menu {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.foot .footbox .foot_menu a {
  text-decoration: none;
  color: white;
  font-size: 18px;
}
.foot .footbox .foot_menu span {
  color: #59adf8;
  font-size: 14px;
  display: block;
  margin: 0 40px;
}
.foot .footbox .foot_menu span:nth-last-child(1) {
  display: none;
}
.foot .footbox .foot_box {
  width: 100%;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
}
.foot .footbox .foot_box .foot1 {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.foot .footbox .foot_box .foot1 .image img {
  width: 600px;
  display: block;
}
.foot .footbox .foot_box .foot1 span {
  display: block;
  margin-top: 20px;
}
.foot .footbox .foot_box .foot1 span p {
  margin: 0;
  color: #d0d0d0;
  font-size: 14px;
}
.foot .footbox .foot_box .foot2 img {
  width: 240px;
  display: block;
}
.foot .footbox .foot_box .foot3 {
  display: flex;
  justify-content: center;
}
.foot .footbox .foot_box .foot3 .image {
  margin: 0 5px;
}
.foot .footbox .foot_box .foot3 .image img {
  width: 120px;
  display: block;
}
.foot .footbox .foot_box .foot3 .image span {
  color: white;
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 5px;
  font-size: 14px;
}
@media (max-width: 1400px) {
  .foot .footbox {
    width: 90%;
  }
  .foot .footbox .foot2 {
    display: none;
  }
}
@media (max-width: 1200px) {
  body {
    padding-bottom: 250px;
  }
  .foot {
    height: 170px;
  }
  .foot .footbox .foot_menu {
    display: none;
  }
  .foot .footbox .foot_box .foot1 .image img {
    width: 400px;
  }
  .foot .footbox .foot_box .foot3 .image img {
    width: 100px;
  }
}
@media (max-width: 760px) {
  body {
    padding-bottom: 24px;
  }
  .foot {
    height: 24px;
    background-size: 100% auto;
    padding: 0;
  }
  .foot .footbox {
    display: none;
  }
}
.foot_copyright {
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px 0;
}
.foot_copyright .fc {
  text-decoration: none;
  color: white;
  font-size: 12px;
  margin: 0 8px;
  display: block;
}
@media (max-width: 760px) {
  .foot_copyright {
    position: static;
  }
}
.common_image {
  width: 100%;
  min-height: 10px;
}
.common_image img {
  width: 100%;
  display: block;
}
.common {
  width: 100%;
  overflow: hidden;
  margin: 30px 0;
  background-position: center center;
  background-size: 100%;
}
.common .commonbox {
  width: 1200px;
  margin: 0 auto;
}
.common .commonbox .common_title {
  font-size: 24px;
  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: #0262b8;
  margin-top: 5px;
}
@media (max-width: 1200px) {
  .common .commonbox {
    width: 90%;
  }
}
.com_our {
  width: 100%;
}
.com_our .com_our_title {
  width: 100%;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #0262b8;
}
.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;
  justify-content: space-between;
}
.com_column_box .column {
  width: 240px;
  height: 100%;
  border-bottom: 40px solid #0262b8;
}
.com_column_box .column h2 {
  width: 100%;
  padding: 10px 0;
  letter-spacing: 2px;
  color: white;
  text-align: center;
  background-color: #0262b8;
  margin: 0;
  margin-bottom: 20px;
}
.com_column_box .column .column_list {
  width: calc(100% - 24px);
  max-height: 900px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0 10px;
  border-left: 2px solid rgba(36, 148, 222, 0.3);
  border-right: 2px solid rgba(36, 148, 222, 0.3);
}
.com_column_box .column .column_list a {
  width: calc(100% - 16px);
  background-color: #0262b8;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 8px;
  margin-bottom: 16px;
  text-decoration: none;
}
.com_column_box .column .column_list a span {
  color: white;
}
.com_column_box .column .column_list a img {
  width: 13px;
  height: 12px;
}
.com_column_box .com_content_box {
  width: calc(100% - 270px);
}
@media (max-width: 1200px) {
  .com_column_box {
    flex-direction: column;
    justify-content: center;
  }
  .com_column_box .column {
    width: 100%;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    border-bottom: 0;
  }
  .com_column_box .column h2 {
    display: none;
  }
  .com_column_box .column .column_list {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 0 4px 0;
    border-left: 0;
    border-right: 0;
    display: flex;
    align-items: center;
  }
  .com_column_box .column .column_list a {
    width: auto;
    display: block;
    white-space: nowrap;
    padding: 4px 10px;
    margin-bottom: 0;
    margin-right: 15px;
  }
  .com_column_box .column .column_list a img {
    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 {
  background-image: radial-gradient(#ffffff 40%, #c5c5c5);
  position: relative;
  margin-bottom: 20px;
  margin-right: 20px;
  width: calc((100% - 40.5px) / 3);
  display: flex;
  justify-content: center;
  align-items: center;
}
.com_product_box a img {
  max-width: 90%;
  max-height: 90%;
  display: block;
}
.com_product_box a:nth-child(3n) {
  margin-right: 0;
}
@media (max-width: 540px) {
  .com_product_box a {
    width: 100%;
    margin-right: 0;
  }
}
.com_new_box {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.com_new_box a {
  width: 48%;
  display: block;
  text-decoration: none;
  color: black;
  padding-bottom: 20px;
  margin-bottom: 10px;
  border-bottom: 2px solid black;
}
.com_new_box a .time {
  width: 100%;
}
.com_new_box a .time span {
  font-size: 17px;
  font-weight: 600;
}
.com_new_box a p {
  width: 100%;
  margin: 3px 0;
  font-size: 24px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.com_new_box a .text {
  height: 48px;
  font-size: 16px;
  position: relative;
  line-height: 24px;
  overflow: hidden;
  text-align: justify;
}
.com_new_box a .text:after {
  content: "...";
  position: absolute;
  background-color: white;
  background-size: auto;
  background-position: center center;
  width: 16px;
  height: 24px;
  top: 24px;
  right: 0;
}
@media (max-width: 760px) {
  .com_new_box a {
    width: 100%;
  }
}
.pagination {
  width: 100%;
  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: #0262b8;
  color: white;
  cursor: pointer;
}
.product_name {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 16px;
  padding: 5px 0;
  background: rgba(0, 85, 255, 0.5);
  color: white;
  position: absolute;
  bottom: 0;
  left: 0;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
