/* 公共样式 */
@font-face {
  font-family: "Outfit";
  src: url("../fonts/Outfit-Regular.ttf");
}
.wp {
  padding: 0 8.5%;
  width: 83%;
  margin: 0 auto;
}

.wp .titlebox {
  text-align: center;
  margin: 0 0 3vw 0;
}

.wp .titlebox .title {
  font-size: clamp(64px, 6.25vw, 120px);
  color: #000;
  font-weight: bold;
  font-family: "Outfit";
  line-height: 1.2;
  letter-spacing: -3px;
}

::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 0px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 1px;
}
::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: #535353;
}
::-webkit-scrollbar-track {
  /*滚动条里面轨道*/
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  background: #ededed;
}
.adv {
  height: 25.7291666vw;
  /* max-height: 560px; */
  min-height: 400px;
  background: url(../images/bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.adv .wp {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 0;
}
.adv .wp .title {
  font-size: clamp(42px, 4.1666vw, 80px);
  color: #fff;
  font-weight: bold;
  font-family: "Outfit";
  width: max-content;
}
.adv .wp .more {
  font-size: clamp(20px, calc(1vw + 6.8px), 26px);
  color: #fff;
  font-family: "Outfit";
  position: relative;
}
.adv .wp .more::after {
  content: "";
  position: absolute;
  width: 19px;
  height: 12px;
  background: url(../images/arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  filter: brightness(5) invert(1);
  top: 15px;
  right: -30px;
}

footer {
  background: #252525;;
}
footer .wp .wrap{
  padding: 4.5vw 0 6.5vw 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
footer .wp .wrap .btm-nav{
  display: flex;
  width: 60%;
  justify-content: space-between;

  margin: 0 5% 0 0;
}
footer .wp .wrap .btm-nav .item{}
footer .wp .wrap .btm-nav .item a{
  color: #fff;
  display: block;
  font-size: clamp(16px,calc(0.5vw + 8.4px ),18px);
  margin: 0 0 8px 0;
}
footer .wp .wrap .btm-nav .item a:first-child{
  margin: 0 0 2vw 0;
}
footer .wp .wrap .btm-nav .item a:hover {
  color: #0051a0;
}
footer .wp .wrap .btm-contact{
  width: 20%;
}
footer .wp .wrap .btm-contact .name{
  font-size: calc(0.5vw + 8.4px);
  color: #fff;
  margin: 0 0 1vw 0;
}
footer .wp .wrap .btm-contact .phone{
  font-size: calc(0.5vw + 10.4px);
  color: #fff;
}


footer .info {
  background: #272727;
  font-size: calc(0.5vw + 4.4px);
  color: rgba(255, 255, 255, 1);
}

footer .info a {
  padding: 20px 0;
  display: inline-block;
  text-align: left;
  font-size: calc(0.5vw + 4.4px);
  color: rgba(255, 255, 255, 1);
}
/* * {
        transition: all 0.6s;
    } */
/* 分页样式 */

.pagination {
  display: flex;
  justify-content: center;
  margin: 2vw 0;
}
.pagination li:first-child {
  width: max-content;
  display: block;
  border: 0;
  padding: 0 10px;
}
.pagination li:last-child {
  width: max-content;
  display: block;
  border: 0;
  padding: 0 10px;
}
.pagination li {
  width: 30px;
  height: 30px;
  margin: 10px 10px;
  text-align: center;
  line-height: 30px;
  font-size: 16px;
  font-weight: bold;
  font-family: "Outfit";
  color: #999;
}

.pagination .disabled {
  opacity: 0.5;
}

.pagination .active {
  color: rgb(35, 70, 110);
}
/* 汉堡菜单icon */
.hamburger {
  cursor: pointer;
}
.hamburger .line {
  user-select: none;
  -webkit-user-select: none;
  width: 0.56rem;
  height: 3px;
  background-color: #e50012;
  display: block;
  margin: 8px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.hamburger img {
  margin: 0 10px 0 0;
}
.hamburger span {
  font-family: Outfit;
  font-size: 16px;
  font-weight: 400;
  line-height: 20.16px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  cursor: pointer;
  user-select: none;
  color: #000;
}

/* 导航栏 */

/* 导航栏 */
.pc-header {
  position: absolute;
  z-index: 99;
  width: 100%;
  height: 100px;
  border-bottom: 1px solid #fff;
  background: rgba(0, 0, 0, 0.2);
  /* transition: all 0.4s; */
}
/* .pc-header:hover{
  background: rgba(0,0,0,0.6);
  transition: all 0.4s;
} */
.pc-header .wp .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
}
.pc-header .wp .wrap .pc-nav ul {
  display: flex;
}
.pc-header .wp .wrap .pc-nav ul li {
  margin: 0 1.5vw;
}
.pc-header .wp .wrap .pc-nav ul li a {
  font-size: clamp(14px, calc(0.5vw + 8.4px), 18px);
  color: #fff;
}
.pc-header .wp .wrap .pc-nav ul li:hover a {
  color: #0068ca;
}
.pc-header .wp .wrap .contact {
  display: flex;
  align-items: center;
}
.pc-header .wp .wrap .contact span {
  display: flex;
  align-items: center;
  font-size: clamp(14px, calc(0.5vw + 6.4px), 16px);
  color: #fff;
  margin: 0 30px 0 0;
  user-select: none;
  -webkit-user-select: none;
}
.pc-header .wp .wrap .contact span img {
  margin: 0 10px 0 0;
}
.pc-header .wp .wrap .contact .func {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pc-header .wp .wrap .contact .func i {
  display: block;
  height: 20px;
  width: 1px;
  margin: 0 15px;
  background: rgba(255, 255, 255, 0.5);
}
.pc-header .wp .wrap .contact .func a {
  color: #fff;
  font-size: clamp(14px, calc(0.5vw + 6.4px), 16px);
}

.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 111; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.7); /* Black w/ opacity */
  padding-top: 60px;
}

.modal-content {
  background-color: #fefefe;
  margin: 5% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
  position: relative;
  max-width: 600px;
  border-radius: 6px;
}

.close {
  color: #aaa;
  position: absolute;
  top: -4px;
  right: 5px;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
.modal #searchBox {
  border: 1px solid #ccc;
  width: 79%;
  height: 41px;
  border-radius: 33px;
  padding: 0 0 0 20px;
  margin: 0 1% 0 0;
}
.pc-header #searchIcon {
  cursor: pointer;
}
.modal #searchButton {
  width: 15%;
  height: 40px;
  border: 0;
  outline: 0;
  background: rgba(0, 81, 160, 1);
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
}
/* 移动端头部 */
.mobile-header {
  color: white;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  position: absolute;
  z-index: 99;
  width: 96%;
  display: flex;
}

.mobile-header .logo img {
  max-width: 100px;
}
.menu-toggle {
  background-color: transparent;
  border: none;
  font-size: 34px;
  cursor: pointer;
  display: none;
  color: #fff;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  position: absolute;
  width: 100%;
  background: #fff;
  left: 0;
  top: 65px;
  height: 100vh;
  z-index: 99;
}
.mobile-nav.is-active {
  display: flex;
}

.mobile-nav ul {
  list-style: none;
}

.mobile-nav li {
  margin: 0;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.mobile-nav a {
  color: #000;
  text-decoration: none;
  font-size: 1.5em;
  margin: 15px 0;
  display: block;
}
/* PC-banner */

.banner .banpic {
  width: 100%;
}
/* 移动端导航 */

.mobilenav {
  position: absolute;
  z-index: 2;
  width: 100%;
  background: #fff;
  height: 100vh;
  top: 1rem;
  left: 0;
  /* transition: all 0.4s; */
  display: none;
}

.mobilenav ul li {
  text-align: center;
}
.mobilenav ul li:hover {
  background: #0068ca;
  transition: all 0.2s;
}
.mobilenav ul li:hover .navitem {
  color: #fff;
}
.mobilenav ul li .navitem {
  font-size: 0.22rem;
  padding: 0.34rem 20px;
  display: block;
  border-bottom: 1px solid #efefef;
}

.mobilenav ul li .subnav ul li {
  border-bottom: 1px solid #efefef;
  padding: 10px 0 10px 45%;
}

.mobilenav ul li .subnav .subitem {
  font-size: 14px;
  padding: 0;
  position: relative;
  border: 0;
  text-align: left;
}

.mobilenav ul li .subnav .subitem::before {
  content: "";
  background: #a1a1a1;
  width: 10px;
  height: 1px;
  position: absolute;
  left: -15px;
  top: 10px;
}

.subnav {
  height: 0px;
  overflow: hidden;
}
/* banner */

.banner {
  line-height: 0.6;
}

.banner .swiper-pagination-bullet {
  background: #fff;
}

.banner .swiper-pagination-bullet-active {
  background: #fff;
}
.banner .bantxtbox {
  position: absolute;
  left: 8.5%;
  top: 22%;
}
.banner .bantxt {
  color: #000;
  font-size: calc(3vw + 22.4px);
  font-family: "outfit";
  line-height: 1.5;
  text-align: left;
  font-weight: 700;
}
.banner .bantxt2 {
  font-size: clamp(12px, calc(1vw + 1px), 24px);
  font-weight: 300;
  font-family: "Reddit";
  margin: 2px 0 0 0;
}

.tabbar {
  height: 1.45rem;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #111;
  z-index: 99;
}

.tabbar .wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.tabbar .wrapper .tabitem {
  flex-grow: 1;
  width: 25%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 1.45rem;
  opacity: 0.8;
}

.tabbar .wrapper .active {
  opacity: 1;
  background: #2c6350;
}

.tabbar .wrapper .tabitem img {
  display: block;
  margin: 10px 0 10px 0;
}

.tabbar .wrapper .tabitem span {
  color: #fff;
  font-size: 0.2rem;
}

.indexabout {
  padding: 5vw 0;
  position: relative;
  background: #fff;
}
.indexabout .bg {
  background: rgba(217, 217, 217, 0.19);
  max-height: 650px;
  height: 33.85416vw;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
}
.indexabout .wp .wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.indexabout .wp .wrap .txt_box {
  max-width: 800px;
  width: 41.66vw;
  background: none;
}
.indexabout .wp .wrap .txt_box .title {
  font-family: "Outfit";
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  text-align: left;
}
.indexabout .wp .wrap .txt_box .name {
  font-family: "Outfit";
  font-size: clamp(21px, 2.1875vw, 42px);
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #000000;
  margin: 1vw 0 2vw 0;
}
.indexabout .wp .wrap .img_box {
  width: 41.66vw;
  text-align: right;
}
.indexabout .wp .wrap .img_box .title {
  font-family: "Outfit";
  font-size: clamp(60px, 10.416vw, 200px);
  line-height: 1;
  color: #000;
  text-align: right;
}
.indexabout .wp .wrap .img_box .title span {
  font-family: "Outfit";
  font-size: clamp(40px, 6.25vw, 120px);
  line-height: 1;
  color: #000;
  display: block;
}
.indexabout .wp .wrap .img_box .cont {
  font-family: "Outfit";
  font-size: clamp(16px, 1vw, 18px);
  color: #929292;
  margin: 20px 0 0 0;
}

.indexpro .wp .catebox {
  width: 83.333%;
  margin: 0 auto;
}
.indexpro .wp .catebox .title {
  font-size: clamp(52px, 9.635416vw, 185px);
  font-family: "Outfit";
  color: #000;
  border-bottom: 2px solid #808080;
  line-height: 1.2;
}
.indexpro .wp .catebox .list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 20px 0;
}
.indexpro .wp .catebox .list .cate {
  font-size: clamp(16px, calc(0.5vw + 10.2px), 20px);
  color: #696969;
  margin: 0 15px 0 0;
}
.indexpro .wp .catebox .list .cate:hover {
  color: #0068ca;
}
.indexpro .wp .catebox .list .active {
  color: #0068ca;
}
.indexpro .wp .swiper .swiper-wrapper .swiper-slide img {
  max-width: 100%;
}

.indexnews {
  padding: 5.520833vw 0 6.1458333vw 0;
}
.indexnews .wp .list {
  display: flex;
  gap: 2.447916vw;
  max-width: 1600px;
  margin: 0 auto;
}
.indexnews .wp .list .item {
  width: 33.333%;
  border-radius: 10px;
  overflow: hidden;
}
.indexnews .wp .list .item .img_box {
  overflow: hidden;
  max-height: 270px;
  line-height: 0.6;
  min-height: 200px;
  height: 14.0625vw;
}
.indexnews .wp .list .item .img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s;
}
.indexnews .wp .list .item .img_box:hover img {
  transform: scale(1.1);
  transition: all 0.4s;
}
.indexnews .wp .list .item .txt_box {
  background: #f8f8f8;
  width: calc(100% - 2.3vw);
  padding: 0 0 0 2.3vw;
}
.indexnews .wp .list .item .txt_box .date {
  display: block;
  padding: 2vw 0 1vw 0;
  font-size: clamp(14px, calc(0.5vw + 6.4px), 16px);
  color: #292929;
}
.indexnews .wp .list .item .txt_box .name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: clamp(20px, calc(1vw + 6.8px), 26px);
  color: #121416;
  margin: 0 0 calc(2vw + 2.3px) 0;
  max-width: 90%;
}
.indexnews .wp .list .item .txt_box .arrow {
  margin: 0 0 2.02083vw 0;
}

.aboutus {
  padding: 8.8541vw 0 0 0;
}
.aboutus .wp .title {
  font-size: clamp(42px, 3.541666vw, 68px);
  color: #000;
  font-family: "Outfit";
  max-width: 980px;
  line-height: 1;
  margin: 0 0 2vw 0;
}
.aboutus .wp .desc {
  font-size: clamp(22px, 1.45833vw, 28px);
  color: #000;
  font-family: "Outfit";
  line-height: 1;
}

.aboutus .wp .wrap {
  max-width: 1250px;
  margin: 4.739583vw auto;
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
}
.aboutus .wp .wrap p {
  font-size: clamp(18px, calc(0.5vw + 10.2px), 20px);
  color: #000;
}
.aboutus .wp .wrap p:first-child {
  width: 44.020833%;
  margin: 0 10% 0 0;
}
.aboutus .wp .wrap p:last-child {
  width: 51.854167%;
}

.aboutus .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
}
.aboutus .swiper {
  width: 91.354166%;
  margin: 0 0 -8.59375vw calc(100% - 91.354166%);
}
.aboutus .swiper .arrowbox {
  position: absolute;
  z-index: 99;
  width: 17.76041vw;
  max-width: 340px;
  height: 8.59375vw;
  /* max-height: 165px; */
  background: #f7f7f7;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 0;
  left: 0;
}

.aboutus .swiper .arrowbox .prev {
  transform: rotate(180deg);
  margin: 0 25px 0 0;
  cursor: pointer;
}
.aboutus .swiper .arrowbox .next {
  cursor: pointer;
}
.aboutus .swiper .arrowbox img:hover {
  filter: brightness(0.1);
}
.numbers {
  background: #f7f7f7;
  padding: 8.75vw 0;
}
.numbers .wp .numbox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4.5vw 0 0 0;
  flex-wrap: wrap;
}
.numbers .wp .numbox .item {
  width: 25%;
}
.numbers .wp .numbox .item .num {
  font-family: "Outfig";
  color: #000;
  font-weight: 600;
}
.numbers .wp .numbox .item .num span {
  font-size: clamp(32px, 3.125vw, 60px);
}
.numbers .wp .numbox .item .num i {
  font-size: clamp(32px, 3.125vw, 60px);
}
.numbers .wp .numbox .item .desc {
  font-size: clamp(16px, calc(0.5vw + 8.2px), 18px);
  color: #000;
  max-width: 188px;
}
.certifi {
  padding: 3vw 0;
}
.certifi .wp .title {
  font-size: clamp(32px, 3.125vw, 60px);
  color: #000;
  font-weight: 600;
  font-family: "Outfit";
  padding: 2vw 0;
  text-align: center;
}
.certifi .wp .cerlist {
  display: flex;
  gap: 5%;
}
.certifi .wp .cerlist .item {
  width: 25%;
}
.certifi .wp .cerlist .item img {
  max-width: 100%;
}

.procenter .wp .catebox {
  width: 83.333%;
  margin: 0 auto;
  padding: 12vw 0 0 0;
}
.procenter .wp .catebox .title {
  font-size: clamp(52px, 9.635416vw, 185px);
  font-family: "Outfit";
  color: #000;
  border-bottom: 2px solid #808080;
  line-height: 1.2;
  text-align: center;
}
.procenter .wp .catebox .list {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}
.procenter .wp .catebox .list .cate {
  font-size: clamp(16px, calc(0.5vw + 10.2px), 20px);
  color: #696969;
  margin: 0 15px 0 0;
}
.procenter .wp .catebox .list .cate:hover {
  color: #0068ca;
}
.procenter .wp .catebox .list .active {
  color: #0068ca;
}

.procenter .wp .list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding: 2vw 0;
}
.procenter .wp .list .item {
  width: calc(33.333% - 20px);
}
.procenter .wp .list .item:nth-child(3n) {
  margin: 0;
}
.procenter .wp .list .item .img_box {
  width: 100%;
  height: 18.229166vw;
  /* max-height: 350px; */
  min-height: 130px;
  overflow: hidden;
}
.procenter .wp .list .item .img_box img {
  width: 100%;
}
.procenter .wp .list .item .txt_box {
  height: 63px;
  width: 96%;
  background: #bcbcbc;
  justify-content: center;
  align-items: center;
  display: flex;
  color: #fff;
  font-size: clamp(16px, calc(0.5vw + 10.4px), 20px);
  font-family: "Outfit";
  padding: 0 2%;
}
.procenter .wp .list .item:hover .txt_box {
  background: #0068ca;
}

.prodetail {
  padding: 3.8541vw 0 0 0;
}
.prodetail .wp .wrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.prodetail .wp .wrap .img_box {
  width: 48%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.prodetail .wp .wrap .img_box img {
  max-width: 100%;
}
.prodetail .wp .wrap .txt_box {
  width: 48%;
}
.prodetail .wp .wrap .txt_box .title {
  font-size: clamp(26px, 2.916666vw, 56px);
  color: #000;
  font-weight: 400;
  max-width: 520px;
  line-height: 1;
}
.prodetail .wp .wrap .txt_box i {
  display: block;
  margin: 2vw 0 1.2vw 0;
  width: 100%;
  height: 2px;
  background: #e2e2e2;
}
.prodetail .wp .wrap .txt_box .cont {
  font-size: clamp(16px, calc(0.5vw + 10.2px), 20px);
  color: #808080;
  line-height: 1.5;
}
.prodetail .wp .wrap .txt_box .cont b {
  color: #0068ca;
  display: block;
}
.prodetail .wp .detailpic {
  width: 100%;
  margin: 3vw 0 0 0;
}

.cases {
  padding: 5vw 0;
}
.cases .wp .list {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.cases .wp .list .item {
  width: calc(33.33% - 30px);
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 37vw;
}
.cases .wp .list .item img {
  width: 100%;
  height: 100%;
  transition: all 0.4s;
}
.cases .wp .list .item:hover img {
  transition: all 0.4s;
  transform: scale(1.09);
}
.cases .wp .list .item i {
  position: absolute;
  background-color: #fff; /* 线的颜色 */
  transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  z-index: 99;
}
.cases .wp .list .item:hover i {
  opacity: 1;
}
.cases .wp .list .item .c1 {
  width: 90%;
  height: 2px;
  top: 5%;
  left: 5%;
}
.cases .wp .list .item .c2 {
  width: 2px;
  height: 90%;
  top: 5%;
  right: 5%;
}
.cases .wp .list .item .c3 {
  width: 90%;
  height: 2px;
  bottom: 5%;
  left: 5%;
}
.cases .wp .list .item .c4 {
  width: 2px;
  height: 90%;
  top: 5%;
  left: 5%;
}
.cases .wp .list .item span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  font-size: 22px;
  color: #fff;
  padding: 15px 35px;
  opacity: 0;
}
.cases .wp .list .item:hover span {
  opacity: 1;
}
.cases .wp .list .item span::before,
.cases .wp .list .item span::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px; /* 横线的高度 */
  background-color: #fff; /* 横线的颜色 */
  transition: width 0.4s ease;
}

.cases .wp .list .item span::before {
  top: -10px; /* 根据需要调整位置 */
  left: 0;
}

.cases .wp .list .item span::after {
  bottom: -10px; /* 根据需要调整位置 */
  right: 0;
}

.cases .wp .list .item:hover span::before,
.cases .wp .list .item:hover span::after {
  width: 100%;
}

.newscenter {
  padding: 5.520833vw 0 6.1458333vw 0;
}
.newscenter .list {
  display: flex;
  margin: 0 auto;
  flex-direction: column;
}
.newscenter .list .item {
  width: calc(100% - 16.6vw);
  display: flex;
  padding: 4vw 8.3vw;
  border-bottom: 1px solid #d9d9d9;
}
.newscenter .list .item .img_box {
  overflow: hidden;
  max-height: 270px;
  line-height: 0.6;
  min-height: 320px;
  height: 20.833333vw;
  max-height: 400px;
  width: 38%;
  margin: 0 4% 0 0;
}
.newscenter .list .item .img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s;
}
.newscenter .list .item .img_box:hover img {
  transform: scale(1.1);
  transition: all 0.4s;
}
.newscenter .list .item .txt_box {
  /* background: #f8f8f8; */
  width: calc(100% - 2.3vw);
  padding: 0 0 0 2.3vw;
  width: 45%;
  position: relative;
}
.newscenter .list .item .txt_box .date {
  display: block;
  padding: 2vw 0 1vw 0;
  font-size: clamp(14px, calc(0.5vw + 6.4px), 16px);
  color: #292929;
}
.newscenter .list .item .txt_box .name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: clamp(20px, calc(1vw + 6.8px), 26px);
  color: #121416;
  margin: 0 0 calc(2vw + 2.3px) 0;
  max-width: 90%;
}
.newscenter .list .item .txt_box .cont {
  max-width: 605px;
  font-size: 15px;
  color: #bcbcbc;
}
.newscenter .list .item .txt_box .arrow {
  position: absolute;
  right: 20px;
  bottom: 20px;
}
/* 新闻详情 */

.newsdetail-show {
  padding: 50px 0;
  background: #f8f8f8;
}

.newsdetail-show .wp .detailtitle {
  font-size: 29px;
  color: #333;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  font-weight: bold;
}

.newsdetail-show .wp .desc {
  max-width: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  border-bottom: 1px solid #cdcdcd;
}

.newsdetail-show .wp .desc .time {
  font-size: 16px;
  font-weight: 400px;
  color: #999999;
  display: inline-block;
  text-align: center;
  margin: 20px 30px 20px 0;
}

.newsdetail-show .wp .desc .read {
  font-size: 16px;
  font-weight: 400px;
  color: #999999;
  display: inline-block;
  text-align: center;
}

.newsdetail-show .wp .detailcontent {
  padding: 0 30px 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.newsdetail-show .wp .detailcontent img {
  max-width: 100%;
  display: block;
  margin: 10px auto;
}

.newsdetail-show .wp .detailcontent p {
  font-size: 16px;
  color: #333;
  font-weight: 300;
  line-height: 36px;
  text-indent: 32px;
  margin: 30px 0;
}

.wp .prevnext {
  max-width: 1200px;
  display: flex;
  margin: 0 auto;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  border-top: 1px solid #cdcdcd;
  padding: 10px 0 0 0;
}

.wp .prevnext .prev,
.next {
  font-size: 16px;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wp .prevnext .next {
  text-align: right;
}
.contact {
  padding: 3vw 0;
}
.contact .wp .wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 2vw 0;
}
.contact .wp .wrap .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 3vw;
}
.contact .wp .wrap .item img {
  margin: 0 0 30px 0;
}
.contact .wp .wrap .item p {
  max-width: 450px;
  color: #000;
  font-size: calc(0.5vw + 10.2px);
  text-align: center;
}
.contact .wp .wrap .item span {
  font-size: 14px;
  color: #929292;
}

.messagebox {
  background: #f5f5f5;
  padding: 3vw 0;
}
.messagebox .wp .title {
  text-align: center;
  font-size: clamp(28px, 2.7083333vw, 52px);
  color: #000;
  font-family: "Outfit";
}
.messagebox .wp .formbox {
  max-width: 860px;
  width: 44.7916vw;
  margin: 2vw auto;
}
.messagebox .wp .formbox input {
  width: calc(100% - 20px);
  height: 74px;
  outline: none;
  border: 0;
  margin: 0 0 20px 0;
  padding: 0 0 0 20px;
  font-size: calc(0.5vw + 8.4px);
  color: #000;
}
.messagebox .wp .formbox input::placeholder {
  font-size: calc(0.5vw + 8.4px);
  color: #808080;
}
.messagebox .wp .formbox textarea {
  width: calc(100% - 20px);
  height: 11.5625vw;
  max-height: 222px;
  min-height: 180px;
  resize: none;
  border: 0;
  outline: none;
  padding: 20px 0 0 20px;
  font-size: calc(0.5vw + 8.4px);
  color: #000;
}
.messagebox .wp .formbox textarea::placeholder {
  font-size: calc(0.5vw + 8.4px);
  color: #808080;
}
.messagebox .wp .formbox button {
  width: 19.58333vw;
  max-width: 373px;
  background: #0068ca;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  height: 71px;
  outline: none;
  border: 0;
  margin: 40px auto;
  font-size: calc(0.5vw + 8.4px);
  cursor: pointer;
  min-width: 180px;
}

/* 媒介查询 */
/* 大屏幕（老款笔记本1366） */

@media (min-width: 1921px) and (max-width: 2560px) {
  .banner .banpic {
    max-width: 100%;
    display: block;
    margin: 0 auto;
  }
  .wp {
    max-width: 1920px;
  }
}

@media (max-width: 1650px) {
}

@media (max-width: 1440px) {
}

@media (max-width: 1366px) {
}

@media (max-width: 1280px) {
}

@media (max-width: 1170px) {
}

@media (max-width: 1024px) {
  header .wp nav {
    display: none;
  }
  header .wp .menuicon {
    display: block;
  }
}

@media (max-width: 992px) {
  .pc-header {
    display: none;
  }
  .pc-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

}
@media (min-width: 993px) {
  .mobile-header {
    display: none;
  }
}

@media (max-width: 768px) {
  footer .wp .wrap .btm-contact{
    width: 100%;
  }
  footer .wp .wrap .btm-contact .name{
    font-size: 16px;
  }
  footer .wp .wrap .btm-contact .phone{
    font-size: 18px;
  }
  footer .info a{
    font-size: 14px;
  }
  footer .info {
    font-size: 14px;
  }
  footer .wp .wrap .btm-nav{
    display: none;
  }
  .messagebox .wp .formbox {
    width: calc(100% - 20px);
    padding: 0 10px;
  }
  .contact .wp .wrap {
    flex-direction: column;
  }
  .contact .wp .wrap .item {
    width: 100%;
    margin: 0 0 30px 0;
  }
  .newscenter .list .item .txt_box {
    width: 100%;
    padding: 0;
  }
  .newscenter .list .item .img_box {
    width: 100%;
  }
  .newscenter .list .item {
    flex-direction: column;
  }
  .prodetail .wp .wrap .txt_box {
    width: 100%;
  }
  .prodetail .wp .wrap .img_box {
    width: 100%;
    margin: 0 0 30px 0;
  }
  .prodetail .wp .wrap {
    flex-direction: column;
  }
  .procenter .wp .list {
    gap: 10px;
  }
  .procenter .wp .list .item {
    width: calc(50% - 10px);
  }
  .aboutus .wp .wrap {
    flex-direction: column;
  }
  .aboutus .wp .wrap p:first-child {
    width: 100%;
    margin: 0 0 5vw 0;
  }
  .aboutus .wp .wrap p:last-child {
    width: 100%;
    margin: 0 0 5vw 0;
  }
  .wp {
    padding: 0 10px;
    width: calc(100% - 20px);
    margin: 0 auto;
  }
  .indexnews .wp .list .item {
    width: 100%;
  }
  .indexnews .wp .list {
    flex-direction: column;
  }
  .indexpro .wp .catebox .list .cate {
    margin: 0 0px 20px 0;
  }
  .indexpro .wp .catebox .list {
    flex-wrap: wrap;
  }
  .indexpro .wp .catebox .list .cate {
    width: 100%;
  }
  .indexpro .wp .catebox {
    width: 100%;
  }
  .indexabout .bg {
    height: 80%;
  }
  .indexabout .wp .wrap .img_box {
    width: 100%;
    text-align: right;
  }
  .indexabout .wp .wrap {
    flex-direction: column-reverse;
  }
  .indexabout .wp .wrap .txt_box {
    width: 100%;
  }
  .indexabout .wp .wrap .txt_box img {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .contact .wp .wrap .item p {
    max-width: 80%;
  }
  .newsdetail-show .wp .detailtitle {
    font-size: 20px;
  }
  .newsdetail-show .wp .detailcontent {
    padding: 0 10px 50px;
    max-width: 100%;
  }
  .newscenter .list .item {
    width: calc(100% - 20px);
    display: flex;
    padding: 4vw 10px;
  }
  .cases .wp .list {
    gap: 10px;
  }
  .cases .wp .list .item {
    width: calc(50% - 10px);
  }

  .pagination li {
    width: 16px;
  }
  .newscenter .list .item .txt_box .arrow {
    bottom: 6px;
  }
  .procenter .wp .list .item .img_box {
    min-height: 150px;
  }
  .certifi .wp .cerlist {
    flex-wrap: wrap;
  }
  .certifi .wp .cerlist .item {
    width: 45%;
    margin: 0 0 3% 0;
  }
  .numbers .wp .numbox .item {
    width: 50%;
    margin: 0 0 20px 0;
  }
  .aboutus .wp .title {
    font-size: clamp(32px, 3.541666vw, 68px);
  }
  .banner .bantxtbox {
    top: 35%;
  }
  .banner .bantxt {
    color: #000;
    font-size: calc(1vw + 16.4px);
  }


  @media (max-width: 414px) {
    header .logo {
      padding: 0;
      max-width: 30%;
    }
    header .logo img {
      max-width: 100%;
      width: auto;
      height: auto;
    }
  }
}
