html {
  width: 100%;
  height: 100%;
}
body {
  width: 100%;
  min-height: calc(100% - 382px);
  padding-bottom: 382px;
  position: relative;
  margin: 0;
}
.header {
  width: 84%;
  padding: 0 8%;
  background-color: rgba(244, 244, 244, 0.7);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
}
.header .logo {
  padding: 15px 0;
}
.header .logo img {
  width: 240px;
  display: block;
}
.header .logo .b {
  display: none;
}
.header .menu ul {
  display: flex;
  flex-flow: row nowrap;
  padding: 0;
  margin: 0;
}
.header .menu ul .menu_active a {
  color: #ce0302;
  font-weight: 600;
}
.header .menu ul li {
  list-style: none;
  padding: 0 25px 15px 25px;
  position: relative;
}
.header .menu ul li a {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #205aa8;
  white-space: nowrap;
  font-size: 22px;
}
.header .menu ul li a:hover {
  color: #ce0302;
  font-weight: 600;
}
.header .menu ul li ul {
  position: absolute;
  z-index: 20;
  top: 44px;
  left: 0;
  display: none;
  min-width: 100%;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
}
.header .menu ul li ul li {
  width: calc(100% - 10px);
  padding: 10px 5px;
  border-bottom: 2px solid white;
  background-color: rgba(244, 244, 244, 0.7);
}
.header .menu ul li ul li a {
  width: 100%;
  font-size: 18px;
  color: #205aa8;
}
.header .menu ul li ul li a:hover {
  color: #ce0302;
}
.header .menu ul li:hover ul {
  display: block;
}
@media (max-width: 1600px) {
  .header {
    width: 100%;
    padding: 0;
    background-color: rgba(244, 244, 244, 0);
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .header .logo {
    padding: 10px 0;
    width: 100%;
    background-color: rgba(244, 244, 244, 0.5);
  }
  .header .logo img {
    width: 210px;
    display: block;
    margin: 0 auto;
  }
  .header .menu {
    width: 100%;
    background-color: rgba(244, 244, 244, 0.8);
  }
  .header .menu ul {
    width: 100%;
    justify-content: space-between;
  }
  .header .menu ul li {
    width: 20%;
    padding: 15px 0;
  }
  .header .menu ul li a {
    width: 100%;
    font-size: 18px;
  }
  .header .menu ul li ul {
    width: auto;
    top: 54px;
  }
  .header .menu ul li ul li {
    padding: 8px 5px;
    background-color: rgba(244, 244, 244, 0.8);
  }
  .header .menu ul li ul li a {
    font-size: 16px;
  }
}
@media (max-width: 760px) {
  .header {
    position: static;
  }
  .header .logo {
    background-color: white;
  }
  .header .menu {
    background-color: #05468b;
  }
  .header .menu ul {
    flex-flow: row wrap;
  }
  .header .menu ul .menu_active {
    background-color: #ce0302;
  }
  .header .menu ul .menu_active a {
    color: white;
    font-weight: 400;
  }
  .header .menu ul li {
    width: calc((100% - 4px) / 4);
    padding: 7px 0;
    border-right: 1px solid white;
    border-bottom: 1px solid white;
  }
  .header .menu ul li a {
    color: white;
    font-size: 17px;
  }
  .header .menu ul li a:hover {
    color: white;
    font-weight: 400;
  }
  .header .menu ul li ul {
    display: none;
  }
  .header .menu ul li:hover {
    background-color: #ce0302;
  }
  .header .menu ul li:hover ul {
    display: none;
  }
  .header .menu ul li:nth-last-child(1) {
    border-right: 0;
  }
  .header .menu ul li:nth-child(n+5) {
    border-bottom: 0;
  }
}
@media (max-width: 540px) {
  .header .logo {
    padding: 10px 0;
  }
  .header .logo img {
    width: 90%;
  }
  .header .logo .a {
    display: none;
  }
  .header .logo .b {
    display: block;
  }
}
.index_title {
  width: 90%;
  margin: 0 auto;
  padding-top: 50px;
  padding-bottom: 40px;
}
.index_title .it_box {
  width: 100%;
  display: flex;
  justify-content: center;
}
.index_title .it_box span {
  display: block;
  position: relative;
  text-align: center;
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: 4px;
  font-size: 42px;
}
.index_title .it_box .b_r {
  color: #cb120e;
}
.index_title .it_box .b_r:after {
  color: #0047aa;
  content: attr(data-content);
  overflow: hidden;
  width: 33%;
  letter-spacing: 4px;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  font-weight: 600;
  white-space: nowrap;
  font-size: 42px;
}
.index_title .it_box .b_b {
  color: black;
}
.index_title .it_box .b_b:after {
  color: black;
  content: attr(data-content);
  overflow: hidden;
  width: 33%;
  letter-spacing: 4px;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  font-weight: 600;
  white-space: nowrap;
  font-size: 42px;
}
.index_title .it_box span:nth-child(2) {
  color: #cb120e;
  margin-left: 20px;
}
.index_title p {
  width: 100%;
  margin: 10px 0;
  text-align: center;
  color: #939393;
  letter-spacing: 3px;
  font-size: 18px;
}
@media (max-width: 760px) {
  .index_title {
    padding-top: 20px;
    padding-bottom: 10px;
  }
  .index_title .it_box span {
    font-size: 26px;
  }
  .index_title .it_box .b_r:after {
    font-size: 26px;
  }
  .index_title .it_box .b_b:after {
    font-size: 26px;
  }
  .index_title .it_box span:nth-child(2) {
    margin-left: 10px;
  }
  .index_title p {
    margin: 5px 0;
    font-size: 14px;
  }
}
@media (max-width: 350px) {
  .index_title .it_box span {
    font-size: 24px;
  }
  .index_title .it_box .b_r:after {
    font-size: 24px;
  }
  .index_title .it_box .b_b:after {
    font-size: 24px;
  }
  .index_title .it_box span:nth-child(2) {
    margin-left: 10px;
  }
  .index_title p {
    margin: 5px 0;
    font-size: 12px;
  }
}
.our {
  width: 100%;
  overflow: hidden;
  background: url(../img/004_2.png) no-repeat;
  background-size: 1920px 590px;
  background-position: right bottom;
}
.our .box {
  width: 1500px;
  padding: 20px 0 40px 0;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.our .box .box_left {
  width: 48%;
}
.our .box .box_left .our_title {
  width: 300px;
  height: 50px;
  background: url(../img/002.png) no-repeat;
  background-size: 100% 100%;
  position: relative;
}
.our .box .box_left .our_title span {
  width: 150px;
  padding-left: 20px;
  transform: translateY(-12px);
  text-align: center;
  display: block;
  position: relative;
  z-index: 2;
  color: #1c54a4;
  font-weight: 600;
  letter-spacing: 3px;
  font-size: 34px;
}
.our .box .box_left .our_title strong {
  margin: 0;
  position: absolute;
  z-index: 1;
  top: -34px;
  left: 50%;
  margin-left: -117px;
  font-weight: 600;
  text-transform: uppercase;
  color: #d5dde8;
  font-size: 44px;
}
.our .box .box_left p {
  margin: 30px 0 10px 0;
  color: #2a2a2a;
  text-align: justify;
  letter-spacing: 2px;
  line-height: 48px;
  font-size: 22px;
}
.our .box .box_left .our_more {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.our .box .box_left .our_more a {
  text-decoration: none;
  border: 1px solid #2a2a2a;
  display: block;
  color: black;
  padding: 8px 40px;
  letter-spacing: 2px;
  font-size: 22px;
}
.our .box .box_left .our_more a:hover{
	background-color: #1c54a4;
	color: white;
}
.our .box .box_right {
  width: 48%;
  position: relative;
}
.our .box .box_right img {
  width: calc(100% - 40px);
  display: block;
  position: absolute;
  bottom: -120px;
  left: 40px;
}
.our .number {
  width: 100%;
  padding: 30px 0;
}
.our .number .numbox {
  width: 1500px;
  margin: 0 auto;
}
.our .number .numbox .num_box {
  width: 50%;
  display: flex;
  justify-content: space-around;
}
.our .number .numbox .num_box .num p {
  margin: 0;
  transition: 500ms;
  display: flex;
  justify-content: center;
  align-items: center;
}
.our .number .numbox .num_box .num p span {
  color: white;
  font-weight: 600;
  font-size: 50px;
}
.our .number .numbox .num_box .num span {
  display: block;
  text-align: center;
  color: white;
  margin-top: 5px;
  font-size: 24px;
}
.our .number .numbox .num_box .num:hover p {
  transform: rotateY(360deg);
}
@media (max-width: 1500px) {
  .our .box {
    width: 90%;
  }
  .our .number .numbox {
    width: 90%;
  }
}
@media (max-width: 1200px) {
  .our {
    background: url(../img/004.png) no-repeat;
    background-size: 100% auto;
    background-position: right calc(100% - 167px);
  }
  .our .box {
    flex-direction: column;
    justify-content: center;
  }
  .our .box .box_left {
    width: 100%;
    padding-bottom: 30px;
  }
  .our .box .box_right {
    width: 100%;
    padding-bottom: 100px;
  }
  .our .box .box_right img {
    transform: translateY(60px) translateX(40px);
    position: static;
  }
  .our .number {
    background-color: #1c54a4;
  }
  .our .number .numbox .num_box {
    width: 100%;
  }
}
@media (max-width: 760px) {
  .our {
    background-position: right calc(100% - 92px);
  }
  .our .box {
    padding: 10px 0 10px 0;
  }
  .our .box .box_left {
    padding-bottom: 10px;
  }
  .our .box .box_left .our_title {
    width: 200px;
    height: 35px;
  }
  .our .box .box_left .our_title span {
    width: 110px;
    padding-left: 10px;
    transform: translateY(-6px);
    font-size: 20px;
  }
  .our .box .box_left .our_title strong {
    top: -18px;
    left: 50%;
    margin-left: -64px;
    font-size: 24px;
  }
  .our .box .box_left p {
    margin: 10px 0 5px 0;
    line-height: 32px;
    font-size: 16px;
  }
  .our .box .box_left .our_more a {
    padding: 5px 20px;
    font-size: 14px;
  }
  .our .box .box_right {
    padding-bottom: 18%;
  }
  .our .box .box_right img {
    width: calc(100% - 40px);
    transform: translateY(40px) translateX(10px);
  }
  .our .number {
    padding: 15px 0;
  }
  .our .number .numbox .num_box .num p span {
    font-size: 26px;
  }
  .our .number .numbox .num_box .num span {
    margin-top: 3px;
    font-size: 16px;
  }
}
@media (max-width: 540px) {
  .our .box .box_right img {
    width: calc(100% - 20px);
    transform: translateY(40px) translateX(10px);
  }
}
.product {
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
}
.product a {
  width: 20%;
  overflow: hidden;
  display: block;
  position: relative;
}
.product a .image {
  width: 100%;
  height: 100%;
  position: relative;
}
.product a .image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}
.product a .image:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(28, 84, 164, 0.6);
  transition: 300ms;
  position: absolute;
  top: 0;
  left: 0;
}
.product a p {
  position: absolute;
  bottom: 40%;
  z-index: 2;
  left: 0;
  width: 100%;
  margin: 0;
  transition: 500ms;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.product a p img {
  width: 50px;
  display: block;
  opacity: 0;
  transition: 500ms;
}
.product a p span {
  display: block;
  width: 80%;
  font-size: 38px;
  text-align: center;
  color: white;
  letter-spacing: 3px;
  margin: 20px auto 30px auto;
}
.product a p i {
  width: 40%;
  height: 3px;
  display: block;
  background-color: white;
  transition: 500ms;
}
.product a:before {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-image: linear-gradient(to top, #1c54a4 25%, rgba(28, 84, 164, 0.7) 60%, rgba(28, 84, 164, 0.1));
  transform: translateY(100%);
  transition: 500ms;
}
.product a:hover .image:before {
  opacity: 0;
}
.product a:hover p {
  bottom: 10%;
}
.product a:hover p img {
  opacity: 1;
}
.product a:hover p span {
  font-weight: 600;
}
.product a:hover p i {
  opacity: 0;
}
.product a:hover:before {
  transform: translateY(0);
}
.product a:nth-child(n+6) {
  display: none;
}
@media (max-width: 1500px) {
  .product {
    flex-flow: row wrap;
  }
  .product a {
    width: calc(100% / 3);
  }
  .product a:nth-child(n+6) {
    display: block;
  }
}
@media (max-width: 760px) {
  .product a {
    width: 50%;
  }
  .product a p img {
    width: 35px;
  }
  .product a p span {
    font-size: 22px;
  }
  .product a p i {
    height: 2px;
  }
}
@media (max-width: 760px) {
  .product a p span {
    font-size: 20px;
  }
}
.video {
  width: 100%;
  overflow: hidden;
}
.video .box_1 {
  width: 1500px;
  margin: 0 auto;
  display: flex;
}
.video .box_1 video {
  width: 60%;
  display: block;
}
.video .box_1 .text {
  width: calc(40% - 60px);
  padding: 0 30px;
  background-color: #1d55a4;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.video .box_1 .text span {
  display: block;
  width: 100%;
  text-align: center;
  color: white;
  letter-spacing: 3px;
  font-size: 44px;
}
.video .box_1 .text p {
  margin: 0;
  text-align: center;
  color: white;
  margin-top: 15px;
  letter-spacing: 3px;
  font-size: 26px;
}
.video .box_1 .text a {
  text-decoration: none;
  position: absolute;
  bottom: 5%;
  right: 6%;
  display: flex;
  align-items: center;
}
.video .box_1 .text a span {
  display: block;
  margin-right: 10px;
  color: white;
  letter-spacing: 0;
  font-size: 22px;
}
.video .box_1 .text a img {
  width: 50px;
  display: block;
}
.video .box_2 {
  width: 1500px;
  margin: 0 auto;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
}
.video .box_2 a {
  display: block;
  text-decoration: none;
  width: calc((100% - 20px) / 3);
}
.video .box_2 a img {
  width: 100%;
  display: block;
}
@media (max-width: 1500px) {
  .video .box_1 {
    width: 90%;
  }
  .video .box_2 {
    width: 90%;
  }
}
@media (max-width: 1500px) {
  .video .box_1 .text span {
    font-size: 30px;
  }
  .video .box_1 .text p {
    font-size: 18px;
  }
  .video .box_1 .text a span {
    font-size: 16px;
  }
  .video .box_1 .text a img {
    width: 30px;
  }
}
@media (max-width: 760px) {
  .video .box_1 .text {
    width: calc(40% - 10px);
    padding: 0 5px;
    justify-content: flex-start;
  }
  .video .box_1 .text span {
    font-size: 18px;
    margin-top: 15px;
  }
  .video .box_1 .text p {
    font-size: 12px;
    margin-top: 0;
    transform: scale(0.8);
  }
  .video .box_1 .text a span {
    font-size: 12px;
    transform: scale(0.8);
    margin-top: 0;
    margin-right: 5px;
  }
  .video .box_1 .text a img {
    width: 15px;
  }
}
.environment {
  width: 100%;
  overflow: hidden;
  background: url(../img/008.png) no-repeat;
  background-size: cover;
}
.environment .en_box {
  width: 1500px;
  margin: 0 auto;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.environment .en_box a {
  width: calc(50% - 5px);
  margin-bottom: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 4px rgba(244, 244, 244, 0.7);
}
.environment .en_box a img {
  width: 100%;
  display: block;
}
.environment .en_box a p {
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(100%);
  transition: 400ms;
  margin: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(28, 84, 164, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.environment .en_box a p span {
  display: block;
  width: 100%;
  text-align: center;
  color: white;
  margin-bottom: 20px;
  letter-spacing: 3px;
  font-size: 32px;
}
.environment .en_box a p img {
  width: 35px;
  display: block;
}
.environment .en_box a:hover p {
  transform: translateY(0);
}
@media (max-width: 1500px) {
  .environment .en_box {
    width: 90%;
  }
}
@media (max-width: 760px) {
  .environment .en_box a p span {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .environment .en_box a p img {
    width: 25px;
  }
}
@media (max-width: 540px) {
  .environment .en_box a {
    width: 100%;
  }
}
.new {
  width: 100%;
  overflow: hidden;
  padding-bottom: 40px;
}
.new .new_box {
  width: 1500px;
  margin: 0 auto;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.new .new_box a {
  width: 46%;
  padding-bottom: 30px;
  border-bottom: 1px solid #c3c3c3;
  margin-bottom: 40px;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.new .new_box a .time {
  width: 120px;
  padding: 20px 0;
  background-color: #f2f2f2;
}
.new .new_box a .time span {
  display: block;
  width: 100%;
  text-align: center;
  color: black;
  font-weight: 600;
  font-size: 32px;
}
.new .new_box a .time span:nth-child(2) {
  color: #737373;
  font-weight: 400;
  font-size: 20px;
}
.new .new_box a .text {
  width: calc(100% - 140px);
}
.new .new_box a .text span {
  display: block;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  color: black;
  font-size: 25px;
}
.new .new_box a .text p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: #737373;
  margin: 0;
  margin-top: 5px;
  font-size: 15px;
}
.new .new_box a:hover .time span {
  color: #1c54a4;
}
.new .new_box a:hover .text span {
  color: #1c54a4;
}
.new .new_more {
  width: 100%;
  display: flex;
  justify-content: center;
}
.new .new_more a {
  padding: 5px 30px;
  text-decoration: none;
  border: 1px solid black;
  color: black;
  font-size: 24px;
}
.new .new_more a {
	background-color: #1c54a4;
	color: white;
}
	
@media (max-width: 1500px) {
  .new .new_box {
    width: 90%;
  }
}
@media (max-width: 1200px) {
  .new .new_box a {
    width: 100%;
  }
}
@media (max-width: 760px) {
  .new {
    padding-bottom: 20px;
  }
  .new .new_box a {
    padding-bottom: 20px;
    margin-bottom: 30px;
  }
  .new .new_box a .time {
    width: 75px;
    padding: 10px 0;
  }
  .new .new_box a .time span {
    font-size: 20px;
  }
  .new .new_box a .time span:nth-child(2) {
    font-size: 13px;
  }
  .new .new_box a .text {
    width: calc(100% - 85px);
  }
  .new .new_box a .text span {
    font-size: 18px;
    font-weight: 600;
  }
  .new .new_box a .text p {
    margin-top: 3px;
    font-size: 14px;
  }
  .new .new_more a {
    padding: 5px 20px;
    font-size: 18px;
  }
}
.contact {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: url(../img/014.jpg) no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
}
.contact .con_box {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contact .con_box .box span {
  display: block;
  color: white;
  letter-spacing: 2px;
  margin-bottom: 25px;
  font-size: 24px;
}
.contact .con_box .box p {
  margin: 0;
  font-weight: 600;
  color: white;
  letter-spacing: 3px;
  font-size: 44px;
}
.contact .con_box .con_more a {
  color: white;
  border: 1px solid white;
  text-decoration: none;
  font-size: 16px;
  padding: 8px 30px;
  border-radius: 20px;
}
@media (max-width: 1200px) {
  .contact .con_box {
    width: 90%;
    flex-direction: column;
    justify-content: center;
  }
  .contact .con_box .con_more {
    width: 100%;
    margin-top: 10px;
    display: flex;
    justify-content: flex-end;
  }
}
@media (max-width: 760px) {
  .contact {
    height: 150px;
  }
  .contact .con_box .box span {
    margin-bottom: 10px;
    padding-top: 10px;
    font-size: 16px;
  }
  .contact .con_box .box p {
    font-size: 26px;
  }
  .contact .con_box .con_more a {
    font-size: 14px;
    padding: 4px 20px;
  }
}
@media (max-width: 760px) {
  .contact .con_box .box span {
    font-size: 16px;
  }
  .contact .con_box .box p {
    font-size: 22px;
  }
}
.foot {
  width: 100%;
  height: 350px;
  position: absolute;
  left: 0;
  bottom: 32px;
  display: flex;
  align-items: center;
  background-color: #dfdfdf;
}
.foot .box {
  width: 1500px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.foot .box .box_1 img {
  width: 400px;
  display: block;
  margin-bottom: 25px;
}
.foot .box .box_1 p {
  margin: 0;
  display: flex;
  flex-flow: row wrap;
}
.foot .box .box_1 p span {
  display: block;
  color: #424242;
  word-wrap: break-word;
  word-break: break-all;
  margin-right: 20px;
  margin-bottom: 20px;
  font-size: 26px;
}
.foot .box .box_2 {
  display: flex;
}
.foot .box .box_2 .erwei {
  display: flex;
  padding: 0 8px;
}
.foot .box .box_2 .erwei span {
  width: 34px;
  height: 100%;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
  background-color: #0047aa;
  font-size: 20px;
}
.foot .box .box_2 .erwei img {
  width: 200px;
  display: block;
}
@media (max-width: 1500px) {
  .foot .box {
    width: 90%;
  }
}
@media (max-width: 1200px) {
  .foot .box .box_1 img {
    width: 300px;
  }
  .foot .box .box_1 p span {
    margin-right: 20px;
    margin-bottom: 20px;
    font-size: 22px;
  }
  .foot .box .box_2 .erwei span {
    width: 30px;
    font-size: 18px;
  }
  .foot .box .box_2 .erwei img {
    width: 140px;
    display: block;
  }
}
@media (max-width: 760px) {
  .foot {
    height: 450px;
    bottom: 102px;
  }
  .foot .box {
    flex-direction: column;
    justify-content: center;
  }
  .foot .box .box_1 img {
    margin: 0 auto;
  }
  .foot .box .box_1 p span {
    width: 100%;
    text-align: center;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .foot .box .box_2 {
    padding-top: 10px;
  }
}
@media (max-width: 540px) {
  .foot .box .box_1 img {
    width: 260px;
  }
  .foot .box .box_1 p span {
    width: 100%;
    text-align: center;
    margin-right: 0;
    margin-bottom: 10px;
    font-size: 18px;
  }
  .foot .box .box_2 .erwei span {
    width: 28px;
    font-size: 15px;
  }
  .foot .box .box_2 .erwei img {
    width: 110px;
  }
}
@media (max-width: 760px) {
  body {
    padding-bottom: 552px;
    min-height: calc(100% - 552px);
  }
}
.foot_copyright {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 32px;
  background-color: #a0a0a0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row wrap;
}
.foot_copyright .fc {
  text-decoration: none;
  color: black;
  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: #1c54a4;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 60;
}
.tabber a {
  width: 33%;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  align-items: center;
  justify-content: center;
}
.tabber a img {
  width: 34px;
  display: block;
}
.tabber a span {
  display: block;
  font-size: 13px;
  color: white;
  margin-top: 3px;
}
.tabber a:nth-child(2) {
  width: calc(33% - 2px);
  border-left: 1px solid #3976ce;
  border-right: 1px solid #3976ce;
}
@media (max-width: 760px) {
  .tabber {
    display: flex;
  }
}
.common_image {
  width: 100%;
  min-height: 10px;
}
.common_image img {
  width: 100%;
  display: block;
}
.common {
  width: 100%;
  overflow: hidden;
  padding-top: 30px;
  padding-bottom: 40px;
  background-color: white;
}
.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: #0254a6;
  margin-top: 5px;
}
@media (max-width: 1200px) {
  .common .commonbox {
    width: 90%;
  }
}
@media (max-width: 540px) {
  .common {
    padding-top: 10px;
    padding-bottom: 20px;
  }
  .common .commonbox .common_title {
    font-size: 20px;
  }
  .common .commonbox .common_title .ge {
    width: 40px;
    height: 3px;
  }
}
.com_our {
  width: 100%;
}
.com_our .com_our_title {
  width: 100%;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: black;
}
.com_our .time {
  width: 100%;
  text-align: center;
  font-size: 14px;
  color: #636363;
}
.com_our .com_our_content {
  width: 100%;
  margin-top: 10px;
  text-align: justify;
}
.com_our .com_our_content img {
  max-width: 100%;
}
.com_column_box {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.com_column_box .column {
  width: 160px;
  height: 100%;
}
.com_column_box .column h2 {
  width: 100%;
  padding: 10px 0;
  letter-spacing: 2px;
  color: black;
  text-align: center;
  background-color: #e5e8eb;
  margin: 0;
  font-size: 20px;
}
.com_column_box .column .column_active {
  background-color: #1c54a4;
  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: #1c54a4;
  color: white;
}
.com_column_box .com_content_box {
  width: calc(100% - 180px);
}
@media (max-width: 1200px) {
  .com_column_box {
    flex-direction: column;
    justify-content: center;
  }
  .com_column_box .column {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 0 4px 0;
    border: 0;
  }
  .com_column_box .column h2 {
    display: none;
  }
  .com_column_box .column a {
    width: auto;
    padding: 6px 10px;
    margin-bottom: 0;
    font-size: 16px;
    background-color: #6199e3;
    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%;
  overflow: hidden;
  display: flex;
  flex-flow: row wrap;
}
.com_product_box a {
  text-decoration: none;
  display: block;
  margin-right: 20px;
  margin-bottom: 20px;
  width: calc((100% - 40px) / 3);
}
.com_product_box a .image {
  overflow: hidden;
}
.com_product_box a .image img {
  display: block;
  width: 100%;
}
.com_product_box a span {
  display: block;
  width: calc(100% - 10px);
  padding: 5px;
  text-align: center;
  color: white;
  background-color: #6199e3;
}
.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_new_box {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.com_new_box a {
  width: 46%;
  padding-bottom: 30px;
  border-bottom: 1px solid #c3c3c3;
  margin-bottom: 40px;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.com_new_box a .time {
  width: 120px;
  padding: 20px 0;
  background-color: #f2f2f2;
}
.com_new_box a .time span {
  display: block;
  width: 100%;
  text-align: center;
  color: black;
  font-weight: 600;
  font-size: 32px;
}
.com_new_box a .time span:nth-child(2) {
  color: #737373;
  font-weight: 400;
  font-size: 20px;
}
.com_new_box a .text {
  width: calc(100% - 140px);
}
.com_new_box a .text span {
  display: block;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  color: black;
  font-size: 25px;
}
.com_new_box a .text p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: #737373;
  margin: 0;
  margin-top: 5px;
  font-size: 15px;
}
.com_new_box a:hover .time span {
  color: #1c54a4;
}
.com_new_box a:hover .text span {
  color: #1c54a4;
}
@media (max-width: 760px) {
  .com_new_box a {
    width: 100%;
    padding-bottom: 20px;
    margin-bottom: 30px;
  }
  .com_new_box a .time {
    width: 75px;
    padding: 10px 0;
  }
  .com_new_box a .time span {
    font-size: 20px;
  }
  .com_new_box a .time span:nth-child(2) {
    font-size: 13px;
  }
  .com_new_box a .text {
    width: calc(100% - 85px);
  }
  .com_new_box a .text span {
    font-size: 18px;
    font-weight: 600;
  }
  .com_new_box a .text p {
    margin-top: 3px;
    font-size: 14px;
  }
}
.pagination {
  width: 100%;
  margin-top: 20px;
  display: flex;
  justify-content: center;
}
.pagination .btn-group {
  width: 200px;
  margin: 5px 0 20px 0;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}
.pagination .btn-group .pagebtn_a,
.pagination .btn-group .pagebtn_s {
  width: 75px;
  height: 30px;
  line-height: 30px;
  text-align: center;
}
.pagination .btn-group .pagebtn_s {
  color: #bebebe;
  border: 1px solid #bebebe;
}
.pagination .btn-group .pagebtn_a {
  text-decoration: none;
  color: black;
  border: 1px solid black;
}
.pagination .btn-group .pagebtn_a:hover {
  background-color: #6199e3;
  color: white;
  cursor: pointer;
}
