html {
  width: 100%;
  height: 100%;
}
body {
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 0;
}
@keyframes right {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes zhendong {
  0% {
    transform: rotate(15deg);
  }
  33% {
    transform: rotate(0deg);
  }
  66% {
    transform: rotate(-15deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.right {
  animation: right 500ms;
}
.left {
  animation: left 500ms;
}
.header {
  width: 100%;
  min-height: 10px;
  position: relative;
}
.header .header_image {
  width: 100%;
}
.header .header_image .b {
  display: none;
}
.header .header_image img {
  width: 100%;
  display: block;
}
.header .header_box {
  width: 1200px;
  padding-top: 20px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -600px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .header_box .logo .b {
  display: none;
}
.header .header_box .logo img {
  width: 240px;
  display: block;
}
.header .header_box .menu .menu_box ul {
  padding: 0;
  margin: 0;
}
.header .header_box .menu .menu_box ul .menu_active a {
  border-bottom: 4px solid #1f54df;
  margin-top: -4px;
}
.header .header_box .menu .menu_box ul li {
  list-style: none;
  float: left;
  position: relative;
}
.header .header_box .menu .menu_box ul li a {
  color: white;
  text-decoration: none;
  display: block;
  margin: 0 18px;
  padding: 15px 0;
}
.header .header_box .menu .menu_box ul li .menu2_box {
  display: none;
  position: absolute;
  
}
.header .header_box .menu .menu_box ul li .menu2_box ul {
  width: auto;
  padding-top: 5px;
}
.header .header_box .menu .menu_box ul li .menu2_box ul li {
  width: 100%;
}
.header .header_box .menu .menu_box ul li .menu2_box ul li a {
  display: block;
  width: 100%;
  text-align: center;
  background-color: rgba(0,0,0,0.5);
  margin: 0;
  padding: 5px 5px;
  white-space: nowrap;
}
.header .header_box .menu .menu_box ul li:hover a {
  border-bottom: 4px solid #1f54df;
  margin-top: -4px;
}
.header .header_box .menu .menu_box ul li:hover .menu2_box {
  display: block;
}
.header .header_box .menu .menu_box ul li:hover .menu2_box a {
  border-bottom: 0;
}
.header .header_box .menu .menu_box ul li:hover .menu2_box li:hover a {
  /*color: #1f54df;*/
  background-color: #1f54df;
}
.header .header_box .menu_x {
  display: none;
}
.header .header_box .menu_x .image_btn img {
  width: 45px;
  display: block;
}
@media (max-width: 1200px) {
  .header .header_box {
    width: 90%;
    margin-left: -45%;
  }
  .header .header_box .menu {
    display: none;
  }
  .header .header_box .menu_x {
    display: block;
  }
}
@media (max-width: 540px) {
  .header .header_image {
    width: 100%;
    padding-top: 65px;
  }
  .header .header_image .a {
    display: none;
  }
  .header .header_image .b {
    display: block;
  }
  .header .header_box {
    width: calc(100% - 60px);
    padding: 0 30px;
    height: 65px;
    background-image: linear-gradient(#557bdf, #1e50d7 30%);
    left: 0;
    margin-left: 0;
  }
  .header .header_box .logo .a {
    display: none;
  }
  .header .header_box .logo .b {
    display: block;
  }
  .header .header_box .logo img {
    width: 200px;
    display: block;
  }
}
.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 {
  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;
  width: 100%;
}
.menu_hide .menu_box ul li ul li {
  width: 100%;
  justify-content: space-between;
}
.menu_hide .menu_box ul li ul li a {
  width: calc(100% - 60px);
  padding: 0 20px 0 40px;
}
.menu_hide .Mask {
  position: relative;
  z-index: 30;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.1;
}
.menu_2 {
  width: 100%;
  padding: 15px 0;
  border-bottom: 10px solid #f7f9fa;
  display: none;
  flex-flow: row wrap;
  background-color: white;
}
.menu_2 a {
  width: calc(100% / 4);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  margin: 7px 0;
}
.menu_2 a .image {
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(240deg, #557bdf, #1e50d7 50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.menu_2 a .image img {
  width: 20px;
}
.menu_2 a span {
  width: 100%;
  font-size: 14px;
  display: block;
  text-align: center;
  color: black;
}
@media (max-width: 540px) {
  .menu_2 {
    display: flex;
  }
}
.introduce {
  width: 100%;
  min-height: 10px;
}
.introduce .introbox {
  width: 1200px;
  padding: 30px 0;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.introduce .introbox .intro_title {
  display: none;
}
.introduce .introbox .intro_title .title {
  display: flex;
}
.introduce .introbox .intro_title .title h2 {
  font-size: 28px;
  color: #1f54df;
  margin: 0;
  white-space: nowrap;
}
.introduce .introbox .intro_title .title h2:nth-child(2) {
  color: black;
  margin-left: 10px;
}
.introduce .introbox .intro_title p {
  text-align: left;
  font-weight: 600;
}
.introduce .introbox .intro_title span {
  display: block;
  width: 60px;
  height: 5px;
  background-color: #1f54df;
}
.introduce .introbox .intro_box1 {
  width: 52%;
  display: flex;
  flex-direction: column;
}
.introduce .introbox .intro_box1 .intro_title {
  width: 100%;
  display: block;
}
.introduce .introbox .intro_box1 .text {
  text-align: justify;
  color: #5a5a5a;
  line-height: 28px;
  margin: 16px 0;
}
.introduce .introbox .intro_box1 .image {
  width: 100%;
}
.introduce .introbox .intro_box1 .image img {
  width: 100%;
  display: block;
}
.introduce .introbox .intro_box2 {
  width: 45%;
  display: flex;
  align-items: flex-end;
}
.introduce .introbox .intro_box2 img {
  width: 100%;
  display: block;
}
@media (max-width: 1200px) {
  .introduce .introbox {
    width: 90%;
  }
}
@media (max-width: 760px) {
  .introduce .introbox {
    display: flex;
    flex-direction: column;
  }
  .introduce .introbox .intro_title {
    display: block;
  }
  .introduce .introbox .intro_title .title {
    display: flex;
  }
  .introduce .introbox .intro_title .title h2 {
    font-size: 20px;
  }
  .introduce .introbox .intro_box1 {
    order: 2;
    width: 100%;
  }
  .introduce .introbox .intro_box1 .intro_title {
    display: none;
  }
  .introduce .introbox .intro_box1 .text {
    order: 2;
  }
  .introduce .introbox .intro_box1 .image {
    order: 1;
  }
  .introduce .introbox .intro_box2 {
    width: 100%;
    padding: 15px 0;
    order: 1;
    align-items: center;
  }
}
@media (max-width: 540px) {
  .introduce .introbox .intro_title .title {
    flex-direction: column;
  }
  .introduce .introbox .intro_title .title h2:nth-child(2) {
    margin-left: 0;
    margin-top: 5px;
  }
  .introduce .introbox .intro_title p {
    font-size: 14px;
  }
  .introduce .introbox .intro_box1 .text {
    font-size: 14px;
  }
}
.product {
  width: 100%;
  padding: 30px 0;
  background: url(../img/019.png) no-repeat;
  background-size: 100% 100%;
}
.product .productbox {
  width: 1200px;
  margin: 0 auto;
}
.product .productbox .pro_title {
  width: 100%;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
.product .productbox .pro_title h2 {
  font-size: 28px;
  color: #1f54df;
  margin: 0;
}
.product .productbox .pro_title h2:nth-child(3) {
  color: black;
}
.product .productbox .pro_title span {
  display: block;
  margin: 0 5px;
  height: 3px;
  width: 3px;
  background-color: black;
}
.product .productbox .pro_box {
  width: 100%;
  height: 520px;
  display: flex;
  flex-flow: column wrap;
}
.product .productbox .pro_box a {
  width: calc((100% - 40.5px) / 3);
  height: 160px;
  margin-right: 20px;
  margin-bottom: 20px;
  padding: 20px 0 60px 0;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(../img/016.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  position: relative;
}
.product .productbox .pro_box a .type {
  background-color: #446ef1;
  padding: 4px 8px;
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  left: 20px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}
.product .productbox .pro_box a .type img {
  width: 16px;
  height: 14px;
  display: block;
}
.product .productbox .pro_box a .type span {
  color: white;
  font-size: 12px;
  margin-left: 2px;
}
.product .productbox .pro_box a .image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product .productbox .pro_box a .image img {
  width: 50%;
  max-width: 50%;
  max-height: 50%;
  display: block;
}
.product .productbox .pro_box a .text {
  width: calc(100% - 40px);
  padding: 0 20px;
  position: absolute;
  bottom: 10px;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product .productbox .pro_box a .text .text_box {
  width: 100%;
}
.product .productbox .pro_box a .text .text_box p {
  width: calc(100% - 32px);
  margin: 0;
  color: black;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product .productbox .pro_box a .text .text_box span {
  width: calc(100% - 32px);
  display: block;
  color: #555555;
  margin-top: 8px;
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product .productbox .pro_box a .text .text_image img {
  width: 30px;
  height: 30px;
  display: block;
}
.product .productbox .pro_box a:nth-child(1) {
  height: 420px;
}
.product .productbox .pro_box a:nth-child(1) .image img {
  width: 80%;
  max-width: 80%;
  max-height: 65%;
  display: block;
}
.product .productbox .pro_box a:hover .image img {
  animation: zhendong 200ms;
}
.product .productbox .more {
  display: none;
}
@media (max-width: 1200px) {
  .product .productbox {
    width: 90%;
  }
}
@media (max-width: 1000px) {
  .product .productbox .pro_box {
    width: 100%;
    height: auto;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
  }
  .product .productbox .pro_box a {
    width: 100%;
    height: auto;
    margin-right: 0;
  }
  .product .productbox .pro_box a .image img {
    width: 60%;
    max-width: 60%;
    max-height: 100%;
  }
  .product .productbox .pro_box a:nth-child(1) {
    height: auto;
  }
  .product .productbox .pro_box a:nth-child(1) .image img {
    width: 40%;
    max-width: 40%;
  }
  .product .productbox .pro_box a:nth-child(n+2) {
    width: calc((100% - 20px) / 2);
  }
  .product .productbox .more {
    display: block;
  }
}
@media (max-width: 760px) {
  .product .productbox .pro_title {
    flex-direction: column;
    align-items: flex-start;
  }
  .product .productbox .pro_title span {
    display: none;
  }
}
@media (max-width: 540px) {
  .product .productbox .pro_box a .image img {
    width: 70%;
    max-width: 70%;
  }
  .product .productbox .pro_box a .text {
    width: calc(100% - 20px);
    padding: 0 10px;
  }
  .product .productbox .pro_box a .text .text_box p {
    width: calc(100% - 18px);
    font-size: 14px;
  }
  .product .productbox .pro_box a .text .text_box span {
    width: calc(100% - 18px);
    margin-top: 4px;
  }
  .product .productbox .pro_box a .text .text_image img {
    width: 15px;
    height: 15px;
  }
  .product .productbox .pro_box a:nth-child(n+2) {
    width: calc((100% - 10px) / 2);
  }
}
.index_title {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.index_title b {
  text-align: center;
  font-size: 26px;
  padding: 0 16px;
  position: relative;
}
.index_title b::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  color: blue;
  width: calc(50% - 32px);
  padding: 0 16px;
  content: attr(data-content);
  white-space: nowrap;
  overflow: hidden;
}
.index_title .ge {
  width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.index_title .ge p {
  width: 50%;
  background-color: black;
  height: 2px;
  margin: 8px 0;
}
.index_title .ge p:nth-child(2) {
  background-color: #1f54df;
}
.index_title span {
  font-size: 12px;
}
.new {
  width: 100%;
}
.new .newbox {
  width: 1200px;
  margin: 0 auto;
}
.new .newbox .new_box {
  width: 100%;
  margin-top: 30px;
}
.new .newbox .new_box a {
  width: 50%;
  margin-bottom: 15px;
  display: block;
  float: left;
  text-decoration: none;
}
.new .newbox .new_box a .image {
  width: 100%;
  margin-bottom: 10px;
}
.new .newbox .new_box a .image img {
  width: 100%;
  display: block;
}
.new .newbox .new_box a .text {
  width: calc(100% - 40px);
  padding-left: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.new .newbox .new_box a .text .index {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  font-size: 60px;
  color: #cacaca;
  font-weight: 600;
  padding-right: 20px;
  margin-right: 20px;
  border-right: 1px solid #8c8c8c;
}
.new .newbox .new_box a .text .text_box {
  width: calc(100% - 120px);
}
.new .newbox .new_box a .text .text_box .newtitle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.new .newbox .new_box a .text .text_box .newtitle strong {
  width: calc(100% - 100px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: black;
  font-size: 20px;
  font-weight: 600;
}
.new .newbox .new_box a .text .text_box .newtitle span {
  width: 100px;
  display: block;
  color: #b0b0b0;
}
.new .newbox .new_box a .text .text_box P {
  width: 100%;
  height: 48px;
  margin: 10px 0;
  overflow: hidden;
  text-align: justify;
  color: #797979;
  line-height: 24px;
  position: relative;
}
.new .newbox .new_box a .text .text_box p:after {
  content: "...";
  position: absolute;
  background-color: white;
  top: 24px;
  right: 0;
  width: 17px;
}
.new .newbox .new_box a:nth-child(1) .text {
  width: 100%;
  padding-left: 0;
}
.new .newbox .new_box a:nth-child(1) .text .index {
  display: none;
}
.new .newbox .new_box a:nth-child(1) .text .text_box {
  width: 100%;
}
.new .newbox .new_box a:nth-child(n+2) .image {
  display: none;
}
.new .newbox .more {
  display: none;
}
@media (max-width: 1200px) {
  .new .newbox {
    width: 90%;
  }
}
@media (max-width: 1000px) {
  .new .newbox {
    width: 90%;
  }
  .new .newbox .new_box a {
    width: 100%;
  }
  .new .newbox .new_box a .image {
    margin-bottom: 10px;
  }
  .new .newbox .new_box a:nth-child(n) .text {
    width: 100%;
    padding-left: 0;
  }
  .new .newbox .new_box a:nth-child(n) .text .index {
    display: none;
  }
  .new .newbox .new_box a:nth-child(n) .text .text_box {
    width: 100%;
  }
  .new .newbox .new_box a:nth-child(n+2) .image {
    display: block;
  }
  .new .newbox .more {
    display: block;
  }
}
.more {
  width: 100%;
}
.more .more_box {
  width: 140px;
  margin: 0 auto;
  border: 1px solid #1f54df;
  border-radius: 30px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  padding: 6px 0;
}
.more .more_box span {
  display: block;
  color: #1f54df;
  margin-right: 10px;
}
.more .more_box strong {
  color: #1f54df;
}
.honor {
  width: 100%;
  background: url(../img/006.png) no-repeat;
  background-size: 100% 100%;
}
.honor .honorbox {
  width: 1200px;
  padding: 80px 0;
  margin: 0 auto;
}
.honor .honorbox .index_title b {
  color: white;
}
.honor .honorbox .index_title b::before {
  color: white;
}
.honor .honorbox .index_title span {
  color: white;
}
.honor .honorbox .honor_box {
  width: 100%;
  height: 460px;
  margin-top: 30px;
  display: flex;
  flex-flow: column wrap;
}
.honor .honorbox .honor_box a {
  width: 25%;
  height: 222px;
  margin-bottom: 8px;
  display: block;
  position: relative;
  background-color: white;
  text-decoration: none;
}
.honor .honorbox .honor_box a .image {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.honor .honorbox .honor_box a .image img {
  width: 80%;
  max-width: 80%;
  max-height: 80%;
  display: block;
}
.honor .honorbox .honor_box a span {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 5px 0;
  color: white;
  text-align: center;
  background: rgba(0, 0, 0, 0.2) none repeat scroll !important;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.honor .honorbox .honor_box a:nth-child(3) {
  width: calc(50% - 16px);
  margin: 0 8px;
  height: 452px;
}
.honor .honorbox .honor_box a:nth-child(3) .image {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.honor .honorbox .honor_box a:nth-child(3) .image img {
  width: 70%;
  max-width: 70%;
  max-height: 70%;
  display: block;
}
.honor .honorbox .honor_box a:hover .image img {
  animation: zhendong 200ms;
}
.honor .honorbox .more {
  display: none;
}
.honor .honorbox .more .more_box {
  border: 1px solid white;
}
.honor .honorbox .more .more_box span {
  color: white;
}
.honor .honorbox .more .more_box strong {
  color: white;
}
@media (max-width: 1200px) {
  .honor .honorbox {
    width: 90%;
  }
}
@media (max-width: 1000px) {
  .honor .honorbox .honor_box {
    width: 100%;
    height: auto;
    margin-top: 30px;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
  }
  .honor .honorbox .honor_box a {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
  }
  .honor .honorbox .honor_box a .image {
    width: 100%;
    height: auto;
    padding: 30px 0;
  }
  .honor .honorbox .honor_box a:nth-child(1) .image img {
    width: 60%;
    max-width: 60%;
    max-height: 70%;
    display: block;
  }
  .honor .honorbox .honor_box a:nth-child(n+2) {
    width: calc((100% - 20px) / 2);
  }
  .honor .honorbox .honor_box a:nth-child(3) {
    width: calc((100% - 20px) / 2);
    height: auto;
    margin: 0;
    margin-bottom: 15px;
  }
  .honor .honorbox .honor_box a:nth-child(3) .image {
    width: 100%;
    height: auto;
    padding: 30px 0;
  }
  .honor .honorbox .honor_box a:nth-child(3) .image img {
    width: 80%;
    max-width: 80%;
    max-height: 80%;
  }
  .honor .honorbox .more {
    display: block;
    padding: 20px 0;
  }
}
.contact {
  width: 100%;
}
.contact .contactbox {
  width: 1200px;
  padding: 30px 0;
  margin: 0 auto;
}
.contact .contactbox .contact_box {
  width: 100%;
  margin-top: 30px;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.contact .contactbox .contact_box .contact_list {
  width: calc(23% - 30px);
  border: 15px solid #e6e6e6;
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact .contactbox .contact_box .contact_list .image img {
  width: 40px;
  display: block;
}
.contact .contactbox .contact_box .contact_list p {
  margin: 15px 0 4px 0;
  font-size: 14px;
  color: #bcbcbc;
}
.contact .contactbox .contact_box .contact_list span {
  display: block;
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  word-wrap: break-word;
  word-break: break-word;
}
.contact .map_image {
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
}
.contact .map_image img {
  width: 100%;
  min-width: 1560px;
  display: block;
}
@media (max-width: 1200px) {
  .contact {
    width: 100%;
  }
  .contact .contactbox {
    width: 90%;
  }
}
@media (max-width: 1000px) {
  .contact .contactbox .contact_box .contact_list {
    width: calc(48% - 30px);
    margin-bottom: 15px;
  }
}
@media (max-width: 540px) {
  .contact .contactbox .contact_box .contact_list {
    width: calc(48% - 30px);
    margin-bottom: 15px;
  }
  .contact .contactbox .contact_box .contact_list p {
    margin: 15px 0 4px 0;
    font-size: 14px;
    color: #bcbcbc;
  }
  .contact .contactbox .contact_box .contact_list span {
    font-weight: 600;
    font-size: 18px;
    text-align: center;
  }
}
.foot {
  width: 100%;
  background-color: #232f50;
}
.foot .foot_box {
  width: 1200px;
  padding: 30px 0;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.foot .foot_box .foot1 .logo_image {
  width: 400px;
  margin-bottom: 30px;
}
.foot .foot_box .foot1 .logo_image img {
  width: 100%;
  display: block;
}
.foot .foot_box .foot1 p {
  display: flex;
  align-items: center;
}
.foot .foot_box .foot1 p img {
  width: 15px;
  height: 15px;
  display: block;
}
.foot .foot_box .foot1 p span {
  margin-left: 8px;
  display: block;
  color: white;
}
.foot .foot_box .foot2 .foot_menu {
  margin-bottom: 20px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.foot .foot_box .foot2 .foot_menu a {
  text-decoration: none;
  display: block;
  color: white;
}
.foot .foot_box .foot2 .foot_menu span {
  height: 10px;
  width: 1px;
  display: block;
  background-color: #cfcfcf;
  margin: 0 15px;
}
.foot .foot_box .foot2 .foot_menu span:nth-last-child(1) {
  display: none;
}
.foot .foot_box .foot2 .erwei_box {
  display: flex;
  justify-content: flex-end;
}
.foot .foot_box .foot2 .erwei_box .erwei_image {
  margin-left: 15px;
}
.foot .foot_box .foot2 .erwei_box .erwei_image img {
  width: 120px;
  height: 120px;
  display: block;
}
.foot .foot_box .foot2 .erwei_box .erwei_image span {
  color: white;
  display: block;
  margin-top: 3px;
  font-size: 14px;
  text-align: center;
}
@media (max-width: 1200px) {
  .foot .foot_box {
    width: 90%;
  }
  .foot .foot_box .foot2 {
    display: none;
  }
}
@media (max-width: 540px) {
  .foot {
    display: none;
  }
}
.foot_copyright {
  width: 100%;
  padding: 4px 0;
  background-color: black;
  display: flex;
  flex-flow: row wrap;
  white-space: nowrap;
  justify-content: center;
  align-items: center;
}
.foot_copyright .fc {
  text-decoration: none;
  display: block;
  color: white;
  margin: 0 5px;
  font-size: 12px;
}
.tabber {
  width: 100%;
  height: 80px;
  position: fixed;
  bottom: 0;
  left: 0;
  display: none;
  align-items: center;
  justify-content: space-between;
  background-color: #1c66dd;
}
.tabber .tabber_btn {
  width: 23%;
}
.tabber .tabber_btn a {
  text-decoration: none;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.tabber .tabber_btn a img {
  height: 28px;
  display: block;
}
.tabber .tabber_btn a span {
  color: white;
  font-size: 14px;
  display: block;
  margin-top: 5px;
}
.tabber i {
  height: 25px;
  width: 1px;
  background-color: white;
}
@media (max-width: 540px) {
  body {
    padding-bottom: 80px;
  }
  .tabber {
    display: flex;
  }
}
.common {
  width: 100%;
  overflow: hidden;
  margin-top: 30px;
  margin-bottom: 15px;
}
.common .commonbox {
  width: 1200px;
  margin: 0 auto;
}
.common .commonbox .common_title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 3px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #676767;
}
.common .commonbox .common_title .ge {
  width: 45px;
  height: 4px;
  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%;
}
.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: #cecece;
  border: 1px solid #cecece;
}
.pagination .btn-group .pagebtn_a {
  text-decoration: none;
  color: black;
  border: 1px solid black;
}
.pagination .btn-group .pagebtn_a:hover {
  background-color: #0183f3;
  color: white;
  cursor: pointer;
}
.com_column_box {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.com_column_box .column {
  width: 240px;
}
.com_column_box .column h2 {
  color: white;
  margin: 10px 0;
  background-color: rgba(36, 148, 222, 0.8);
  padding: 8px 0;
  text-align: center;
}
.com_column_box .column .column_list {
  width: calc(100% - 24px);
  max-height: 600px;
  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);
  border-bottom: 20px solid rgba(36, 148, 222, 0.8);
}
.com_column_box .column .column_list a {
  width: calc(100% - 16px);
  background-color: #446ef1;
  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;
  }
  .com_column_box .column h2 {
    margin-right: 20px;
    font-size: 18px;
    background-color: white;
    color: black;
  }
  .com_column_box .column .column_list {
    width: calc(100% - 120px);
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 0 4px 0;
    border-left: 0;
    border-right: 0;
    display: flex;
    align-items: center;
    border-bottom: 0;
  }
  .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%;
  }
}
@media (max-width: 540px) {
  .com_column_box .column h2 {
    display: none;
  }
  .com_column_box .column .column_list {
    width: 100%;
  }
}
.com_product_box {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
}
.com_product_box a {
  width: calc((100% - 40.5px) / 3);
  margin-right: 20px;
  margin-bottom: 20px;
  padding: 10px 0 40px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(../img/016.png) no-repeat;
  background-size: 100% 100%;
  position: relative;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
}
.com_product_box a .image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.com_product_box a .image img {
  width: 60%;
  display: block;
}
.com_product_box a span {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 5px 0;
  color: white;
  text-align: center;
  background: rgba(0, 0, 0, 0.2) none repeat scroll !important;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.com_product_box a:nth-child(3n) {
  margin-right: 0;
}
.com_product_box a:hover .image img {
  animation: zhendong 200ms;
}
@media (max-width: 760px) {
  .com_product_box a {
    width: calc((100% - 20.5px) / 2);
  }
  .com_product_box a:nth-child(3n) {
    margin-right: 20px;
  }
  .com_product_box a:nth-child(2n) {
    margin-right: 0;
  }
}
@media (max-width: 540px) {
  .com_product_box a {
    width: 100%;
    margin-right: 0;
  }
  .com_product_box a:nth-child(3n) {
    margin-right: 0;
  }
  .com_product_box a:nth-child(2n) {
    margin-right: 0;
  }
}
.com_new_box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;
}
.com_new_box a {
  width: calc(50% - 10px);
  margin-bottom: 15px;
  display: block;
  text-decoration: none;
}
.com_new_box a .image {
  width: 100%;
  margin-bottom: 10px;
}
.com_new_box a .image img {
  width: 100%;
  display: block;
}
.com_new_box a .text {
  width: 100%;
}
.com_new_box a .text .newtitle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.com_new_box a .text .newtitle strong {
  width: calc(100% - 100px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: black;
  font-size: 20px;
  font-weight: 500;
}
.com_new_box a .text .newtitle span {
  width: 100px;
  display: block;
  color: #b0b0b0;
}
.com_new_box a .text P {
  width: 100%;
  height: 48px;
  margin: 10px 0;
  overflow: hidden;
  text-align: justify;
  color: #797979;
  line-height: 24px;
  position: relative;
}
.com_new_box a .text p:after {
  content: "...";
  position: absolute;
  background-color: white;
  top: 24px;
  right: 0;
  width: 17px;
}
@media (max-width: 1200px) {
  .com_new_box a p:after {
    width: 22px;
  }
}
@media (max-width: 760px) {
  .com_new_box a {
    width: 100%;
  }
}
