html {
  width: 100%;
  height: 100%;
}
body {
  width: 100%;
  position: relative;
  margin: 0;
  min-height: calc(100% - 50px);
  padding-bottom: 50px;
}
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;
}
.header {
  width: 100%;
  position: relative;
}
.header img {
  display: block;
}
.header .header_box {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
}
.logo_text {
  width: 850px;
  position: absolute;
  z-index: 10;
  top: 33%;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.logo_text .box_1 {
  margin-bottom: 20px;
}
.logo_text .box_1 .logo {
  width: 255px;
  margin: 0 auto;
}
.logo_text .box_1 .logo img {
  width: 100%;
}
.logo_text .box_1 span {
  color: #d60018;
  font-weight: 600;
  font-size: 38px;
  letter-spacing: 1px;
}
.logo_text .box_2 {
  width: 100%;
  height: 100px;
  position: relative;
  background-color: rgba(97, 97, 97, 0.5);
}
.logo_text .box_2 img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.logo_text .box_2 span {
  color: white;
  letter-spacing: 2px;
  font-size: 28px;
  text-align: center;
  line-height: 100px;
  margin-left: 20%;
}
@media (max-width: 1200px) {
  .logo_text {
    width: 100%;
    top: 5%;
    align-items: center;
  }
  .logo_text .box_1 .logo {
    width: 150px;
  }
  .logo_text .box_1 span {
    font-size: 28px;
  }
  .logo_text .box_2 {
    display: none;
  }
}
@media (max-width: 760px) {
  .logo_text .box_1 .logo {
    width: 100px;
  }
  .logo_text .box_1 span {
    font-size: 19px;
    letter-spacing: 0;
  }
}
.right_btn {
  position: absolute;
  z-index: 10;
  top: 28%;
  right: 0;
}
.right_btn .box {
  padding: 10px 25px 30px 25px;
  display: block;
  position: relative;
}
.right_btn .box img {
  width: 65px;
}
.right_btn .box span {
  color: white;
  text-align: center;
  font-size: 18px;
  margin-top: 10px;
}
.right_btn .box:nth-child(1) {
  background-color: #d60018;
}
.right_btn .box:nth-child(2) {
  background-color: #2909cc;
}
.right_btn .box:nth-child(2) .img {
  position: absolute;
  top: 0;
  right: 130px;
}
.right_btn .box:nth-child(2) .img img {
  width: 140px;
}
@media (max-width: 760px) {
  .right_btn {
    display: none;
  }
}
.tel_img {
  position: absolute;
  z-index: 10;
  bottom: 200px;
  right: 0;
}
.tel_img .a {
  width: 220px;
  position: absolute;
  top: 50px;
  left: -90px;
}
.tel_img .b {
  width: 400px;
}
@media (max-width: 1200px) {
  .tel_img {
    bottom: 450px;
    right: auto;
    left: 100px;
  }
  .tel_img .a {
    width: 180px;
    top: 20px;
    left: -60px;
  }
  .tel_img .b {
    width: 250px;
  }
}
@media (max-width: 760px) {
  .tel_img {
    bottom: auto;
    top: 40%;
    left: 2%;
  }
  .tel_img .a {
    width: 80px;
    position: static;
  }
  .tel_img .b {
    width: 130px;
  }
}
.menu {
  width: 100%;
  position: absolute;
  z-index: 10;
  bottom: 0;
  left: 0;
}
.menu ul {
  margin: 0;
  padding: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  position: relative;
}
.menu ul li {
  list-style: none;
  box-sizing: border-box;
  position: relative;
}
.menu ul li a {
  display: block;
  color: white;
  padding: 45px 35px 35px 35px;
  position: relative;
}
.menu ul li a span {
  font-weight: 600;
  position: relative;
  z-index: 2;
  font-size: 19px;
}
.menu ul li a img {
  width: 110px;
  position: absolute;
  z-index: 1;
  top: 10px;
  left: 0;
  display: none;
}
.menu ul li ul {
  width: auto;
  display: none;
  min-width: 100%;
  padding: 10px 0;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  z-index: 11;
  bottom: 100%;
  left: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}
.menu ul li ul li {
  width: 100%;
}
.menu ul li ul li a {
  padding: 8px 10px;
  box-sizing: border-box;
  width: 100%;
  text-align: center;
  white-space: nowrap;
  font-weight: 400;
  font-size: 18px;
}
.menu ul .active img {
  display: block;
}
.menu ul li:hover img {
  display: block;
}
.menu ul li:hover ul {
  display: block;
}
.menu ul li:hover ul li:hover a {
  background-color: rgba(255, 255, 255, 0.7);
  color: black;
}
@media (max-width: 1200px) {
  .menu ul {
    flex-flow: row wrap;
    justify-content: space-between;
  }
  .menu ul li {
    width: calc(100% / 3);
    display: flex;
    justify-content: center;
  }
  .menu ul li:nth-child(1) {
    display: none;
  }
  .menu ul li:nth-child(-n+4) {
    border-bottom: 1px solid #787878;
  }
  .menu ul li:nth-child(n+4) ul {
    bottom: auto;
    top: 100%;
    border-bottom: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.7);
  }
}
@media (max-width: 760px) {
  .menu ul li {
    border-right: 1px solid #787878;
  }
  .menu ul li a {
    padding: 15px 20px 8px 20px;
  }
  .menu ul li a span {
    font-size: 14px;
  }
  .menu ul li a img {
    width: 50px;
    top: 2px;
    left: 2px;
  }
  .menu ul .active img {
    display: block;
  }
  .menu ul li:hover ul {
    display: none;
  }
  .menu ul li:nth-child(n+5) {
    padding-bottom: 5px;
  }
  .menu ul li:nth-child(4) {
    border-right: 0;
  }
  .menu ul li:nth-child(7) {
    border-right: 0;
  }
}
.more {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.more a {
  display: block;
  position: relative;
}
.more a img {
  width: 80px;
}
.more a span {
  width: 100%;
  color: white;
  text-align: center;
  position: absolute;
  bottom: 8px;
  left: 0;
}
@media (max-width: 760px) {
  .more a img {
    width: 60px;
  }
  .more a span {
    font-size: 12px;
    bottom: 4px;
    letter-spacing: 1px;
    transform: scale(0.9);
  }
}
.our {
  width: 100%;
  overflow: hidden;
  padding-bottom: 100px;
  background: url('../img/007.jpg') no-repeat;
  background-size: cover;
  background-position: right center;
  display: flex;
  position: relative;
}
.our img {
  display: block;
}
.our .lbox {
  width: 50%;
}
.our .lbox .image {
  width: 100%;
}
.our .lbox .image img {
  width: 100%;
}
.our .lbox .title {
  width: 100%;
  transition-delay: 300ms!important;
  overflow: hidden;
  padding: 10px 20px 10px 0;
  background-color: #d60018;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  position: relative;
}
.our .lbox .title span {
  width: 100%;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
  padding-right: 20px;
  font-weight: 600;
  color: white;
  text-align: right;
  font-size: 28px;
}
.our .lbox .title:before {
  width: 75%;
  height: 25px;
  background-color: #2909cc;
  transform: skewX(-45deg);
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  left: -4%;
}
.our .rbox {
  width: 50%;
  box-sizing: border-box;
  padding-left: 50px;
}
.our .rbox p {
  width: 60%;
  margin: 370px 0 40px 0;
  color: white;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
  letter-spacing: 2px;
  line-height: 32px;
  font-size: 18px;
}
.our .rbox .more {
  width: 60%;
}
.our .num {
  width: 50%;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
}
.our .num .list {
  width: calc(100% / 3);
  padding: 40px 0;
  box-sizing: border-box;
  border-right: 1px solid white;
  background-color: #2909cc;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.our .num .list .img {
  position: relative;
  margin-bottom: 15px;
}
.our .num .list .img img {
  height: 140px;
  transition: 400ms;
}
.our .num .list .img strong {
  color: white;
  font-weight: 400;
  height: 32px;
  width: 32px;
  line-height: 32px;
  text-align: center;
  background-color: #5235e8;
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  right: 0;
}
.our .num .list p {
  margin: 0;
}
.our .num .list p span {
  text-align: center;
  color: white;
  letter-spacing: 2px;
  font-size: 24px;
  transition: 400ms;
}
.our .num .list:nth-last-child(1) {
  border-right: 0;
}
.our .num .list:hover .img img {
  transform: scale(1.1);
}
.our .num .list:hover p span {
  transform: skewY(-22deg);
}
.our .num .list:nth-child(2) {
  transition-delay: 250ms!important;
}
.our .num .list:nth-child(3) {
  transition-delay: 400ms!important;
}
@media (max-width: 1200px) {
  .our {
    padding-bottom: 50px;
    flex-flow: row wrap;
  }
  .our .lbox {
    width: 80%;
  }
  .our .lbox .title {
    padding: 10px 0 10px 0;
  }
  .our .rbox {
    width: 80%;
  }
  .our .rbox p {
    width: 90%;
    margin: 40px 0 40px 0;
  }
  .our .rbox .more {
    width: 90%;
  }
  .our .num {
    width: 20%;
    height: 111%;
    top: -5%;
    flex-flow: row wrap;
    transform: skewY(22deg);
  }
  .our .num .list {
    width: 100%;
    height: calc(100% / 3);
    padding: 0;
    border-right: 0;
    border-bottom: 1px solid white;
  }
  .our .num .list .img {
    width: 30%;
    height: auto;
    margin-bottom: 10px;
    transform: skewY(-22deg);
  }
  .our .num .list .img img {
    width: 100%;
    height: auto;
  }
  .our .num .list .img strong {
    height: 25px;
    width: 25px;
    line-height: 25px;
    right: -20%;
    font-size: 14px;
  }
  .our .num .list p span {
    font-size: 20px;
  }
  .our .num .list:nth-child(1) .img {
    margin-top: 20%;
  }
  .our .num .list:nth-last-child(1) {
    border-bottom: 0;
  }
  .our .num .list:nth-last-child(1) p {
    margin-bottom: 20%;
  }
}
@media (max-width: 760px) {
  .our {
    padding-bottom: 30px;
  }
  .our .lbox {
    width: 75%;
  }
  .our .lbox .title {
    padding: 4px 0 4px 0;
  }
  .our .lbox .title span {
    padding-right: 20px;
    font-size: 20px;
  }
  .our .lbox .title:before {
    width: calc(100% - 110px);
    height: 15px;
  }
  .our .rbox {
    width: 75%;
    padding-left: 0;
  }
  .our .rbox p {
    margin: 20px auto;
    line-height: 28px;
    font-size: 16px;
  }
  .our .num {
    width: 25%;
  }
  .our .num .list .img {
    width: 45%;
    margin-bottom: 10px;
    transform: skewY(-15deg);
  }
  .our .num .list .img strong {
    height: 20px;
    width: 20px;
    line-height: 20px;
    font-size: 12px;
  }
  .our .num .list p span {
    font-size: 12px;
  }
  .our .num .list:nth-last-child(1) {
    border-bottom: 0;
  }
}
.index_title {
  width: 100%;
  display: flex;
  justify-content: center;
}
.index_title span {
  color: #4d4d4d;
  position: relative;
  font-weight: 600;
  letter-spacing: 3px;
  font-size: 38px;
}
.index_title span:before {
  content: '';
  width: 16px;
  height: 16px;
  background: url('../img/010.png') no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: 50%;
  left: -50px;
  margin-top: -8px;
}
@media (max-width: 760px) {
  .index_title span {
    font-size: 26px;
  }
  .index_title span:before {
    width: 12px;
    height: 12px;
    left: -20px;
    margin-top: -6px;
  }
}
.product {
  width: 100%;
  overflow: hidden;
  padding-top: 150px;
  background: url('../img/008.jpg') no-repeat;
  background-size: cover;
}
.product img {
  display: block;
}
.product .column {
  width: 100%;
  margin-top: 30px;
  margin-bottom: 60px;
  display: flex;
  justify-content: center;
}
.product .column .box {
  border: 1px solid black;
  display: flex;
  flex-flow: row wrap;
}
.product .column .box a {
  display: block;
  padding: 8px 35px;
  color: black;
  text-align: center;
  position: relative;
  font-size: 18px;
}
.product .column .box a:before {
  content: '|';
  color: black;
  font-size: 16px;
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -2px;
  margin-top: -10px;
}
.product .column .box a:nth-last-child(1):before {
  display: none;
}
.product .column .box a:hover {
  background-color: #d60018;
  color: white;
}
.product .list {
  width: 100%;
  display: flex;
}
.product .list a {
  display: block;
  overflow: hidden;
  width: 23%;
  height: 680px;
  position: relative;
  transition: 500ms;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}
.product .list a span {
  width: 100%;
  background-color: #2909cc;
  padding: 30px 0;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  color: white;
  transition: 400ms;
  letter-spacing: 2px;
  font-size: 24px;
}
.product .list a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product .list a .hover {
  width: 100%;
  height: 120px;
  background-color: rgba(41, 9, 204, 0.5);
  overflow: hidden;
  position: absolute;
  bottom: -120px;
  left: 0;
  transition: 400ms;
}
.product .list a .hover p {
  margin: 0 auto;
  width: 150px;
  height: 150px;
  margin-top: 38px;
  border-radius: 50%;
  background-color: #2909cc;
  position: relative;
}
.product .list a .hover p img {
  width: 65%;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  padding-top: 10px;
}
.product .list a .hover p strong {
  width: 100%;
  text-align: center;
  color: white;
  letter-spacing: 2px;
  font-size: 23px;
  position: absolute;
  top: 40px;
  left: 0;
}
.product .list a:nth-child(n+5) {
  display: none;
}
.product .list .active {
  width: 31%;
}
.product .list .active span {
  background-color: #d60018;
}
.product .list .active .hover {
  bottom: 0;
}
.product .more {
  display: none;
}
@media (max-width: 1200px) {
  .product {
    padding-bottom: 40px;
  }
  .product .list {
    width: 90%;
    margin: 0 auto;
    flex-flow: row wrap;
  }
  .product .list a {
    width: 50%;
    height: auto;
  }
  .product .list a span {
    padding: 15px 0;
  }
  .product .list a:nth-child(n+3) span {
    bottom: 0;
    top: auto;
  }
  .product .list a:nth-child(n+3) .hover {
    bottom: auto;
    top: -120px;
  }
  .product .list a:nth-child(n+3) .hover p {
    margin-top: -72px;
  }
  .product .list a:nth-child(n+3) .hover p img {
    padding-top: 75px;
  }
  .product .list a:nth-child(n+3) .hover p strong {
    top: 80px;
  }
  .product .list .active {
    width: 50%;
  }
  .product .list .active:nth-child(n+3) .hover {
    top: 0;
  }
  .product .more {
    width: 90%;
    margin: 0 auto;
    display: flex;
    margin-top: 20px;
  }
}
@media (max-width: 760px) {
  .product {
    padding-top: 40px;
    padding-bottom: 20px;
  }
  .product .column {
    margin-top: 15px;
    margin-bottom: 30px;
  }
  .product .column .box {
    width: 90%;
  }
  .product .column .box a {
    width: calc(100% / 3);
    padding: 5px 0;
    font-size: 14px;
  }
  .product .column .box a:before {
    font-size: 12px;
    right: -1.5px;
    margin-top: -8px;
  }
  .product .column .box a:nth-child(-n+3) {
    border-bottom: 1px solid black;
  }
  .product .column .box a:nth-child(3):before {
    display: none;
  }
  .product .list a span {
    padding: 5px 0;
    font-size: 16px;
  }
  .product .list a .hover {
    display: none;
  }
  .product .list a:nth-child(1) span {
    background-color: #d60018;
  }
  .product .list a:nth-child(4) span {
    background-color: #d60018;
  }
}
.quality {
  width: 100%;
  overflow: hidden;
  padding-top: 70px;
  background: url('../img/027.jpg') no-repeat;
  background-size: 100% 450px;
}
.quality img {
  display: block;
}
.quality .title {
  width: 100%;
}
.quality .title .text {
  width: 100%;
  display: flex;
  justify-content: center;
}
.quality .title .text span {
  font-size: 56px;
  font-weight: 600;
  letter-spacing: 3px;
}
.quality .title .text span:nth-child(1) {
  color: #d60018;
}
.quality .title .text span:nth-child(2) {
  color: #2909cc;
}
.quality .title p {
  margin: 0;
  width: 100%;
  text-align: center;
  color: white;
  letter-spacing: 2px;
  font-size: 24px;
  padding: 15px 0;
  background: url('../img/026.png') no-repeat;
  background-size: auto 100%;
  background-position: center center;
}
.quality .content {
  margin-top: 60px;
  position: relative;
}
.quality .content .box_1 {
  position: relative;
}
.quality .content .box_1 .image {
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
}
.quality .content .box_1 .image img {
  width: 1920px;
}
.quality .content .box_1 .image .b {
  display: none;
}
.quality .content .box_1 .center {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.quality .content .box_1 .center .logo img {
  width: 135px;
}
.quality .content .box_1 .center span {
  font-weight: 600;
  font-size: 46px;
  letter-spacing: 2px;
}
.quality .content .box_1 .center .phone {
  margin-top: 10px;
}
.quality .content .box_1 .center .phone img {
  width: 200px;
}
.quality .content .box_1 .center .tel {
  margin-top: 5px;
}
.quality .content .box_1 .center .tel img {
  width: 50px;
}
.quality .content .box_2 {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.quality .content .box_2 .image {
  display: none;
}
.quality .content .box_2 .list_box {
  width: 1200px;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.quality .content .box_2 .list_box .list {
  width: 320px;
}
.quality .content .box_2 .list_box .list span {
  width: 80%;
  margin: 0 auto;
  border-bottom: 1px solid black;
  height: 40px;
  line-height: 60px;
  overflow: hidden;
  font-weight: 600;
  text-align: center;
  letter-spacing: 10px;
  font-size: 70px;
  transition: 400ms;
}
.quality .content .box_2 .list_box .list p {
  margin: 0 auto;
  margin-top: 10px;
  font-size: 26px;
  line-height: 36px;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: justify;
  transition: 400ms;
}
.quality .content .box_2 .list_box .list:hover span {
  transform: scale(1.1);
}
.quality .content .box_2 .list_box .list:hover p {
  transform: scale(1.1);
}
.quality .content .box_2 .list_box .list:nth-child(2n) {
  margin-left: 300px;
}
.quality .content .box_2 .list_box .list:nth-child(2n) span {
  color: white;
  border-bottom: 1px solid white;
}
.quality .content .box_2 .list_box .list:nth-child(2n) p {
  color: white;
}
.quality .content .box_2 .list_box .list:nth-child(n+3) {
  margin-top: 50px;
}
.quality .content .box_2 .list_box .list:nth-child(2) {
  transition-delay: 250ms!important;
}
.quality .content .box_2 .list_box .list:nth-child(3) {
  transition-delay: 400ms!important;
}
.quality .content .box_2 .list_box .list:nth-child(4) {
  transition-delay: 550ms!important;
}
@media (max-width: 1250px) {
  .quality .title .text span {
    font-size: 46px;
  }
  .quality .title p {
    font-size: 20px;
    padding: 10px 0;
  }
  .quality .content .box_2 {
    position: relative;
    top: auto;
    left: auto;
  }
  .quality .content .box_2 .image {
    width: 100%;
    display: block;
  }
  .quality .content .box_2 .image img {
    width: 100%;
  }
  .quality .content .box_2 .list_box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .quality .content .box_2 .list_box .list {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .quality .content .box_2 .list_box .list span {
    width: 25%;
    height: 40px;
    font-size: 60px;
    color: white;
    border-bottom: 1px solid white;
  }
  .quality .content .box_2 .list_box .list p {
    width: 30%;
    font-size: 22px;
    line-height: 32px;
    color: white;
  }
  .quality .content .box_2 .list_box .list:nth-child(2) {
    width: 50%;
  }
  .quality .content .box_2 .list_box .list:nth-child(2) span {
    width: 50%;
  }
  .quality .content .box_2 .list_box .list:nth-child(2) p {
    width: 60%;
  }
  .quality .content .box_2 .list_box .list:nth-child(3) {
    width: 50%;
  }
  .quality .content .box_2 .list_box .list:nth-child(3) span {
    width: 50%;
  }
  .quality .content .box_2 .list_box .list:nth-child(3) p {
    width: 60%;
  }
  .quality .content .box_2 .list_box .list:nth-child(2n) {
    margin-left: 0;
  }
  .quality .content .box_2 .list_box .list:nth-child(n+3) {
    margin-top: 0;
  }
}
@media (max-width: 760px) {
  .quality {
    padding-top: 40px;
    background: url('../img/027.jpg') no-repeat;
    background-size: 100% auto;
  }
  .quality .title .text span {
    font-size: 20px;
  }
  .quality .title p {
    font-size: 12px;
    padding: 5px 0;
  }
  .quality .content {
    margin-top: 20px;
  }
  .quality .content .box_1 .image img {
    width: 100%;
  }
  .quality .content .box_1 .image .a {
    display: none;
  }
  .quality .content .box_1 .image .b {
    display: block;
  }
  .quality .content .box_1 .center .logo img {
    width: 70px;
    margin-top: -20%;
  }
  .quality .content .box_1 .center span {
    font-size: 22px;
  }
  .quality .content .box_1 .center .phone {
    display: none;
  }
  .quality .content .box_1 .center .tel {
    display: none;
  }
  .quality .content .box_2 .list_box .list span {
    width: 35%;
    height: 26px;
    line-height: 40px;
    font-size: 28px;
    letter-spacing: 5px;
  }
  .quality .content .box_2 .list_box .list p {
    width: 45%;
    margin-top: 5px;
    font-size: 12px;
    line-height: 16px;
    transform-origin: 50% 0 0;
    transform: scale(0.9);
  }
  .quality .content .box_2 .list_box .list:nth-child(2) span {
    width: 60%;
  }
  .quality .content .box_2 .list_box .list:nth-child(2) p {
    width: 70%;
  }
  .quality .content .box_2 .list_box .list:nth-child(3) span {
    width: 60%;
  }
  .quality .content .box_2 .list_box .list:nth-child(3) p {
    width: 70%;
  }
}
.anli_new {
  background: url('../img/019.jpg') no-repeat;
  background-size: cover;
}
.anli_new img {
  display: block;
}
.anli {
  position: relative;
  padding-bottom: 40px;
}
.anli .box_1 {
  width: 1200px;
  overflow: hidden;
  margin: 0 auto;
  display: flex;
  flex-flow: row wrap;
}
.anli .box_1 .title {
  width: 300px;
  background-color: #2909cc;
  padding: 60px 0;
}
.anli .box_1 .title p {
  text-align: center;
}
.anli .box_1 .title p strong {
  color: white;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 46px;
}
.anli .box_1 .title p strong:nth-child(2) {
  margin-left: 8px;
  padding: 0 4px;
  background-color: #d60018;
}
.anli .box_1 .title .img_1 {
  width: 250px;
  margin: 0 auto;
  margin-top: 40px;
}
.anli .box_1 .title span {
  font-size: 18px;
  color: white;
  text-align: center;
  letter-spacing: 2px;
  margin-top: 30px;
}
.anli .box_1 .title .img_2 {
  width: 240px;
  margin: 0 auto;
  margin-top: 50px;
}
.anli .box_1 a {
  width: calc((100% - 305px) / 2);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.anli .box_1 a .image {
  width: 100%;
}
.anli .box_1 a .image img {
  width: 100%;
}
.anli .box_1 a p {
  width: 100%;
  margin: 0;
  background-color: #2c2c2c;
  transition: 400ms;
  position: relative;
  padding: 50px 0 8px 0;
}
.anli .box_1 a p img {
  width: 90px;
  height: 90px;
  position: absolute;
  left: 50%;
  top: -45px;
  margin-left: -45px;
  transition: 400ms;
}
.anli .box_1 a p span {
  font-size: 34px;
  color: white;
  text-align: center;
}
.anli .box_1 a:hover p {
  background-color: white;
}
.anli .box_1 a:hover p img {
  top: -70px;
}
.anli .box_1 a:hover p span {
  color: black;
}
.anli .box_1 a:nth-child(2n) {
  margin-right: 5px;
}
.anli .box_1 a:nth-child(3) {
  transition-delay: 250ms!important;
}
.anli .box_1 a:nth-child(4) {
  transition-delay: 400ms!important;
}
.anli .box_1 a:nth-child(5) {
  transition-delay: 550ms!important;
}
.anli .box_1 .more {
  margin-right: 0!important;
  width: 300px;
  box-sizing: border-box;
  padding: 70px 0 30px;
  background: url('../img/017.jpg') no-repeat;
  background-size: 100% 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.anli .box_1 .more .text {
  font-size: 18px;
  width: 80%;
  color: black;
  text-align: justify;
  line-height: 42px;
}
.anli .box_1 .more .btn {
  position: relative;
}
.anli .box_1 .more .btn img {
  width: 240px;
}
.anli .box_1 .more .btn span {
  color: white;
  position: absolute;
  left: 10px;
  top: 3px;
}
.anli .box_1 .more .two_img {
  position: relative;
  margin-left: -140px;
}
.anli .box_1 .more .two_img .a {
  width: 130px;
}
.anli .box_1 .more .two_img .b {
  width: 200px;
  position: absolute;
  left: 60px;
  top: 10px;
}
.anli .box_2 {
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  margin: 0 auto;
}
.anli .box_2 .swiper-button-next,
.anli .box_2 .swiper-button-prev:after {
  color: rgba(0, 0, 0, 0) !important;
}
.anli .box_2 .swiper-button-next,
.anli .box_2 .swiper-button-prev {
  display: block;
  width: 45px;
  height: 66px;
  margin-top: -33px;
}
.anli .box_2 .swiper-button-next {
  right: 0;
  background: url('../img/right.png');
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.anli .box_2 .swiper-button-prev {
  left: 0;
  background: url('../img/left.png');
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
@media (max-width: 1250px) {
  .anli .box_1 {
    width: 100%;
  }
}
@media (max-width: 1000px) {
  .anli .box_1 .href {
    display: none;
  }
  .anli .box_1 .title {
    width: 45%;
    padding: 60px 0 15% 0;
  }
  .anli .box_1 .more {
    width: 55%;
    padding: 70px 0 15% 0;
  }
  .anli .box_2 {
    position: relative;
    top: auto;
    left: auto;
    visibility: visible;
    margin-top: -10%;
  }
}
@media (max-width: 760px) {
  .anli {
    background-color: white;
  }
  .anli .box_1 .title {
    padding: 30px 0 15% 0;
  }
  .anli .box_1 .title p strong {
    font-size: 22px;
  }
  .anli .box_1 .title p strong:nth-child(2) {
    margin-left: 4px;
    padding: 0 4px;
  }
  .anli .box_1 .title .img_1 {
    width: 110px;
    margin-top: 15px;
  }
  .anli .box_1 .title span {
    max-width: 90%;
    font-size: 12px;
    margin-top: 20px;
  }
  .anli .box_1 .title .img_2 {
    width: 80px;
    margin: 0;
    margin-top: 15px;
    margin-left: 10%;
  }
  .anli .box_1 .more {
    padding: 20px 0 15%;
  }
  .anli .box_1 .more .text {
    font-size: 13px;
    line-height: 24px;
  }
  .anli .box_1 .more .btn {
    position: relative;
  }
  .anli .box_1 .more .btn img {
    width: 150px;
  }
  .anli .box_1 .more .btn span {
    font-size: 12px;
    left: 5px;
    top: 1px;
    transform: scale(0.9);
  }
  .anli .box_1 .more .two_img {
    margin-left: -70px;
  }
  .anli .box_1 .more .two_img .a {
    width: 90px;
  }
  .anli .box_1 .more .two_img .b {
    width: 120px;
    left: 45px;
    top: 10px;
  }
  .anli .box_2 {
    width: 95%;
  }
  .anli .box_2 .swiper-button-next,
  .anli .box_2 .swiper-button-prev {
    display: block;
    width: 30px;
    height: 50px;
    margin-top: -25px;
  }
}
.new {
  width: 100%;
  overflow: hidden;
  padding: 40px 0 60px 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.new .box_1 {
  width: 13%;
  background-color: #082279;
}
.new .index_title {
  width: 100%;
  margin-bottom: 40px;
}
.new .box_2 {
  width: 37%;
  overflow: hidden;
}
.new .box_2 a {
  display: block;
  width: 80%;
  height: 100px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 50px;
  border-radius: 50px;
  position: relative;
  margin-bottom: 35px;
}
.new .box_2 a .text .time {
  display: flex;
  align-items: center;
  padding-top: 10px;
}
.new .box_2 a .text .time span {
  font-weight: 600;
  font-family: '黑体';
  font-size: 24px;
}
.new .box_2 a .text .time img {
  width: 12px;
}
.new .box_2 a .text p {
  width: calc(100% - 60px);
  margin: 0;
  font-size: 20px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.new .box_2 a .img {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
}
.new .box_2 a .img img {
  width: 60px;
  transition: 500ms;
}
.new .box_2 a:nth-child(2) {
  transition-delay: 200ms!important;
}
.new .box_2 a:nth-child(3) {
  transition-delay: 300ms!important;
}
.new .box_2 a:nth-child(4) {
  transition-delay: 400ms!important;
}
.new .box_2 a:nth-child(2n):hover .img img {
  transform: rotate(45deg);
}
.new .box_2 a:nth-child(2n-1):hover .img img {
  transform: rotate(-45deg);
}
.new .box_2 a:nth-last-child(1) {
  margin-bottom: 0;
}
.new .box_2 a:nth-child(2n-1) {
  background-color: #2909cc;
}
.new .box_2 a:nth-child(2n-1) .text .time span {
  color: white;
  border-bottom: 1px solid white;
}
.new .box_2 a:nth-child(2n-1) .text .time img {
  margin-left: 4px;
}
.new .box_2 a:nth-child(2n-1) .text .time .b {
  display: none;
}
.new .box_2 a:nth-child(2n-1) .text p {
  color: white;
}
.new .box_2 a:nth-child(2n-1) .img {
  background-color: #bababa;
  top: 0;
  right: 0;
}
.new .box_2 a:nth-child(2n-1) .img .b {
  display: none;
}
.new .box_2 a:nth-child(2n) {
  border: 2px solid black;
}
.new .box_2 a:nth-child(2n) .text .time {
  justify-content: flex-end;
}
.new .box_2 a:nth-child(2n) .text .time span {
  order: 2;
  color: #2909cc;
  border-bottom: 1px solid #2909cc;
}
.new .box_2 a:nth-child(2n) .text .time img {
  margin-right: 4px;
}
.new .box_2 a:nth-child(2n) .text .time .a {
  order: 1;
  display: none;
}
.new .box_2 a:nth-child(2n) .text p {
  color: black;
  float: right;
  text-align: right;
}
.new .box_2 a:nth-child(2n) .img {
  background-color: #cb0004;
  top: -2px;
  right: auto;
  left: -2px;
}
.new .box_2 a:nth-child(2n) .img .a {
  display: none;
}
.new .box_3 {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.new .box_3 img {
  width: 100%;
}
@media (max-width: 1250px) {
  .new .box_1 {
    display: none;
  }
  .new .box_2 {
    width: 100%;
  }
  .new .box_3 {
    display: none;
  }
}
@media (max-width: 760px) {
  .new {
    padding: 20px 0 30px;
    background-color: #dddcde;
  }
  .new .index_title {
    margin-bottom: 25px;
  }
  .new .box_2 a {
    width: 90%;
    height: 60px;
    padding: 0 30px;
    margin-bottom: 20px;
  }
  .new .box_2 a .text .time {
    padding-top: 7px;
  }
  .new .box_2 a .text .time span {
    font-size: 16px;
  }
  .new .box_2 a .text .time img {
    width: 8px;
  }
  .new .box_2 a .text p {
    width: calc(100% - 40px);
    font-size: 14px;
  }
  .new .box_2 a .img {
    height: 60px;
    width: 60px;
  }
  .new .box_2 a .img img {
    width: 30px;
  }
}
.foot {
  width: 100%;
  padding: 110px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url('../img/024.jpg') no-repeat;
  background-position: right center;
  background-size: 54% 100%;
  background-color: #cb0004;
}
.foot img {
  display: block;
}
.foot .foot_box {
  width: 1300px;
  display: flex;
  justify-content: space-between;
}
.foot .lbox {
  width: 750px;
  position: relative;
}
.foot .lbox .image {
  width: 100%;
}
.foot .lbox .image img {
  width: 100%;
}
.foot .lbox .title {
  width: 190px;
  height: 190px;
  padding: 5px 20px;
  box-sizing: border-box;
  border: 20px solid #2909cc;
  background-color: #4393f0;
  color: white;
  font-size: 50px;
  text-align: justify;
  text-align-last: justify;
  position: absolute;
  bottom: 0;
  left: -50px;
}
.foot .lbox .text {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.foot .lbox .text .t_box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.foot .lbox .text .t_box .info {
  margin: 0;
  display: flex;
  align-items: center;
}
.foot .lbox .text .t_box .info .img {
  height: 55px;
  width: 55px;
  background-color: #e5e5e5;
  display: flex;
  justify-content: center;
  align-items: center;
}
.foot .lbox .text .t_box .info .img img {
  height: 30px;
}
.foot .lbox .text .t_box .info span {
  margin-left: 10px;
  font-size: 18px;
}
.foot .lbox .text .t_box .info:nth-child(3) .img img {
  height: 25px;
}
.foot .lbox .text .t_box .info:nth-child(5) .img img {
  height: 20px;
}
.foot .lbox .text .t_box p:nth-child(2n) {
  width: 100%;
  height: 30px;
  margin: 0;
  border: 1px solid #cacaca;
  border-left: 0;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
}
.foot .lbox .text .t_box p:nth-child(4n) {
  width: 100%;
  height: 30px;
  margin: 0;
  border: 1px solid #cacaca;
  border-right: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}
.foot .rbox {
  display: flex;
  align-items: flex-end;
}
.foot .rbox .erwei {
  background-color: white;
  margin: 0 5px;
}
.foot .rbox .erwei img {
  padding: 8px;
  width: 130px;
}
.foot .rbox .erwei span {
  width: 100%;
  background-color: #9a8ce5;
  color: white;
  padding: 8px 0;
  text-align: center;
  font-size: 18px;
}
@media (max-width: 1350px) {
  .foot .foot_box {
    width: calc(90% - 100px);
    flex-flow: row wrap;
    justify-content: center;
  }
  .foot .foot_box .lbox {
    width: 75%;
  }
  .foot .foot_box .lbox .title {
    width: 120px;
    height: 120px;
    padding: 10px 15px;
    border: 10px solid #2909cc;
    font-size: 30px;
    left: -50px;
  }
  .foot .foot_box .rbox {
    width: 100%;
    margin-top: 20px;
    justify-content: center;
  }
  .foot .foot_box .rbox .erwei {
    margin: 0 20px;
  }
}
@media (max-width: 1000px) {
  .foot .foot_box .lbox {
    width: 100%;
  }
}
@media (max-width: 760px) {
  .foot {
    display: none;
  }
}
@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: 50px;
  background-color: black;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}
.foot_copyright .fc {
  text-decoration: none;
  color: white;
  font-size: 12px;
  margin: 0 4px;
}
@media (max-width: 760px) {
  .foot_copyright {
    bottom: 60px;
  }
}
.tabber {
  width: 100%;
  height: 60px;
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 60;
  background-color: #cb0004;
}
.tabber .box {
  width: calc(100% - 6px);
  height: calc(100% - 3px);
  margin: 0 auto;
  margin-top: 3px;
  background-color: #323232;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
}
.tabber .box a {
  position: relative;
}
.tabber .box a img {
  width: 60px;
  display: block;
}
.tabber .box a span {
  position: absolute;
  top: 22px;
  left: 15px;
  color: white;
  font-size: 14px;
  font-weight: 600;
}
@media (max-width: 760px) {
  .tabber {
    display: block;
  }
}
.common_image {
  width: 100%;
  position: relative;
}
.common_image .logo {
  position: absolute;
  left: 110px;
  top: 90px;
}
.common_image .logo img {
  width: 120px;
  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: 40px;
    border-radius: 30px;
  }
  .common_image .logo img {
    width: 80px;
  }
  .common_image .image .a {
    display: none;
  }
  .common_image .image .b {
    display: block;
  }
}
.menu2 {
  width: 100%;
}
.menu2 ul {
  margin: 0;
  padding: 0;
  width: 100%;
  background-color: #414141;
  display: flex;
  justify-content: center;
  position: relative;
}
.menu2 ul li {
  list-style: none;
  box-sizing: border-box;
  position: relative;
}
.menu2 ul li a {
  display: block;
  color: white;
  padding: 45px 35px 35px 35px;
  position: relative;
}
.menu2 ul li a span {
  font-weight: 600;
  position: relative;
  z-index: 2;
  font-size: 19px;
}
.menu2 ul li a img {
  width: 110px;
  position: absolute;
  z-index: 1;
  top: 10px;
  left: 0;
  display: none;
}
.menu2 ul li ul {
  width: auto;
  display: none;
  min-width: 100%;
  padding: 10px 0;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  z-index: 11;
  bottom: 100%;
  left: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}
.menu2 ul li ul li {
  width: 100%;
}
.menu2 ul li ul li a {
  padding: 8px 10px;
  box-sizing: border-box;
  width: 100%;
  text-align: center;
  white-space: nowrap;
  font-weight: 400;
  font-size: 18px;
}
.menu2 ul .active img {
  display: block;
}
.menu2 ul li:hover img {
  display: block;
}
.menu2 ul li:hover ul {
  display: block;
}
.menu2 ul li:hover ul li:hover a {
  background-color: rgba(255, 255, 255, 0.7);
  color: black;
}
@media (max-width: 1200px) {
  .menu2 ul {
    flex-flow: row wrap;
    justify-content: space-between;
  }
  .menu2 ul li {
    width: calc(100% / 3);
    display: flex;
    justify-content: center;
  }
  .menu2 ul li:nth-child(1) {
    display: none;
  }
  .menu2 ul li:nth-child(-n+4) {
    border-bottom: 1px solid #787878;
  }
  .menu2 ul li:nth-child(n+4) ul {
    bottom: auto;
    top: 100%;
    border-bottom: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.7);
  }
}
@media (max-width: 760px) {
  .menu2 ul li {
    border-right: 1px solid #787878;
  }
  .menu2 ul li a {
    padding: 15px 20px 8px 20px;
  }
  .menu2 ul li a span {
    font-size: 14px;
  }
  .menu2 ul li a img {
    width: 50px;
    top: 2px;
    left: 2px;
  }
  .menu2 ul .active img {
    display: block;
  }
  .menu2 ul li:hover ul {
    display: none;
  }
  .menu2 ul li:nth-child(n+5) {
    padding-bottom: 5px;
  }
  .menu2 ul li:nth-child(4) {
    border-right: 0;
  }
  .menu2 ul li:nth-child(7) {
    border-right: 0;
  }
}
.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: #ff9915;
  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%;
}
.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: 5px 10px;
    margin-bottom: 0;
    font-size: 15px;
    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 span {
    font-size: 14px;
  }
  .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 {
  display: block;
  width: 47%;
  box-sizing: border-box;
  padding: 40px;
}
.com_new_box a .text span {
  display: block;
  color: white;
  font-size: 20px;
  font-weight: 600;
  color: black;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.com_new_box a .text p {
  color: white;
  margin: 0;
  margin-top: 15px;
  line-height: 25px;
  color: #3f3f3f;
  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 .time {
  padding-top: 25px;
  margin-top: 30px;
  border-top: 1px solid #4a4a4a;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.com_new_box a .time span {
  display: block;
  font-weight: 600;
  color: #636363;
  font-family: '黑体';
  font-size: 24px;
}
.com_new_box a .time .img_box {
  width: 28px;
  height: 28px;
  background-color: #747474;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  box-sizing: border-box;
}
.com_new_box a .time .img_box img {
  width: 13px;
  display: block;
}
.com_new_box a .time .img_box .b {
  display: none;
}
.com_new_box a:hover .text span {
  color: #004ac2;
}
.com_new_box a:hover .time {
  border-top: 1px solid #004ac2;
}
.com_new_box a:hover .time span {
  color: #004ac2;
}
.com_new_box a:hover .time .img_box {
  background-color: white;
  border: 1px solid #004ac2;
}
.com_new_box a:hover .time .img_box .a {
  display: none;
}
.com_new_box a:hover .time .img_box .b {
  display: block;
}
@media (max-width: 760px) {
  .com_new_box a {
    width: 100%;
    padding: 20px;
  }
  .com_new_box a .text span {
    font-size: 18px;
  }
  .com_new_box a .text p {
    font-size: 14px;
    margin-top: 10px;
    line-height: 22px;
  }
  .com_new_box a .time {
    margin-top: 20px;
    padding-top: 15px;
  }
  .com_new_box a .time span {
    font-size: 18px;
  }
  .com_new_box a .time .img_box {
    width: 24px;
    height: 24px;
  }
  .com_new_box a .time .img_box img {
    width: 10px;
  }
}
