/* Animate.css动画演示 */
@import "../swiper/animate.min.css";

/* Swiper 6.4.1 */
@import "../swiper/swiper-bundle.min.css";

/* 字体图标 */
@import "../css/font/css/font-awesome.min.css";

/* 公共样式 */
@import "../css/public.min.css";

/* 头部 */
.header {
  width: 100%;
  padding: 15px 0;
  border-top: 1px solid #eee;
}
.header>.container{
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.logo > a{
  width: 358px;
}
.logo img {
  width: 100%;
  display: block;
  height: auto;
}
.header_R{
  float: right;
  display: flex;
  align-items: center;
  align-content: center;
}
.search{
  width: 206px;
  float: left;
  border: 1px solid #d5d5d5;
  border-radius: 4px;
  overflow: hidden;
}
.search_inp1{
  width: calc(100% - 40px);
  float: left;
  height: 34px;
  line-height: 34px;
  padding: 0 0 0 10px;
  font-size: 14px;
  color: #333;
}
.search_inp1::-webkit-input-placeholder{color: #c7c7c7;}
.search_inp1:-moz-placeholder{color: #c7c7c7;}
.search_btn{
  width: 40px;
  float: left;
  height: 34px;
  background: url(../images/search_ss.png) no-repeat center center;
  cursor: pointer;
}

.header_nav{
  float: left;
  padding-left: 10px;
  font-size: 14px;
  color: #434343;
  text-transform: uppercase;
}
.header_nav a{
  margin: 0 10px;
  color: #434343;
}
.header_nav>span>a{
  margin: 0 0 0 10px;
}
.header_nav a:hover,
.header_nav a.header_active{
  color: #0a6edb;
}

/* 导航 */
nav {
  background-color: #fff;
  border-bottom: 1px solid #0a6edb;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
}
.nav{
  width: 100%;
  float: left;
}
.nav>li{
  width: 12.5%;
  float: left;
  position: relative;
}
.nav>li>a{
  display: block;
  overflow: hidden;
  height: 44px;
  line-height: 34px;
  text-align: center;
  font-size: 16px;
  color: #282828;
  padding-bottom: 10px;
  position: relative;
  text-transform: uppercase;
}
.nav>li>a::before{
  content: "";
  width: 0;
  height: 4px;
  float: left;
  background-color: #0a6edb;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  transition: all 0.4s;
}
.nav>li:hover>a::before,
.nav>li.nav-this>a::before{
  width: 100%;
}
/* 导航下拉 */
.nav-child{
  display: none;
  width: 130%;
  float: left;
  background-color: rgba(10,110,219,0.95);
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 9;
}
.nav-child>li{
  display: block;
  overflow: hidden;
}
.nav-child>li>a{
  display: block;
  overflow: hidden;
  height: 44px;
  line-height: 44px;
  text-align: center;
  font-size: 14px;
  color: #fff;
}
.nav-child>li>a:hover{
  background-color: #fbb818;
  color: #fff;
}

/*banner大图*/
.banner {
  width: 100%;
  position: relative;
}
.banner .banner-imgbox img {
  width: 100%;
  display: block;
  height: auto;
}
/*圆点*/
.banner .swiper-pagination {
  opacity: 0;
  position: absolute;
  right: 0;
  bottom: 15px;
  display: flex;
  justify-content: center;
}
.banner .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  float: left;
  background: #0a6edb;
  opacity: 1;
  border-radius: 50%;
  margin: 0 3px;
}
.banner .swiper-pagination-bullet-active {
  opacity: 1;
  background: #fbb818;
}
.banner:hover .swiper-pagination {
  opacity: 1;
}
/*箭头*/
.banner .banner-prev,
.banner .banner-next {
  left: 2%;
  top: 50%;
  position: absolute;
  z-index: 9;
  transform: translateY(-50%);
  width: 30px;
  height: 60px;
  font-size: 20px;
  color: #fff;
  background-color: rgba(0,0,0,0.6);
  opacity: 0;
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.banner .banner-next{
  left: initial;
  right: 2%;
}
.banner:hover .banner-next,
.banner:hover .banner-prev {
  opacity: 1;
}
/* END */

/*首页*/
.main{
	width: 100%;
	overflow: hidden;
	padding: 60px 0;
}
.main_left{
	width: 232px;
	float: left;
}
.about{
	width: 100%;
	float: left;
  border-radius: 10px;
  box-shadow: 0 0 5px rgba(0,0,0,0.25);
  overflow: hidden;
}
.about_title{
	display: block;
	overflow: hidden;
	height: 66px;
	line-height: 56px;
	text-align: center;
	background: url(../images/about_title_bj.png) no-repeat left top #0a6edb;
	font-size: 20px;
	color: #fff;
	font-weight: bold;
}
.about_ul{
	display: block;
	overflow: hidden;
  background-color: #fff;
  border-radius: 10px;
  margin-top: -10px;
  padding: 12px;
  position: relative;
  z-index: 2;
}
.about_ul>li{
	display: block;
	overflow: hidden;
}
.about_ul>li>a{
	display: block;
	overflow: hidden;
	height: 48px;
  padding: 0 15px;
  position: relative;
}
.about_ul>li>a::after{
  content: "";
  width: 100%;
  float: left;
  height: 1px;
  background-color: #e9e9e9;
  position: absolute;
  left: 0;
  bottom: 0;
}
.about_ul>li>a>span{
  float: left;
  max-width: 100%;
  height: 48px;
  line-height: 46px;
  font-size: 13px;
  color: #333;
  padding-left: 26px;
  background: url(../images/about_li.png) no-repeat left center;
  position: relative;
  text-overflow:ellipsis;
  z-index: 1;
  white-space: nowrap;
}
.about_ul>li>a>span::after{
  content: "";
  width: 0;
  height: 2px;
  float: left;
  background-color: #0a6edb;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.4s;
}
.about_ul>li:hover>a>span::after,
.about_ul>li.about_on>a>span::after{
  width: 100%;
}
.about_dianhua{
  display: block;
  overflow: hidden;
  position: relative;
  margin-top: -10px;
  background-image: linear-gradient(#23a3f5,#0a6edb);
  padding: 25px;
}
.about_dianhua_p{
  display: block;
  overflow: hidden;
  line-height: 22px;
  text-align: center;
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
}
.about_dianhua_sp{
  display: block;
  overflow: hidden;
  line-height: 26px;
  font-family: Impact;
  text-align: center;
  font-size: 24px;
  color: #fff;
  margin-top: 10px;
}

.main_right{
	width: 932px;
	float: right;
}
.dqwz_title{
	width: 100%;
	float: left;
	line-height: 54px;
	border-bottom: 1px solid #f2f2f2;
}
.dqwz_p{
  float: left;
  font-size: 18px;
  color: #333;
}
.dqwz_more{
  float: right;
}
.dqwz_more>a{
  font-size: 12px;
  color: #afafaf;
}
.dqwz_more>a:hover{
  color: #0a6edb;
  text-decoration: underline;
}
.dqwz_contect{
	width: 100%;
	float: left;
	padding-top: 20px;
}
.cpzs_ul{
  display: block;
  overflow: hidden;
  width: 952px;
}
.cpzs_ul li{
  width: 218px;
  float: left;
  margin: 0 20px 20px 0;
}
.cpzs_ul li>a{
  display: block;
  overflow: hidden;
  border: 1px solid #f2f2f2;
}
.cpzs_ul li>a .cpzs_img{
  width: 100%;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid #f2f2f2;
}
.cpzs_ul li>a .cpzs_img::before{
  content: "";
  display: block;
  padding-top: 84.8624%;
}
.cpzs_ul li>a .cpzs_txt{
  display: block;
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 14px;
  color: #333;
}
.cpzs_ul li>a:hover .cpzs_img img{
  transform: scale(1.1);
}
.cpzs_ul li>a:hover .cpzs_txt{
  color: #f28605;
}

.jxn{
  width: 100%;
  overflow: hidden;
  padding: 55px 0;
  background: url(../images/jxn_bj.jpg) no-repeat center center;
  background-size: cover;
}
.jxn_title{
  display: block;
  overflow: hidden;
  text-align: center;
}
.jxn_p{
  line-height: 36px;
  font-size: 30px;
  color: #fff;
  text-transform: uppercase;
}
.jxn_sp{
  line-height: 20px;
  font-size: 14px;
  color: #fff;
  margin-top: 10px;
}
.jxn_sp::after{
  content: "";
  display: block;
  max-width: 146px;
  height: 1px;
  background-color: #fff;
  margin: 13px auto 0 auto;
}
.jxn_ul{
  display: block;
  overflow: hidden;
  width: 1220px;
  padding-top: 10px;
}
.jxn_ul li{
  width: 285px;
  float: left;
  margin: 20px 20px 0 0;
}
.jxn_ul li .jxn_img{
  width: 100%;
  overflow: hidden;
  position: relative;
}
.jxn_ul li .jxn_img::before{
  content: "";
  display: block;
  padding-top: 71.57895%;
}
.jxn_ul li .jxn_txt{
  width: 100%;
  height: 58px;
  line-height: 58px;
  background-color: #fff;
  text-align: center;
  font-size: 16px;
  color: #333;
  overflow: hidden;
  position: relative;
}
.jxn_ul li:hover .jxn_img img{
  transform: scale(1.1);
}
.jxn_ul li:hover .jxn_txt{
  color: #0a6edb;
}

.gsjj{
  width: 100%;
  overflow: hidden;
  padding: 55px 0;
}
.gsjj .jxn_p{
  color: #393939;
}
.gsjj .jxn_sp{
  color: #999;
}
.gsjj .jxn_sp::after{
  background-color: #0452a5;
}
.gsjj_contect{
  display: block;
  overflow: hidden;
  margin-top: 40px;
  position: relative;
}
.gsjj_left{
  width: calc(50% + 14px);
  height: calc(100% - 48px);
  float: left;
  overflow: hidden;
  position: relative;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
}
.gsjj_img{
  width: 100%;
  height: 100%;
  float: left;
}
/* .gsjj_img::before{
  content: "";
  display: block;
  padding-top: 66.7753%;
} */
.gsjj_right{
  width: 61.5%;
  float: left;
  background: url(../images/gsjj_bj.jpg) no-repeat center center;
  background-size: cover;
}
.gsjj_B{
  width: 100%;
  max-width: 586px;
  overflow: hidden;
  padding: 24px 40px;
}
.gsjj_tit{
  display: block;
  overflow: hidden;
  margin-top: 35px;
  padding-bottom: 25px;
  line-height: 34px;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
}
.gsjj_tit>span{
  float: left;
  font-size: 24px;
  margin-right: 10px;
}
.gsjj_txt{
  display: block;
  overflow: hidden;
  margin-top: 20px;
  height: 210px;
  line-height: 30px;
  font-size: 14px;
  color: #fff;
  text-overflow:ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
}
.gsjj_more{
  display: block;
  overflow: hidden;
  padding: 10px 0 35px 0;
}
.gsjj_more>a{
  width: 144px;
  float: left;
  height: 40px;
  background-color: #fff;
  overflow: hidden;
  position: relative;
}

.ys{
  width: 100%;
  overflow: hidden;
}
.ys_title{
  display: block;
  overflow: hidden;
  background: url(../images/ys_title_bj.jpg) no-repeat center center;
  background-size: cover;
  padding: 28px 0 36px 0;
}
.ys_title>.container{
  display: flex;
  justify-content: center;
}
.ys_B{
  float: left;
  text-align: center;
  padding: 15px 104px 0 118px;
  background: url(../images/ys_title_left.png) no-repeat left bottom,url(../images/ys_title_right.png) no-repeat right top;
}
.ys_B .ys_p{
  display: block;
  overflow: hidden;
  height: 68px;
  line-height: 68px;
  font-size: 44px;
  color: #fff;
}
.ys_B .ys_p>span{
  display: inline-table;
  height: 68px;
  line-height: 68px;
  font-size: 80px;
  color: #f28605;
  font-weight: bold;
  font-style: oblique;
  padding: 0 10px;
}
.ys_B .ys_sp{
  display: flex;
  justify-content: center;
  padding-top: 15px;
}
.ys_B .ys_sp>span{
  float: left;
  line-height: 20px;
  font-size: 18px;
  color: #fff;
  letter-spacing: 2px;
  background-color: #01aeef;
  border-radius: 15px;
  padding: 5px 20px;
}
.ys_contect{
  display: block;
  overflow: hidden;
  padding: 20px 0;
}
.ys_ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ys_ul li{
  width: calc(50% - 20px);
  float: left;
  margin: 40px 0;
}
.ys_ul li .ys_left{
  width: 126px;
  float: left;
  overflow: hidden;
  position: relative;
  border-radius: 50%;
  padding: 10px;
  margin-right: 20px;
}
.ys_ul li .ys_left::before{
  content: "";
  width: 50%;
  float: left;
  height: 100%;
  background-color: #efefef;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.4s;
}
.ys_ul li .ys_left::after{
  content: "";
  width: 50%;
  float: left;
  height: 100%;
  background-color: #efefef;
  position: absolute;
  right: 0;
  top: 0;
}
.ys_ul li .ys_left .ys_sub{
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 50%;
  background-image: linear-gradient(#23a3f5,#0a6edb);
  z-index: 2;
}
.ys_ul li .ys_left .ys_sub::before{
  content: "";
  display: block;
  padding-top: 100%;
}
.ys_ul li .ys_right{
  display: block;
  overflow: hidden;
}
.ys_ul li .ys_right .ys_p{
  display: block;
  overflow: hidden;
  line-height: 44px;
  font-size: 24px;
  color: #0a6edb;
  font-weight: bold;
}
.ys_ul li .ys_right .ys_txt{
  display: block;
  overflow: hidden;
  line-height: 32px;
  font-size: 18px;
  color: #666;
  margin-top: 12px;
}
.ys_ul li:hover .ys_left::before{
  background-color: #5ec5ec;
}

.hf{
  width: 100%;
  overflow: hidden;
  background: url(../images/hf_bj.jpg) no-repeat center center;
  background-size: cover;
  padding: 20px 0;
}
.hf>.container{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.hf_left{
  width: 50%;
  float: left;
}
.hf_title{
  display: block;
  overflow: hidden;
  line-height: 36px;
}
.hf_p{
  float: left;
  font-size: 30px;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
}
.hf_p>span{
  color: #f28605;
}
.hf_sp{
  float: left;
  font-family: Impact;
  font-size: 18px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  padding-left: 20px;
  letter-spacing: 1px;
}
.hf_txt{
  display: block;
  overflow: hidden;
  margin-top: 15px;
  line-height: 30px;
  font-size: 16px;
  color: #fff;
}
.hf_txt>p{
  display: block;
  overflow: hidden;
}
.hf_txt>p>span{
  float: left;
  position: relative;
  padding-right: 20px;
}
.hf_txt>p>span::before{
  content: "";
  width: 150%;
  float: left;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.hf_right{
  width: 50%;
  float: left;
}
.hf_dianhuaB{
  float: right;
  padding: 14px 0 19px 0;
  position: relative;
}
.hf_dianhuaB::after{
  content: "";
  width: 120%;
  float: left;
  height: 2px;
  background-color: #fff;
  position: absolute;
  right: 0;
  bottom: 0;
}
.hf_dianhuaB::before{
  content: "";
  width: 2px;
  float: left;
  height: 73px;
  background-color: #fff;
  position: absolute;
  right: 0;
  bottom: 0;
}
.hf_dianhua{
  float: left;
  background: url(../images/hf_dianhua.png) no-repeat left center;
  padding-left: 74px;
}
.hf_dianhua_p{
  display: block;
  overflow: hidden;
  line-height: 22px;
  font-size: 16px;
  color: #fff;
  letter-spacing: 2px;
  position: relative;
}
.hf_dianhua_p::before{
  content: "";
  width: 70%;
  float: left;
  height: 2px;
  background-color: #fff;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.hf_dianhua_sp{
  display: block;
  overflow: hidden;
  line-height: 32px;
  font-size: 20px;
  color: #fff;
  position: relative;
  margin-top: 10px;
  padding-right: 25px;
}
.hf_dianhua_sp>span{
  float: left;
  font-size: 36px;
  font-weight: bold;
}

.news{
  width: 100%;
  padding: 55px 0;
  overflow: hidden;
}
.news .jxn_p{
  color: #393939;
}
.news .jxn_sp{
  color: #999;
}
.news .jxn_sp::after{
  background-color: #0452a5;
}
.news_nav{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 25px
}
.news_nav>li{
  width: 154px;
  float: left;
  margin: 0 8px 10px 8px;
}
.news_nav>li>a{
  display: block;
  overflow: hidden;
  height: 50px;
  line-height: 50px;
  background-color: #0a6edb;
  text-align: center;
  font-size: 16px;
  color: #fff;
}
.news_nav>li:hover>a,
.news_nav>li.news_active>a{
  background-color: #f28605;
  color: #fff;
}
.news_contect{
  display: block;
  overflow: hidden;
  padding-top: 25px;
}
.news_left{
  width: 31.75%;
  float: left;
}
.news_left>a{
  width: 100%;
  float: left;
  display: flex;
  flex-wrap: wrap;
}
.news_left>a .news_img{
  width: 100%;
  overflow: hidden;
  position: relative;
}
.news_left>a .news_img::before{
  content: "";
  display: block;
  padding-top: 67.45407%;
}
.news_left>a .news_B{
  width: 100%;
  overflow: hidden;
  border: 1px solid #dcdcdc;
  border-top: none;
  border-bottom: 5px solid #0a6edb;
  padding: 25px 25px 20px 25px;
}
.news_left>a .news_B .news_p{
  display: block;
  overflow: hidden;
  line-height: 28px;
  font-size: 16px;
  color: #333;
  font-weight: bold;
  text-overflow:ellipsis;
  white-space: nowrap;
}
.news_left>a .news_B .news_txt{
  display: block;
  overflow: hidden;
  height: 112px;
  line-height: 28px;
  margin-top: 10px;
  font-size: 14px;
  color: #333;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.news_left>a:hover .news_img img{
  transform: scale(1.1);
}
.news_left>a:hover .news_B .news_p{
  color: #0a6edb;
}
.news_ul{
  width: 65.75%;
  float: right;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.news_ul li{
  width: calc(50% - 14px);
  float: left;
  margin: 0 0 20px 0;
}
.news_ul li>a{
  width: 100%;
  float: left;
  display: flex;
  overflow: hidden;
  border: 1px solid #dcdcdc;
  padding: 7px 0;
}
.news_ul li>a .news_sub{
  width: 102px;
  float: left;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.news_ul li>a .news_sub>div{
  width: 100%;
  float: left;
}
.news_ul li>a .news_sub .news_sub_p{
  display: flex;
  justify-content: center;
}
.news_ul li>a .news_sub .news_sub_p>span{
  float: left;
  line-height: 32px;
  font-size: 30px;
  color: #333;
}
.news_ul li>a .news_sub .news_sub_p>span::after{
  content: "";
  width: 100%;
  display: block;
  height: 2px;
  background-color: #0a6edb;
  margin-top: 5px;
  transition: all 0.4s;
}
.news_ul li>a .news_sub .news_sub_sp{
  line-height: 16px;
  font-size: 14px;
  color: #999;
  margin-top: 15px;
  text-align: center;
}
.news_ul li>a .news_R{
  width: calc(100% - 102px);
  float: left;
  padding: 15px 20px;
  border-left: 1px solid #e8e8e8;
}
.news_ul li>a .news_R .news_p{
  display: block;
  overflow: hidden;
  line-height: 24px;
  font-size: 16px;
  color: #333;
  text-overflow:ellipsis;
  white-space: nowrap;
}
.news_ul li>a .news_R .news_txt{
  display: block;
  overflow: hidden;
  height: 48px;
  line-height: 24px;
  font-size: 14px;
  color: #999;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-top: 15px;
}
.news_ul li>a:hover{
  background-color: #0a6edb;
}
.news_ul li>a:hover .news_sub .news_sub_p>span,
.news_ul li>a:hover .news_sub .news_sub_sp,
.news_ul li>a:hover .news_R .news_p,
.news_ul li>a:hover .news_R .news_txt{
  color: #fff;
}
.news_ul li>a:hover .news_sub .news_sub_p>span::after{
  background-color: #fff;
}
.news_ul li>a:hover .news_R{
  border-left-color: #fff;
}
/*END-首页*/

/* 底部 */
footer {
  background: #333;
}
.link{
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  border-bottom: 1px solid #535353;
  line-height: 30px;
}
.link_p{
  float: left;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: bold;
  color: #fff;
}
.link_p>span{
  float: left;
  margin-right: 10px;
  font-weight: normal;
}
.link_txt{
  display: block;
  overflow: hidden;
  font-size: 14px;
  color: #999;
  padding-left: 10px;
}
.link_txt>a{
  color: #999;
  margin: 0 15px;
}
.link_txt>a:hover{
  color: #fff;
}

.footer{
  width: 100%;
  overflow: hidden;
  padding: 25px 0;
}
.footer>.container{
  display: flex;
  flex-wrap: wrap;
}
.footer_cp{
  width: 39.25%;
  float: left;
  padding: 10px 0;
}
.footer_p{
  width: 100%;
  float: left;
  line-height: 26px;
  font-size: 18px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 15px;
}
.footer_B{
  width: 100%;
  float: left;
}
.footer_B .footer_ul{
  width: 25%;
  float: left;
}
.footer_B .footer_ul>li{
  display: block;
  overflow: hidden;
  line-height: 30px;
}
.footer_B .footer_ul>li>a{
  font-size: 14px;
  color: #999;
}
.footer_B .footer_ul>li>a:hover{
  color: #fff;
}

.footer_news{
  width: 19.25%;
  float: left;
  padding: 10px 35px;
  border-left: 1px solid #535353;
  border-right: 1px solid #535353;
}
.footer_news .footer_B .footer_ul{
  width: 50%;
}
.footer_news .footer_B .footer_ul:last-child li{text-align: right;}

.footer_contact{
  width: 41.5%;
  float: left;
  padding: 10px 0 10px 35px;
}
.footer_contect{
  width: 100%;
  overflow: hidden;
}
.footer_txt{
  float: left;
  font-size: 12px;
  color: #999;
  line-height: 36px;
  padding-top: 6px;
}
.footer_wx{
  float: right;
}
.footer_wx>img{
  width: 88px;
  float: left;
  height: 88px;
  margin-right: 15px;
}
.footer_R{
  display: block;
  overflow: hidden;
}
.footer_R>span{
  display: block;
  overflow: hidden;
  line-height: 24px;
  color: #fff;
  font-size: 12px;
}
.footer_R>span:first-child{
  line-height: 22px;
  font-size: 16px;
}
.footer_R>span:nth-child(2){
  line-height: 42px;
  font-size: 24px;
  font-weight: bold;
}

.copyright{
  width: 100%;
  overflow: hidden;
  background-color: #0a6edb;
  text-align: center;
  line-height: 24px;
  padding: 15px 0;
  color: #fff;
  font-size: 14px;
}
.copyright a{
  color: #fff;
  margin: 0 5px;
}
.copyright a:hover{
  color: #fff;
  text-decoration: underline;
}
/* END-底部 */

/* 关于捷希尼/招聘信息 */
.dqwz_nav{
  float: right;
  font-size: 14px;
  color: #999;
}
.dqwz_nav>span{
  color: #0a6edb;
}
.company{
  display: block;
  overflow: hidden;
  font-size: 14px;
  line-height: 30px;
  color: #282828;
}
.company img{
  display: block;
	max-width: 100%;
	height: auto;
}
/* END-关于捷希尼/招聘信息 */

/* 轴承展示/JXN产品/研究开发 */
.yf_ul{
	display: block;
	overflow: hidden;
}
.yf_ul li{
	display: block;
	overflow: hidden;
	border: 1px solid #ccc;
	padding: 10px 20px;
	line-height: 30px;
	font-size: 16px;
	color: #333;
	margin-bottom: 15px;
	text-overflow: ellipsis;
    white-space: nowrap;
}
.yf_ul li>a{
	float: right;
	width: 120px;
	height: 30px;
	line-height: 30px;
	border-radius: 5px;
	text-align: center;
	background-color: #0a6edb;
	font-size: 16px;
	color: #fff;
	margin-left: 5px;
}
.cpxq{
  display: block;
  overflow: hidden;
}
.cpxq_p{
  display: block;
  overflow: hidden;
  text-align: center;
  line-height: 24px;
  font-size: 18px;
  color: #282828;
  font-weight: bold;
}
.cpxq_txt{
  display: block;
  overflow: hidden;
  font-size: 14px;
  line-height: 30px;
  color: #282828;
  padding-top: 10px;
}
.cpxq_txt img{
  display: block;
  max-width: 100%;
  height: auto;
  margin: 10px auto;
}
/* END-轴承展示/JXN产品/研究开发 */

/* 企业资讯 */
.xw_ul{
  display: block;
  overflow: hidden;
}
.xw_ul li{
  display: block;
  overflow: hidden;
  margin-bottom: 20px;
}
.xw_ul li>a{
  width: 100%;
  float: left;
  display: flex;
  border: 1px solid #dcdcdc;
  padding: 10px;
}
.xw_ul li>a .news_img{
  width: 30%;
  float: left;
  overflow: hidden;
  position: relative;
}
.xw_ul li>a .news_B{
  width: 70%;
  float: left;
  padding: 10px 0 10px 30px;
}
.xw_ul li>a .news_B .news_p{
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size: 16px;
  color: #333;
  font-weight: bold;
  text-overflow:ellipsis;
  white-space: nowrap;
}
.xw_ul li>a .news_B .news_txt{
  display: block;
  overflow: hidden;
  height: 120px;
  line-height: 30px;
  margin-top: 10px;
  font-size: 14px;
  color: #333;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.xw_ul li>a:hover{
  background-color: #0a6edb;
}
.xw_ul li>a:hover .news_img img{
  transform: scale(1.1);
}
.xw_ul li>a:hover .news_B .news_p,
.xw_ul li>a:hover .news_B .news_txt{
  color: #fff;
}

.xwxq{
  display: block;
  overflow: hidden;
}
.xwxq_p{
  display: block;
  overflow: hidden;
  text-align: center;
  line-height: 24px;
  font-size: 18px;
  color: #282828;
  font-weight: bold;
}
.xwxq_sp{
  display: block;
  overflow: hidden;
  text-align: center;
  line-height: 16px;
  font-size: 14px;
  color: #999;
  padding: 10px 0;
  border-bottom: 1px dashed #ccc;
}
.xwxq_txt{
  display: block;
  overflow: hidden;
  font-size: 14px;
  line-height: 30px;
  color: #282828;
  padding-top: 10px;
}
.xwxq_txt img{
  display: block;
  max-width: 100%;
  height: auto;
  margin: 10px auto;
}
/* END-企业资讯 */

/* 联系我们 */
.contact_txt {
  display: block;
  overflow: hidden;
  font-size: 14px;
  color: #282828;
  line-height: 30px;
}
.contact_map {
  width: 100%;
  overflow: hidden;
  height: 350px;
  border: none;
  margin-top: 20px;
}
/* END-联系我们 */

@media (max-width: 1220px) {
/* 首页 */
.main{
	padding: 40px 0;
}
.main_left{
	width: 24%;
}
.main_right{
	width: 74%;
}
.cpzs_ul {
  width: 102%;
  margin-left: -1%;
}
.cpzs_ul li {
  width: 23%;
  margin: 0 1% 20px 1%;
}

.jxn {
  padding: 40px 0;
}
.jxn_ul {
  width: 102%;
  margin-left: -1%;
}
.jxn_ul li {
  width: 23%;
  margin: 20px 1% 0 1%;
}
.jxn_ul li .jxn_txt {
  height: 55px;
  line-height: 55px;
}

.gsjj {
  padding: 40px 0;
}
.gsjj_B {
  max-width: 80%;
  padding: 24px 30px;
}
.gsjj_tit {
  margin-top: 20px;
}
.gsjj_more {
  padding: 10px 0 20px 0;
}
.ys_ul li {
  width: calc(50% - 20px);
  margin: 30px 0;
}

.hf_p {
  font-size: 24px;
}
.hf_sp {
  font-size: 16px;
}
.hf_txt {
  margin-top: 10px;
}
.hf_dianhuaB {
  padding: 14px 0;
}
.hf_dianhuaB::before {
  height: 68px;
}
.hf_dianhua_p::before {
  width: 75%;
}
.hf_dianhua_sp {
  font-size: 18px;
  margin-top: 10px;
}
.hf_dianhua_sp>span {
  font-size: 30px;
}

.news {
  padding: 40px 0;
}
/* END-首页 */

/* 底部 */
.link {
  padding: 15px 0;
}
.link_p>span {
  margin-right: 5px;
}
.link_txt {
  padding-left: 5px;
}
.link_txt>a {
  margin: 0 5px;
}

.footer {
  padding: 20px 0;
}
.footer_cp {
  width: 45.25%;
}
.footer_p {
  margin-bottom: 5px;
}
.footer_news {
  padding: 10px 20px;
}
.footer_news {
  width: 18.25%;
}
.footer_contact {
  width: 36.5%;
  padding: 10px 0 10px 15px;
}
.footer_txt {
  width: 30%;
  line-height: 24px;
}
.footer_R>span:nth-child(2) {
  font-size: 20px;
}
/* END-底部 */

}

@media (max-width: 991px) {
/* 导航按钮 */
.icon-menu {
  float: right;
  cursor: pointer;
  width: 50px;
  height: 35px;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 11;
  background-size: 100% 100%;
}
.icon-menu>span {
  width: 100%;
  height: 5px;
  float: left;
  background-color: #0a6edb;
  transition: all 0.4s;
}
.icon-menu-active>span:nth-child(2){
  opacity: 0;
}
.icon-menu-active>span:nth-child(1){
  -webkit-transform: translateY(15px) rotate(-45deg);
  -ms-transform: translateY(15px) rotate(-45deg);
  transform: translateY(15px) rotate(-45deg);
}
.icon-menu-active>span:nth-child(3){
  -webkit-transform: translateY(-15px) rotate(45deg);
  -ms-transform: translateY(-15px) rotate(45deg);
  transform: translateY(-15px) rotate(45deg);
}

/* 头部 */
.header {
  position: fixed;
  background-color: #fff;
  top:0;
  z-index: 10;
  box-shadow: 15px 15px 15px rgba(0,0,0,0.2);
}
.header_R{
  padding-right: 80px;
}

/* 导航 */
nav {
  position: fixed;
  background-color: rgba(0,0,0,0.8);
  width: 100%;
  height: 100%;
  left: -100%;
  top: 0;
  z-index: 10;
	opacity: 0;
  display: flex;
  justify-content: flex-start;
  transition: all 0.4s;
}
.nav-actived{
  left: 0;
	opacity: 1;
}
nav>.container {
  width: 100%;
  max-width: 100% !important;
}
.nav{
  width: 85%;
  height: 100%;
  background-color: #fff;
}
.nav>li{
  width: 100%;
  height: 9%;
  border-bottom: 1px solid #ccc;
}
.nav>li>a{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}
.nav>li>a::before{display: none;}
.nav>li:hover>a,
.nav>li.nav-this>a{
  background-color: #0a6edb;
  color: #fff;
}
/* END-头部 */

/* 首页 */
.main{
	padding: 30px 0;
}
.main_left{
	width: 29%;
}
.about_ul>li>a {
  padding: 0 10px;
}
.main_right{
	width: 69%;
}
.cpzs_ul li {
  width: 31.3333%;
  margin: 0 1% 15px 1%;
}

.jxn {
  padding: 30px 0;
}
.jxn_ul li {
  width: 31.3333%;
}
.jxn_ul li .jxn_txt {
  height: 50px;
  line-height: 50px;
}

.gsjj {
  padding: 30px 0;
}
.gsjj_contect {
  margin-top: 20px;
}
.gsjj_left {
  height: calc(100% - 30px);
}
.gsjj_B {
  padding: 15px;
}
.gsjj_tit {
  margin-top: 15px;
  padding-bottom: 15px;
}
.gsjj_txt {
  margin-top: 10px;
}

.ys_title {
  padding: 20px 0;
}
.ys_B {
  padding: 15px 70px 0 70px;
}
.ys_B .ys_p {
  height: 50px;
  line-height: 50px;
  font-size: 40px;
}
.ys_B .ys_p>span {
  height: 50px;
  line-height: 50px;
  font-size: 60px;
}
.ys_B .ys_sp>span {
  font-size: 16px;
  padding: 0 15px;
}
.ys_contect {
  padding: 10px 0;
}
.ys_ul li {
  width: calc(50% - 10px);
  margin: 10px 0;
}
.ys_ul li .ys_right .ys_p {
  line-height: 40px;
  font-size: 20px;
}
.ys_ul li .ys_right .ys_txt {
  line-height: 28px;
  font-size: 16px;
  margin-top: 5px;
}

.hf_title {
  line-height: 30px;
}
.hf_p {
  font-size: 18px;
}
.hf_sp {
  font-size: 14px;
  padding-left: 10px;
}
.hf_txt {
  margin-top: 5px;
  line-height: 24px;
  font-size: 14px;
}
.hf_txt>p>span::before{display: none;}
.hf_dianhuaB {
  padding: 0;
}
.hf_dianhuaB::after,
.hf_dianhuaB::before{display: none;}
.hf_dianhua{
  background-size: contain;
  padding-left: 60px;
}
.hf_dianhua_sp {
  line-height: 28px;
  font-size: 16px;
  margin-top: 5px;
  padding-right: 0;
}
.hf_dianhua_sp>span {
  font-size: 20px;
}
.hf_dianhua_p::before {
  width: 58%;
}

.news {
  padding: 30px 0;
}
.news_nav>li {
  width: 19%;
  margin: 0 0.5% 10px 0.5%;
}
.news_contect {
  padding-top: 15px;
}
.news_left>a .news_B {
  padding: 15px;
}
.news_ul li>a .news_sub {
  width: 90px;
}
.news_ul li>a .news_R {
  width: calc(100% - 90px);
  padding: 10px;
}
.news_ul li>a .news_R .news_txt {
  margin-top: 5px;
}
/* END-首页 */

/* 底部 */
.link {
  padding: 10px 0;
  line-height: 24px;
}
.footer_cp {
  width: 39.25%;
}
.footer_B .footer_ul {
  width: 50%;
}

.footer_news {
  width: 19.25%;
  padding: 10px;
  text-align: center;
}
.footer_news .footer_B .footer_ul {
  width: 100%;
}
.footer_news .footer_B .footer_ul:last-child li {
  text-align: center;
}
.footer_txt {
  width: 100%;
}
.footer_wx {
  float: left;
  margin-top: 10px;
}
/* END-底部 */

/* 企业资讯 */
.xw_ul li>a .news_B {
  padding: 5px 0 5px 15px;
}
.xw_ul li>a .news_B .news_txt {
  height: 104px;
  line-height: 26px;
  margin-top: 5px;
}
/* END-企业资讯 */

}

@media (max-width: 767px) {
/* 导航按钮 */
.icon-menu {
  width: 30px;
  height: 21px;
	right: 10px;
}
.icon-menu span {
  height: 3px;
}
.icon-menu-active>span:nth-child(1){
  -webkit-transform: translateY(9px) rotate(-45deg);
  -ms-transform: translateY(9px) rotate(-45deg);
  transform: translateY(9px) rotate(-45deg);
}
.icon-menu-active>span:nth-child(3){
  -webkit-transform: translateY(-9px) rotate(45deg);
  -ms-transform: translateY(-9px) rotate(45deg);
  transform: translateY(-9px) rotate(45deg);
}

/* 头部 */
.header_R {
  padding-right: 35px;
}
.header_nav {
  padding-left: 0;
}
.header_nav a {
  margin: 0 4px;
}
.logo{
  width: 60%;
}
.logo a {
  width: 100%;
}
/* END-头部 */

/* 首页 */
.main{
	padding: 0;
}
.main_left{
	width: 100%;
}
.about{
	margin: 0;
  overflow: initial;
}
.about_title{
  width: calc(100% + 20px);
  text-align: left;
  margin-left: -10px;
  font-size: 18px;
  font-weight: bold;
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
  color: #fff;
  position: relative;
}
.about_title::after{
  content: "\f078";
  font-family: FontAwesome;
  font-size: 16px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.about_ul {
  display: none;
  margin-top: 0;
  padding: 10px;
}
.about_ul>li>a {
  height: 38px;
}
.about_ul>li>a>span {
  height: 38px;
  line-height: 36px;
  font-size: 14px;
  padding-left: 25px;
}
.main_right{
	width: 100%;
}
.dqwz_contect{
	padding: 10px 0;
}
.cpzs_ul li {
  width: 48%;
  margin: 0 1% 10px 1%;
}

.jxn {
  padding: 10px 0;
}
.jxn_p {
  line-height: 28px;
  font-size: 18px;
}
.jxn_sp {
  line-height: 18px;
  font-size: 12px;
  margin-top: 0;
}
.jxn_sp::after {
  margin: 5px auto 0 auto;
}
.jxn_ul li {
  width: 48%;
  margin: 0 1% 10px 1%;
}
.jxn_ul li .jxn_txt {
  height: 40px;
  line-height: 40px;
  font-size: 14px;
}

.gsjj {
  padding: 10px 0;
}
.gsjj_contect {
  margin-top: 10px;
}
.gsjj_left {
  width: 100%;
  height: 100%;
  position: relative;
  transform: initial;
}
.gsjj_img::before{
  content: "";
  display: block;
  padding-top: 66.7753%;
}
.gsjj_right {
  width: 100%;
}
.gsjj_B {
  max-width: 100%;
  padding: 10px;
}
.gsjj_tit {
  margin-top: 0;
  padding-bottom: 5px;
  line-height: 30px;
}
.gsjj_tit>span {
  font-size: 18px;
  margin-right: 5px;
}
.gsjj_txt {
  height: auto;
  line-height: 22px;
  -webkit-line-clamp: initial;
}
.gsjj_more {
  padding: 10px 0 0 0;
}
.gsjj_more>a {
  width: 100px;
  height: 30px;
}
.ys_title {
  padding: 10px 0;
}
.ys_B {
  padding: 10px 10px 0 10px;
}
.ys_B .ys_p {
  height: 30px;
  line-height: 30px;
  font-size: 20px;
}
.ys_B .ys_p>span {
  height: 30px;
  line-height: 30px;
  font-size: 30px;
  padding: 0 5px;
}
.ys_B .ys_sp {
  padding-top: 5px;
}
.ys_B .ys_sp>span {
  font-size: 12px;
  padding: 5px;
}
.ys_contect {
  padding: 5px 0;
}
.ys_ul li {
  width: 100%;
  margin: 5px 0;
}
.ys_ul li .ys_left {
  width: 90px;
  padding: 5px;
  margin-right: 10px;
}
.ys_ul li .ys_right .ys_p {
  line-height: 24px;
  font-size: 18px;
}
.ys_ul li .ys_right .ys_txt {
  line-height: 24px;
  font-size: 14px;
  margin-top: 5px;
}

.hf {
  padding: 10px 0;
}
.hf_left {
  width: 100%;
}
.hf_title{
  display: flex;
  justify-content: center;
}
.hf_txt {
  text-align: center;
  line-height: 20px;
  font-size: 12px;
}
.hf_txt>p>span {
  float: none;
  padding-right: 10px;
}
.hf_right {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.news {
  padding: 10px 0;
}
.news_nav {
  padding-top: 10px;
}
.news_nav>li {
  width: 32.3333%;
  margin: 0 0.5% 1% 0.5%;
}
.news_nav>li>a {
  height: 38px;
  line-height: 38px;
}
.news_contect {
  padding-top: 10px;
}
.news_left {
  width: 100%;
}
.news_left>a .news_img {
  width: 30%;
  float: left;
}
.news_left>a .news_B {
  width: 70%;
  float: left;
  padding: 10px;
  border: 1px solid #dcdcdc;
}
.news_left>a .news_B .news_txt {
  height: 72px;
  line-height: 24px;
  margin-top: 5px;
  -webkit-line-clamp: 2;
}
.news_ul {
  width: 100%;
}
.news_ul li {
  width: 100%;
  margin: 10px 0 0 0;
}
/* END-首页 */

/* 底部 */
.link_p {
  font-size: 14px;
}
.link_txt {
  overflow: initial;
}
.copyright {
  line-height: 22px;
  padding: 10px 0;
}
/* END-底部 */

/* 关于捷希尼/招聘信息 */
.company{
	line-height: 24px;
}
/* END-关于捷希尼/招聘信息 */
	
/* 轴承展示/JXN产品/研究开发 */
.yf_ul li{
	padding: 5px 10px;
	font-size: 14px;
	margin-bottom: 10px;
}
.yf_ul li>a{
	width: 90px;
	border-radius: 5px;
	font-size: 14px;
}
/* 轴承展示/JXN产品/研究开发 */
.cpxq_p{
  line-height: 22px;
  font-size: 16px;
}
.cpxq_txt{
  line-height: 24px;
}
/* END-轴承展示/JXN产品/研究开发 */

/* 企业资讯 */
.xw_ul li {
  margin-bottom: 10px;
}
.xw_ul li>a {
  padding: 5px;
}
.xw_ul li>a .news_B {
  padding: 5px 0 5px 10px;
}
.xw_ul li>a .news_B .news_p {
  line-height: 24px;
}
.xw_ul li>a .news_B .news_txt {
  height: 60px;
  line-height: 20px;
  margin-top: 5px;
  -webkit-line-clamp: 3;
}

.xwxq_p{
  line-height: 22px;
  font-size: 16px;
}
.xwxq_sp{
  padding: 5px 0;
}
.xwxq_txt{
  line-height: 24px;
}
/* END-企业资讯 */

/* 联系我们 */
.contact_txt{
  line-height: 24px;
}
.contact_map {
  height: 250px;
  margin-top: 10px;
}
/* END-联系我们 */

}

/* 手机底部组件 */
.root_kong {
  width: 100%;
  height: 56px;
  float: left;
  background-color: #fff;
	height: calc(56px +  constant(safe-area-inset-bottom));
	height: calc(56px +  env(safe-area-inset-bottom));
	padding-bottom: constant(safe-area-inset-bottom);
	padding-bottom: env(safe-area-inset-bottom);
}
.root {
  width: 100%;
  height: 54px;
  background-image: linear-gradient(#23a3f5,#0a6edb);
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 9;
	height: calc(54px +  constant(safe-area-inset-bottom));
	height: calc(54px +  env(safe-area-inset-bottom));
	padding-bottom: constant(safe-area-inset-bottom);
	padding-bottom: env(safe-area-inset-bottom);
}
.root>li{
  width: 25%;
  float: left;
  border-right: 1px solid #fff;
}
.root>li:last-child{border: none;}
.root>li>a {
  display: flex;
  align-content: center;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  padding: 6px 0;
}
.root>li>a>div {
  width: 100%;
  float: left;
  font-size: 14px;
  line-height: 1;
  color: #fff;
  text-align: center;
}
.root>li>a>div:first-child {
  font-size: 22px;
  margin-bottom: 6px;
}
.root>li>a:hover {
  background-color: #0a6edb;
  color: #fff;
}
/* 电话 */
.root_bj {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  background-color: rgba(0,0,0,0.6);
  z-index: 8;
}
.root_phone {
  display: none;
  width: 100%;
  background-color: #f5f5f5;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 9;
  overflow: hidden;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
}
.root_phone>a,
.root_phone>.root_off {
  display: block;
  background-color: #fff;
  line-height: 44px;
  color:#333;
  text-align: center;
  border-bottom: 1px solid #ddd;
  font-size:15px;
}
.root_phone .root_off {
  margin-top: 6px;
  border-top: 1px solid #ddd;
}
.root_phone .root_off:hover,
.root_phone a:hover {
  background:#ddd;
}
/* 微信号 */
.wecht-box{
  display: none;
  width: 100%;
  float: left;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
}
.wecht-box .wecht{
  width: 100%;
  float: left;
  background-color: #fff;
  border-radius: 5px;
  padding: 20px;
  text-align: center;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.wecht-box .wecht .wecht_title{
  display: block;
  overflow: hidden;
  line-height: 20px;
  font-size: 14px;
  color: #333;
}
.wecht-box .wecht .wecht_title>span{
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size: 18px;
  font-weight: bold;
}
.wecht-box .wecht>img{
  display: block;
  max-width: 150px;
  margin: 10px auto;
  overflow: hidden;
}
.wecht-box .wecht .wecht_txt{
  display: block;
  overflow: hidden;
  font-size: 14px;
  line-height: 24px;
  color: #333;
  line-height: 18px;
}
.wecht-box .wecht .wecht_txt>span{
  font-family: Impact;
  font-size: 16px;
}
.wecht-box .wecht .wecht_off{
  width: 30px;
  height: 30px;
  font-size: 16px;
  color: #fff;
  position: absolute;
  left:50%;
  bottom:-38px;
  border: 1px solid #fff;
  transform:translateX(-50%);
  border-radius: 50%;
  display:flex;
  justify-content: center;
  align-items: center
}
/* END-手机底部组件 */
