/*初始化样式*/
html {
  margin: 0;
  padding: 0;
  border: 0;
}

body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
p,
blockquote,
pre,
a,
address,
code,
b,
em,
img,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
footer,
header,
hgroup,
navs,
section {
  margin: 0;
  padding: 0;
  border: 0;
}

body {
  background: #fff;
  color: #333;
  position: relative;
  font: 12px/1.5 Microsoft YaHei, arial, 宋体, sans-serif;
  vertical-align: baseline;
  width: 100%;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  outline: none;
}

a:hover,
a:active,
a:focus {
  text-decoration: none;
  outline: none;
}


input {
  padding: 0;
  margin: 0;
  font-family: 'Microsoft YaHei';
}

img {
  border: none;
  background: none;
  vertical-align: middle;
}

ul,
ol,
li {
  list-style-type: none;
}

select,
input,
img,
select {
  vertical-align: middle;
}

table {
  border-collapse: collapse;
  border-spacing: 0
}

table,
th,
td {
  vertical-align: middle
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  overflow: hidden;
  visibility: hidden;
}

.clearfix {
  zoom: 1
}

.clearboth {
  height: 0px;
  line-height: 0px;
  overflow: hidden;
  clear: both;
  font-size: 0px;
}

h1,
h2 {
  font-size: 12px;
  font-weight: bold;
}

hr {
  border: 0;
  border-top: 1px solid #ccc;
  height: 0;
}




/*----- Common css ------*/
.fl {
  float: left;
}

.fr {
  float: right;
}

.di {
  _display: inline;
}

.fwn {
  font-weight: normal;
}

.dib {
  *display: inline;
  _zoom: 1;
  _display: inline;
  _font-size: 0px;
}



.wh {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 15px;
}

.com-img {
  overflow: hidden;
  margin: 0 auto;
}

.com-img img {
  transition: all 0.8s;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
}

.com-img:hover img {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2);
}


.flex {
  display: flex;
  justify-content: space-between;
}

.flexs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.flex2 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}



/*头部样式*/
.top2 {
  background: var(--primary-color);
  /* height: 5.75rem; */
  padding: 1.3rem 0;
}

.top2 .wh {
  max-width: 78.2rem;
  padding: 0 1.25rem;
  /* height: 5.75rem; */
}
.top3 {
  height: 4.4rem;
  background: #FFFFFF;
  border-radius: 20px 20px 20px 20px;
  /* margin: 1.3rem 0; */
}
.top3_left {
  display: flex;
  column-gap: 2rem;
}
.logo {
  width: 7.4rem;
  overflow: hidden;
}

.logo img {
  width: 100%;
}






/*热门搜索*/
.sou {
  margin: 15px 0;
}

.hotSearch {
  float: left;
  height: 24px;
  line-height: 24px;
  font-weight: normal;
  color: #0d0d0d;
  font-size: 14px;
}

.hotSearch a {
  margin-right: 6px;
  color: #0d0d0d;
}

#search-type {
  float: left;
  width: 100px;
  height: 24px;
  border: 1px solid #c8c8c8;
  margin-right: 5px;
}



/* 导航样式 */
.nnav {
  width: 72%;
}

.x-menu {
  width: 100%;
}

.x-menu>li {
  position: relative;
  text-align: center;
}

.x-menu>li>a {
  display: block;
  min-width: 3rem;
  font-size: 16px;
  color: #333333;
  line-height: 4.4rem;
}

.x-menu>li:hover>a {
  color: #ffffff;
  background: url(../images/nav.png) no-repeat center;
  /*background-size: contain;*/
}

.x-menu>li.active>a {
  color: #ffffff;
  background: url(../images/nav.png) no-repeat center;
  /*background-size: contain;*/
}



.x-menu>li:hover .x-sub-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.x-sub-menu {
  position: absolute;
  z-index: 99999;
  width: 150%;
  left: -25%;
  top: 100%;
  background: #fff;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.x-sub-menu>li>a {
  display: block;
  text-align: center;

  font-size: 14px;
  color: #333;
  line-height: 40px;
  height: 40px;
  overflow: hidden;
}

.x-sub-menu>li>a:hover {
  background: #e9eaeb;
}

.x-menu li.lastli {
  /* width: 21px; */
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1.85rem;
}

.x-banner .slide-inner {
  position: relative;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  /* background-size: cover;
	  background-position: center; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  color: #fff;
}

.x-banner .swiper-slide {
  overflow: hidden;
}

.x-banner img {
  width: 100%;
}

.x-banner .swiper_pagination {
  position: absolute;
  right: 10.5rem;
  bottom: 2.05rem;
  z-index: 2;
}

/* .prev_left,
.prev_next {
  width: 2.5rem;
  height: 2.5rem;
} */
 .x-banner-btn {
  position: absolute;
  right: 10.5rem;
  bottom: 40px;
 }
.x-banner .swiper-button-prev {
  position: absolute;
  bottom: 0;
  left: -4rem;
  width: 2.5rem;
  height: 2.5rem;
  opacity: 1;
  z-index: 999;
  background: url(../images/you.png) no-repeat;
  background-size: 100% 100%;
  transform: rotate(180deg);
  top: auto;
  margin-right: 30px;
}
.x-banner .swiper-button-prev:hover {
  background: url(../images/zuo.png) no-repeat;
  background-size: 100% 100%;
  transform: rotate(0deg);
}
.x-banner .swiper-button-next {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2.5rem;
  height: 2.5rem;
  opacity: 1;
  z-index: 999;
  background: url(../images/you.png) no-repeat;
  background-size: 100% 100%;
  top: auto;
}
.x-banner .swiper-button-next:hover {
  background: url(../images/zuo.png) no-repeat;
  background-size: 100% 100%;
  transform: rotate(180deg);
}
.x-banner .swiper-button-next::after, .x-banner .swiper-button-prev::after {
  content: "" !important;
}
.prev_left {
  background: url(../images/zuo.png) no-repeat center;
}

.prev_next {
  background: url(../images/you.png) no-repeat center;
}
.dianhua_tel {
  display: inline-block;
  color:  var(--primary-color);
  font-size: 24px;
  font-weight: bold;
  margin-top: 5px;
}
.dianhua_tel_title {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.dianhua_tel_title span {
  font-size: 17px;
  color: #343636;
}
/* about */
.ab-bg {
  background: url(../images/ab_bj.png) no-repeat top center;
  background-size: 100% 100%;
  padding-top: 5.5rem;
  padding-bottom: 5rem;
}

.abl {
  width: 47.11%;
}

.at {
  position: relative;
  text-align: center;
}

/* .at::before{
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  background: url(//cdn.myxypt.com/45efcd51/23/09/5b67385f6da3dd37065cf620e5129a0f8dc11010.png) no-repeat top center;
  width: 86px;
  height: 86px;
  background-size: 100% 100%;
} */
.at h2 {
  width: 100%;
  position: absolute;
  top: -2rem;
  text-align: center;
  font-weight: bold;
  font-size: 4rem;
  color: rgba(2, 56, 148, 0.1);
  font-style: normal;
  text-transform: uppercase;
  z-index: -1;
}
.at h3 {
  color: #333333;
  font-size: 36px;
  font-weight: normal;
  text-shadow: 0px 1px 2px rgba(0,0,0,0.6);
}

.at h3 b {
  color: var(--primary-color);
}

.at h4 {
  color: #666666;
  font-size: 22px;
  font-weight: normal;
  padding: 20px 0 5rem;
}

.at h5 {
  width: 90px;
  height: 5px;
  background: var(--primary-color);
}

.aw {
  margin-top: 2vw;
  padding-right: 1.3vw;
}

.aw p {
  color: #333333;
  font-size: 17px;
  line-height: 2;
  text-align: justify;
}

.amore {
  width: 178px;
  height: 54px;
  border-radius: 26px;
  background: var(--jianbian);
  margin-top: 2.6vw;
}

.amore a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  font-size: 16px;
  line-height: 54px;
}

.amore a img {
  margin-left: 15px;
}

.abr {
  position: relative;
  width: 47.75%;
}

.abr::before {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  background: var(--primary-color);
  width: 19.4rem;
  height: 21rem;
  z-index: -1;
}

/* 
.abr::after{
  content: '';
  position: absolute;
  bottom: 30px;
  right: 0;
  background: url(//cdn.myxypt.com/45efcd51/23/09/86f53f0bbbc1ebb9331c08d6752b15ea63a58823.png) no-repeat top center;
  background-size: 100% 100%;
  width: 58px;
  height: 376px;
} */

.abr img {
  max-width: 100%;
  padding-right: 5px;
  padding-bottom: 0;
}

@media(max-width: 1300px) {
  .at h3 {
    font-size: 40px;
  }

  .at h4 {
    font-size: 20px;
  }

  .nlist li .num1 {
    font-size: 48px;
  }
}

@media(max-width: 1024px) {
  .aw p {
    font-size: 15px;
  }

  .ab-index {
    align-items: center;
  }

  .abr img {}

  .abr::before {
    width: 240px;
    height: 330px;
  }

  .abr::after {
    width: 29px;
    height: 176px;
  }
}

@media(max-width: 767px) {
  .ab-bg {
    padding: 40px 0;
  }

  .ab-index {
    flex-wrap: wrap;
  }

  .abl {
    width: 100%;
  }

  .at::before {
    width: 40px;
    height: 40px;
  }

  .at h3 {
    font-size: 24px;
  }

  .at h4 {
    font-size: 14px;
    padding: 10px 0;
  }

  .amore {
    height: 45px;
  }

  .amore a {
    font-size: 14px;
    line-height: 45px;
  }

  .abr {
    width: 100%;
    margin-top: 20px;
  }

  .abr::before {
    width: 100%;
    height: 100%;
  }

  .abr img {
    padding: 15px;
  }
}


.product_list1 {
  margin-top: 38px;
}

.product_list1 li {
  float: left;
  margin-right: 57px;
  margin-bottom: 28px;
}

.product_list1 li:nth-child(4n) {
  margin-right: 0;
}

.product_list1 li img {
  width: 257px;
  height: 293px;
}

.product_list1 li h3 {
  text-align: center;
  font-weight: normal;
  color: #3f3f3f;
  font-size: 20px;
}


/*主体样式*/
.bxs {
  overflow: hidden;
}

.box1 {
  background: #f8f8f8;
  padding: 3vw 0 2.2vw;
}

.bt {
  text-align: center;
  color: var(--primary-color);
  font-size: 41px;
}

.prod1 {
  margin-top: 3vw;
}

.prod1 li {
  width: 23%;
  text-align: center;
  margin-bottom: 2.3vw;
}

.prod1 li .img {
  box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.07);
}

.prod1 li img {
  display: block;
  width: 100%;
}

.prod1 li h3 {
  color: #333333;
  font-size: 14px;
  line-height: 3.8;
  background: #fff;
  box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-top: 3px;
}

.prod1 li:hover h3 {
  background: var(--primary-color);
  color: #fff;
}



/* 产品优势 */
.ys {
  padding: 5.5rem 0 5rem;
}

.ys .title h3 {
  color: #fff;
}
.ys .at h4 {
    padding-bottom: 2.7rem;
}
.ys .title p {
  color: #fff;
}

.ys .title h3::before {
  display: none;
}

.ys .title h3::after {
  display: none;
}

.ys-list {
  /* margin-top: 50px; */
}

.ys-list ul {
  display: flex;
}

.ys-list ul li {
  background-color: #fff;
  /* width: 23.65%; */
  margin-left: 1.8%;
  cursor: pointer;
  box-shadow: 0px 6px 12px 1px rgba(0, 0, 0, 0.16);
  border: 1px solid transparent;
  transition: all .5s ease;
}

.ys-list ul li:first-child {
  margin-left: 0;
}

.ys-list ul li .ys-img {
  overflow: hidden;
}

.ys-list ul li .ys-img img {
  max-width: 100%;
}

.ys-list ul li .ys-text {
  text-align: center;
  padding: 0 15px;
  padding-top: 30px;
  padding-bottom: 40px;
}

.ys-list ul li .tt {
  font-size: 26px;
  color: #333333;
  font-style: normal;
  line-height: 1;
  margin: 1rem 0;
}
.ys-list ul li .text b{
  margin-bottom: 1rem;
}

.ys-list ul li .ys-text h3 {
  font-size: 30px;
  font-weight: bold;
  color: #333;
  transition: all .5s ease;
}

.ys-list ul li .ys-text .ckgd {
  width: 160px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: #666666;
  border-radius: 23px 23px 23px 23px;
  border: 1px solid #707070;
  margin: 0 auto;
  margin-top: 1.45rem;
}

.ys-list ul li .ys-text .text {
  font-size: 20px;
  line-height: 25px;
  color: #666666;
}

.ys-list ul li .ys-text .text span {
  font-weight: bold;
  text-transform: uppercase;
  color: var(--primary-color);
}

.ys-list ul li:hover {
  transform: scale(1.1);
  border-color: #023894;
  box-shadow: 0px 6px 30px 20px rgba(0, 0, 0, 0.16);
}
.ys-list ul li:hover .ys-text h3 {
  color: #053e95;
}
.ys-list ul li:hover .ys-text .ckgd {
  border-color: #023894;
  color: #023894;
}

@media (max-width:992px) {
  .ys-list ul {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .ys-list ul li {
    margin: 0;
  }
}


/*应用领域*/
.box2 {
  padding: 5.5rem 0 5rem;
  padding-bottom: 0;
}
.box2 .at h4 {
    padding-bottom: 2.7rem;
}

.yin {
  /* margin-top: 3vw; */
  position: relative;
  padding-bottom: 4.2vw;
}

.yin .mySwiper {
  overflow: hidden;
}

.yin .swiper-slide {
  text-align: center;
  position: relative;
}

.yin .swiper-slide .img img {
  width: 100%;
  display: block;
}

.yin .swiper-slide .img2 img {
  width: 100%;
  display: block;
}

.yin .swiper-slide .det {
  background: rgba(0, 0, 0, .6);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
}

.yin .swiper-slide .nr {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}

.yin .swiper-slide h2 {
  color: #fff;
  font-size: 32px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: bold;
  margin-top: 2vw;
}

.yin .swiper-slide .det2 {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 2.8vw;
  display: none;
}

.yin .swiper-slide h3 {
  color: #fff;
  font-size: 32px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-bottom: 16px;
  font-weight: bold;
}

.yin .swiper-slide .xian {
  width: 29px;
  height: 3px;
  background: #fff;
  margin: 0 auto;
}

.yin .swiper-slide:hover .det {
  display: none;
}

.yin .swiper-slide:hover .det2 {
  display: block;
}



.yingyong_notification {
  bottom: 1.5rem !important;
}

.yingyong_notification .swiper-pagination-bullet {
  margin: 0 13px !important;
}

.yingyong_notification .swiper-pagination-bullet-active {
  position: relative;
}

.yingyong_notification .swiper-pagination-bullet-active::after {
  content: "";
  display: block;
  position: absolute;
  left: -8px;
  top: -8px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 1px solid var(--primary-color);
}


/* 4大优势 */
.box3 {
  background: #F8F8F8;
  padding: 5.5rem 5.1rem;
}
.box3 .at h4 {
    padding-bottom: 2.7rem;
}
.yous .shunxu {
  width: 66px;
  height: 66px;
  background: var(--primary-color);
  border-radius: 5px;
  padding-top: 12px;
}

.yous .shunxu .p1 {
  font-size: 32px;
  font-family: Impact;
  color: #fff;
  line-height: 32px;
  text-align: center;
}

.yous .shunxu .p2 {
  width: 20px;
  height: 2px;
  background: #fff;
  margin: 0 auto;
  margin-top: 6px;
}

.yous .yscont {
  margin-left: 16px;
  padding-top: 7px;
  max-width: 50%;
}

.yous .yscont .p1 {
  font-size: 26px;
  line-height: 26px;
  font-weight: 700;
  color: var(--primary-color);
}

.yous .yscont .p2 {
  color: #666666;
  font-size: 16px;
  line-height: 1.5;
  margin-top: 11px;
}

.yous {
  position: relative;
  /*margin-top: 56px;*/
  padding-bottom: 69px;
}

.ads {
  position: absolute;
}

.zhuan {
  width: 24.6%;
  position: relative;
  margin: 0 auto;
}

.zhuan .znei {
  position: absolute;
  top: 50%;
  left: 47.5%;
  margin-top: -54px;
  margin-left: -49px;
}

.zhuan .img {
  width: 100%;
}

.znei {
  text-align: center;
}

.znei p {
  line-height: 30px;
  font-size: 30px;
  color: var(--primary-color);
  font-weight: 700;
  text-align: center;
}

.zhuan .zhuanimg {
  transition: all 5s;
}

.zhuan .zhuanimg img {
  width: 100%;
}

@keyframes imageAnimation {
  0% {
    transform: rotate(0deg);
  }

  33% {
    transform: rotate(120deg);
  }

  66% {
    transform: rotate(240deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.zhuan .zhuanimg {
  animation: imageAnimation 5s infinite;
}

.ad0 {
  left: 0;
  top: 66px;
}

.ad1 {
  left: 4.6%;
  top: 236px;
}

.ad2 {
  right: 0;
  top: 66px;
}

.ad3 {
  right: 4.6%;
  top: 236px;
}

.ad2 .yscont {
  float: right;
  margin-left: 0;
  margin-right: 16px;
  text-align: right;
}

.ad2 .shunxu {
  float: right;
}

.ad3 .yscont {
  float: right;
  margin-left: 0;
  margin-right: 16px;
  text-align: right;
}

.ad3 .shunxu {
  float: right;
}

.zixun {
  width: 638px;
  height: 58px;
  background: #fff;
  border-radius: 30px;
  margin: 0 auto;
  padding-left: 15px;
  box-shadow: 0 0 10px rgb(197, 214, 241);
}

.zixun .s1 {
  display: inline-block;
  background: url(../images/xixun.png) no-repeat left center;
  line-height: 58px;
  padding-left: 48px;
  font-size: 16px;
  color: var(--primary-color);
}

.zixun .s1 b {
  font-size: 30px;
  font-family: Arial;
  color: var(--primary-color);
  font-weight: 700;
}

.zixun a {
  display: block;
  float: right;
  width: 208px;
  height: 58px;
  border-radius: 30px;
  background-color: #ec6b00;
  background: 
  url('../images/xiaoshouo.png') no-repeat 34px center,
  linear-gradient(to bottom, rgba(255, 172, 103, 1) 0%, rgba(226, 119, 31, 1) 35%, rgba(216, 100, 4, 1) 100%);
  /*background-image: url(../images/xiaoshouo.png);*/
  /*background-repeat: no-repeat;*/
  /*background-position: 34px;*/
  padding-left: 85px;
  color: #fff !important;
  font-weight: 700;
  font-size: 18px;
  line-height: 58px;
  transition: all .3s;
}

.zixun a:hover {
  background-color: var(--primary-color);
  color: #ffffff;
}

@media (max-width: 1159px) {
  .znei p {
    line-height: 30px;
    font-size: 16px;
    color: #002d78;
    font-weight: 700;
    text-align: center;
  }

  .zixun {
    margin-top: 0;
  }

  .zhuan .znei {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -32px;
    margin-left: -29px;
  }

  .zhuan {
    width: 20%;
    position: relative;
    margin: 0 auto;

    top: 65px;
  }

  .zhuan .znei .img1 {
    width: 32px;
  }

  .zixun {
    margin-top: 45px;
  }

  .yous .yscont .p2 {
    font-size: 14px;
  }
}

@media (max-width: 990px) {
  .zhuan {
    display: none;
  }

  .yous {
    height: 295px;
  }
}

@media (max-width: 690px) {
  .zixun {
    display: none;
  }

  .ads {
    position: unset;
  }

  /* .ads + .ads {
    margin-top: 20px;
  } */
  .ad2 .shunxu {
    float: left;
  }

  .ad3 .shunxu {
    float: left;
  }

  .yous {
    height: auto !important;
  }

  .ad2 .yscont {
    margin-left: 16px;
    margin-right: 0;
    text-align: left;
    float: left;
  }

  .ad3 .yscont {
    margin-left: 16px;
    margin-right: 0;
    text-align: left;
    float: left;
  }

  .ads+.ads {
    margin-top: 35px;
  }
}

@media (max-width: 665px) {
  .n1:nth-child(2) {
    display: none;
  }

  .n {
    justify-content: center;
  }

  .n1 {
    width: 80%;
  }

  .ntop img {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .title .p1 {
    font-size: 25px;
    line-height: 25px;
    margin-bottom: 8px;
  }

  .product {
    margin-top: 36px;
  }

  .title .p2 {
    font-size: 12px;
    line-height: 15px;
  }

  .pro {
    margin-top: 20px;
  }

  .pro ul .ppp {
    background-position-y: 20px !important;
    background-size: 20% !important;
  }

  .pro ul li .ppp {
    padding-top: 28px;
    padding-bottom: 20px;
  }

  .pro ul li .tu {
    margin-bottom: 20px;
  }

  .pro ul li img {
    width: 30%;
    margin: 0 auto;
  }

  .pro ul li .ppp .p1 {
    font-size: 15px;
    line-height: 15px;
    margin-bottom: 10px;
  }

  .pro ul li .ppp .p2 .s2 {
    font-size: 12px;
    color: #666666;
    line-height: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
    width: 85%;
    transition: all 0.8s;
  }

  .yous {
    margin-top: 20px;
  }

  .ys {
    margin-top: 36px;
  }

  .n1 {
    width: 95%;
  }

  .news {
    margin-top: 36px;
  }

  .n {
    margin-top: 20px;
  }

  .xwbt {
    margin-bottom: 15px;
  }

  .flink {
    line-height: 48px;
  }

  .bq {
    line-height: 28px;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .flink {
    display: none;
  }

  .sjj {
    display: block;
    padding: 20px 15px;
    margin-top: 20px;
    background: #ededf5;
    margin-top: 40px;
  }

}


/*资质*/
.box4 {
  /*background: #ffffff;*/
  padding: 4rem 0 5.5rem;
}
.box4 .at h4 {
    padding-bottom: 2.7rem;
}

.hy {
  position: relative;
}

.hy .mySwiper2 {
  overflow: hidden;
}

.hy .swiper-slide {
  text-align: center;
}

.hy .swiper-slide .img {
  overflow: hidden;
}

.hy .swiper-slide .img img {
  width: 100%;
  display: block;
  transition: all 0.8s;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
}

.hy .swiper-slide .mask {
  background: rgba(0, 0, 0, .4);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

.hy .swiper-slide .nr {
  width: 92%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}

.hy .swiper-slide .wz {
  color: #fff;
  font-size: 18px;
  margin-top: 2vw;
}

.hy .swiper-slide:hover .img img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
}

.hy .swiper-slide:hover .mask {
  opacity: 1;
}

/* 新闻 */
.tt11{
  display: none;
}
.news-index {
  background: url(../images/newsbj.webp) no-repeat center;
  background-size: cover;
  padding: 5.5rem 0 12.5rem;
}
.news-index .at h4 {
    padding-bottom: 2.7rem;
}
.news-index1 {
  border-bottom: 2px solid #dbdbdb;
  padding: 1.30208333333333vw 0;
  align-items: center;
}

.nsort {
  width: 80%;
  justify-content: flex-start;
}

.nsort li {
  background: transparent;
  width: 174px;
  height: 54px;
  border-radius: 40px;

}

.nsort li a {
  display: block;
  color: #666666;
  font-size: 18px;
  font-weight: 600;
  line-height: 54px;
  text-align: center;
}

.nsort li.cur {
  background: var(--primary-color);
  box-shadow: 0px 14px 14px 1px rgba(2,56,148,0.2);
}

.nsort li.cur a {
  color: #fff;
}

.nmore a {
  display: block;
  color: #999999;
  font-size: 16px;
}

.news-wrap {
  margin-top: 3.22916666666667vw;
}

.newsl {
  width: 46.92%;
  background: #FFFFFF;
  box-shadow: 0px 3px 6px 1px rgba(0,0,0,0.16);
}

.newslist1 li .img1 img {
  width: 100%;
}

.newslist1 li .wz {
  padding-left: 4.75rem;
  padding-right: 1.6rem;
  padding-bottom: 1rem;
  position: relative;
}

.newslist1 li .wz::before {
  content: '';
  position: absolute;
  left: 56px;
  top: -56px;
  width: 8px;
  height: 138px;
  background: var(--primary-color);
}

.newslist1 li .wz .wz1 {
  color: #999999;
  font-size: 16px;
  font-family: "Arial";
  padding-top: 1.3vw;
}

.newslist1 li .wz .wz2 {
  color: #333333;
  font-size: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-top: 0.78125vw;
}

.newslist1 li .wz .wz3 {
  color: #888888;
  font-size: 15px;
  line-height: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-top: 1vw;
}

.newslist1 li:hover .wz .wz2 {
  color: var(--primary-color);
}

.newsr {
  width: 47.82%;
}

.newslist2 li {
  border-bottom: 1px solid #dcdcdc;
  padding: 2vw;
}

.newslist2 li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.newslist2 li a .date {
  width: 15%;
  text-align: center;
}

.newslist2 li a .date .d1 {
  color: #333333;
  font-size: 71px;
  font-weight: 600;
  line-height: 1;
  font-family: "Arial";
}

.newslist2 li a .date .d2 {
  color: #999999;
  font-size: 16px;
  font-family: "Arial";
}

.newslist2 li a .wz {
  width: calc(100% - 20%);
}

.newslist2 li a .wz .wz1 {
  color: #333333;
  font-size: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.newslist2 li a .wz .wz2 {
  color: #888888;
  font-size: 15px;
  line-height: 24px;
  margin-top: 0.52083333333333vw;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.newslist2 li:hover {
  background: var(--primary-color);
}

.newslist2 li:hover .date .d1 {
  color: #fff;
}

.newslist2 li:hover .date .d2 {
  color: #fff;
}

.newslist2 li:hover .wz .wz1 {
  color: #fff;
}

.newslist2 li:hover .wz .wz2 {
  color: #fff;
}

@media(max-width: 1300px) {
  .newslist2 li a .date .d1 {
    font-size: 50px;
  }
}

@media(max-width: 1024px) {
  .newslist1 li .wz .wz2 {
    font-size: 18px;
  }

  .newslist2 li a .wz .wz1 {
    font-size: 18px;
  }
}

@media(max-width: 767px) {
  .news-index {
    /* margin-top: 40px;
    margin-bottom: 40px; */
  }

  .news-index1 {
    margin-top: 20px;
  }

  .nsort {
    width: 100%;
  }

  .nsort li {
    width: 33%;
    height: 35px;
  }

  .nsort li a {
    font-size: 14px;
    line-height: 35px;
  }

  .nmore a {
    display: none;
  }

  .news-wrap {
    flex-wrap: wrap;
  }

  .newsl {
    width: 100%;
  }

  .newslist1 li .wz::before {
    left: 10px;
    top: -40px;
    width: 8px;
    height: 80px;
  }

  .newslist1 li .wz {
    padding-left: 20px;
  }

  .newslist1 li .wz .wz2 {
    font-size: 16px;
  }

  .newslist1 li .wz .wz3 {
    font-size: 14px;
  }

  .newsr {
    width: 100%;
    margin-top: 20px;
  }

  .newslist2 li a .date .d1 {
    font-size: 30px;
  }

  .newslist2 li a .date .d2 {
    font-size: 14px;
  }

  .newslist2 li a .wz .wz1 {
    font-size: 16px;
  }

  .newslist2 li a .wz .wz2 {
    font-size: 14px;
  }
}



/*关于我们*/
.box5 {
  /*background: url(../images/foot_bg.jpg) no-repeat;*/
  /*background-size: cover;*/
  /*padding-top: 4.05rem;*/
}

.cpname {
  color: #fff;
  font-size: 41px;
  text-align: center;
}

.about {
  width: 86%;
  margin: 0 auto;
  color: #fff;
  font-size: 16px;
  line-height: 2.5;
  margin-top: 2.8vw;
  text-align: center;
}
.logoLi {
  margin-top: -8.5rem;
}
.logoLi img {
  width: 100%;
}
.alogo {
  position: relative;
  text-align: center;
  margin: 0 auto;
}
.alogo_1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8rem !important;
}
.alogo img {
  max-width: 100%;
}




/*页面底部*/
.foot {
  background: var(--primary-color);
  color: #fff;
}

.foot a {
  color: #fff;
}

.foot .cont1 {
  position: relative;
  padding: 2.5vw 0;
  border-bottom: 1px solid #3b4373;
}

.fadd li {
  flex: 1;
  justify-content: flex-start;
  flex-wrap: nowrap;
}

.fadd li .wz {
  margin-left: 10px;
}

.fadd li h3 {
  font-size: 16px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.fadd li h2 {
  font-size: 20px;
  /* overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis; */
  margin-top: 5px;
}


.bq {
  padding: 22px 0;
}

.cop {
  color: rgba(255, 255, 255, .8);
  font-size: 14px;
  line-height: 24px;
}

.cop a {
  color: rgba(255, 255, 255, .8);
}

.footer33 {
  height: 50px;
}







@media (max-width:1440px) {
  .yin {
    padding-bottom: 5vw;
  }
}


@media (max-width:1024px) {
  .bt {
    font-size: 32px;
  }

  .yin .swiper-slide h2 {
    font-size: 18px;
  }

  .yin .swiper-slide h3 {
    font-size: 18px;
  }

  .yin {
    padding-bottom: 6.2vw;
  }

  .yin .swiper-slide .img2 {
    width: 30%;
    margin: 0 auto;
  }

  .yadd li h2 {
    font-size: 25px;
    width: 60px;
    line-height: 60px;
  }

  .yadd li h3 {
    font-size: 22px;
  }

  .yadd li h5 {
    font-size: 14px;
  }

  .yadd li h4 {
    width: 30px;
    height: 2px;
  }

  .xw1 li h5 {
    font-size: 20px;
  }

  .xw1 li h2 {
    font-size: 22px;
  }

  .xw2 li h3 {
    font-size: 18px;
  }

  .xw2 li h2 {
    font-size: 18px;
  }

  .xw2 li h5 {
    margin-right: 12px;
  }

  .cpname {
    font-size: 32px;
  }

  .about {
    width: 100%;
    font-size: 14px;
  }

  .fadd li h3 {
    font-size: 14px;
  }

  .fadd li h2 {
    font-size: 16px;
  }

  .cop {
    width: 100%;
    text-align: center;
  }

}

@media (max-width: 992px) {
  .fadd li {
    flex: auto !important;
  }
}
@media (max-width: 768px) {
  .x-banner {
    margin-top: 60px;
  }

  .page-banner {
    margin-top: 60px;
  }

  .xypg-right-content p img {
    max-width: 100% !important;
    width: auto !important;
    height: auto !important;
  }

  .prod1 li h3 {
    line-height: 3;
  }

  .box1 {
    padding: 5vw 0;
  }

  .prod1 {
    margin-top: 5vw;
  }

  .box2 {
    padding: 5vw 0;
  }

  .yin {
    margin-top: 5vw;
    padding-bottom: 55px;
  }

  .box3 {
    padding: 5vw 0;
  }

  .yadd {
    margin-top: 5vw;
  }

  .yadd li {
    width: 49%;
  }

  .yadd li:nth-child(n+3) {
    margin-top: 15px;
  }

  .yadd li h3 {
    margin-top: 4.2vw;
  }

  .yadd li h5 {
    margin: 3.5vw auto 5vw;
  }

  .box4 {
    /* margin: 5vw 0; */
  }

  .box4 .cont {
    margin-top: 5vw;
  }

  .box5 {
    padding-top: 6vw;
  }

  .alogo {
    width: 25%;
  }

  .fadd li {
    width: 100%;
    margin: 1rem 0;
    justify-content: left;
  }

  .fadd li:nth-child(n+3) {
    margin-top: 10px;
  }
  .logoLi {
    flex: auto;
    position: absolute;
    top: -80px;
    left: 0;
  }
  .foot .cont1 {
    padding: 4vw 0;
  }
}


@media (max-width:425px) {
  .bt {
    font-size: 25px;
  }

  .prod1 li {
    width: 48%;
  }

  .yin .swiper-slide h2 {
    font-size: 15px;
  }

  .yin .swiper-slide h3 {
    font-size: 15px;
  }

  .yin .swiper-slide .det2 {
    bottom: 25px;
  }

  .yadd li h2 {
    font-size: 18px;
    width: 42px;
    line-height: 42px;
  }

  .yadd li h3 {
    font-size: 18px;
  }

  .yadd li h5 {
    font-size: 12px;
    line-height: 24px;
  }

  .yadd li h4 {
    width: 25px;
    height: 2px;
    margin-top: 10px;
  }

  .xw1 {
    width: 100%;
  }

  .xw2 {
    width: 100%;
    margin-top: 20px;
  }

  .xw1 li h5 {
    font-size: 17px;
  }

  .xw1 li h2 {
    font-size: 17px;
    margin: 15px 0;
  }

  .xw2 li h3 {
    font-size: 15px;
    width: 100%;
  }

  .xw2 li h2 {
    font-size: 15px;
    width: 100%;
  }

  .xw1 li .nmo {
    font-size: 14px;
    width: 100px;
    line-height: 32px;
  }

  .xw2 li h2 {
    display: none;
  }

  .xw2 li h5 {
    display: none;
  }

  .xw2 li h4 {
    width: 100%;
  }

  .cpname {
    font-size: 25px;
  }

  .about {
    line-height: 25px;
    margin-top: 5.5vw;
  }

  .alogo {
    width: 30%;
  }

  .foot .cont1 {
    padding: 25px 0;
  }

  .fadd li {
    width: 100%;
  }

  .fadd li:nth-child(n+2) {
    margin-top: 10px;
  }
}




/*内页左侧样式*/
.page-product-inquiry a {
  color: #fff;
}


.xymob-left-close-btn .icon-close:before {
  font-size: 0;
}