html{
  font-size: 100px;
  color: #000000;
}
.wrap{ 
  max-width:1500px; 
  width:95%; 
  margin:0 auto; 
  max-height:999999px;
}
/*鼠标放上去图片变大*/
.imgmouseon{
  overflow: hidden;
}
.imgmouseon img {
  cursor: pointer;
  transition: all 0.6s;
}
.imgmouseon img:hover {
  transform: scale(1.1);
}
/*头部*/
.header{
  width: 100%;
  position: sticky;
  z-index: 1000;
  top: 0;
  height: 0.8rem;
  box-sizing: border-box;
  background: #fff;
}
.header .wrap{
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.header .logo{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 2.06rem;
}
.header .logo img{
  max-width: 100%;
  max-height: 100%;
}
.header .nav{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.4rem;
}
.header .nav li{
  position: relative;
  height: 100%;
}
.header .nav li>a{
  font-size: 0.16rem;
  color: #1f1f1f;
  height: 100%;
  white-space:nowrap;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header .nav li>a:hover{
  opacity: 0.8;
}
.header .nav .subnav{
  min-width: 100%;
  box-sizing: border-box;
  display: none;
  position: absolute;
  background-color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  left: 50%;
  top: 85%;
  transform: translate(-50%, 0);
}
.header .nav li:hover .subnav{
  display: block;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.15);
}
.header .nav li .subnav a{
  min-width: 1.4rem;
  color: #474747;
  font-size: 0.16rem;
  line-height: 2.4;
  text-align: center;
  width: 100%;
  display: block;
  white-space:nowrap;
}
.header .nav li .subnav a:hover{
  color: #be002a;
  font-weight: bold;
}
/*banner大图*/
.banner_ind{
  max-width: 1920px;
  margin: auto;
  width: 100%;
  position: relative;
}
.banner_ind .swiper {
  height: 100%;
}
.banner_ind .swiper-slide{
  background-size: cover;
  background-position: center;
}
.banner_ind .swiper-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner_ind .swiper-slide .txt{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.42rem;
  color: #ffffff;
}
/*主页-主体*/
.ind_tit{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 0.85rem;
}
.ind_tit h1{
  font-size: 0.44rem;
  font-weight: bold;
  color: #1a1919;
  position: relative;
}
.ind_tit h1:after{
  content: '';
  display: block;
  width: 100%;
  height: 0.07rem;  
  background: linear-gradient(to right, #b0c3d7, #eaadbb);
  border-radius: 0.035rem;
  position: absolute;
  bottom: 0.07rem;
  z-index: -1;
}
.ind_tit h2{
  font-size: 0.16rem;
  color: #bcbcbc;
}
.ind_con{
  display: flex;
  flex-wrap: wrap;
  gap: 4.3%;
}
.ind_con li{
  width: 16.56%;
  text-align: center;
  margin-top: 0.8rem;
}
.ind_con li img{
  width: 1.94rem;
}
.ind_con li h1{
  font-size: 0.22rem;
  color: #0f0f0f;
}
.ind_con li p{
  font-size: 0.14rem;
  color: #878787;
}
.ind_con2{
  display: flex;
  flex-wrap: wrap;
  gap: 2.1%;
  margin-top: 0.35rem;
  margin-bottom: 1.15rem;
}
.ind_con2 li{
  width: 23.425%;
  text-align: center;
  margin-top: 0.2rem;
  border: 1px solid #e5e5e5;
  padding: 0.7rem 0 0.6rem 0;
  box-sizing: border-box;
  border-radius: 0.1rem;
}
.ind_con2 li img{
  width: 0.68rem;
}
.ind_con2 li h1{
  font-size: 0.22rem;
  color: #0f0f0f;
  margin-top: 0.2rem;
}
.ind_con2 li p{
  font-size: 0.14rem;
  color: #878787;
}
.ind_con3{
  background: url(../images/ind_con3_bg.jpg) center center/auto 100%;
}
.ind_con3 .wrap{
  min-height: 9.06rem;
  padding: 0.6rem 0;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  color: #fefefe;
}
.ind_con3 .le{
  width: 45.7%;
}
.ind_con3 .le h1{
  font-size: 0.44rem;
  font-weight: bold;
}
.ind_con3 .le p{
  font-size: 0.16rem;
  line-height: 0.3rem;
  margin-top: 0.6rem;
}
.ind_con3 .le a{
  width: 1.6rem;
  height: 0.46rem;
  border-radius: 0.23rem;
  display: block;
  border: 1px solid #fefefe;
  font-size: 0.16rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.2rem;
}
.ind_con3 .le a:hover{
  color: #1a4b84;
  font-weight: bold;
  background: #fefefe;
}
.ind_con3 .ri{
  width: 50%;
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 0.55rem;
}
.ind_con3 .ri li{
  width: 100%;
}
.ind_con3 .ri h1{
  font-size: 0.48rem;
  font-family: impact;
}
.ind_con3 .ri h1 em{
  font-size: 0.48rem;
}
.ind_con3 .ri p{
  font-size: 0.14rem;
}
.ind_con4{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.ind_con4 .le{
  width: 50.5%;
  margin-top: 0.7rem;
}
.ind_con4 .ri{
  width: 45%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 0.7rem;
}
.ind_con4 .ri li{
  width: 42%;
  padding-left: 0.5rem;
  box-sizing: border-box;
  position: relative;
  margin-top: 11%;
}
.ind_con4 .ri li:nth-of-type(1),
.ind_con4 .ri li:nth-of-type(2){
  margin-top: 0;
}
.ind_con4 .ri li img{
  width: 0.32rem;
  height: 0.32rem;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}
.ind_con4 .ri li h1{
  font-size: 0.22rem;
  color: #494949;
}
.ind_con4 .ri li h2{
  font-size: 0.16rem;
  color: #878787;
}
.ind_con5{
  display: flex;
  flex-wrap: wrap;
  gap: 8%;
  margin-bottom: 1rem;
}
.ind_con5 a{
  width: 28%;
  margin-top: 0.8rem;
  position: relative;
}
.ind_con5 a h1{
  font-size: 0.16rem;
  color: #5a5a5a;
}
.ind_con5 a h2{
  font-size: 0.24rem;
  line-height: 0.3rem;
  height: 0.6rem;
  color: #393939; 
  margin-top: 0.2rem;
  overflow:hidden; text-overflow:ellipsis; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical;
}
.ind_con5 a:hover h2{
  color: #be002a;
}
.ind_con5 a h3{
  font-size: 0.16rem;
  color: #5a5a5a; 
  margin-top: 0.14rem;
  overflow:hidden; text-overflow:ellipsis; display:-webkit-box; -webkit-line-clamp:1 -webkit-box-orient:vertical;
}
.ind_con5 a button{
  width: 0.97rem;
  height: 0.32rem;
  font-size: 0.14rem;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #be002a;
  border-radius: 0.16rem;
  margin-top: 0.3rem;
}
.ind_con5 a button:hover{
  opacity: 0.8;
}
.ind_con5 a .img{
  margin-top: 0.35rem;
  height: 0px;
  padding-bottom: 58.3%;
  position: relative;
  overflow: hidden;
}
.ind_con5 a .img img{
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ind_con5 a:nth-of-type(1):after,
.ind_con5 a:nth-of-type(2):after{
  content: '';
  display: block;
  height: 100%;
  width: 1px;
  background: #ededed;
  border: 0;
  position: absolute;
  top: 0;
  right: -14.4%;
}
.ind_more{
  width: 1.8rem;
  height: 0.57rem;
  background: #be002a;
  border-radius: 0.285rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.14rem;
  color: #fff;
}
.ind_more:hover{
  background: rgba(190, 0, 42,0.8);
}
/*内页通用*/
.other_nav{
  border-bottom: 1px solid #d5d5d5;
}
.other_nav .wrap{
  display: flex; 
  flex-wrap: wrap;
  align-items: center;
  gap: 3.5%;
}
.other_nav a{
  font-size: 0.18rem;
  color: #555555;
  padding: 0.21rem 0;
}
.other_nav a.cur,
.other_nav a:hover{
  font-weight: bold;
  color: #0c407d;
}
.other_subnav{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.2rem;
  margin-top: 0.45rem;
}
.other_subnav a{
  font-size: 0.18rem;
  color: #3c3c3c;
  padding: 0.12rem 0.33rem;
  border: 1px solid #ebebeb;
  border-radius: 1rem;
}
.other_subnav a.cur,
.other_subnav a:hover{
  color: #0c407d;
  background: #257ac7;
  border: 1px solid #257ac7;
}
.other_tit{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
  position: relative;
}
.other_tit h1{
  font-size: 0.4rem;
  font-weight: bold;
  color: #1a1919;
  position: relative;
}
.other_tit h1:after{
  content: '';
  display: block;
  width: 100%;
  height: 0.07rem;  
  background: linear-gradient(to right, #b0c3d7, #eaadbb);
  border-radius: 0.035rem;
  position: absolute;
  bottom: 0.05rem;
  z-index: -1;
}
.other_tit span{
  position: absolute;
  top: -1.2rem;
}
/*关于职通*/
.gyzt_gsjj{
  margin-top: 0.7rem;
}
.gyzt_gsjj h1{
  font-size: 0.24rem;
  font-weight: bold;
  color: #555555;
}
.gyzt_gsjj p{
  font-size: 0.16rem;
  line-height: 0.3rem;
  color: #555555;
  margin-top: 0.1rem;
}
.gyzt_gsjj .swiper{
  margin-top: 0.4rem;
}
.gyzt_gsjj .swiper-slide{
  height: 0px;
  padding-bottom: 20%;
  position: relative;
  overflow: hidden;
}
.gyzt_gsjj .swiper-slide img{
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gyzt_gsjj .swiper-button-next,
.gyzt_gsjj .swiper-button-prev{
  margin-top: 0;
  top: 50%;
  transform: translate(0, -50%);
  color: #fff;
  text-shadow: 0 0 10px rgba(0,0,0,0.75)
}
.gyzt_qywh{
  margin-top: 0.4rem;
}
.gyzt_qywh .txt{
  font-size: 0.16rem;
  color: #555555;
  text-align: center;
}
.gyzt_qywh ul{
  margin-top: 0.2rem;
  display: flex;
  gap: 4.4%;
}
.gyzt_qywh ul li{
  margin-top: 0.2rem;
  width: 47.8%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.8rem 0.1rem 0.9rem  0.1rem;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% ;
  box-shadow: 0 0 0.21rem rgba(0,0,0,0.1);
  border-radius: 0.1rem;
}
.gyzt_qywh ul li img{
  width: 0.63rem;
  height: 0.63rem;
}
.gyzt_qywh ul li h1{
  font-size: 0.3rem;
  font-weight: bold;
  color: #3f3f3f;
  margin-top: 0.12rem;
  text-align: center;
}
.gyzt_qywh ul li hr{
  width: 0.4rem;
  height: 0.04rem;
  background: #be002a;
  border: 0;
  margin-top: 0.15rem;
}
.gyzt_qywh ul li h2{
  font-size: 0.16rem;
  color: #3f3f3f;
  margin-top: 0.13rem;
  text-align: center;
}
.gyzt_zszs{
  display: flex;
  flex-wrap: wrap;
  gap: 5%;
}
.gyzt_zszs li{
  width: 21.2%;
  margin-top: 0.6rem;
  background: url(../images/gyzt_zszs_bg.jpg) no-repeat center center/100% 100%;
  padding: 25px;
  box-sizing: border-box;
}
.gyzt_zszs li .img{
  height: 0px;
  padding-bottom: 72.78%;
  position: relative;
}
.gyzt_zszs li .img img{
  width: 100%;
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.gyzt_zszs_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.75);
  z-index: 1000;
}
.gyzt_zszs_img {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1001;
  width: 90%;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.gyzt_zszs_img img {
  max-width: 100%;
  max-height: 100%;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.gyzt_more{
  width: 1.8rem;
  height: 0.57rem;
  background: #be002a;
  border-radius: 0.285rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.14rem;
  color: #fff;
  margin-top: 0.6rem;
}
.gyzt_more:hover{
  opacity: 0.8;
}
/*服务业务*/
.fwyw_hxyw{
  display: flex;
  flex-wrap: wrap;
  gap: 3%;
}
.fwyw_hxyw li{
  width: 48.5%;
  margin-top: 0.9rem;
}
.fwyw_hxyw li .img{
  height: 0px;
  padding-bottom: 38.7%;
  position: relative;
  overflow: hidden;
}
.fwyw_hxyw li .img img{
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fwyw_hxyw li h1{
  font-size: 0.24rem;
  color: #0f0f0f;
  margin-top: 0.33rem;
}
.fwyw_hxyw li p{
  font-size: 0.16rem;
  color: #878787;
  margin-top: 0.08rem;
}
/*服务优势*/
.fwys li{
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3%;
}
.fwys li .img{
  width: 48.5%;
  height: 0px;
  padding-bottom: 18.8%;
  position: relative;
  overflow: hidden;
}
.fwys li .img img{
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fwys li .txt{
  width: 48.5%;
}
.fwys li .txt .ico{
  width: 0.7rem;
  height: 0.7rem;
  background: url(../images/fwys_icobg.png) center center/100% 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.fwys li .txt .ico img{
  width: 0.32rem;
  height: 0.32rem;
}
.fwys li .txt h1{
  font-size: 0.24rem;
  color: #0f0f0f;
  margin-top: 0.13rem;
}
.fwys li .txt p{
  font-size: 0.16rem;
  color: #878787;
  margin-top: 0.08rem;
}
/*评审条件*/
.pstj{
  font-size: 0.16rem;
  color: #555555;
  text-align: center;
  margin-top: 0.5rem;
}
.pstj2{
  display: flex;
  flex-wrap: wrap;
  gap: 3%;
}
.pstj2 li{
  width: 31.33%;
  margin-top: 0.6rem;
  border: 1px solid #e1e1e1;
  border-radius: 0.2rem;
  padding: 0.5rem 0.4rem;
  box-sizing: border-box;
}
.pstj2 li h1{
  font-size: 0.24rem;
  font-weight: bold;
  color: #1a1919;
  text-align: center;
}
.pstj2 li p{
  font-size: 0.16rem;
  line-height: 0.2rem;
  color: #555555;
  margin-top: 0.4rem;
  padding: 0.02rem 0 0 0.32rem;
  background: url(../images/pstj_ico.png) no-repeat left top/0.24rem 0.24rem;
}
/*服务站点*/
.fwzd{
  display: flex;
  justify-content: center;
  align-items: center;
}
.fwzd img{
  max-width: 100%;
  margin-top: 0.6rem;
}
.fwzd2{
  display: flex;
  flex-wrap: wrap;
  gap: 1.5%;
  margin-top: 0.7rem;
}
.fwzd2 li{
  width: 32.33%;
  border: 1px solid #e1e1e1;
  padding-bottom: 0.4rem;
  box-sizing: border-box;
  margin-bottom: 0.25rem;
}
.fwzd2 li h1{
  font-size: 0.24rem;
  font-weight: bold;
  color: #565656;
  margin: 0.07rem 0.26rem;
}
.fwzd2 li hr{
  width: 100%;
  height: 1px;
  border: 0;
  background: #e1e1e1; 
  margin-bottom: 0.16rem;
}
.fwzd2 li h2{
  font-size: 0.16rem;
  color: #555555;
  margin: 0.06rem 0.26rem 0 0.26rem;  
  padding-left: 0.26rem;
  background: url(../images/fwzd_ico.png) no-repeat left top 0.05rem/0.15rem 0.15rem;
}
.fwzd2 li h3{
  font-size: 0.16rem;
  color: #555555;
  margin: 0.06rem 0.26rem 0 0.26rem;  
  padding-left: 0.26rem;
  background: url(../images/fwzd_ico2.png) no-repeat left top 0.05rem/0.15rem 0.15rem;
}
/*联系我们*/
.lxwm_tit{
  font-size: 0.3rem;
  font-weight: bold;
  color: #000000;
  margin-top: 1rem;
  margin-bottom: 0.1rem;
}
.lxwm{
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
}
.lxwm li{
  width: 32%;
  display: flex;
  align-items: center;
  gap: 0.15rem;
  font-size: 0.16rem;
  color: #000;
  margin-top: 0.33rem;
}
.lxwm li button{
  width: 0.87rem;
  height: 0.33rem;
  border-radius: 0.05rem;
  border: 1px solid #dcdcdc;
  box-sizing: border-box;
  background: #fff;
  font-size: 0.14rem;
  color: #be002a;
}
.lxwm li .img{
  width: 0.41rem;
  height: 0.41rem;
  border: 1px solid #dadada;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.lxwm li .img img{
  width: 0.19rem;
  height: 0.19rem;
}
.lxwm_map{
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.75);
  z-index: 1001;
}
.lxwm_map_close{
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: url(../images/close.svg) no-repeat right top/0.4rem 0.4rem;
}
.lxwm_map .container{
  width: 65%;
  height: 5.8rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1002;
}
.lxwm_map .container .amap-logo {
  display: none !important;
  opacity: 0 !important;
}
.lxwm_map .container .amap-copyright {
  opacity: 0 !important;
}
.lxwm_map .custom-content-marker {
  position: relative;
  width: 25px;
  height: 34px;
}
.lxwm_map .custom-content-marker img {
  width: 100%;
  height: 100%;
}
.lxwm2{
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
}
.lxwm2 .le,
.lxwm2 .ri{
  width: 49%;
}
.lxwm2 input,
.lxwm2 textarea{
  width: 100%;
  height: 0.59rem;
  border: 1px solid #d0d0d0;
  border-radius: 0.05rem;
  margin-top: 0.22rem;
  box-sizing: border-box;
  padding: 0 0.24rem;
  font-size: 0.16rem;
  font-family: 微软雅黑;
  line-height: 1.5;
}
.lxwm2 textarea{
  height: 3.02rem;
  resize: none;
  outline: none;
  padding: 0.17rem 0.24rem;
}
.lxwm2 input[type="text"]::placeholder,
.lxwm2 textarea::placeholder{
  color: #b4b4b4;
}
.lxwm2 button{
  width: 1.48rem;
  height: 0.47rem;
  background: #be002a;
  font-size: 0.16rem;
  color: #fff;
  margin-top: 0.18rem;
}
/*新闻中心*/
.xwzx{
  display: flex;
  flex-wrap: wrap;
  gap: 7.7%;
}
.xwzx a{
  width: 28.2%;
  margin-top: 0.6rem;
}
.xwzx a .img{
  height: 0px;
  padding-bottom: 58.3%;
  position: relative;
  overflow: hidden;
}
.xwzx a .img img{
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.xwzx a h1{
  font-size: 0.16rem;
  color: #5a5a5a;
  padding-left: 0.24rem;
  background: url(../images/xwzx_ico.png) no-repeat left center/0.15rem 0.16rem;
  margin-top: 0.2rem;
}
.xwzx a h2{
  height: 0.6rem;
  font-size: 0.24rem;
  line-height: 0.3rem;
  color: #393939;
  margin-top: 0.2rem;
  overflow:hidden; text-overflow:ellipsis; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical;
}
.xwzx a h3{
  font-size: 0.16rem;
  color: #5a5a5a;
  margin-top: 0.14rem;
  overflow:hidden; text-overflow:ellipsis; display:-webkit-box; -webkit-line-clamp:1; -webkit-box-orient:vertical;
}
.xwzx a button{
  width: 0.97rem;
  height: 0.32rem;
  border-radius: 0.16rem;
  background: #be002a;
  font-size: 0.14rem;
  color: #fff;
  margin-top: 0.3rem;
}
.xwzx a:hover h2{
  color: #be002a;
}
.xwzx a button:hover{
  opacity: 0.8;
}
/*新闻中心-详情*/
.xwzx_con{
  padding-top: 0.54rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.xwzx_con .le{
  flex: 1 1;
}
.xwzx_con .le .btn a{
  width: 0.9rem;
  height: 0.3rem;
  background: #be002a url(../images/btn_return.png) no-repeat left 0.12rem center/0.1rem 0.15rem;
  border-radius: 0.155rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding-left: 0.1rem;
  box-sizing: border-box;
  font-size: 0.12rem;
  color: #fff;
}
.xwzx_con .le .btn a:hover{
  opacity: 0.8;
}
.xwzx_con .le h1{
  font-size: 0.28rem;
  font-weight: bold;
  margin-top: 0.3rem;
  color: #363434;
}
.xwzx_con .le h2{
  font-size: 0.18rem;
  display: flex;
  align-items: flex-end;
  gap: 2%;
  color: #aaaaaa;
  margin-top: 0.2rem;
}
.xwzx_con .le hr{
  border: 0;
  height: 1px;
  background: #ededed;
  margin-top: 0.17rem;
  margin-bottom: 0.38rem;
}
.xwzx_con .le p{
  font-size: 0.16rem;
  line-height: 0.3rem;
  /*display: flex;*/
  align-items: center;
  /*gap: 0.1rem;*/
  color: #555555;
}
.xwzx_con .le p img
{
    
}
.xwzx_con .ri{
  width: 24%;
  margin: 1rem 0 0 2.6%;
  border-left: 1px solid #efefef;
  padding-left: 4.6%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.xwzx_con .ri .tit{
  font-size: 0.18rem;
}
.xwzx_con .ri a{
  width: 100%;
}
.xwzx_con .ri a .img{
  padding-top: 60%;
  box-sizing: border-box;
  position: relative;
}
.xwzx_con .ri a .img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.xwzx_con .ri a h1{
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #000000; 
  margin-top: 0.1rem;
  overflow:hidden; text-overflow:ellipsis; display:-webkit-box; -webkit-line-clamp:1; -webkit-box-orient:vertical;
}
.xwzx_con .ri a h2{
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #c5c5c5;
  margin-top: 0.05rem;
}
/*页码*/
.page{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 70px auto;
}
.page a,
.page input,
.page button{
  color: #2c2b2b;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  white-space: nowrap;
  font-size: 0.14rem;
  border-radius: 3px;
  border: 1px solid #e2e2e2;
}
.page a.current,
.page a:hover{
  color: #fff;
  background: #be002a;
  border: 1px solid #be002a;
}
.page span{
  flex-grow: 1;
  height: 55px;
}
.page input{
  width: 40px;
}
.page button{
  background: #be002a;
  color: #fff;
  border: 1px solid #be002a;
}
.page button:hover{
  opacity: 0.9;
}
/*脚部*/
.footer{
  background: #091025 url(../images/footer_bg.jpg)no-repeat center top/100% auto;
  color: #ffffff;
  margin-top: 1.5rem;
}
.footer .wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer_nav{
  flex:2;
  display: flex;
  flex-wrap: wrap;
  margin-top: 1.14rem;
}
.footer_nav li{
  flex-grow: 1;   /*放大*/
  max-width: 1.8rem;
}
.footer_nav li>a{
  font-size: 0.18rem;
  font-weight: bold;
}
.footer_nav .subnav{
  display: flex;
  flex-direction: column;
  margin-top: 0.1rem;
}
.footer_nav .subnav>a{
  font-size: 0.16rem;
  color: #9d9d9d;
  line-height: 0.32rem;
}
.footer_nav .subnav>a:hover{
  color: #fff;
}
.footer_ewm{
  flex:1;
  display: flex;
  justify-content: flex-end;
  gap: 0.25rem;
  margin-top: 1.14rem;
}
.footer_ewm img{
  width: 1.33rem;
  height: 1.33rem;
}
.footer_ewm p{
  font-size: 0.16rem;
  color: #a9b2ce;
  text-align: center;
  margin-top: 0.1rem;
}
.footer_add{
  margin-top: 0.7rem;
  border: 1px solid #353535;
}
.footer_add .swiper-slide{
  padding: 0.25rem 0.1rem 0.25rem 0.5rem;
  box-sizing: border-box;
  border-right: 1px solid #353535; 
}
.footer_add .swiper-button-next{
  width: 0.31rem;
  height: 0.31rem;
  background: url(../images/footer_ico.png) no-repeat center center/100% 100%;
  top: 50%;
  transform: translate(0, -50%) rotate(180deg);
  margin-top: 0;
}
.footer_add .swiper-button-prev{
  width: 0.31rem;
  height: 0.31rem;
  background: url(../images/footer_ico.png) no-repeat center center/100% 100%;
  top: 50%;
  transform: translate(0, -50%);
  margin-top: 0;
}
.footer_add .swiper-button-next:after,
.footer_add .swiper-button-prev:after{
  display: none;
}
.footer_add h1{
  font-size: 0.18rem;
  font-weight: bold;
  margin-bottom: 0.04rem;
}
.footer_add h2{
  font-size: 0.14rem;
  color: #9d9d9d;
}
.footer_bot{
  padding: 0.6rem 0 0.7rem 0;
  font-size: 0.14rem;
}

/*移动端头部*/
.sjhedes{ display:none;}
.tuerhed{ 
  position:fixed; 
  width:100%; 
  top:0; 
  left:0; 
  z-index:188; 
  background:#fff; 
  height:160px; 
  box-shadow:1px 1px 0 rgba(33,29,30,.2); 
  padding:0 2.5%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
}
.losdj{ float:left;height: 50%;flex-shrink: 0;}
.losdj img{ display:block; margin-left: 10px;height: 100%;}
.sanh{ float:right; width:50px; padding:10px; margin:0px 60px 0px 0px;flex-shrink: 0;}
.sanh>div{ height:5px; margin:10px 0px; width:100%; transition:transform 0.5s,opacity 0.5s;flex-shrink: 0;background-color:#333333;}
.fuernavt{ position:fixed; box-sizing: border-box; padding-top:160px; top:0px; left:-100%; width:100%; height:100%; background-color:#fff; z-index:187;}
.benrvav{ width:100%; height:100%; overflow:hidden; overflow-y:scroll;}
.shojvas>a{ display:block; text-align:center; font-size:0.24rem; line-height:3; padding:10px 0px; border-bottom:1px solid #eee; color:#333;}
.shojvas>div{ display:block; text-align:center; font-size:0.24rem; line-height:3; border-bottom:1px solid #eee;}
.shojvas>div a{ color:#333;}
.showzhen{ position:relative;}
.jd{ position:absolute; top:65px; right:25px; width:11px; height:18px; background:url(../images/arrow4.svg) no-repeat center; background-size:100%; transition:transform 0.5s;transform: rotate(90deg); z-index:-1;}
.maei{ padding:10px 0; font-size:0.24rem; color:#333;}
.maei a{ color:#333; display:inline;}
.shopernc{ overflow:hidden; height:0px;}
.shopernc>div a,.shopernc .maei.line1{ display:block; text-align:center; font-size:0.20rem; color:#666; line-height:3; border-top:1px solid #eee;}
.shopernc>div a.gray{ color:#666;}
.shopernc>div .maei a{ color:#666;}
.shopernc>div>div>div a{ color:#999;}
.shopernc .maei.line1{ border-top-color:#ddd;}
.shopernc .maei.line1 a{ display:inline!important; line-height:inherit; border:none; padding:0;}
.tesd>div{ background-color:#333333!important;}
.tesd>div:nth-child(1){ transform:translate3d(0px,15px,0px) rotate(45deg);}
.tesd>div:nth-child(2){ opacity:0;}
.tesd>div:nth-child(3){ transform:translate3d(0px,-15px,0px) rotate(-45deg);}