html,
body {
	width: 100%;
	height: 100%;
}

img {
	max-width: 100%;
}

@media (min-width: 1200px) {
	.container,
	.container-lg,
	.container-md,
	.container-sm,
	.container-xl {
		max-width: 1300px;
	}
}

.pop_up_video {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 999999999;
}

.pop_up_video>div {
	display: flex;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	justify-content: center;
	align-items: center;
}

.pop_up_video .video {
	position: relative;
	width: 100%;
	max-width: 1200px;
}

.pop_up_video .video>span {
	position: absolute;
	width: 60px;
	height: 60px;
	top: 0px;
	right: 0px;
	line-height: 60px;
	text-align: center;
	display: block;
	color: #fff;
	font-size: 30px;
	z-index: 99;
	cursor: pointer;
}
/**/

header {
	border-bottom: 1px solid #eaeaea;
	height: 112px;
}

header .header_top {
	height: 32px;
	width: 100%;
	background: #000;
	color: #fff;
	line-height: 32px;
}

header .header_top .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header .header_top .container>ul {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	color: #fff;
}

header .header_top .container>ul>li>a {
	    display: flex;
    color: #fff;
    align-items: center;
    justify-content: flex-start;
}

header .header_top .container>ul>li {
	position: relative;
	padding: 0 15px;
}

header .header_top .container>ul>li:before {
	content: "";
	position: absolute;
	right: 0px;
	width: 1px;
	top: 0;
	bottom: 0;
	background: #fff;
	opacity: 0.3;
}

header .header_top .container>ul>li:last-child:before {
	display: none;
}

header .header_top .container>ul>li img {
	width: 20px;
	margin-right: 5px;
}

header .header_top .container>ul .lang {
	position: relative;
	cursor: pointer;
}

header .header_top .container>ul .lang:hover {
	background: #009fdc;
}

header .header_top .container>ul .o-drop-down {
	display: none;
	position: absolute;
	top: 100%;
	right: 0;
	left: 0;
	background: #fff;
	border: 1px solid #eaeaea;
	text-align: center;
	height: 50px;
	line-height: 50px;
	color: #333;
	z-index: 2;
}

header .header_top .container>ul .lang:hover .o-drop-down {
	display: block;
}

header .header_top .container>ul .o-drop-down:hover {
	background: #009fdc;
	color: #fff;
}

header .header_nav {
	height: 80px;
}

header .header_nav.active {
	position: fixed;
	right: 0;
	left: 0;
	top: 0;
	z-index: 888;
	background: #fff;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

header .header_nav .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
}

header .header_nav .container .fupad {
	width: 140px;
}

header .navbar {
	padding: 0;
}

header .nav-link {
	display: flex;
	padding: 14px 0;
	font-size: 16px;
	color: #000;
	margin: 0 10px;
	height: 80px;
	align-items: center;
}

header a.inquiry {
	display: inline-block;
	width: 110px;
	height: 39px;
	border-radius: 50px;
	text-align: center;
	line-height: 39px;
	background: #009fdc;
	color: #fff;
	margin-left: 20px;
	transition: all 0.3s;
}

header a.inquiry:hover {
	background: #0062bf;
	transition: all 0.3s;
}

header .navbar-nav .dropdown-menu {
	left: 50%;
	padding: 0;
	overflow: hidden;
	transform: translateX(-50%);
}

header .navbar-nav .dropdown-menu li {
	border-bottom: 1px solid #EAEAEA;
}

header .navbar-nav .dropdown-menu li a {
	line-height: 42px;
	text-align: center;
}

header .navbar-nav .dropdown-menu li:last-child {
	border-bottom: none;
}

header .navbar-nav .dropdown-menu li a:hover {
	background: #009fdc;
	color: #fff;
}

header .nav-item:hover>a {
	color: #009fdc;
}


/**/

.mobile_header-box {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 50px;
	display: none;
	z-index: 9999999999;
}

.mobile_header {
	position: relative;
	z-index: 1100;
	background: #ffffff;
	color: #333333;
	width: 100%;
	transition: all 0.3s;
}

.mobile_header.active {
	position: fixed!important;
	z-index: 1100;
	left: 0px;
	right: 0;
	top: 0px;
	transition: all 0.3s;
}

.mobile_header a {
	color: #333333;
}

.mobile_header_title {
	height: 50px;
	background: #ffffff;
	box-shadow: rgb(102, 102, 102) 0.01rem 0.01rem 0.08rem;
}

.mobile_header_title img {
	display: inline-block;
	height: 30px;
}

.mobile_header_list {
	background: #0b0b0b;
	width: 100%;
	cursor: pointer;
	color: #ffffff;
	display: none;
	min-height: 100vh;
}

.mobile_header_list .card {
	background: none;
}

.mobile_header_list input {
	background: transparent;
	border: 0;
	padding-left: 20px;
	width: calc(100% - 40px);
	height: 38px;
	line-height: 38px;
	color: #fff;
	background: #111;
	margin: 6px 20px 6px 0;
}

.mobile_header_list .btn:focus {
	outline: none;
	box-shadow: none;
}

.mobile_header_list input:focus {
	border: none;
	box-shadow: none;
	outline: none;
	background-color: transparent;
}

.mobile_header_list input:-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	color: #fff !important;
}

.mobile_header_list input::-webkit-input-placeholder {
	color: #fff !important;
}

.mobile_header_list input::-moz-placeholder {
	/* Mozilla Firefox 19+ */
	color: #fff !important;
}

.mobile_header_list input:-moz-placeholder {
	/* Mozilla Firefox 4 to 18 */
	color: #fff !important;
}

.mobile_header_list .card h5 img {
	float: right;
	margin-top: 0.4rem;
	margin-right: 0.25rem;
}

.mobile_header_list .card h5 img:nth-child(2) {
	display: none;
}

.mobile_header_list .card h5 {
	line-height: 50px;
	font-size: 14px;
	padding-left: 15px;
	color: #ffffff;
	position: relative;
	cursor: pointer;
	border-bottom: 1px dashed #999;
	width: 90%;
	margin: auto;
}

.mobile_header_list .card h5 .btn {
	float: right;
	margin-top: 0.4rem;
	color: #ffffff;
	margin-right: 3%;
}

.mobile_header_list .card h5::after {
	position: absolute;
	content: '';
	width: 6px;
	height: 6px;
	transform: rotate(45deg);
	border-bottom: 1px solid #999;
	border-right: 1px solid #999;
	right: 5%;
	top: 50%;
	margin-top: -0.06rem;
	transition-property: transform;
	transition-duration: 0.15s;
	transition-timing-function: ease;
}

.mobile_header_list .card.nodropdown h5::after {
	border-bottom: none;
	border-right: none
}

.mobile_menu_title.active h5::after {
	-webkit-transform: translate3d(0, 0px, 0) rotate(-135deg);
	transform: translate3d(0, 0px, 0) rotate(-135deg);
}

.mobile_header_list .card:first-child h5::after {
	width: 0;
	height: 0;
}

.mobile_header .card-body {
	background: #111111;
	padding: 15px;
}

.card-body ul {
	width: 90%;
	margin: auto;
}

.card-body ul li {
	list-style: none;
}

.card-body ul li a {
	color: #ffffff;
	line-height: 36px !important;
}

.moblie_title_left {
	float: left;
	padding-top: 10px;
	padding-left: 6%;
}

.moblie_title_right {
	float: right;
	width: 12%;
	padding-top: 10px;
	text-align: center;
	margin-top: 25px;
	cursor: pointer;
}

.menuicon {
	width: 20px;
	height: 2px;
	background: #999;
	position: relative;
	left: 50%;
	top: 50%;
	margin-top: -10px;
	margin-left: -10px;
}

.menuicon::before {
	content: '';
	width: 20px;
	height: 2px;
	background: #999;
	position: absolute;
	left: 0;
	top: -6px;
	z-index: 999;
	transition-property: transform;
	transition-duration: 0.15s;
	transition-timing-function: ease;
}

.menuicon::after {
	content: '';
	width: 20px;
	height: 2px;
	background: #999;
	position: absolute;
	left: 0;
	top: 6px;
	z-index: 999;
	transition-property: transform;
	transition-duration: 0.15s;
	transition-timing-function: ease;
}

.moblie_title_right.is-active .menuicon {
	background: none;
}

.moblie_title_right.is-active .menuicon::before {
	-webkit-transform: translate3d(0, 8px, 0) rotate(45deg);
	transform: translate3d(0, 8px, 0) rotate(45deg);
}

.moblie_title_right.is-active .menuicon::after {
	-webkit-transform: translate3d(0, -4px, 0) rotate(-45deg);
	transform: translate3d(0, -4px, 0) rotate(-45deg);
}

.card .search__form {
	display: flex;
	width: 90%;
	margin: auto;
	height: 50px;
	align-items: center;
	justify-content: space-between;
}

.card .search__form i {
	font-size: 20px;
}


/**/

.banner-wrapper .swiper-slide,
.banner-wrapper.swiper-container {
	width: 100%;
	height: 100%;
}

#banner .swiper-slide {
	position: relative;
	width: 100%;
	height: 80vh;
}

#banner .swiper-slide img {
	width: 100%;
}

#banner .swiper-slide .pc-video {
	position: relative;
	z-index: 0;
	width: 100%;
	height:100%;
	    object-fit: cover;
}
.ph_banner{
	display:none;
	width: 100%;
	height:100%;
}
.banner-text {
	display: flex;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 3;
	align-items: center;
	justify-content: flex-start;
}

.banner-text p {
	font-size: 20px;
}

.banner-text-box {
	transform: translateY(200px);
	opacity: 0;
	transition: all .8s;
	color: #fff;
}

.banner-text-box i {
	display: inline-block;
	width: 50px;
	height: 2px;
	background: #009fdc;
	margin: 0 auto 30px;
}

.banner .swiper-container .swiper-wrapper .swiper-slide .banner-text-box.active {
	transform: translateY(0);
	-ms-transform: translateY(0);
	-webkit-transform: translateY(0);
	opacity: 1;
	transition: all .8s;
}

.banner .swiper-container .swiper-wrapper .swiper-slide .banner-text-box h1 {
	font-weight: bolder;
	color: #fff;
	margin-bottom: 2rem;
	letter-spacing: 0.1rem;
	font-size: 48px;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
}

.banner-text-box a.more {
	margin-top: 2rem;
	display: flex;
	width: 11rem;
	height: 3rem;
	background: #3e472c;
	color: #fff;
	border-radius: 3px;
	align-items: center;
	justify-content: center;
}

.banner-wrapper .swiper-slide,
.swiper-container {
	width: 100%;
	height: 100%;
}

#banner {
	position: relative;
	width: 100%;
}

#banner .swiper-slide {
	position: relative;
	text-align: center;
	font-size: 18px;
	background: #fff;
}

#banner .swiper-slide .title-tx h1 {
	font-weight: bold;
	color: #fff;
	text-align: left;
	color: #277916;
	font-size: 62px;
}

#banner .swiper-slide .title-tx p {
	display: inline-block;
	margin-top: 20px;
	font-size: 20px;
	font-weight: bold;
	color: #666;
}

#banner .swiper-slide .title-tx {
	transform: translateY(50px);
	opacity: 0;
	transition: all .4s;
}

.swiper-button-next,
.swiper-button-prev {
	padding: 10px;
}

.banner_button {
	display: flex;
	position: absolute;
	top: 50%;
	width: 50px;
	height: 60px;
	margin-top: -30px;
	background: rgba(0, 0, 0, 0);
	z-index: 33;
	align-items: center;
	justify-content: center;
	font-size: 40px;
	color: #fff;
	transition: all 0.3s;
	cursor: pointer;
}

.banner_button:hover {
	background: rgba(0, 0, 0, 0.3);
	transition: all 0.3s;
}

.banner_button.button-next {
	right: 0;
}

.banner_button.button-left {
	left: 0;
}

#banner .ani-slide .title-tx {
	transform: translateY(0);
	opacity: 1;
}

#banner .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	border-radius: 0;
	transition: all 0.4s;
	border: 2px solid #fff;
	background: rgba(255, 255, 255, 0);
	border-radius: 50%;
	opacity: 1;
}

#banner .swiper-pagination-bullet-active {
	background: #fff;
}

#banner .swiper-pagination {
	text-align: center;
	position: inherit;
}

#banner .swiper-pagination-bullet {
	position: relative;
	margin: 0 10px;
}

#banner .swiper-container-horizontal>.swiper-pagination-bullets,
#banner .swiper-pagination-custom,
.swiper-pagination-fraction {
	bottom: 20%;
	left: 0;
}

.buttonbox {
	position: absolute;
	bottom: 5%;
	left: 0;
	width: 100%;
	z-index: 2;
}

.banner-img {
	width: 100%;
}

#banner-img .banner-txt {
	display: flex;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	align-items: center;
	text-align: center;
}

#banner-img .banner-txt p {
	margin-top: 00px;
	font-weight: bold;
	font-size: 50px;
	color: #fff;
	line-height: 50px;
	opacity: 0.5;
}

#banner-img .banner-txt h2 {
	font-size: 36px;
	font-weight: bold;
	position: relative;
	z-index: 1;
	color: #fff;
	margin-top: 30px;
}

.banner-nav ul li a {
	position: relative;
	display: inline-block;
	width: 26px;
	height: 26px;
	cursor: pointer;
}

.banner-nav ul li a b {
	position: absolute;
	display: inline-block;
	width: 6px;
	height: 6px;
	background: #ffffff;
	border-radius: 100%;
	top: 50%;
	left: 50%;
	margin-top: -3px;
	margin-left: -3px;
	opacity: 0.5;
}

.banner-nav ul li.active a b {
	background: #ffffff;
	opacity: 1;
}

.banner-1 {
	position: relative;
	z-index: 10;
	background: rgba(0, 0, 0, 0.1);
}

.banner-btn {
	position: absolute;
	right: 3%;
	bottom: 10%;
	z-index: 1000;
}

.banner-btns {
	display: inline-block;
	position: relative;
	width: 50px;
	height: 50px;
	border: 1px solid #ffffff;
	border-radius: 50%;
	font-size: 30px;
	color: #ffffff;
	text-align: center;
	line-height: 46px;
}

.banner-btns:hover {
	cursor: pointer;
}

.banner-btns:focus {
	outline: none;
}

.banner-btns.banner-btn-next {
	margin-right: 15px;
}


/**/

.warrpbox {
	padding: 80px 0;
}

.title {
	margin-bottom: 40px;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}

.title p {
	font-size: 54px;
	font-weight: bold;
	color: #eaeaea;
	margin-bottom: 15px;
}

.title h1 {
	display: flex;
	font-size: 36px;
	font-weight: bold;
	color: #000;
	letter-spacing: 3px;
	align-items: flex-end;
	margin-bottom: 0;
}

.title h1 img {
	margin-left: 10px;
	margin-bottom: 5px;
}

.title a.more {
	position: relative;
	z-index: 6;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	background: #fff;
	border-radius: 50px;
	padding-right: 18px;
	overflow: hidden;
}

.title a.more span {
	position: relative;
	z-index: 1;
	transition: all 0.3s;
}

.title a.more i {
	position: relative;
	z-index: 1;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	background: #009fdc;
	margin-right: 10px;
}

.title a.more:before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -25px;
	width: 50px;
	height: 50px;
	transition: all 0.3s;
	z-index: 0;
	border-radius: 50%;
	background: #009fdc;
}

.title a.more:hover:before {
	margin-top: -75px;
	width: 150px;
	height: 150px;
	transition: all 0.3s;
}

.title a.more:hover span {
	color: #fff;
	transition: all 0.3s;
}


/**/

.index_products {
	background: #f0f4f7;
}

.cate_tab ul {
	display: flex;
	margin-bottom: 10px;
}

.cate_tab li {
	margin-right: 15px;
	padding: 6px 15px;
	border-radius: 30px;
}

.cate_tab li a {
	color: #000;
}

.cate_tab li.cur {
	background: #009fdc;
}

.cate_tab li.cur a {
	color: #fff;
}

.pro_box ul {
	display: flex;
	flex-wrap: wrap;
	margin-left: -8px;
	margin-right: -8px;
}

.pro_box ul li.recome {
	width: 100%;
	background: #0062bf;
	border-radius: 10px;
	padding: 0px 40px;
	
}
.pro_box ul li.recome a{
	display: flex;
	justify-content: space-around;
}
.pro_box ul li.recome .pro_name {
	display: flex;
	justify-content: space-around;
	flex-direction: column;
	padding: 40px 0;
	text-align: left;
}

.pro_box ul li.recome .pro_name h3 {
	color: #fff;
	margin-top: 15px;
	margin-bottom: 0;
	font-size: 20px;
}

.pro_box ul li.recome .pro_name h3 span {
	display: inline-block;
	margin-left: 8px;
	font-weight: bold;
}

.pro_box ul li.recome .pro_name span.more {
	display: flex;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 1px solid #fff;
	align-items: center;
	justify-content: center;
	color: #fff;
}

.pro_box ul li.recome .pro_name span.more:hover {
	background: #009fdc;
}

.pro_info {
	display: flex;
	color: #fff;
	margin: 0 30px;
	flex-direction: column;
	justify-content: center;
	text-align: left;
	
}
.pro_info>div{
	    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    line-clamp: 7;
-webkit-box-orient: vertical;
}
.pro_img {
	position: relative;
	width: 600px;
	height: 100%;
}

.pro_img>img {
	position: relative;
	z-index: 1;
	width: 100%;
	margin-top: -200px;
	margin-bottom: -80px;
}

.quan {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.quan .q {
	width: 600px;
	height: 600px;
	background: #009fdc;
	border-radius: 50%;
}

.pro_box li>a {
	display: block;
	width: 100%;
}

.pro_box li {
	width: calc(25% - 16px);
	border-radius: 10px;
	background: #fff;
	text-align: center;
	margin: 8px;
	transition: all 0.3s;
}

.pro_box li.nocome {
	border: 1px solid #eaeaea;
	overflow: hidden;
}

.pro_box li.nocome h3,
.pro_box li.nocome p {
	font-size: 18px;
	color: #000;
	font-weight: bold;
}

.pro_box li .text-box {
	margin-bottom: 28px;
}

.pro_box li .img-box {
	overflow: hidden;
	margin-top: -20px;
}

.pro_box li.nocome:hover {
	border-bottom: 5px solid #009fdc;
	margin-top: -2px;
	transition: all 0.3s;
}

.pro_box li .img-box img {
	transform: scale(1.1);
}


/**/

.index_about {
	position: relative;
	overflow: hidden;
}

.index_about .about_text {
	position: relative;
	display: flex;
	width: 75%;
	padding: 30px 100px 50px 30px;
	border-radius: 12px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
	align-items: flex-start;
	z-index: 1;
	background: #fff;
}

.index_about .about_text>img {
	width: 40px;
	margin-right: 30px;
}

.index_about .about_text h5 {
	margin-bottom: 26px;
	font-weight: bold;
	color: #000;
	margin-top: 24px;
}

.index_about .about_text .more {
	display: inline-block;
	margin-top: 40px;
	color: #000;
}

.index_about .about_text .more i {
	margin-left: 10px;
}

.index_about .about_text>div>div {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 7;
	line-clamp: 7;
	-webkit-box-orient: vertical;
}

.index_about .about_text .video_tb,
.abimg .video_tb {
	position: absolute;
	display: flex;
	top: 50%;
	margin-top: -52px;
	right: -52px;
	width: 104px;
	height: 104px;
	background: #0062bf;
	border: 8px solid #fff;
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s;
}

.abimg .video_tb {
	margin-top: 0;
	position: initial;
	background: rgba(0, 159, 220, 0.5);
	border: 8px solid rgba(255, 255, 255, 0.2);
}

.index_about .about_text .video_tb img {
	width: 50px;
}

.index_about .about_text .video_tb:hover {
	right: -60px;
	transition: all 0.3s;
}

.index_about .abimg {
	position: absolute;
	z-index: 0;
	top: 8%;
	right: 0;
	left: 50%;
	bottom: 260px;
	background: url(images/bj.jpg) no-repeat center;
	border-radius: 15px;
	background: #000000;
}

.index_about .abimg>div {
	width: 100%;
	height: 100%;
	display: none;
	align-items: center;
	justify-content: center;
}

.index_about .container {
	position: relative;
	z-index: 1;
}

.number_dh {
	display: flex;
	width: 120%;
	flex-wrap: wrap;
	margin-left: -10%;
	justify-content: space-between;
	align-items: center;
	height: 150px;
	margin-top: 30px;
}

.number_dh li {
	position: relative;
	margin: 15px;
	width: calc(25% - 30px);
	text-align: center;
}

.number_dh li:before {
	position: absolute;
	content: "";
	width: 1px;
	top: 0;
	bottom: 0;
	right: -15px;
	background: url(../images/line.png)no-repeat center;
	background-size: auto 100%;
	opacity: 0.5;
}

.number_dh li:last-child:before {
	display: none;
}

.number_dh li h3 {
	font-family: "Poppins";
	font-size: 50px;
	font-weight: bold;
	color: #009fdc;
}

.number_dh li p {
	font-size: 18px;
	color: #000;
}


/**/

.index_application {
	position: relative;
}

.index_application .container {
	position: relative;
	z-index: 1;
}

.index_application:before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 42.4%;
	content: "";
	background: #0062bf;
	z-index: 0;
}

.index_application .title h1 {
	color: #fff;
}

.index_application .title p {
	color: #ffffff4d;
}

.index_application ul {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	border-radius: 15px;
	overflow: hidden;
}

.index_application ul li {
	width: 25%;
}

.index_application ul li img {
	width: 100%;
}

.craft-pag .swiper-pagination {
	position: initial;
}

.craft-pag .swiper-pagination-bullet {
	margin: 0 5px;
	width: 8px;
	height: 8px;
	background: #fff;
}

.craft-pag .swiper-pagination-bullet.swiper-pagination-bullet-active {
	width: 30px;
	border-radius: 8px;
}


/**/

.index_news {
	padding-top: 20px;
}

.index_news .title .more {
	background: #f0f4f7;
}

.index_news .news_list {
	display: flex;
	flex-wrap: wrap;
	border-top: 1px solid #eaeaea;
	border-bottom: 1px solid #eaeaea;
}

.index_news .news_list .news_text {
	width: 65%;
}

.index_news .news_list li a {
	display: flex;
	padding: 35px 0;
	align-items: center;
	justify-content: space-between;
}

.index_news .news_list li .img_box {
	border-radius: 15px;
	overflow: hidden;
	margin-left: 5%;
	width: 30%;
}

.index_news .news_list li .img_box img {
	width: 100%;
}

.index_news .news_list li .date {
	display: flex;
	margin-bottom: 40px;
	align-items: center;
	justify-content: space-between;
	color: #000;
}

.index_news .news_list li .text h3 {
	font-weight: bold;
	color: #000;
	font-size: 16px;
	margin-bottom: 26px;
}

.index_news .news_list li .text {
	margin-bottom: 20px;
}

.index_news .news_list li .text p {
	line-height: 20px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
}

.index_news .news_list li {
	position: relative;
	width: 50%;
}

.index_news .news_list li a.list {
	padding: 25px 0;
	padding-left: 20px;
}

.index_news .news_list li:first-child {
	width: 100%;
}

.index_news .news_list li a.list {
	align-items: center;
	justify-content: flex-start;
	border-top: 1px solid #EAEAEA;
	color: #000;
}

.index_news .news_list li a.list p {
	width: calc(100% - 136px);
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	line-clamp: 1;
	-webkit-box-orient: vertical;
	font-weight: bold;
	font-size: 16px;
}

.index_news .news_list li a.list span {
	display: inline-block;
	width: 100px;
	text-align: right;
}

.index_news .news_list li a.list i {
	display: inline-block;
	width: 6px;
	height: 6px;
	background: #000;
	margin-right: 30px;
	border-radius: 50%;
}

.index_news .news_list li:nth-child(2n) a {
	padding-right: 20px;
	padding-left: 0;
}

.index_news .news_list li:nth-child(2n):before {
	content: "";
	position: absolute;
	top: 30%;
	bottom: 30%;
	width: 1px;
	right: 0;
	background: #eaeaea;
}

.index_news .news_list li:hover h3,
.index_news .news_list li:hover a.list p {
	color: #009fdc;
}


/**/

footer {
	background: url(../images/fbj.jpg) no-repeat top center fixed;
	background-size: cover;
}

footer>.container {
	padding-top: 80px;
	padding-bottom: 80px;
}

footer .footer_bottom {
	background: #080808;
	padding: 15px 0;
}

footer .footer_bottom .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #fff;
}

footer .liuyan {
	display: flex;
	color: #fff;
	justify-content: space-between;
	align-items: center;
}

footer .liuyan h1 {
	font-weight: bold;
	font-size: 36px;
	margin-bottom: 20px;
	letter-spacing: 3px;
}

footer .liuyan p {
	font-size: 28px;
	font-weight: lighter;
	letter-spacing: 3px;
}

footer .feedback-form {
	display: flex;
	border: 1px solid rgba(255, 255, 255, 0.5);
	height: 50px;
	border-radius: 50px;
	width: calc(100% - 600px);
	justify-content: space-between;
	background: rgba(255, 255, 255, 0.2);
}

footer .feedback-form input,
footer .feedback-form .form-control:focus {
	background: none;
	border: none;
	width: calc(100% - 140px);
	height: 48px;
	padding-left: 30px;
	outline: 0;
	box-shadow: initial;
}

footer .feedback-form button {
	padding: 0 18px;
	color: #fff;
	background: #009fdc;
	height: 48px;
	border-radius: 50px;
	font-size: 14px;
	outline: 0;
}

footer .feedback-form button:hover {
	color: #fff;
	background: #0062bf;
}

footer .footer_box {
	margin-top: 80px;
}

footer .link-fa {
	margin-top: 40px;
	margin-bottom: 40px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

footer .link-fa a {
	display: flex;
	color: #fff;
	border-radius: 50%;
	width: 48px;
	height: 48px;
	margin-right: 16px;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	opacity: 1;
	transition: all 0.3s;
	background: rgba(255, 255, 255, 0.1);
}

footer .link-fa a:hover {
	background: #4c7025;
	color: #fff;
	transition: all 0.3s;
}

footer .contact_info {
	color: #fff;
}

footer .footer_box {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

footer .footer_box .footer_box_right {
	display: flex;
	flex-wrap: wrap;
	width: calc(80% - 350px);
	margin-bottom: -30px;
	justify-content: space-between;
}

footer .footer_box .footer_box_right .foot-nav-item {
	display: flex;
	width: 33.3333%;
	flex-direction: column;
	align-items: flex-start;
	margin-bottom: 30px;
}

footer .footer_box .foot-nav-title {
	font-weight: bold;
	color: #fff;
	opacity:1!important;
	margin-bottom: 20px;
}

footer .footer_box a {
	color: #fff;
	opacity: 0.6;
}

footer .footer_box a:hover {
	opacity: 1;
}

footer .footer_box .footer_box_right .foot-nav-item:nth-child(3n) {
	width: initial;
}


/**/

#banner-img {
	display: flex;
	border-bottom-left-radius: 24px;
	border-bottom-right-radius: 24px;
	min-height: 600px;
	align-items: center;
	justify-content: center;
}

#banner-img h3 {
	font-size: 36px;
	font-weight: bolder;
	color: #fff;
	text-align: center;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
	letter-spacing: 3px;
	margin-bottom: 0;
}

.warpper-ny {
	padding: 100px 0;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.title-ny {
	margin-bottom: 40px;
}

.title-ny p {
	font-size: 30px;
	margin-bottom: 10px;
	font-weight: bold;
	color: #eaeaea;
}

.title-ny h2 {
	font-size: 30px;
	font-weight: bold;
	color: #000;
	letter-spacing: 3px;
}

.content_con_box {
	padding: 80px 0;
	display: flex;
	min-height: 800px;
	align-items: center;
	justify-content: center;
	margin: 0 40px;
	border-radius: 15px;
}

.video_box {
	min-height: 500px;
	background: url(../images/vibj.jpg) no-repeat center fixed;
	background-size: cover;
	align-items: center;
}

.video_box .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: column;
}

.player-box {
	display: flex;
	position: relative;
	width: 70px;
	height: 70px;
	background: #009fdc;
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.player-box:hover {
	background: #0062bf;
}

.player-box>img {
	margin-right: -5px;
}

.player-box:before {
	position: absolute;
	content: "";
	left: 0;
	top: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	-webkit-animation: circlepulse2 1.5s ease 0s infinite;
	animation: circlepulse2 1.5s ease 0s infinite;
	z-index: 0;
}

.video_txt {
	margin-bottom: 80px;
}

.video_txt p {
	margin-top: 20px;
	color: #fff;
}

.video_txt p i {
	float: left;
	margin-right: 15px;
	margin-top: 12px;
	display: block;
	width: 286px;
	height: 1px;
	background: #fff;
	opacity: 0.5;
}


/**/

.about_informashion {
	position: relative;
}

.about_informashion_text {
	width: 50%;
}

.about_informashion_text ul {
	display: flex;
	padding: 25px;
	padding-left: 0;
	flex-direction: column;
	justify-content: space-between;
}

.about_informashion_text li {
	list-style: none;
	width: 100%;
	padding: 20px;
	/*box-shadow: 0 0 5px rgba(0,0,0,0.2);*/
	border-radius: 10px;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	color: #333;
	padding-left: 0;
}

.about_informashion_text li>div {
	float: left;
	width: calc(100% - 75px);
	margin-left: 20px;
}

.about_informashion_text li p.linav {
	font-weight: normal;
	margin-bottom: 5px;
	font-size: 20px;
	font-weight: bold;
	color: #009fdc;
}

.about_informashion_text li:after {
	content: '.';
	height: 0;
	clear: both;
	visibility: hidden;
	display: block;
	font-size: 0
}

.about_informashion_text li em {
	float: left;
	display: block;
	font-size: 22px;
	color: #fff;
	width: 55px;
	height: 55px;
	text-align: center;
	line-height: 55px;
	border-radius: 50%;
	background: #009fdc;
}

.about_informashion .map {
	position: absolute;
	right: 0;
	top: 0;
	left: 50%;
	bottom: 0;
	width: 50%;
}
.about_informashion .map a{
	display:block;
	width:100%;
	height:100%
}
.frame {
	background: #f0f4f7;
}

.feedback-form .form-control-input {
	position: relative;
}

.feedback-form .form-control-input .form-control,
.feedback-form .form-textarea {
	background-color: #ffffff7a;
	outline: 0;
}

.feedback-form .form-control-input .form-control,
.feedback-form .form-textarea {
	width: 100%;
	padding: 15px 15px 15px 20px;
	height: 57px;
	line-height: 26px;
	color: #000;
	background-repeat: no-repeat;
	background-position: 0.5rem center;
	background-size: 0.5rem;
	border: 1px solid #e5e5e5;
	border-radius: 0px;
	transition: all .3s;
	outline: 0;
}

.feedback-form .form-control-input .form-control,
.feedback-form .form-textarea {
	background-color: #ffffff7a;
}

.feedback-form .form-control-input .form-control:focus {
	box-shadow: initial;
}

.feedback-form .form-textarea {
	padding-left: 20px;
	height: 180px;
}

#feedback .feedback-submit,
.feedback-submit.btn{
	float: right;
	background: #009fdc;
	color: #ffffff;
	border-radius: 0;
	width: 100%;
	max-width: 300px;
	height: 51px;
	border-radius: 51px;
}
.feedback-submit.btn{
	max-width:140px;
	height:48px;
}
.flex .feedback-submit {
	max-width: 100%;
}

#feedback .feedback-submit:hover {
	background: #0062bf;
	color: #fff;
}


/**/

.title-wrapper .swiper-slide {
	display:flex;
	min-width: 10rem;
	height: 3.1rem;
	width: auto;
	color: #666;
	border-radius: 3px;
	border: 1px solid #eaeaea;
	align-items: center;
    justify-content: center;
}
.title-wrapper .swiper-slide a{
	display: flex;
	width:100%;
	height:100%;
	align-items: center;
	justify-content: center;
}
.title-wrapper .swiper-slide.active {
	background: #009fdc;
	
	border: 1px solid #009fdc;
}
.title-wrapper .swiper-slide.active a{
	color: #fff;
}
.title-wrapper {
	margin-top: -4rem!important;
	margin-bottom: 30px!important;
}

.news-contain {
	display: flex;
	flex-wrap: wrap;
	margin-left: -15px;
	margin-right: -15px;
	margin-top: -15px;
}

.news-item {
	position: relative;
	width: calc(33.333% - 30px);
	margin: 15px;
}

.news-item h3 {
	font-size: 18px;
	font-weight: bold;
	line-height: 24px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: #009fdc;
	margin-top: 10px;
	margin-bottom: 20px;
}

.news-item .text_box p {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
}

.news-item .text_box {
	padding: 15px 20px;
}

.news-item .text_box>div.morebox {
	margin-top: 20px;
	padding-top: 15px;
	font-size: 14px;
	border-top: 1px solid #eaeaea;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.news-item .text_box>div.morebox .more-btn {
	border: none;
	padding: 5px 10px;
	height: initial;
	width: initial;
	line-height: 20px;
}

.news-item .text_box>div.morebox .more-btn i {
	margin-left: 15px;
}

.news-item:hover .img_box img {
	transform: scale(1.05);
	transition: all 0.5s;
}

.news-item:before {
	content: "";
	position: absolute;
	left: 0;
	right: 100%;
	bottom: 0;
	height: 3px;
	background: #009fdc;
	transition: all 0.3s;
}

.news-item:hover:before {
	right: 0;
	transition: all 0.3s;
}

.news_main_title h3 {
	font-size: 1.8rem;
	font-weight: bold;
	color: #000;
}

.news_main_title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 0 2rem;
	border-bottom: 1px solid #ddd;
}

a.back {
	display: flex;
	width: 3.5rem!important;
	height: 3rem;
	align-items: center;
	justify-content: center;
	border: 1px solid #eaeaea;
	border-radius: 3px;
}

a.back:hover {
	color: #fff;
	background: #009fdc;
}

.page_tb {
	padding-top: 2rem;
	border-top: 1px solid #ddd;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.page_tb a {
	color: #999;
}

.page_tb i {
	margin: 0 0.7rem;
}

.page_tb a:hover,
.news_link a.more_cen:hover {
	color: #3e472c;
}

.banner-news {
	min-height: 230px!important;
}

.news_link {
	margin-top: 2rem;
}

.news_link a {
	margin-right: 1rem;
	color: #999;
}

.news_link a i {
	margin-right: 0.4rem;
}

.news_details {
	min-height: 460px;
	padding: 2rem 0;
}

.news_details p {
	margin-bottom: 0.7rem;
}

.banner-news .container-banner {
	min-height: 300px;
}

.img_box {
	overflow: hidden;
}

.img_box img {
	width: 100%;
	transition: all 0.3s;
}

.equipment-contain .text_box h4 {
	font-size: 16px;
	text-align: center;
}

.news-contain .img_box {
	border-radius: 8px;
}

.faq_text h3 {
	font-size: 24px;
	font-weight: bold;
	color: #000;
}

.faq_text h5 {
	font-size: 20px;
	font-weight: bold;
	color: #000;
}

.faq_text p {
	font-size: 18px;
	color: #333;
	line-height: 36px;
}


/**/

.top_by {
	padding: 20px 0 15px;
	background: #f0f4f7;
}

.top_by h4 {
	font-weight: bold;
	color: #009fdc;
	font-size: 20px;
}

.product-center-list {
	margin-bottom: 60px;
}

.product-center-list ul {
	display: flex;
	flex-wrap: wrap;
	margin-top: 10px;
	margin-left: -10px;
	margin-right: -10px;
}

.product-center-list li {
	position: relative;
	
	padding: 15px;
	width: calc(33.3333% - 20px);
	margin: 10px;
	box-shadow: initial;
	
	border: 1px solid #EAEAEA;
}
.product-center-list li>a{
	display: flex;
	flex-direction: column-reverse;
	align-items: center;
	cursor: pointer;
}
.product-center-list li p {
	margin-top: 20px;
}

.left-nav {
	position: sticky;
	top: 80px;
}

.product-center-list li:hover:after {
	right: 0;
}

.newprocenter .product-center-list {
	width: 100%;
}

.newprocenter .product-center-list li {
	width: calc(25% - 20px);
}

.pro-type-mobile {
	display: none;
}

.Products-head {
	padding: 40px 0;
	background: #f1f5f9;
}

.left-nav {
	width: 320px;
}

.left-nav>div.pro-nav-box {
	margin-top: 40px;
	width: 100%;
	height: calc(100% - 55px);
	overflow: hidden;
	overflow-y: auto;
}

.close-pro {
	display: none;
	text-align: right;
	padding: 10px 15px;
	height: 50px;
	font-size: 20px;
	margin-bottom: 5px;
}

.left-nav li {
	padding: 15px 15px;
	font-size: 14px;
	border-bottom: 1px solid #EAEAEA;
}

.left-nav li.cur {
	background: #dbefff;
}

.left-nav li:last-child {
	border: none;
}

.pro-tab {
	display: flex;
	padding: 40px 0;
	align-items: center;
	justify-content: center;
}

.pro-tab li a {
	display: block;
}

.pro-tab li a:hover {
	color: #CD152C;
}

.pro-tab li {
	position: relative;
	background: #fff;
	color: #666;
	line-height: 60px;
	padding: 0 30px;
	margin: 0 15px;
	border: 1px solid #EAEAEA;
	min-width: 230px;
	text-align: center;
}

.pro-tab li:hover {
	border-color: #CD152C;
}

.pro-tab li.cur:before {
	position: absolute;
	content: '';
	left: 50%;
	bottom: -8px;
	margin-left: -10px;
	border-right: 10px solid transparent;
	border-left: 10px solid transparent;
	border-top: 8px solid #000;
}

.pro-tab li.cur {
	background: #000;
}

.pro-tab li.cur a {
	color: #fff;
}

.pro-type.cur .pro-type-nav {
	background: #1966b1;
	color: #fff;
	border-bottom: 0;
}

.pro-type .pro-type-nav i {
	transform: rotate(270deg);
	transition: all 0.3s
}

.pro-type.cur .pro-type-nav i {
	transform: rotate(360deg);
	transition: all 0.3s
}

.pro-type-nav {
	display: flex;
	text-align: left;
	background: #fff;
	border-bottom: 1px solid #ddd;
	padding: 15px 20px;
	line-height: 30px;
	align-items: center;
	justify-content: space-between;
}

.pro-type ul {
	height: 0;
	overflow: hidden;
}

.pro-type.cur ul {
	height: 100%;
	background: #f6fbff;
	border: 1px solid #eaeaea;
}

.pro-type.cur ul a {
	display: block;
}

.pro-type ul li.cur a {
	color: #1966b1;
}
/**/
.pro-view-container {
	display: flex;
	justify-content: space-between;
}

.pro-view-container .pro-img {
	text-align: center;
}

.pro-view-container .pro-view-left {
	display: flex;
	max-width: 50%;
	margin-right: 30px;
	border: 1px solid #ddd;
	align-items: center;
	justify-content: center;
}

.pro-view-img {
	width: 100%;
	position: relative;
}

.gallery-pro .swiper-slide {
	display: flex;
	width: 100%!important;
	text-align: center;
	background: #ffffff;
	justify-content: center;
	align-items: center;
}

.gallery-pro .swiper-slide img {
	width: 100%;
}

.swipers-btns {
	position: absolute;
	top: 50%;
	width: 100%;
	opacity: 0;
	z-index: 999;
	left: 0;
	margin-top: -12px;
}

.swipers-btn.swiper-button-disabled {
	color: #cccccc;
}

.swipers-btn {
	position: absolute;
	display: block;
	cursor: pointer;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	color: #000;
	text-align: center;
	line-height: 34px;
	font-size: 40px;
	text-align: center;
	outline: 0;
}

.pro-view-img:hover .swipers-btns {
	opacity: 1;
}

.pro-view-but-prev {
	right: 15px;
}

.pro-view-but-next {
	left: 15px;
}

.gallery-protwo {
	height: auto;
}

.gallery-protwo .swiper-slide {
	opacity: 0.4;
	height: auto;
	border: 1px solid #cdcdcd;
	background: #fff;
}

.pro-view-container .pro-view-right {
	width: 50%;
}

.pro-view-container .pro-title {
	font-size: 18px;
	position: relative;
	padding-right: 66px;
	padding-bottom: 20px;
	border-bottom: 1px solid #EAEAEA;
	margin-bottom: 40px;
}

.pro-view-container .pro-title h1 {
	font-size: 24px;
	margin-bottom: 0;
}

.gallery-thumbs .swiper-slide-thumb-active {
	opacity: 1;
	border-color: #000;
}

.pro-view-jj {
	position: relative;
	border-top: 1px solid #eaeaea;
	padding: 30px 30px 0;
	margin-bottom: 2rem;
}

.product-view .product_details {
	margin-top: 40px;
	background: #fff;
	border-radius: 10px;
	padding: 20px;
}

.product-view .product_details h2 {
	font-size: 18px;
	border-bottom: 1px solid #eaeaea;
	padding-bottom: 15px;
	margin-bottom: 20px;
}

.headline {
	margin-bottom: 30px;
}

.headline h2 {
	font-size: 1.6rem;
}

.pro-view-jj .swipers-btn {
	width: 30px;
	background: #f5f5f5;
	border-radius: 0;
	top: 30px;
	height: auto;
	bottom: 0px;
	font-size: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pro-view-jj .swipers-btn:hover {
	background:#009fdc;
	color: #fff;
}

.pro-view-jj .pro-view-but-next {
	left: 0;
}

.pro-view-jj .pro-view-but-prev {
	right: 0;
}

.pro-view-right .text-box img {
	max-width: 100%;
}


.gallery-protwo, .gallery-pro{
	overflow: hidden;
}
.gallery-protwo .swiper-slide.swiper-slide-thumb-active{
	border-color: #009fdc;
	opacity: 1;
}
/**/
.bags-continue{
	text-align:right;
	margin-bottom:40px;
}
.bags-continue a {
    display: inline-block;
    padding: 10px;
    border: 1px solid #111111;
    text-transform: uppercase;
    min-width: 300px;
    text-align: center;
    color: #111111;
	border-radius:50px;
}
.bags-continue a:hover,
 .feedback-submit.btn:hover{
	background:#0062bf;
	color:#fff;
	border-color:#0062bf;
}
/**/
.pro-view-inquiry-btn {
	display:flex;
	margin-top: 60px;
}

.pro-view-inquiry-btn a {
	display: block;
	background: #009fdc;
	color: #ffffff;
	text-align: center;
	width: 100%;
	height: 50px;
	font-size: 20px;
	padding: 10px;
	border-radius:50px;
	border:1px solid #009fdc;
}
.pro-view-inquiry-btn a:first-child{
	border-top-right-radius:0;
	border-bottom-right-radius:0
}
.pro-view-inquiry-btn a:last-child{
	border-top-left-radius:0;
	border-bottom-left-radius:0;
	border:1px solid #009fdc;
	background:#fff;
	color: #009fdc;
}
.pro-view-inquiry-btn a:hover {
	text-decoration: none;
	background: #0062bf;
	color:#fff;
}

@-webkit-keyframes circlepulse2 {
	0% {
		-webkit-box-shadow: 0px 0px 0 0px rgba(255, 255, 255, 0.2);
		box-shadow: 0px 0px 0 0px rgba(255, 255, 255, 0.5);
	}
	50% {
		-webkit-box-shadow: 0px 0px 0 20px rgba(255, 255, 255, 0.2);
		box-shadow: 0px 0px 0 20px rgba(255, 255, 255, 0.2);
	}
	100% {
		-webkit-box-shadow: 0px 0px 0 20px rgba(255, 255, 255, 0.1);
		box-shadow: 0px 0px 0 20px rgba(255, 255, 255, 0.1);
	}
}
/**/
.ry-wrapper{
	padding-bottom:40px !important;
	margin-bottom:-40px !important;
}
@media (max-width:1200px) {
	footer .liuyan h1 {
		font-size: 30px;
	}
	footer .liuyan p {
		font-size: 22px;
	}
	footer .feedback-form {
		width: calc(100% - 530px);
	}
	.number_dh li p {
		font-size: initial;
	}
	.pro_img {
		width: 400px;
	}
	.pro_img>img {
		position: relative;
		z-index: 1;
		width: 600px;
		margin-top: -100px;
		margin-bottom: -50px;
	}
	.pro_box ul li.recome {
		padding-right: 10px;
		
	}
	.pro_box ul li.recome a{
		justify-content: space-between;
	}
	.quan .q {
		height: 400px;
	}
	.index_about .about_text {
		padding-right: 80px;
	}
	.news-item {
		width: calc(50% - 30px);
	}
}

@media (max-width:991px) {
	.title-wrapper .swiper-slide{
		min-width:inherit;
		padding:0 20px;
	}
	.about_informashion .map{
		position:initial;
		width:100%;
		height:380px;
	}
	.about_informashion_text{
		max-width: 100%;
	}
	#banner .swiper-slide>a{
		display:none
	}
	#banner .swiper-slide{
		height:calc(100vh - 50px);
		max-height:720px;
	}
	.ph_banner{
		display:block;
	}
	.pro-view-container .pro-view-left{
		max-width: 100%;
		margin-right: 0;
		margin-bottom: 25px;
	}
	.pro-view-container .pro-view-right{
		width: 100%;
	}
	.pro-view-container {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
	}
	.top_by {
		margin-top: 50px;
	}
	.title-wrapper {
		margin-top: 0!important;
	}
	.product-center-list li {
		width: calc(50% - 30px);
	}
	.news-item {
		width: calc(100% - 30px);
	}
	.banner-news {
		min-height: 50px !important;
	}
	.warpper-ny {
		padding: 40px 0;
	}
	footer .liuyan .text {
		text-align: center;
		margin-bottom: 30px;
	}
	footer .liuyan {
		flex-direction: column;
	}
	footer .footer_box .footer_box_right {
		display: none;
	}
	footer .footer_box {
		justify-content: center;
	}
	footer .footer_box_left {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	footer .contact_info {
		text-align: center;
	}
	footer .footer_bottom .container {
		justify-content: space-between;
		align-items: center;
		color: #fff;
		flex-direction: column;
	}
	footer .footer_bottom {
		text-align: center;
	}
	footer .footer_box {
		margin-top: 40px;
	}
	footer>.container {
		padding-top: 40px;
		padding-bottom: 40px;
	}
	footer .feedback-form {
		width: 100%;
	}
	.index_news .news_list li a.top {
		justify-content: space-between;
		flex-direction: column-reverse;
	}
	.index_news .news_list li .img_box {
		width: 100%;
		margin-left: 0;
		margin-bottom: 20px;
	}
	.index_news .news_list li {
		width: 100%;
	}
	.index_news .news_list li:nth-child(2n):before {
		display: none;
	}
	.index_news .news_list li a {
		padding-left: 0!important;
		padding-right: 0!important;
	}
	.index_news .news_list .news_text {
		width: 100%;
	}
	.title h1 {
		font-size: 30px;
	}
	.title p {
		font-size: 50px;
	}
	.index_about .abimg>div {
		display: flex;
		background: rgb(4 38 70 / 59%);
	}
	.index_about .abimg {
		position: initial;
		width: 100%;
		height: 400px;
		margin-bottom: 40px;
		border-radius: 0;
	}
	.index_about .about_text {
		width: 100%;
		padding-right: 50px;
	}
	.index_about .about_text .video_tb {
		display: none;
	}
	.index_about {
		padding-top: 0!important;
	}
	.number_dh {
		height: auto;
	}
	.number_dh li:nth-child(2n):before {
		display: none;
	}
	.number_dh li {
		width: calc(50% - 30px);
	}
	.pro_box li .text-box {
		margin-bottom: 14px;
	}
	.pro_info {
		display: none;
	}
	.pro_box li.nocome h3,
	.pro_box li.nocome p {
		font-size: 16px;
	}
	.pro_box li .img-box {
		margin-top: 0;
	}
	.pro_box ul {
		margin-left: -3px;
		margin-right: -3px;
	}
	.pro_box li {
		margin: 3px;
		width: calc(25% - 6px);
	}
	.pro_img>img {
		margin: 0;
	}
	header {
		display: none;
	}
	.mobile_header-box {
		display: block;
	}
	.banner .swiper-container .swiper-wrapper .swiper-slide .banner-text-box h1 {
		font-size: 30px;
		margin-bottom: 1rem;
		margin-top: 60px;
	}
	.banner-text-box i {
		margin-bottom: 20px;
	}
	.banner-text p {
		font-size: 16px;
	}
	.index_application ul li {
		width: 50%;
	}
	.index_application:before {
		bottom: 46%;
	}
}

@media (max-width:765px) {
	.content_con_box{
		margin:0 auto;
		background-attachment:initial!important;
	}
	#banner-img h3{
		font-size:26px;
	}
	#banner-img{
		min-height:360px;
		 background-attachment:initial!important;
	}
	.product-center-list li {
		width: calc(100% - 30px);
	}
	.title a.more:before {
		margin-top: -20px;
		width: 40px;
		height: 40px;
	}
	footer .liuyan h1 {
		font-size: 20px;
		margin-bottom: 10px;
	}
	footer .footer_box_left>img {
		width: 160px;
	}
	footer .liuyan p {
		font-size: 16px;
	}
	.index_about .abimg {
		height: 300px;
	}
	.number_dh li h3 {
		font-size: 30px;
	}
	.index_about .about_text>img {
		display: none;
	}
	.index_about .about_text {
		padding: 20px;
	}
	#banner {
		margin-top: 50px;
	}
	.pro_box ul li.recome {
		padding: 0 10px;
	}
	.pro_box ul li.recome .pro_name h3 {
		font-size: 16px;
	}
	.pro_box ul li.recome .pro_name {
		display: flex;
		justify-content: space-around;
		flex-direction: row;
		align-items: center;
	}
	.pro_box ul li.recome a{
		flex-direction: column;
	}
	.pro_img {
		width: 100%;
		margin-bottom: 10px;
	}
	.quan .q {
		width: 100%;
		height: 100%;
	}
	.pro_box li {
		width: calc(50% - 6px);
	}
	.index_products .more {
		display: none;
	}
	.title p {
		font-size: 30px;
		margin-bottom: 5px;
	}
	.title h1 {
		font-size: 24px;
		letter-spacing: 2px;
	}
	.title h1 img {
		width: 6px;
	}
	.pro_box li.nocome:hover {
		border-bottom: 3px solid #009fdc;
	}
	.title a.more i {
		width: 40px;
		height: 40px;
	}
	.cate_tab li {
		padding: 4px 15px;
	}
	.banner .swiper-container .swiper-wrapper .swiper-slide .banner-text-box h1 {
		font-size: 20px;
		margin-top: 0;
		margin-bottom: 10px;
	}
	.banner-text p {
		font-size: 14px;
	}
	.banner-text-box i {
		margin-bottom: 10px;
	}
	.warrpbox {
		padding: 40px 0;
	}
	.title {
		margin-bottom: 20px;
	}
}