.fix:after,
.fix:before {
    display: table;
    clear: both;
    content: ''
}

/* 分列式弹性盒子，以X轴从左到右排列 */
.b-flex-x{
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	align-content: center;
	
}

/* 水平左对齐 */
.b-flex-x.b-flex-left{
    justify-content: flex-start;
}

/* 水平居中对齐 */
.b-flex-x.b-flex-center{
    justify-content: center;
}

/* 水平右对齐 */
.b-flex-x.b-flex-right{
    justify-content: flex-end;
}

/* 水平两端对齐 */
.b-flex-x.b-flex-space{
    justify-content: space-between;
}

/* 垂直顶部对齐 */
.b-flex-x.b-flex-top{
    align-items: flex-start;
    align-content: flex-start;
}

/* 垂直底部对齐 */
.b-flex-x.b-flex-bottom{
    align-items: flex-end;
    align-content: flex-end;
}

/* 允许换行 */
.b-flex-x.b-flex-wrap{
    flex-wrap: wrap;
}

/* 弹性元素 */
.b-flex-x > .b-flex-grow{
    flex-grow: 1;
    width: 0;
}

/* 禁止压缩 */
.b-flex-x > .b-flex-shrink{
    flex-shrink:0;
}


/* // flex 引用 */
/* // X左对齐 */
.b-flex-left {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
}
/* // X轴居中对齐 */
.b-flex-center {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: center;
}
/* // X轴两端对齐 */
.b-flex-space {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    align-content: center;
}
.w-full {
    width: 100%;
}
.h-full {
    height: 100%;
}

.fl {
    float: left
}
.fr {
    float: right
}
.wrap {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto
}
.body-index .body-index-2 .body-index-2-content .body-index-2-content-font .body-index-2-content-font-btn {
    background-color: #355FFC !important;
}
.body-index .body-index-2 .body-index-2-content .body-index-2-content-ul .body-index-2-content-ul-li:hover, .body-index .body-index-2 .body-index-2-content .body-index-2-content-ul .body-index-2-content-ul-li.active {
    background-color: #355FFC !important;
}
.body-product .body-product-right .body-product-right-cont .body-product-right-cont-ul .body-product-right-cont-ul-li .body-product-right-cont-ul-li-a .body-product-right-cont-ul-li-a-other span {
    color: #355FFC !important;
}
.body-index .body-index-4 .body-index-4-title .btn-1 {
    background-color: #355FFC !important;
}
.body-index .body-index-2 .body-index-2-title .body-index-2-title-right .hr {
    background-color: #355FFC !important;
}
.header .global-nav-top .global-nav-top-list .global-nav-top-list-ul .global-nav-top-list-ul-li.active .global-nav-top-list-ul-li-a, .header .global-nav-top .global-nav-top-list .global-nav-top-list-ul .global-nav-top-list-ul-li:hover .global-nav-top-list-ul-li-a {
    color: #355FFC !important;
}
.body-product .body-product-right .body-product-right-cont .body-product-right-cont-ul .body-product-right-cont-ul-li .body-product-right-cont-ul-li-a .body-product-right-cont-ul-li-a-img {
    background-color: transparent;
}

.l-line::before {
    content: '';
    display: inline-block;
    background-color: #355FFC;
    width: 3px;
    height: 1em;
    border-radius: 2px;
    margin-right: 5px;
    vertical-align: top;
}

/*homepage -> news*/
.index_news {
    margin: 40px 0 80px
}

.index_rows_tit {
    margin-bottom: 10px
}

/* news -> carousel */
.news_pbox {
    position: relative;
    width: 47%;
    margin-top: 10px;
    border-radius: 8px;
    box-shadow: 4px 6px 20px rgba(0, 0, 0, .2);
    overflow: hidden;
    transition: .4s
}

.news_pbox:hover {
    filter: saturate(1.2);
}

.news_pbox:hover ol li {
    -ms-transform: scale(1);
    transform: scale(1);
}

.news_pbox:before {
    content: '';
    display: inline-block;
    float: left;
    width: 0;
    padding: 28% 0
}

.news_pbox ul,
.news_pbox ul li {
    float: left;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden
}

.news_pbox ul li {
    display: none;
    position: absolute;
}

.news_pbox ul li a {
    display: block;
    overflow: hidden;
}

.news_pbox ul li img {
    width: 100%;
    transition: 1s linear
}

.news_pbox ul li p {
    display: inline-block;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    padding: 12px 14px 6px;
    font-size: 13px;
    line-height: 2;
    font-weight: 400;
    text-align: justify;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, .8), rgba(0, 0, 0, 0));
    background-color: #6669;
}

.news_pbox ol {
    position: absolute;
    top: 12px;
    left: 50%;
    z-index: 10;
    margin-left: -110px
}

.news_pbox ol li.active {
    background-color: #c7000b
}

.news_pbox ol li {
    float: left;
    width: 40px;
    height: 8px;
    margin: 4px;
    border-radius: 4px;
    font-size: 0;
    background-color: rgba(255, 255, 255, .8);
    background-color: #F5F5F5;
    cursor: pointer;
    -ms-transform: scale(0);
    transform: scale(0);
    opacity: .6;
    transition: .4s
}

.news_pbox:hover img {
    -ms-transform: scale(1.04);
    transform: scale(1.04)
}

.inews_list {
    width: 50%;
    margin-top: 10px
}

.inews_list li {
    float: left;
    width: 100%;
    margin: 0 0 16px;
    padding: 0 0 16px 0;
    border-bottom: 1px #e6e6e6 solid;
    overflow: hidden;
    transition: margin-left .4s
}

.inews_time {
    float: left;
    width: 16%
}

.inews_intr {
    display: block;
    float: left;
    width: 84%
}

.inews_intr h3 {
    height: 40px;
    line-height: 20px;
    font-size: 18px
}

.inews_intr p {
    height: 48px;
    line-height: 24px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 15px;
    text-align: justify;
    overflow: hidden
}

.inews_time span {
    display: block;
    width: 100%;
    text-align: center
}

.inews_Day {
    line-height: 52px;
    font-size: 52px;
    color: #be1e2d
}

.inews_Year {
    padding-top: 15px;
    line-height: 20px;
    font-size: 14px;
    color: #a0a0a0
}

.inews_list li:hover {
    margin-left: -10px
}

.inews_intr:hover p {
    color: #444
}

.inews_intr:hover h3 {
    color: #be1e2d
}

.body-index-6 {
    background: transparent !important;
}
.body-index-3 {
    background: transparent !important;
}

.hds{text-align:center;margin-bottom:35px; padding-top: 80px;}
.hds h2{font-size:44px; font-weight: bold; font-family:Arial;color:#dcdcdc;text-transform:uppercase;}
.hds p{color:#071c7b;font-size:40px;margin-top:-28px;font-weight:bold;}
.hds .line{width:46px;height:1px;background:#900010;margin:12px auto 0;}

.hds-d {
	text-align:center;margin-bottom:35px; padding-top: 80px;
}

/* footer */
.index_foot {
    width: 100%;
    min-width: 1200px;
    display: inline-table;
    background-color: #2e3033;
}

.foot_mess {
    position: relative;
    z-index: 5;
    padding: 60px 0 50px
}

.foot_mess .footNav {
    /* width: 77% */
}

.foot_mess .footSites {
    width: 23%
}

.foot_mess .col_23 {
    width: 26%
}

.foot_mess .col_45 {
    width: 45%
}
.foot_mess .col_19 {
    width: 20%
}

.col_nav {
    float: left;
    min-height: 190px;
    padding-right: 5%
}

.col_tit,
.sites_tit {
    font-size: 16px;
    line-height: 2.4;
    color: #DDDDDD
}

.col_nav a {
    display: inline-block;
    width: 100%;
    font-size: 14px;
    line-height: 2.4;
    color: #888888;
    transition: .4s
}

.col_nav a:hover {
    text-decoration: underline
}

.f_sites {
    padding-left: 15%;
    border-left: #5a5a5a 1px solid
}

.f_sites ul li {
    float: left;
    width: 45%;
    margin: 10px 5% 5px 0
}

.col_a {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 14px;
    line-height: 2;
    color: #888888;
    background-color: rgba(255, 255, 255, .1);
    transition: .3s
}

.col_a:hover {
    background-color: #8c8c8c;
    color: #F9F9F9
}

.foot_txt {
    border-top: #3c3c3c .5px solid;
    color: #888888;
}

.foot_txt p {
    display: inline-block;
    width: 100%;
    /*float: left;*/
    text-align: center;
    font-size: 13px;
    line-height: 3.2
}

.foot_txt p a {
    display: inline-block;
    /*float:right;*/
    color: #999
}

.foot_txt p a:hover {
    color: #F9F9F9
}

/* 产品 */
.product {
	/* margin: 80px auto; */
	/* margin-top: 100px; */
}
.product .list {
	/* margin: 50px auto; */
	display: flex;
	flex-wrap: wrap;
	margin: 50px 0;
}

.product .list .item {
	width: 33.3%;	
	word-wrap:break-word; 
	word-break:break-all; 
	padding: 10px;
	line-height: 24px;
	font-size: 16px;
	position: relative;
}
.product .list .item a {
	display: block;
	transition: ease .65s;
	border-radius: 3px;
}
.product .list .item a:hover {
	box-shadow: 0 0 16px #b1b1b1;
}
.product .list .item .info {
	/* padding: 10px 10px 0; */
	padding-top: 10px;
	display: block;
}
.product .list .item a .info::after {
	content: '';
	display: block;
	height: 1px;
	background: #104492;
	width: 0;
	transition: ease .65s;
}

.product .list .item a:hover .info::after {
	width: 100%;
}
.product .list .item a:hover img{
	box-shadow: 0 0 16px #b1b1b1;
	position: relative;
	top: -10px;
	right: -10px;
}
.product .list .item .info h4 {
	font-size: 22px;
	margin-bottom: 20px;
	padding: 0 10px;
}
.product .list .item .info p {
	padding: 0 10px 10px;
}
.product .list .item a img {
	width: 100%;
	height: 300px;
	object-fit: cover;
	transition: ease .65s;
	position: relative;
	top: 0;
	right: 0;
}

.product-category {
	width: 25%;
	float: left;
	padding-right: 40px;
}

.product-category .title {
	width: 100%;
	height: 120px;
	background: #3875e8 url(../image/net-bg.png) top center no-repeat;
	/* padding-left: 40px; */
	overflow: hidden;
	text-align: center;
}

.product-category .title p {
	font-size: 30px;
	color: #ffffff;
	line-height: 1;
	margin-top: 30px;
	margin-bottom: 10px;
}

.product-category .title span {
	font-size: 14px;
	font-family: Arial;
	color: #fff;
	opacity: .5;
	line-height: 1;
	text-transform: uppercase;
}

.product-category .list {
	background: #333333;
	padding: 6px 10px;
	/* min-height: 360px; */
	min-height: 400px;
}

.product-category .list ul li {
	padding: 4px 0;
}

.product-category .list ul li a {
	line-height: 40px;
	/* padding-left: 40px; */
	display: block;
	color: #ffffff;
	font-size: 16px;
	position: relative;
	text-align: center;
}

/* .product-category .list ul li a:after {
	content: '';
	display: block;
	width: 6px;
	height: 6px;
	border-radius: 100%;
	background: #ffffff;
	position: absolute;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
} */

.product-category .list ul li[class*="current"] a {
	background: #3875e8;
}

.product-category .list ul li:hover a {
	background: #3875e8;
}

.product-category .phone {
	width: 100%;
	height: 120px;
	background: #3875e8 url(../image/net-bg.png) bottom center no-repeat;
	overflow: hidden;
	padding-left: 20px;
	padding-top: 40px;
}

.product-category .phone dl dt {
	width: 44px;
	height: 44px;
	float: left;
	margin-top: -3px;
	margin-right: 3px;
}

.product-category .phone dl dt img {
	display: block;
}

.product-category .phone dl dd span {
	font-size: 14px;
	color: #ffffff;
	line-height: 1;
}

.product-category .phone dl dd p {
	font-size: 24px;
	color: #ffffff;
	line-height: 1;
}

.product-list {
	width: 75%;
	margin: 0 auto;
	/* width: 100%; */
	/* float: left; */
}

.b-2 .product-list {
	width: 100%;
}
.mask-filter {
    -webkit-filter: brightness(.4);
    -moz-filter: brightness(.4);
    -ms-filter: brightness(.4);
    -o-filter: brightness(.4);
    filter: brightness(.4);
}
.s-main-container {
	width: 96%;
	max-width: 1200px;
	margin: 0 auto;
}

/* 新闻中心 */
.news {
	/* margin-top: 100px; */
}
.news .news-list {
	padding: 30px 0;
}
.news .news-list .item {
	border-bottom: 1px solid #e1e1e1;
	padding: 30px 0;
	font-size: 13px;
	font-weight: 400;
	color: #666;
	display: flex;
	align-items: center;
}

.news .news-list .item h3 {
	color: #333333;
	margin-bottom: 20px;
	font-weight: 500;
	font-size: 26px;
}

.news .news-list .item .info {
	font-size: 16px;
	color:#666;
	line-height: 24px;
	margin-bottom: 25px;
	width: 83%;
}
.news .news-list .item .img {
	margin-right: 30px;
	width: 280px;
	height: 180px;
	object-fit: cover;
}
.news .news-list .item .t-1 {
	font-size: 26px;
    margin-right: 5px;
}

.news .news-list .item .t-3 {
	font-size: 17px;
	margin-left: 5px;
}
.news .news-list .item .more-btn {
	flex-shrink: 0;
	text-align: center;
    height: 40px;
    line-height: 40px;
	/* border: 1px solid #666666; */
	width: 160px;
	color: #FFFFFF;
	background: #1e50ae;
}
.body-solve .body-solve-list .body-solve-list-ul .body-solve-list-ul-li a .body-solve-list-ul-li-btn {
    background-color: #355FFC;
}
.body-solve .body-solve-list .body-solve-list-ul .body-solve-list-ul-li a .body-solve-list-ul-li-btn:after {
    border-color: #fff #fff #355FFC #355FFC;
}
.body-pagination li.active, .body-pagination li:hover {
    background-color: #355FFC;
    border-color: #355FFC;
	color: #fff;
}
.body-about .body-about-top .about_nav .about_nav_l ul li .on {
    color: #355FFC;
    border-bottom: 2px solid #355FFC;
}
.body-about .body-about-desc .body-about-desc-left .body-about-desc-left-list .body-about-desc-left-list-ul .body-about-desc-left-list-ul-li .body-about-desc-left-list-ul-li-info h2 {
    color: #355FFC;
}
.body-about .body-about-time .body-about-time-info .body-about-time-swiper .body-about-time-info-all .body-about-time-info-all-list .body-about-time-info-all-list-left {
    background-color: #355FFC;

}
.body-about .body-about-time .body-about-time-info .body-about-time-swiper .body-about-time-info-all .body-about-time-info-all-list .body-about-time-info-all-list-left:before {
    background-color: #355FFC;

}

.concat .h-title {
	font-size: 36px;
    font-family: Microsoft YaHei;
	text-align: center;
	padding: 80px 0;
}
.concat .icon-list {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
}
.icon-list .icon-item {
	text-align: center;
	font-size: 16px;
    color: #333;
	flex: 1;
}
.icon-item .icon-title {
	font-size: 20px;
	line-height: 1.5;
	padding: 10px 0 10px;
	display: inline-block;
}

.icon-item .icon img {
	padding: 35px;
	width: 130px;
	height: 130px;
	object-fit: cover;
	border-radius: 50%;	
	overflow: hidden;
	border: 3px solid #3875e8;
}

.message-form {
	/* width: 50%; */
	width: 700px;
	/* float: left; */
	margin: 0 auto;
}

.contact-form .form-item {
	flex: 1;
	margin: 0 16px 16px 0;
}

.contact-form .form-group {
	display: flex;
}
.contact-form .form-item {
	/* display: block;
    width: 100%;
    height: calc(1.1em + 2rem + 15px);
    padding: 0.375rem 0.8rem;
    line-height: 1.5;
    color: #999;
    background-color: #fbfbfb;
    background-clip: padding-box;
    border: 1px solid #e4e4e4;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    box-shadow: none!important; */
}

.case .list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 100px 0;
}
.case .list .item {
	width: 25%;
	height: 100px;
	line-height: 100px;
	margin-bottom: 100px;
}
.case .list img {
	/* flex: 1; */
	width: 100%;
	height: 100%;
	object-fit: contain;
	/* margin: 10px; */
}
.main-container {
	width: 96%;
	max-width: 1400px;
	margin: 0 auto;
}


.body-about .body-about-top .about_nav .about_nav_l ul li a:hover {
	color: #355FFC;
}

.b-ellipsis-3 {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}
.b-ellipsis-2 {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.news-detail .detail .n-title{
	font-size: 16px;
	line-height: 28px;
	margin-bottom: 15px;
}
.news-detail .detail .n-title h4 {
	font-size: 22px;
	font-weight: 400;
}
.news-detail .detail .parse-box {
	box-shadow: 0 0 6px 4px #f1f1f1;
	border-top: 2px solid #104492;
	margin-bottom: 30px;
	min-height: 50vh;
}
.news-detail .detail .pages {
	display: flex;
	justify-content: space-between;
	font-size: 14px;
}
.news-detail .detail .parse-box .info {
	width: 72%;
	margin: 0 auto;
	padding: 50px 0;
}

/* 产品详情 */
.page-content .swiper-slide img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}



  .content-title .title {
	border-left: 6px solid #3875e8;
	padding-left: 20px;
	line-height: 30px;
  }

  .content-title .tip-title p {
	padding-left: 30px;
	font-size: 16px;
	color: #999;
	margin-bottom: 30px;
  }

  .content-title .title-1 {
	font-size: 16px;
	font-family: Microsoft YaHei;
	color: #333;
	font-weight: 700;
  }

  .content-title .right-box {
	margin-left: 50px;
	width: 550px;
	flex-shrink: 0;
  }

  .right-box .top-swiper {
	width: 550px;
	height: 400px;
	margin-bottom: 10px;
  }

  .right-box .swiper-container {
	height: 100%;
  }

  .right-box .swiper-container img {
	width: 100%;
	height: 100%;
	/* object-fit: cover; */
	object-fit: contain;
  }

  .right-box .bottom-swiper .arrow-left,
  .arrow-right {
	width: 20px;
	height: auto;
	margin-top: 35px;
  }

  .right-box .bottom-swiper .arrow-left {
	float: left;
  }

  .right-box .bottom-swiper .arrow-right {
	float: right;
  }

  .right-box .bottom-swiper .list {
	display: flex;
	align-items: center;
  }

  .right-box .bottom-swiper .imgbox {
	height: 80px;
	width: 80px;
	/* border: 1px solid #ddd; */
	overflow: hidden;
	border-radius: 2px;
  }

  .right-box .bottom-swiper .active-nav {
	border: 1px solid #104492;
  }

  .right-box .bottom-swiper img {
	object-fit: cover;
  }
  .product-detail {
	margin-top: 100px;
	/* margin-bottom: 50px; */
  }
  .recom {
	/* width: 1200px; */
	/* margin: 0 auto 100px; */
  }

  .recom .h-title {
	font-size: 36px;
	text-align: center;
	margin-bottom: 50px;
  }

  .recom .recom-list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	padding-bottom: 50px;
	overflow: hidden;
  }

  .recom .recom-list::-webkit-scrollbar {
	width: 10px;
	height: 10px;
	background-color: #F5F5F5;
  }

  .recom .recom-list::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
	border-radius: 10px;
	background-color: #F5F5F5;
  }

  .recom .recom-list::-webkit-scrollbar-thumb {
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
	background-color: #555;
  }

  .recom-list .recom-item {
	width: calc(25% - 20px);
	box-shadow: 0 0 4px 4px #ededed;
	overflow: hidden;
	border-radius: 10px;
	margin: 10px;
	flex-shrink: 0;
  }
  .recom-item .img-box {
	width: 100%;
	height: 269px;
	overflow: hidden;
  }
  .recom-item .img-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
  }
  .recom-item:hover img {
	transform: scale(1.5);
	transition: .5s
  }
  .recom-item .info-box {
	font-size: 15px;
	font-family: Microsoft YaHei;
	padding: 15px 20px 20px;
	color: #999;
  }

  .recom-item .info-box .title {
	font-size: 20px;
	line-height: 2;
	color: #3875e8;
  }
  .recom-item .info-box .title::before {
	content: '';
	display: inline-block;
	margin-bottom: 2px;
	margin-right: 5px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	overflow: hidden;
	background: #3875e8;
  }
  
  .services-area .services-items.item-cell .item .icon, 
  .services-area .services-items.item-cell .item .info {
	display: table-cell;
	vertical-align: bottom;
  }
  
  .services-area .services-items.item-cell .item .info {
	padding-left: 25px;
  }
  
  .services-area .services-items.item-cell .item {
	padding: 50px 20px;
  }
  
  .services-area .services-items.item-cell .item .icon {
	position: relative;
	z-index: 1;
  }
  
  .services-area .services-items.item-cell .item .icon span {
	font-family: "Poppins",sans-serif;
	font-size: 30px;
	font-weight: 900;
	left: 0;
	opacity: 0.06;
	position: absolute;
	top: 0;
  }
  
  .services-area .services-items.item-cell .item .icon i {
	border: medium none;
	height: inherit;
	line-height: inherit;
	width: inherit;
  }
  
  .services-area .services-items.item-cell .item .icon i::after {
	display: none;
  }
  .services-area .services-items.item-cell .item .info p {
	color: #666666;
	line-height: 26px;
	margin: 0 0 15px;
	text-transform: none;
	font-weight: 400;
  }
  .services-area .services-items .item {
	background: #ffffff none repeat scroll 0 0;
	-moz-box-shadow: 0 5px 30px 0 rgba(214, 215, 216, 0.57);
	-webkit-box-shadow: 0 5px 30px 0 rgba(214, 215, 216, 0.57);
	-o-box-shadow: 0 5px 30px 0 rgba(214, 215, 216, 0.57);
	box-shadow: 0 5px 30px 0 rgba(214, 215, 216, 0.57);
	padding: 50px 30px;
  }
  
  .services-area .services-items .item i {
	border: 1px solid #e7e7e7;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	color: #1cb9c8;
	display: inline-block;
	font-size: 50px;
	height: 100px;
	line-height: 95px;
	position: relative;
	text-align: center;
	width: 100px;
  }
  
  .services-area .services-items .item i::after {
	border-bottom: 2px solid;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	border-left: 2px solid;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	-webkit-transition: all 0.35s ease-in-out;
	-moz-transition: all 0.35s ease-in-out;
	-ms-transition: all 0.35s ease-in-out;
	-o-transition: all 0.35s ease-in-out;
	transition: all 0.35s ease-in-out;
	width: 100%;
  }
  
  .services-area .services-items .item:hover i::after {
	transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	-webkit-transition: all 0.35s ease-in-out;
	-moz-transition: all 0.35s ease-in-out;
	-ms-transition: all 0.35s ease-in-out;
	-o-transition: all 0.35s ease-in-out;
	transition: all 0.35s ease-in-out;
  }
  
  .services-area .services-items .item .icon {
	display: inline-block;
	position: relative;
	margin-bottom: 20px;
  }
  
  .services-area .services-items .item h4 {
	font-weight: 600;
	text-transform: capitalize;
	display: block;
  }
  
  .services-area .services-items .item p {
	margin: 0;
  }
  
  .services-area .services-items .item a {
	color: #666666;
	display: inline-block;
	font-weight: 600;
	margin-top: 10px;
	text-transform: uppercase;
  }
  
  .services-area .services-items .item a:hover {
	color: #1cb9c8;
  }
  .services-items .card-info-h {
	height: 5.2em;
  }
  .services-area .services-items .equal-height {
	margin: 0 1em;
  }
  .services-area {
	margin-top: 2em;
  }
  .news-item {
	/* width: 33.3%; */
	padding: 0 15px;
	font-size: 1.2rem;
	margin-bottom: 15px;
  }
  .news-item .news-box {
	box-shadow: 0px 0px 40px 0px rgba(0,0,0,0.06);
	cursor: pointer;
  }
  .news-item .news-box .news-title {
	padding: 2em;
  }
  .news-item .news-box .news-title .time{
	color: #3875e8;
	margin-bottom: 10px;
  }
  .news-content {
	/* height: 100vh; */
	padding-top: 10vh;
  }
  .news-content .rows_tit {
	margin-bottom: 50px;
  }

@media screen and (min-width: 1150px) {
	.equal-box {
		margin-right: 80px;
		display: flex;
		width: 45vw;
	}
	.index-page .body-product {
		height: 100vh;
	}
	.index-page .body-product .body-product-right .body-product-right-top {
		margin-bottom: 50px;
	}
	.index-page .body-product .body-product-right {
		padding-top: 100px;
	}
	.services-items {
		display: flex;
		margin-bottom: 100px;
		min-height: 30vw;
	  }
	.body-about-honor-title h2 {
		width: 100%;
        height: auto;
        color: #000;
        font-weight: 400;
        font-stretch: normal;
        letter-spacing: .0520833333vw;
        font-size: 2.5vw;
        font-weight: 700;
        display: block;
    }
	.body-about-honor-title p {
        width: 100%;
        height: auto;
        color: #999;
        font-weight: 400;
        font-stretch: normal;
        display: block;
        font-size: 1.5vw;
		margin-bottom: 50px;
	}
	.page-content .pd-content {
		text-align: left;
		display: flex;
		align-items: flex-start;
		border: none;
		flex-wrap: wrap;
	  }
    .p-infoleft {
		width: 40%;
	  }
    .message-form {
        /* width: 50%; */
        width: 700px;
        /* float: left; */
        margin: 0 auto;
    }
    .body-about .qywh {
        background-image: url(../picture/gsjj1.jpg);
    }
    .body-index .body-index-1 {
        height: 92vh;
    }
    .page-banner {
        width: 100%;
        /* height: 40vw; */
        height: calc(100vh - 4.4791666667vw);
        position: relative;
    }
    .page-banner img {
        width: 100%;
        height: 100%;
    }
    .body-about-time-bg {
        
    }
    .pb-info {
        /* width: 38.6979166667vw; */
        /* height: 49.7916666667vw; */
        display: block;
        position: absolute;
        /* top: 11.7708333333vw; */
        top: 40%;
        /* left: 8.125vw; */
        left: 0;
        right: 0;
        text-align: center;
    }
    .pb-info .title {
        width: 100%;
        height: auto;
        font-size: 2.6041666667vw;
        font-weight: 700;
        font-stretch: normal;
        letter-spacing: .0520833333vw;
        color: #fff;
        /* margin-bottom: 4.84375vw; */
    }
	.news-list {
		display: flex;
	}
	.news-item {
		width: 33.3%;
	}
	.news-content {
		height: 100vh;
	}
	
}
@media screen and (max-width: 1149px) {
	.equal-box .l-box {
		display: none;
	}
	.news-content {
		height: auto;
	}
	
	.news-content .rows_tit {
		padding: 0 15px;
	}
	.body-product {
		padding-top: 80px;
	}
	.content-title .right-box {
		margin-left: 0;
		width: unset;
	}
	.right-box .top-swiper {
		width: unset;
	}
	.page-banner .title {
		padding-top: 1em;
		padding-left: 1em;
	}
	/* 联系我们 */
	.icon-list .icon-item {
		width: 100%;
		flex: unset;
		margin-bottom: 30px;
	}
	.page-banner h4 {
		display: none;
	}
    .product .list .item {
        width: 100%;	
    }
    .news_pbox {
        float: unset;
        width: 100%;
    }
    .body-index .body-index-2 .body-index-2-content {
        min-height: auto;
    }
    .body-index .body-index-2 .body-index-2-content .body-index-2-content-margin .body-index-2-content-margin-all .list {
        height: 50vw;
    }
    .body-index .body-index-2 .body-index-2-content .body-index-2-content-margin .body-index-2-content-margin-all .list .body-index-2-content-back img, .body-index .body-index-2 .body-index-2-content .body-index-2-content-margin .body-index-2-content-margin-all .list .body-index-2-content-back video {
        height: 100% !important;
    }
    .body-index .body-index-6 .body-index-6-font {
        height: auto;
    }
    .body-index .body-index-6 {
        height: 100vh;
    }
    .header .m-global-nav-top .m-global-nav-top-menu {
        background: #355FFC;
    }
    .header .m-global-nav-top .m-global-nav-top-list {
        top: 16vw;
        background: #355FFC;
    }
    .inews_list {
        width: auto;
        float: unset;
        position: relative;
    }
    .inews_list li {
        font-size: 10px;
    }
    .inews_list li .inews_Day {
        font-size: 3em;
        line-height: normal;
    }
    .inews_list li .inews_Year {
        font-size: 1em;
        padding-top: 0;
    }
    .foot_mess .footNav {
        flex-wrap: wrap;
        padding: 20px;
    }
    .foot_mess .col_19 {
        width: 100%;
    }
    .index_foot {
        min-width: auto;
    }
}


.form-group-sm .form-control {
	height: 32px;
	padding: 6px 13px;
	font-size: 12px;
	line-height: 1.5;
	border-radius: 2px
}

.form-group-sm select.form-control {
	height: 32px;
	line-height: 32px
}

.form-group-sm select[multiple].form-control,
.form-group-sm textarea.form-control {
	height: auto
}

.form-group-sm .form-control-static {
	height: 32px;
	min-height: 34px;
	padding: 7px 13px;
	font-size: 12px;
	line-height: 1.5
}
.form-group-sm .form-control {
	height: 32px;
	padding: 6px 13px;
	font-size: 12px;
	line-height: 1.5;
	border-radius: 2px
}

.form-group-sm select.form-control {
	height: 32px;
	line-height: 32px
}

.form-group-sm select[multiple].form-control,
.form-group-sm textarea.form-control {
	height: auto
}

.form-group-sm .form-control-static {
	height: 32px;
	min-height: 34px;
	padding: 7px 13px;
	font-size: 12px;
	line-height: 1.5
}
.form-group-lg .form-control {
	height: 46px;
	padding: 10px 18px;
	font-size: 18px;
	line-height: 1.3333333;
	border-radius: 4px
}

.form-group-lg select.form-control {
	height: 46px;
	line-height: 46px
}

.form-group-lg select[multiple].form-control,
.form-group-lg textarea.form-control {
	height: auto
}

.form-group-lg .form-control-static {
	height: 46px;
	min-height: 40px;
	padding: 11px 18px;
	font-size: 18px;
	line-height: 1.3333333
}
.form-group-lg .form-control+.form-control-feedback,
.input-group-lg+.form-control-feedback,
.input-lg+.form-control-feedback {
	width: 46px;
	height: 46px;
	line-height: 46px
}

.form-group-sm .form-control+.form-control-feedback,
.input-group-sm+.form-control-feedback,
.input-sm+.form-control-feedback {
	width: 32px;
	height: 32px;
	line-height: 32px
}

fieldset {
	min-width: 0;
	padding: 0;
	margin: 0;
	border: 0
}

legend {
	display: block;
	width: 100%;
	padding: 0;
	margin-bottom: 22px;
	font-size: 21px;
	line-height: inherit;
	color: inherit;
	border: 0;
	border-bottom: 1px solid transparent
}

label {
	display: inline-block;
	max-width: 100%;
	margin-bottom: 5px;
	font-weight: 700
}

input[type=search] {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box
}

input[type=checkbox],
input[type=radio] {
	margin: 4px 0 0;
	margin-top: 1px\9;
	line-height: normal
}

input[type=file] {
	display: block
}

input[type=range] {
	display: block;
	width: 100%
}

select[multiple],
select[size] {
	height: auto
}

input[type=file]:focus,
input[type=checkbox]:focus,
input[type=radio]:focus {
	outline: thin dotted;
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px
}

output {
	display: block;
	padding-top: 7px;
	font-size: 14px;
	line-height: 1.57142857;
	color: #76838f
}

.form-control {
	display: block;
	width: 100%;
	height: 36px;
	padding: 6px 0;
	font-size: 16px;
	line-height: 1.57142857;
	color: #76838f;
	background-color: #fff;
	background-image: none;
	border: 1px solid #dedede;
	border-radius: 3px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
	-webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
	-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	text-indent: 1em
}

.form-control:focus {
	border-color: #3875e8;
	outline: 0;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(98, 168, 234, .6);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(98, 168, 234, .6)
}

.form-control.focus,
.form-control:focus {
	border-color: #3875e8;
	-webkit-box-shadow: none;
	box-shadow: none
}

.form-control::-moz-placeholder {
	color: #a3afb7;
	opacity: 1
}

.form-control:-ms-input-placeholder {
	color: #a3afb7
}

.form-control::-webkit-input-placeholder {
	color: #a3afb7
}

.form-control::-ms-expand {
	background-color: transparent;
	border: 0
}

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
	background-color: #f3f7f9;
	opacity: 1
}

.form-control[disabled],
fieldset[disabled] .form-control {
	cursor: not-allowed
}

textarea.form-control {
	height: auto
}

input[type=search] {
	-webkit-appearance: none
}

@media screen and (-webkit-min-device-pixel-ratio:0) {

	input[type=date].form-control,
	input[type=time].form-control,
	input[type=datetime-local].form-control,
	input[type=month].form-control {
		line-height: 36px
	}

	.input-group-sm input[type=date],
	.input-group-sm input[type=time],
	.input-group-sm input[type=datetime-local],
	.input-group-sm input[type=month],
	input[type=date].input-sm,
	input[type=time].input-sm,
	input[type=datetime-local].input-sm,
	input[type=month].input-sm {
		line-height: 32px
	}

	.input-group-lg input[type=date],
	.input-group-lg input[type=time],
	.input-group-lg input[type=datetime-local],
	.input-group-lg input[type=month],
	input[type=date].input-lg,
	input[type=time].input-lg,
	input[type=datetime-local].input-lg,
	input[type=month].input-lg {
		line-height: 46px
	}
}

.form-group {
	margin-bottom: 20px
}

.checkbox,
.radio {
	position: relative;
	display: block;
	margin-top: 10px;
	margin-bottom: 10px
}

.checkbox label,
.radio label {
	min-height: 22px;
	padding-left: 20px;
	margin-bottom: 0;
	font-weight: 400;
	cursor: pointer
}

.checkbox input[type=checkbox],
.checkbox-inline input[type=checkbox],
.radio input[type=radio],
.radio-inline input[type=radio] {
	position: absolute;
	margin-top: 4px\9;
	margin-left: -20px
}

.checkbox+.checkbox,
.radio+.radio {
	margin-top: -5px
}


.checkbox-inline,
.radio-inline {
	position: relative;
	display: inline-block;
	padding-left: 20px;
	margin-bottom: 0;
	font-weight: 400;
	vertical-align: middle;
	cursor: pointer
}

.checkbox-inline+.checkbox-inline,
.radio-inline+.radio-inline {
	margin-top: 0;
	margin-left: 10px
}

fieldset[disabled] input[type=checkbox],
fieldset[disabled] input[type=radio],
input[type=checkbox].disabled,
input[type=checkbox][disabled],
input[type=radio].disabled,
input[type=radio][disabled] {
	cursor: not-allowed
}

.checkbox-inline.disabled,
.radio-inline.disabled,
fieldset[disabled] .checkbox-inline,
fieldset[disabled] .radio-inline {
	cursor: not-allowed
}

.checkbox.disabled label,
.radio.disabled label,
fieldset[disabled] .checkbox label,
fieldset[disabled] .radio label {
	cursor: not-allowed
}

.form-control-static {
	min-height: 36px;
	padding-top: 7px;
	padding-bottom: 7px;
	margin-bottom: 0
}

.form-control-static.input-lg,
.form-control-static.input-sm {
	padding-right: 0;
	padding-left: 0
}

.input-sm {
	height: 32px;
	padding: 6px 13px;
	font-size: 12px;
	line-height: 1.5;
	border-radius: 2px
}

select.input-sm {
	height: 32px;
	line-height: 32px
}

select[multiple].input-sm,
textarea.input-sm {
	height: auto
}

select.input-sm {
	padding-top: 0;
	padding-bottom: 0
}

.form-group-sm .form-control {
	height: 32px;
	padding: 6px 13px;
	font-size: 12px;
	line-height: 1.5;
	border-radius: 2px
}

.form-group-sm select.form-control {
	height: 32px;
	line-height: 32px
}

.form-group-sm select[multiple].form-control,
.form-group-sm textarea.form-control {
	height: auto
}

.form-group-sm .form-control-static {
	height: 32px;
	min-height: 34px;
	padding: 7px 13px;
	font-size: 12px;
	line-height: 1.5
}

.input-lg {
	height: 46px;
	padding: 10px 18px;
	font-size: 18px;
	line-height: 1.3333333;
	border-radius: 4px
}

select.input-lg {
	height: 46px;
	line-height: 46px
}

select[multiple].input-lg,
textarea.input-lg {
	height: auto
}

select.input-lg {
	padding-top: 0;
	padding-bottom: 0
}

.form-group-lg .form-control {
	height: 46px;
	padding: 10px 18px;
	font-size: 18px;
	line-height: 1.3333333;
	border-radius: 4px
}

.form-group-lg select.form-control {
	height: 46px;
	line-height: 46px
}

.form-group-lg select[multiple].form-control,
.form-group-lg textarea.form-control {
	height: auto
}

.form-group-lg .form-control-static {
	height: 46px;
	min-height: 40px;
	padding: 11px 18px;
	font-size: 18px;
	line-height: 1.3333333
}

.has-feedback {
	position: relative
}

.has-feedback .form-control {
	padding-right: 45px
}

.form-control-feedback {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
	display: block;
	width: 36px;
	height: 36px;
	line-height: 36px;
	text-align: center;
	pointer-events: none
}

.form-group-lg .form-control+.form-control-feedback,
.input-group-lg+.form-control-feedback,
.input-lg+.form-control-feedback {
	width: 46px;
	height: 46px;
	line-height: 46px
}

.form-group-sm .form-control+.form-control-feedback,
.input-group-sm+.form-control-feedback,
.input-sm+.form-control-feedback {
	width: 32px;
	height: 32px;
	line-height: 32px
}

.btn-primary {
	background-color: #3875e8;
	border-color: #3875e8;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.btn-primary.focus,
.btn-primary:focus,
.btn-primary:hover {
	background-color: #3875e8;
	border-color: #3875e8;
	opacity: .7;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	color: #fff
}

.btn-block {
	display: block;
	width: 100%;
	color: #fff
}

.btn-block+.btn-block {
	margin-top: 5px
}

.btn-lg {
	padding: 10px 18px;
	font-size: 18px;
	line-height: 1.3333333;
	border-radius: 4px
}