@media (min-width: 1200px) {
	.container,
	.container-lg,
	.container-md,
	.container-sm,
	.container-xl {
		max-width: 1280px;
	}
}
.new_wrap .new-wrapper p{
	text-overflow: ellipsis;
    white-space: nowrap;
	 overflow: hidden;
	font-size:16px;
	margin-top:15px
}
/* Layout for search container */
.search {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	background: rgba(255, 255, 255, 0.98);
}

.search {
	position: fixed;
	z-index: 100000000000000;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
}

.search::before,
.search::after {
	content: '';
	position: absolute;
	width: calc(100% + 15px);
	height: calc(100% + 15px);
	pointer-events: none;
	/*border: 1.5em solid #212fa0*/
}

.search::before {
	top: 0;
	left: 0;
	border-right-width: 0;
	border-bottom-width: 0;
}

.search::after {
	right: 0;
	bottom: 0;
	border-top-width: 0;
	border-left-width: 0;
}

.btn--search-close {
	font-size: 2em;
	position: absolute;
	top: 1.25em;
	right: 1.25em;
	display: none;
}

.btn--search-close {
	display: block;
}

.search__form {
	margin: 5em 0;
}

.search-icon{font-size: 20px; padding:6px; color: #111111; position:absolute;}
.search__input {
	font-family: inherit;
	font-size: 16px;
	line-height:30px;
	display: inline-block;
	box-sizing: border-box;
	width: 75%;
	max-width: 992px;
	padding: 0.05em 0;
	padding-left: 36px;
	background: none;
    color: #111;
	border-bottom: 1px solid;
}
.search__input:focus{
	outline: none;
}
.search__input::-webkit-input-placeholder {
	/* WebKit, Blink, Edge */
	opacity: 0.3;
	color: #333333;
}

.search__input::-moz-placeholder {
	opacity: 0.3;
	/* Mozilla Firefox 19+ */
	color: #060919;
}

.search__input:-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	opacity: 0.3;
	color: #060919;
}

.search__input::-webkit-search-cancel-button,
.search__input::-webkit-search-decoration {
	-webkit-appearance: none;
}

.search__input::-ms-clear {
	display: none;
}

.search__info {
	font-size: 90%;
	font-weight: bold;
	display: block;
	width: 75%;
	max-width: 992px;
	margin: 0 auto;
	padding: 0.85em 0;
	text-align: right;
	color: #333333;
}

.search__related {
	display: flex;
	width: 75%;
	pointer-events: none;
}

.search__suggestion {
	width: 33.33%;
	text-align: left;
}

.search__suggestion:nth-child(2) {
	margin: 0 3em;
}

.search__suggestion h3 {
	font-size: 1.35em;
	margin: 0;
}

.search__suggestion h3::before {
	content: '\21FE';
	display: inline-block;
	padding: 0 0.5em 0 0;
}

.search__suggestion p {
	font-size: 1.15em;
	line-height: 1.4;
	margin: 0.75em 0 0 0;
}

/************************/
/* Transitions 			*/
/************************/

.search {
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.5s;
}

.search--open {
	pointer-events: auto;
	opacity: 1;
}

/* Border */
.search::before,
.search::after {
	transition: transform 0.5s;
}

.search::before {
	transform: translate3d(-15px, -15px, 0);
}

.search::after {
	transform: translate3d(15px, 15px, 0);
}

.search--open::before,
.search--open::after {
	transform: translate3d(0, 0, 0);
}

/* Close button */
.btn--search-close {
	opacity: 0;
	transform: scale3d(0.8, 0.8, 1);
	transition: opacity 0.5s, transform 0.5s;
}

.search--open .btn--search-close {
	opacity: 1;
	transform: scale3d(1, 1, 1);
	color: #333333;
}

/* Search form with input and description */
.search__form {
	opacity: 0;
	transform: scale3d(0.8, 0.8, 1);
	transition: opacity 0.5s, transform 0.5s;
}

.search--open .search__form {
	opacity: 1;
	transform: scale3d(1, 1, 1);
	width: 100%;
}

.search__suggestion {
	opacity: 0;
	transform: translate3d(0, -30px, 0);
	transition: opacity 0.5s, transform 0.5s;
}

.search--open .search__suggestion {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.search--open .search__suggestion:nth-child(2) {
	transition-delay: 0.1s;
}

.search--open .search__suggestion:nth-child(3) {
	transition-delay: 0.2s;
}

@media screen and (max-width:40em) {
	.search__form {
		margin: 5em 0 1em;
	}
	.btn--search-close {
		font-size: 1.25em;
		top: 1.5em;
		right: 1.5em;
	}
	.search__info {
		text-align: left;
	}
	.search__suggestion {
		font-size: 80%;
		width: 100%;
	}
	.search__suggestion:nth-child(2),
	.search__suggestion:nth-child(3) {
		display: none;
	}
}
@media screen and (max-width:568px){
	.search__input {
	font-size: 14px;
}
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
.news_link {
	margin: 2rem auto;
	border-top: 1px solid #eaeaea;
	padding-top: 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.news_link i {
	margin-right: 8px;
}

.news_link a {
	margin-right: 10px;
}

/*导航*/

header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9;
	width: 100%;
}

.fupad img {
	max-height: 56px;
	transition: all 0.5s;
}

header.active .fupad img {
	max-height: 40px;
	transition: all 0.5s;
}

.navbar-brand {
	padding-bottom: 0;
	padding-top: 0;
}

.header-box {
	position: relative;
	width: 100%;
	height: 110px;
	background-color: rgba(0, 0, 0, 0.4);
	transition: all 0.5s;
	border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

header.active .header-box {
	height: 60px;
}

.header-box>.header-cen {
	position: relative;
	display: flex;
	padding: 0 0 0 30px;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: space-between;
}

.navbar .nav-item {
	padding: 0 20px;
	position: initial;
}

.navbar .nav-item>a {
	color: #fff;
}

.header-right {
	position: relative;
	display: flex;
	width: 210px;
	height: 100%;
	align-items: center;
	justify-content: flex-start;
}

.lang_box {
	position: relative;
	cursor: pointer;
}

.search_btn {
	display: flex;
	height: 100%;
	align-items: center;
	justify-content: center;
}

.search_btn img {
	width: 26px;
}

.lang_title i.fa-angle-down {
	margin-left: 0.4rem;
	transition: all 0.3s;
	transform: rotate(0deg);
}

.navbar {
	padding: 0;
	height: 100%;
	position: initial!important;
}

.navbar-collapse {
	height: 100%;
}

a.nav-link {
	display: flex;
	height: 100%;
	height: 110px;
	font-size: 16px;
	align-items: center;
	justify-content: center;
	position: relative;
	padding: 0!important;
	transition: all 0.5s;
}

header.active a.nav-link {
	height: 60px;
}

a.nav-link:before {
	content: "";
	position: absolute;
	left: 50%;
	right: 50%;
	bottom: -1px;
	z-index: 1;
	height: 0.24rem;
	background: #fff;
	transition: all 0.5s;
}

.nav-item.cur a.nav-link {
	color: #fff;
}

.nav-item.cur a.nav-link:before,
a.nav-link:hover:before,
li.nav-item.active a.nav-link:before {
	right: 0;
	left: 0;
	transition: all 0.5s;
}


/*下拉*/

.header-box .dropdown-menu {
	display: none;
	width: 100%;
	left: 0;
	right: 0;
	top: 100%;
	margin: 0;
	border-radius: 0;
	padding: 0;
	border: 0;
	border-top: 1px solid #b7bcb1;
	background: rgba(255, 255, 255, 0.8);
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.header-box .dropdown-menu ul {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.header-box .dropdown-menu li {
	padding: 0.4rem 0rem;
	width: 25%;
	list-style: none;
	line-height: 2rem;
}

.header-box .dropdown-menu li a {
	display: block;
	z-index: 2;
	padding: 0.4rem 1rem;
	cursor: pointer;
	font-size: 14px;
	color: #000;
}

.header-box .dropdown-menu li a span {
	display: inline-block;
	position: relative;
}

.header-box .dropdown-menu li:first-child {
	border: none;
}

.header-box .dropdown-menu li a span:before {
	position: absolute;
	content: "";
	top: 100%;
	right: 100%;
	left: 100%;
	height: 1px;
	background: #000;
	transition: all 0.3s;
	z-index: 0;
}

.header-box .dropdown-menu li:hover a span:before {
	right: 0;
	left: 0;
	transition: all 0.3s;
}

.moblie_title_right {
	display: none;
	float: right;
	width: 40px;
	height: 40px;
	padding-top: 20px;
	margin-left: 25px;
	text-align: center;
	cursor: pointer;
}

.menuicon {
	width: 20px;
	height: 2px;
	background: #fff;
	position: relative;
	left: 50%;
	top: 50%;
	margin-top: -10px;
	margin-left: -10px;
}

.menuicon::before {
	content: '';
	width: 20px;
	height: 2px;
	background: #fff;
	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: #fff;
	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);
}

.mobile_header_list {
	display: none;
	position: absolute;
	top: 100%;
	background: #fff;
	width: 100%;
	cursor: pointer;
	color: #ffffff;
	z-index: 999999;
	height: calc(100vh - 55px);
}

.mobile_header_list {
	padding: 1rem;
}

.mobile_header_list .card {
	background: none;
	border: none;
	border-bottom: 1px solid #eaeaea!important;
}

.mobile_header_list .card:last-child {
	border: 0!important;
}

.mobile_header_list .card>a {
	color: #333;
	line-height: 3rem;
}

.mobile_header_list .card.dropdown>a {
	display: flex;
	padding-right: 1rem;
	align-items: center;
	justify-content: space-between;
}

.mobile_header_list .card>a i {
	transition: all 0.3s;
	transform: rotate(-90deg);
}

.mobile_header_list .card>a.cur i {
	transition: all 0.3s;
	transform: rotate(0deg);
}

.mobile_hidenlist {
	display: none;
	background: #f8f8f8;
}

.mobile_hidenlist_list a {
	display: flex;
	padding: 0 1rem;
	color: #3c482b;
	margin-bottom: 0;
	line-height: 3rem;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid #eaeaea;
}
.mobile_hidenlist_list:last-child a{
	border-bottom:none;
}

.mobile_hidenlist_list h5 i {
	transition: all 0.3s;
	transform: rotate(-90deg);
}

.mobile_hidenlist_list.cur h5 i {
	transition: all 0.3s;
	transform: rotate(0deg);
}

.mobile_hidenlist dd {
	padding: 0 1.5rem;
	margin-bottom: 0;
	border-bottom: 1px solid #eaeaea;
}

.mobile_hidenlist dl {
	display: none;
}

.mobile_hidenlist dd:last-child {
	border-bottom: 0;
}

.mobile_hidenlist dd a {
	display: block;
	width: 100%;
	line-height: 2.4rem;
}


/**/

.banner {
	position: relative;
	width: 100%;
}

.banner .banner_img .swiper-container,
.banner .banner_img .swiper-container .swiper-wrapper {
	height: 100%;
}

.banner .swiper-container .swiper-wrapper .swiper-slide {
	overflow: hidden;
	height: 100%;
	position: relative;
}

.banner .swiper-container .swiper-wrapper .swiper-slide img {
	width: 100%;
}

.banner .swiper-container .swiper-wrapper .swiper-slide video {
	position: absolute;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 2;
	height: 100% !important;
	object-fit: cover;
}

.banner .banner_img .pc_photo {
	display: block;
}

.banner .banner_img .ph_photo {
	display: none;
}

.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 h1,
.banner-text p {
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.8);
}

.banner-text-box {
	transform: translateY(200px);
	opacity: 0;
	transition: all .8s;
	color: #fff;
}

.banner .swiper-container .swiper-wrapper .swiper-slide .banner-text-box h1 {
	font-weight: normal;
	color: #fff;
	font-size: 2.8rem;
	letter-spacing: 0.16rem;
	line-height: 70px;
}

.banner-text-box p {
	font-size: 1.5rem;
}

.banner-text-box h1 span {
	font-weight: bolder;
	font-size: 3rem;
}

.banner .swiper-container .swiper-wrapper .swiper-slide .banner-text-box i {
	display: inline-block;
	width: 150px;
	height: 2px;
	background: #6FA734;
	margin: 30px 0;
}

.banner-text-box a.more {
	margin-top: 2rem;
	display: flex;
	width: 11rem;
	height: 3rem;
	background: #6FA734;
	color: #fff;
	border-radius: 50px;
	align-items: center;
	justify-content: center;
}

.banner-text-box a.more:hover {
	background: #5A862B;
}

.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-button-prev {
	left: 3rem;
	top: 50%;
	transform: translateY(-50%);
	width: 3.4rem;
	height: 3.4rem;
	z-index: 4;
	font-size: 3rem;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
	opacity: 0;
}

.banner .swiper-container .swiper-button-next {
	right: 3rem;
	top: 50%;
	transform: translateY(-50%);
	width: 3.4rem;
	height: 3.4rem;
	z-index: 4;
	font-size: 3rem;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
	opacity: 0;
}

.banner .swiper-container .swiper-button-next:after,
.banner .swiper-container .swiper-button-prev:after {
	display: none;
}

.button-pag .swiper-pagination-bullet {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	margin: 0 6px!important;
	background: none;
	opacity: 0.5;
	border: 1px solid #fff;
}

.button-pag .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: #fff;
	opacity: 1;
}

.button-pag .swiper-pagination {
	position: initial;
}

.button-pag {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translate(-50%, 0);
	z-index: 4;
	padding: 0 8px;
}

.banner:hover .swiper-button-next,
.banner:hover .swiper-button-prev {
	opacity: 1;
}

.player-box {
	display: flex;
	margin-top: 60px;
	position: relative;
	width: 70px;
	height: 70px;
	background: #6FA734;
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.player-box:hover {
	background: #5A862B;
}

.player-box>img {
	margin-right: -5px;
	width: auto!important;
}

.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;
}

@-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);
	}
}


/**/

.warppbox {
	padding: 100px 0;
	overflow: hidden;
	background: #fff;
}

.noback {
	background: none;
}

.title {
	margin-bottom: 40px;
}

.title h2 {
	font-size: 36px;
	margin-bottom: 15px;
	font-weight: bold;
	color: #000;
}

.title span {
	font-weight: bold;
	font-size: 40px;
	color: #ddd;
}

.title span i {
	display: inline-block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	margin-left: 10px;
	background: #6FA734;
}

.more-box a {
	display: inline-block;
	color: #fff;
	font-size: 18px;
	min-width: 140px;
	padding: 10px 20px;
	line-height: 20px;
	background: #2c4279;
	text-align: center;
}

.more-box a:hover {
	background: #15499a;
	color: #fff;
}

.more-box a:hover span:after {
	width: 54px;
	transition: all 0.3s;
}


/**/

.img_box {
	width: 100%;
	overflow: hidden;
}

.img_box img {
	width: 100%;
	transform: scale(1);
	transition: all 0.5s;
}

.img_box:hover img {
	transform: scale(1.05);
	transition: all 0.5s;
}

.products-wrapper .swiper-slide {
	padding: 0 15px 22px;
}

.products-wrapper .text_box {
	position: relative;
	background: #fff;
	z-index: 1;
	margin-top: -30px;
	padding: 30px;
	box-shadow: 0 7px 22px rgba(19, 19, 19, .08);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.products-wrapper .text_box>div {
	width: calc(100% - 40px);
}

.products-wrapper .text_box>div h3 {
	font-size: 22px;
	font-weight: bold;
	color: #000;
}

.products-wrapper .text_box>div p {
	color: #666;
	font-size: 14px;
}

.products-wrapper .text_box>span {
	display: flex;
	width: 36px;
	height: 36px;
	border: 1px solid #000;
	align-items: center;
	justify-content: center;
	font-size: 20px;
}
.products-wrapper .swiper-slide:hover .text_box>span{
	background:#2c4279!important;
	color:#fff!important;
	border: 1px solid #2c4279!important;
}

/**/

.warppboxabout {
	position: relative;
	background: #f8f8f8;
}

.indexabout {
	width: 100%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	min-height: 500px;
}

.indexabout .left_img {
	position: absolute;
	top: 0;
	left: 0;
	right: 50%;
	bottom: 0;
}

.indexabout .right_text {
	width: 50%;
	padding: 5%;
}

.indexabout .title h1 {
	font-size: 30px;
	font-weight: bold;
	color: #000;
	margin-bottom: 20px;
}

.indexabout .title .line {
	width: 50px;
	height: 1px;
	background: #2c4279;
}

.indexabout .text p {
	font-size: 14px;
	line-height: 28px;
}

.indexabout .biaoqian {
	margin-top: 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.indexabout .biaoqian>div {
	display: flex;
	align-items: flex-start;
}

.indexabout .biaoqian>div>img {
	width: 32px;
	margin-right: 8px;
}

.indexabout .biaoqian>div h5 {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 15px;
}

.indexabout .biaoqian>div p {
	font-size: 14px;
}


/**/

.probutton {
	display: flex;
	height: 56px;
	margin-bottom: 25px;
}

.probutton>div {
	border: 1px solid #2c4279;
	color: #2c4279;
	position: initial!important;
	width: 56px;
	height: 43px;
	font-size: 22px;
	margin-right: 15px;
	margin-top: 0!important;
	z-index: 1;
}

.probutton>div:after {
	display: none;
}


/**/

.culture {
	padding: 0!important;
	display: flex;
}

.culture_type {
	width: 33.3333%;
	height: 630px;
	transition: all 0.5s;
	overflow: hidden;
}

.culture_type.cur {
	width: 80%;
	transition: all 0.5s;
}

.culture_type.cur2 {
	width: 10%;
	transition: all 0.5s;
}

.culture_type .text_box {
	width: 100%;
	height: 100%;
	padding: 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: rgba(0, 0, 0, 0.5);
	color: #fff;
	transition: all 0.3s;
}

.culture_type.cur .text_box {
	width: 45%;
	transition: all 0.3s;
}

.culture_type .text_box div {
	min-width: 500px;
}

.culture_type .text_box h1 {
	font-size: 36px;
	font-weight: bold;
	margin-bottom: 28px;
}


/**/

.news_list_box {
	display: flex;
	justify-content: space-between;
	align-content: flex-start;
	align-items: flex-start;
}

.news_list_box_right {
	width: 50%;
}

.news_list_box_right li>a>i {
	float: left;
	width: 5px;
	margin-top:8px;
	margin-right: 15px;
	border-radius: 50%;
	height: 5px;
	background: #999;
}

.news_list_box_right li {
	padding: 40px 30px;
	border-top: 1px solid #eaeaea;
}

.news_list_box_right li:hover {
	border-top-color: #2c4279;
}

.news_list_box_right .text {
	float: left;
	width: calc(100% - 42px);
}

.text-top h4 {
	float: left;
	min-height: 44px;
	margin-bottom: 0;
	width: calc( 100% - 100px);
	font-size: 18px;
	overflow: hidden;
	line-height:22px;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	color: #333;
}

.news_list_box_right li:hover h4 {
	color: #2c4279;
}

.text-bottom p {
	float: left;
	width: calc( 100% - 100px);
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
}

.text-top {
	margin-bottom: 20px;
}

.text-top p {
	float: right;
}

.text-bottom .more {
	border-left: 1px solid #999;
	padding-left:15px;
	float: right;
	font-size:20px;
	color:#999;
	transition:all 0.3s
}

.news_list_box_right li:hover>a>i {
	background: #2c4279;
}

.news_list_box_right li:hover .more {
	color: #2c4279;
	padding-left:20px;
	margin-right:-5px;
	transition:all 0.3s
}


/**/

.news_list_box_left {
	width: 45%;
	padding: 40px;
	background: #f8f8f8;
}

.news_list_box_left span {
	display: inline-block;
	font-size: 24px;
	line-height: 30px;
	color: #999;
	font-weight: lighter;
	margin-bottom: 20px;
}

.img_box_dh {
	overflow: hidden;
	width: 100%;
}

.img_box_dh img {
	width: 100%;
	transform: scale(1.0);
	transition: all 0.3s;
}

.news_list_box_left:hover img {
	transform: scale(1.1);
	transition: all 0.3s;
}

.news_list_box_left h4 {
	color: #000;
	margin-bottom: 20px;
	line-height: 36px;
	font-weight: normal;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	line-clamp: 1;
	-webkit-box-orient: vertical;
}

.news_list_box_left:hover h4 {
	color: #2c4279;
}

.news_list_box_left p {
	color: #999;
	font-size: 14px;
	line-height: 24px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
}

.news_list_box_left:hover p {
	color: #000;
}

.news_list_box_left .img_box_dh {
	margin: 30px 0;
	max-height:230px;
	overflow:hidden
}

.news_list_box_left .more_btn {
	margin: 0;
}

.news-swiper {
	margin-top: -15px;
	padding-bottom: 40px;
}

.news-swiper .swiper-slide a {
	display: block;
	width: 100%;
}

.news-swiper .date {
	margin-bottom: 30px;
	transition: all 0.3s;
}

.news-swiper .date h2 {
	font-size: 32px;
	color: #ddd;
	font-weight: bold;
}

.news-swiper .date p {
	font-size: 16px;
	color: #ddd;
}

.news-swiper a>.img-box {
	margin-bottom: 40px;
}

.news-title {
	position: relative;
	padding-left: 50px;
	padding-right: 20px;
	border-left: 1px solid #EAEAEA;
}

.news-title h2 {
	font-size: 22px;
	line-height: 28px;
	min-height: 56px;
	color: #333;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
}

.news-title p {
	line-height: 30px;
	color: #666;
	font-size: 14px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
}


/**/

footer {
	background: #1b241b;
}

footer .container>h2 {
	font-weight: bold;
	font-size: 20px;
	color: #fff;
	text-align: center;
}

footer .container>p {
	color: #808080;
	font-size: 14px;
	text-align: center;
}

.tb_footer {
	padding-top: 40px;
	display: flex;
	margin-bottom: 40px;
	justify-content: center;
	text-align: center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.tb_footer li {
	margin: 0 20px;
	opacity: 0.6;
	border-bottom: 3px solid rgba(0, 0, 0, 0);
	margin-bottom: -2px;
}

.tb_footer a {
	color: #fff;
}

.tb_footer img {
	width: 36px;
}

.tb_footer p {
	margin: 30px 0;
}

.tb_footer li:hover {
	position: relative;
	z-index: 1;
	opacity: 1;
	border-bottom: 3px solid #2c4279;
}


/**/

ul.contact {
	display: flex;
	margin-top: 40px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}

ul.contact li {
	width: 33.3333%;
	padding: 30px;
	text-align: center;
	color: #fff;
	background: rgba(128, 128, 128, 0.6);
}

ul.contact li em {
	margin-bottom: 15px;
	font-size: 28px;
}

ul.contact li:nth-child(2n) {
	background: #787878;
}

footer .bottom {
	padding-bottom: 15px;
	color: #fff;
	font-size: 14px;
	text-align: center;
	line-height: 28px;
}

footer .bottom a {
	color: #fff;
}


/**/

.intro_box {
	position: relative;
	background: #fff;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
	border-radius: 15px;
	overflow: hidden;
}

.intro_box h4 {
	position: relative;
	width: 100%;
	font-weight: bold;
	padding-top: 15px;
	padding-bottom: 30px;
	border-bottom: 1px solid #eaeaea;
	margin-bottom: 30px;
}

.intro_box>.img_box {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 50%;
	overflow: hidden;
}

.intro_text {
	width: 50%;
	padding: 2rem;
}

.intro_text p {
	line-height: 28px;
}

.intro_text .text_box {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 6;
	line-clamp: 6;
	-webkit-box-orient: vertical;
}

.intro_text .more-box {
	margin-top: 40px;
}

.profile-data {
	margin-top: 80px;
}

.factroy-wrapper {
	margin-top: 30px;
}

.factroy-wrapper .swiper-slide {
	border-radius: 8px;
	overflow: hidden;
}


/**/

.culture-container {
	display: flex;
	width: 100%;
	height: 100%;
	min-height: 680px;
}

.culture-container .slide {
	width: 25%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.5s;
	border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.culture-container .slide:last-child {
	border: none;
}

.culture-container .slide>div {
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
	flex-direction: column;
	width: 100%;
	height: 100%;
	padding: 40px;
	background: rgba(0, 0, 0, 0.6);
	color: #fff;
	transition: all 1s;
}

.culture-container .slide>div h2 {
	margin-bottom: 40px;
	font-size: 20px;
	font-weight: normal;
}

.culture-container .slide>div p {
	font-weight: lighter;
	font-size: 18px;
	min-height: 80px;
}

.culture-container .slide:hover {
	width: 50%;
	transition: all 0.5s;
}

.culture-container .slide:hover>div {
	background: rgba(0, 0, 0, 0.2);
	transition: all 1s;
	cursor: pointer;
}

.culture-container .more-box a span:before {
	border-color: #fff;
}

.culture-container .more-box a span:after,
.more-box a span {
	background: #fff;
}

.culture-container .more-box a {
	color: #fff;
}


/**/

.picture_box {
	min-height: 360px!important;
	background: url(../images/bb.jpg) no-repeat center fixed;
	background-size: cover;
	align-items: center;
}

.index-contact-p h1 {
	width: 100%;
	text-align: center;
	margin-bottom: 40px;
	font-size: 30px;
	color: #fff;
	font-weight: normal;
	display: inline-block;
	padding: 10px 0px;
}

.container-more a {
	margin: 0 auto;
	display: flex;
	width: 200px;
	height: 54px;
	background: #6fa734;
	color: #ffffff;
	padding: 7px 15px;
	position: relative;
	align-items: center;
	justify-content: space-around;
	border-radius: 54px;
}

.container-more a:hover {
	background: #4f7725;
}

.partner-wrapper .swiper-slide ul {
	margin-left: -15px;
	margin-right: -15px;
	padding: 0 5px;
}

.partner-wrapper .swiper-slide li {
	float: left;
	margin: 15px;
	width: calc(16.666% - 30px);
	padding: 15px;
	box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
	border-radius: 5px;
}

.partner-wrapper .swiper-slide li img {
	width: 100%;
}

.partner-wrapper {
	margin-bottom: 60px;
}

.navbar-nav {
	flex-direction: row!important;
}


/**/

.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;
}


/**/


/**/

#banner-img {
	display: flex;
	padding-top: 100px;
	min-height: 400px;
	align-items: center;
	justify-content: center;
}

#banner-img h3 {
	font-size: 24px;
	font-weight: bolder;
	color: #000;
}

#banner-img p {
	position: relative;
	font-size: 14px;
	color: #000;
}

.cont_main {
	width: 100%;
	min-height: 600px;
}

.warpper-ny {
	padding: 100px 0;
	overflow: hidden;
}

.title-ny {
	margin-bottom: 40px;
}

.title-ny p {
	font-size: 30px;
	margin-bottom: 15px;
	font-weight: bold;
	color: rgba(0, 0, 0, 0.2);
}

.title-ny h2 {
	font-size: 30px;
}

.about-box-ny {
	display: flex;
	align-items: flex-start;
}

.about-box-ny-right {
	width: 60%;
}

.about-box-ny-text>p {
	line-height: 28px;
	font-size: 16px;
}

.banner_button {
	display: none;
	position: absolute;
	top: 50%;
	width: 60px;
	height: 60px;
	margin-top: -30px;
	background: #fff;
	z-index: 33;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	color: #000;
	transition: all 0.3s;
	border-radius: 50%;
	cursor: pointer;
	font-weight: lighter;
	opacity: 0.5;
}

.banner_button:hover {
	opacity: 1;
	transition: all 0.3s;
	box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.about-box-ny-left {
	width: 35%;
	margin-right: 5%;
}

.about-box-ny-left img {
	width: 100%;
}

.yj {
	display: flex;
	align-items: center;
	font-size: 16px;
}

.yj_left {
	color: #fff;
	width: 25%;
}

.yj_left h2 {
	color: #fff;
	font-weight: normal;
	font-size: 30px;
}

.yj_left .line {
	width: 50px;
	height: 1px;
	background: #4060af;
}

.yj_left>div>div {
	margin-top: 15px;
}

.yj_right {
	display: flex;
	width: 75%;
	flex-wrap: wrap;
}

.yj_right li,
.ys li {
	width: 33.3333%;
	text-align: center;
	color: #fff;
}

.ys li {
	display: flex;
	color: #000;
	flex-direction: column;
	align-items: center;
}

.yj_right li img {
	width: 80px;
	margin-bottom: 15px;
}

.warpper-ny .title h3 {
	font-weight: bold;
	color: #000;
	margin-bottom: 15px;
}

.warpper-ny .title p {
	font-size: 14px;
	color: #999;
}

.ys {
	display: flex;
	flex-wrap: wrap;
}

.ys li img {
	margin-bottom: 25px;
}

.ys li span {
	margin-bottom: 10px;
	font-size: 18px;
}

.ys li p {
	color: #999;
}


/**/

ul.news-list {
	display: flex;
	margin-left: -10px;
	margin-right: -10px;
	margin-top: -10px;
	flex-wrap: wrap;
}

ul.news-list li {
	width: calc(33.33% - 20px);
	margin: 10px;
}

ul.news-list li a {
	display: block;
}

ul.news-list li .date {
	width: 98px;
}

ul.news-list li .date h1 {
	font-size: 48px;
	line-height: 50px;
	color: #ababab;
	border-bottom: 1px solid #e3e3e3;
	text-align: center;
	padding-bottom: 15px;
	padding-top: 10px;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
}

ul.news-list li .date p {
	color: #b2b2b2;
	margin-top: 15px;
	text-align: center;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
}

ul.news-list li .img-box {
	position: relative;
	width: 100%;
	margin-bottom: 20px;
}
ul.news-list li .img-box img{
	width:100%;
}
.hotpro-wrapper  .img-box {
	position: relative;
	overflow: hidden;
}
ul.news-list li .img-box .hidden,
.hotpro-wrapper .hidden{
	width: 100%;
	height: 100%;
	position: absolute;
	display: flex;
	top: 0;
	left: 0;
	background-color: rgba(255, 255, 255, 0.65);
	opacity: 0;
	justify-content: center;
	align-items: center;
	transition: opacity .4s ease-in-out;
}
.hotpro-wrapper .hidden{
	background-color: #2c42798f;
}
ul.news-list li .img-box .hidden>div,
.hotpro-wrapper .hidden>div {
	width: 80px;
	height: 80px;
	background-color: #333;
	opacity: .7;
	color: #fff;
	display: flex;
	font-size: 14px;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	transform: rotateZ(-45deg) scale(0.5, 0.5);
	transition: all .4s ease-in-out;
}
.hotpro-wrapper .hidden>div {
	width: 60px;
	height: 60px;
	opacity: 1;
	background: #fff;
	color:#2c4279;
	font-size: 20px;
}
ul.news-list li:hover .hidden ,
.hotpro-wrapper .swiper-slide:hover .hidden {
	opacity: 1;
}

ul.news-list li:hover .img-box .hidden>div ,
.hotpro-wrapper .swiper-slide:hover .hidden>div{
	transform: rotateZ(0deg) scale(1, 1);
	transition: all .4s ease-in-out;
}

ul.news-list li .text-box {
	width: 100%;
}

ul.news-list li .text-box h3 {
	margin-bottom: 10px;
	color: #000;
	font-weight: normal;
	font-size: 18px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	line-clamp: 1;
	-webkit-box-orient: vertical;
}

ul.news-list li .text-box>p {
	line-height: 24px;
	font-size: 14px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
}

.service-list .text-box h3 {
	font-weight: bold!important;
}


/**/

.contact_ul {
	display: flex;
	margin-left: -10px;
	margin-right: -10px;
	margin-top: -10px;
	flex-wrap: wrap;
}

.contact_ul li {
	display: flex;
	width: calc(33.33% - 20px);
	margin: 10px;
	padding: 10px;
	border: 1px solid #eee;
	background: #fcfcfc;
	text-align: center;
	min-height: 110px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.contact_ul li em {
	font-size: 36px;
	color: #4060af;
	margin-bottom: 15px;
}

#verifycode {
	float: left;
	width: calc(100% - 240px);
}


/**/

#feedback {
	margin-left: -0.4rem;
	margin-right: -0.4rem;
}

#feedback .form-group {
	margin-bottom: 0px;
}

#feedback .form-control {
	border: none;
	height: 84px;
	padding: .375rem 1.2rem;
	border: 1px solid #ddd;
}

#feedback .form-control:focus {
	box-shadow: none;
	border: 1px solid #4060af;
}

#feedback .form-group {
	padding: 0.3rem 0.8rem;
}

#feedback .form-textarea {
	width: 100%;
	padding: 1rem 1.2rem;
	background: #dde2de;
	border-radius: 3px;
	height: 8rem;
}

#feedback .feedback-submit {
	width: 140px;
	margin: 1.3rem auto 0;
	height: 3.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #4060af;
	color: #fff;
}

#feedback #img {
	width: 240px;
	height: 84px;
}


/**/

.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: 5px;
	width: calc(25% - 20px);
	margin: 10px;
	box-shadow: initial;
	cursor: pointer;
	border: 1px solid #eaeaea;
	border-radius: 5px;
}

.product-center-list li a.xunjia {
	margin-top: 15px;
	display: flex !important;
	width: 100%;
	justify-content: center;
	align-items: center;
	line-height: 40px;
	background-color: rgb(44, 66, 121);
	color: rgb(255, 255, 255);
	border-color: rgb(44, 66, 121);
}

.product-center-list li a.xunjia i {
	margin-right: 8px;
}

.product-center-list li a {
	display: block;
	text-align: center;
}

.product-center-list ul li:hover {
	box-shadow: 0 5px 10px 0 rgb(0 0 0 / 10%);
	transition: all 0.3s;
}

.product-center-list li p {
	margin-top: 10px;
}

.product-center-list li:hover:after {
	right: 0;
}

.newprocenter .product-center-list {
	width: 100%;
}

.newprocenter .product-center-list li {
	width: calc(25% - 20px);
}

.product-center-list .hidden {
	position: fixed;
	display: none;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.8);
	z-index: 10000000000000;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.product-center-list .hidden img {
	max-width: 800px;
	max-height: 78%;
}

.product-center-list .hidden .close-gb {
	display: flex;
	margin-top: 20px;
	border: 1px solid #fff;
	color: #FFF;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	text-align: center;
	line-height: 42px;
	font-size: 25px;
	cursor: pointer;
	justify-content: center;
}

.product-center-list .hidden.cur {
	display: flex;
}

.pro-nav-box {
	display: flex;
	width: 100%;
	justify-content: center;
	align-items: center;
}

.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: #6fa734
}

.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: #6fa734
}

.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-nav {
	display: inline-block;
	text-align: center;
	background: #fff;
	padding: 10px 20px;
	margin: 0 15px;
	min-width: 180px;
	line-height: 30px;
	border-radius: 2px;
	background: #2c4279;
	color: #fff;
}
.pro-type-nav:hover{
	color:#fff;
	background:#3a5aab;
}
.pro-type-nav.cur{
	color:#fff;
	background:#6f7480
}
.procenter .searchform {
		display: flex;
	align-items: center;
    justify-content: center;
	width: 700px;
	margin: 30px auto;
	border-bottom: 1px solid #eaeaea;
}

.procenter .searchform input {
	width: calc(100% - 40px);
	height: 40px;
	line-height: 40px;
	outline: 0;
}
.procenter .searchform button{
	width: 40px;
	font-size: 18px;
	height: 39px;
	display: flex;
	align-items: center;
    justify-content: center;
	background:none;
}
.pro-view-container {
	display: flex;
	justify-content: space-between;
}

.pro-view-container .pro-img {
	text-align: center;
}

.pro-view-container .pro-view-left {
	max-width: 40%;
	margin-right: 30px;
}

.pro-view-img {
	width: 100%;
	position: relative;
	border: 1px solid #eaeaea;
	padding: 20px;
}

.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: 60%;
	margin-left: 30px;
}

.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: 15px 30px 0;
	margin-bottom: 1rem;
}

.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: 30px 0;
}

.headline h2 {
	display: flex;
	font-size: 1.6rem;
}

.headline div.ewm {
	position: relative;
}

.headline div.ewm .hidden {
	padding:10px 0 0 0;
	display: none;
	position: absolute;
	top: 100%;
	right: 0;
	z-index: 100;
	width: 200px;
	height: 215px;
	border: 1px solid #eee;
	border-radius: 2px;
	text-align: center;
	background: #fff;
}

.headline div.ewm:hover .hidden {
	display: block;
}

.headline div.ewm .hidden p {
	font-size: 14px;
}

.pro-view-jj .swipers-btn {
	width: 30px;
	background: #f5f5f5;
	border-radius: 0;
	top: 15px;
	height: auto;
	bottom: 0px;
	font-size: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pro-view-jj .swipers-btn:hover {
	background: #2c4279;
	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: #2c4279;
	opacity: 1;
}

.xunj {
	border: 1px solid #2c4279;
	color: #2c4279;
	height: 40px;
	line-height: 40px;
	letter-spacing: normal;
	border-radius: 45px;
	text-align: center;
	padding: 0;
	display: block;
	background: 0;
	max-width: 280px;
	width: 100%;
	min-width: 130px;
	margin-top: 10px;
	font-size: 16px;
}

.xunj:hover {
	background: #2c4279;
	color: #fff;
}

.pro_view {
	width: 100%;
	border: 1px solid #ccc;
}

.pro_view .pro_nav {
	background: #efefef;
	padding: 0;
	border-bottom: 1px solid #ccc;
}

.pro_view .pro_nav span.ms{
	display: inline-block;
	line-height: 38px;
	padding: 0 20px;
	background: #fff;
	border-top: 2px solid #666;
	margin-top: -1px;
	position: relative;
	z-index: 1;
	margin-bottom: -1px;
}
.pro_view .tabel_box{
	padding: 20px;
}
.pro_view .tabel_box table{
	border:1px solid #eaeaea;
}
.pro_view .tabel_box table td{
	border:1px solid #eaeaea;
	padding:5px 15px;
}
.data .flex{
	margin-top: 30px;
	display: flex;
    align-items: center;
    justify-content: space-between;
}
.data .flex a{
	    max-width: 40%;
    background-color: #efefef;
    line-height: 22px;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #ddd;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.pro_wrap{
	position: relative;
	width:100%;
	padding: 0 40px!important;
}
.pro_wrap .hotpro-wrapper{
	width:100%;
}
.pro_wrap .probutton{
	position: initial;
	height: initial;
	margin-bottom: 0;
}
.pro_wrap .probutton .swiper-button-prev,
.pro_wrap .probutton .swiper-button-next{
	top: 50%;
	margin-top: -16px;
	position: absolute!important;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	font-size: 14px;
	background: #b3b3b3;
	color: #fff;
	border: none;
	margin-right: 0;
}
/**/

.service .container {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.service .container .list_left {
	width: 200px;
}

.service .container .list_right {
	width: calc(100% - 230px);
}

.service .list_left h3,
.service .list_right h3 {
	font-weight: normal;
	margin-bottom: 30px;
}
.service .container .list_left li a{
	display:block;
	width:100%;
}
.service .container .list_left li {
	width: 200px;
	line-height: 20px;
	padding: 10px 15px;
	margin-top: 10px;
	border: 1px solid #eaeaea;
	border-left: 5px solid #eaeaea;
}

.service .container .list_left li.cur {
	border-left-color: #2c4279;
}

.service .container .list_left li.cur a {
	color: #2c4279;
	font-weight: bold;
}

.service .container .list_right table {
	width: 100%;
}

.service .container .list_right table th {
	padding: 10px 0;
	font-size: 16px;
	max-width: 40%;
	border-bottom: 2px solid #eaeaea;
}

.service .container .list_right table td {
	max-width: 40%;
	padding: 10px 0;
	border-bottom: 1px solid #eaeaea;
}


/**/
.feedback-form .form-control-input {
	position: relative;
}

.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;
	background: #f0f4f759;
}

.feedback-form .form-control-input .form-control:focus {
	box-shadow: initial;
}

.feedback-form .form-textarea {
	padding-left: 20px;
	height: 140px;
}
.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{
	background: #2c4279;
	color:#fff;
}
.feedback-submit2.btn {
    float: right;
    background: #2c4279;
    color: #ffffff;
    border-radius: 0;
    width: 100%;
    max-width: 300px;
    height: 51px;
    border-radius: 51px;
}
@media (max-width:1200px) {
	.about-box-ny-left {
		width: 50%;
	}
	.navbar .nav-item {
		padding: 0 10px;
	}
	.gx_num li {
		width: calc(50% - 30px);
	}
	.process_item .num span {
		width: 100px;
		height: 100px;
		;
	}
	.process_item .num {
		font-size: 50px;
		width: 40%;
	}
	.process_item .img-box {
		width: 60%;
	}
	.header-center .navbar .nav-item {
		padding: 0 0.4rem;
	}
	.news_list_box_right li {
		padding: 30px 20px;
	}
	.news_list_box_left {
		padding: 30px;
	}
	.text-top {
		margin-bottom: 15px;
	}
	.product-center-list li {
		width: calc(50% - 30px);
	}
}

@media (max-width:991px) {
	.pro-view-container {
    justify-content: space-between;
    flex-direction: column;
}
.pro-view-container .pro-view-left,
.pro-view-container .pro-view-right{
	width: 100%;
	margin-left: 0;
	margin-right: 0;
	max-width: initial;
}

	.list_left ul {
		display: flex;
		width: 100%;
	}
	.service .list_left h3,
	.service .list_right h3 {
		margin-bottom: 15px;
		font-size: 20px;
	}
	.list_left ul li {
		margin-top: 0!important;
		width: 100%!important;
		margin-right: 15px;
		margin-bottom: 20px;
	}
	.service .container {
		align-items: flex-start;
		flex-direction: column;
	}
	.service .container .list_right,
	.service .container .list_left {
		width: 100%;
	}
	.service .container .list_right table th:nth-child(2),
	.service .container .list_right table td:nth-child(2) {
		display: none;
	}
	#verifycode {
		width: calc(100% - 120px);
	}
	#feedback #img {
		width: 120px;
	}
	.contact_ul {
		flex-direction: column;
	}
	ul.news-list li {
		width: calc(50% - 20px);
	}
	#banner-img {
		padding-top: 55px;
		min-height: 320px;
	}
	.about-box-ny-left {
		width: 100%;
		padding-right: 0;
		margin-right: 0;
		margin-bottom: 30px;
	}
	.yj_left,
	.yj_right,
	.contact_ul li {
		width: 100%;
	}
	.yj_left>div.b {
		display: flex;
		width: 100%;
		margin-bottom: 80px;
	}
	.yj_left>div.b>div {
		width: 100%;
	}
	.yj {
		display: flex;
		align-items: flex-start;
		font-size: 16px;
		flex-direction: column;
	}
	.about-box-ny-right {
		width: 100%;
	}
	.culture {
		padding: 0;
		display: flex;
		flex-direction: column;
	}
	.culture_type {
		width: 100%;
	}
	.culture_type .text_box,
	.culture_type.cur .text_box {
		width: 50%;
	}
	.culture_type .text_box h1 {
		font-size: 30px;
	}
	.culture_type.cur {
		width: 100%;
		transition: all 0.5s;
	}
	.culture_type.cur2 {
		width: 100%;
		transition: all 0.5s;
	}
	.warppboxabout {
		padding-bottom: 0!important;
	}
	.indexabout {
		display: flex;
		justify-content: center;
		align-items: center;
		min-height: initial;
		flex-direction: column-reverse;
	}
	.indexabout .left_img {
		position: initial;
		width: 100%;
		min-height: 580px;
		margin-top: 40px;
	}
	.indexabout .right_text {
		width: 90%;
		max-width: 720px;
		padding: 0 15px;
	}
	.banner .banner_img .pc_photo {
		display: none;
	}
	.banner .banner_img .ph_photo {
		display: block;
	}
	.gx_num li {
		width: calc(100% - 30px);
	}
	.gx_num,
	.gx_num li:first-child {
		text-align: center;
	}
	.p-box {
		text-align: center;
	}
	.process_item2 {
		flex-direction: column-reverse;
	}
	.process_item {
		justify-content: space-between;
		flex-direction: column;
	}
	.process_item .num {
		margin-bottom: 20px;
	}
	.process_item .num,
	.process_item .img-box {
		width: 100%;
	}
	.navbar-brand {
		margin-right: 0;
	}
	.mould_list li {
		width: calc(50% - 30px);
	}
	.product-center-list li {
		width: calc(100% - 30px);
	}
	#contain-nav .swiper-slide {
		min-width: 120px;
	}
	#banner-img h3 {
		font-size: 20px;
	}
	.about-box-ny {
		display: flex;
		align-items: center;
		flex-direction: column;
	}
	.moblie_title_right {
		display: block;
		margin-left: 15px;
	}
	header .navbar {
		display: none!important;
	}
	.intro_box>.img_box {
		position: initial;
		width: 100%;
		height: 400px;
	}
	.intro_text {
		width: 100%;
	}
	.banner .swiper-container .swiper-wrapper .swiper-slide .banner-text-box h1 {
		font-size: 1.8rem;
	}
	.banner-text-box h1 span {
		font-size: 2.6rem;
	}
	.products_box .container {
		position: initial;
	}
	.products_box {
		position: relative;
	}
	.background_pro {
		z-index: -1;
	}
	.news_list_box {
		display: flex;
		flex-direction: column;
	}
	.news_list_box_left,
	.news_list_box_right {
		width: 100%;
		;
	}
}

@media (max-width:768px) {
	.products-wrapper .text_box{
		margin-top:-10px
	}
	.pro-nav-box {
    display: flex
;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}.pro-type-nav{
	margin-bottom:15px;
}
.service .container .list_right table th,
.service .container .list_right table td{
	    max-width:160px!important;
}
	.warpper-ny .title h3 {
		font-size: 20px;
	}
	ul.news-list li {
		width: calc(100% - 20px);
	}
	#banner-img {
		padding-top: 55px;
		min-height: 220px;
	}
	.yj_right {
		flex-direction: column;
	}
	.yj_right li,
	.ys li {
		width: 100%;
		margin: 25px 0;
	}
	.yj_left>div.b>div {
		display: flex;
	}
	.yj_left>div.b {
		flex-direction: column;
	}
	ul.contact {
		flex-direction: column;
	}
	ul.contact li {
		width: 100%;
	}
	.more-box a {
		font-size: 14px;
		min-width: 100px;
	}
	.culture_type .text_box h1 {
		font-size: 20px;
	}
	.culture_type {
		height: 220px;
	}
	.indexabout .biaoqian {
		align-items: flex-start;
		flex-direction: column;
	}
	.indexabout .biaoqian>div {
		margin-bottom: 15px;
	}
	.indexabout .biaoqian>div:last-child {
		margin-bottom: 0;
	}
	.indexabout .biaoqian>div>img {
		width: 26px;
	}
	.indexabout .biaoqian>div h5 {
		margin-bottom: 8px;
	}
	.tb_footer li {
		margin: 0 15px;
	}
	.culture_type .text_box,
	.culture_type.cur .text_box {
		width: 100%;
	}
	.news_list_box_right li>a>i {
		width: 8px;
		height: 8px;
		margin-right: 8px;
	}
	.news_list_box_left {
		padding: 10px;
	}
	.indexabout .left_img {
		min-height: 400px;
	}
	.num-big {
		font-size: 120px;
	}
	.p-box {
		font-size: initial;
		line-height: initial;
	}
	#contain-nav {
		margin-top: -15px;
	}
	.mould_list li {
		width: calc(100% - 30px);
	}
	.left-nav {
		position: initial;
	}
	.procenter {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		flex-direction: column;
	}
	.left-nav {
		display: none;
		width: 100%;
		border-right: 0;
	}
	.left-nav.cur {
		display: block;
	}
	.product-center-list {
		width: 100%;
		padding: 30px 0;
	}
	.title-ny h2 {
		font-size: 24px;
	}
	.title-ny p {
		font-size: 20px;
	}
	.warppbox,
	.warpper-ny {
		padding: 50px 0;
	}
	.fupad img {
		max-height: 40px;
	}
	.picture_box {
		background-attachment: initial;
		min-height: auto!important;
	}
	.search_btn {
		width: 50px;
		height: 55px;
	}
	.header-box>.header-cen {
		padding: 0 2%;
	}
	.header-right {
		position: relative;
		display: flex;
		width: initial;
		height: 100%;
		align-items: center;
		justify-content: flex-end;
	}
	.header-box,
	header.active .header-box {
		height: 55px;
	}

	.banner .swiper-container .swiper-wrapper .swiper-slide .banner-text-box h1 {
		line-height: 40px;
		font-size: 1.2rem;
	}
	.banner .swiper-container .swiper-wrapper .swiper-slide .banner-text-box i {
		margin: 15px 0;
	}
	.banner-text-box h1 span {
		font-size: 1.6rem;
	}
	.banner-text-box p {
		font-size: 1rem;
	}
	.banner-text-box a.more {
		width: 8rem;
		height: 2.4rem;
	}
	.player-box {
		width: 55px;
		height: 55px;
	}
	.player-box>img {
		width: 14px!important;
	}
	.title h2 {
		font-size: 28px;
	}
	.title span {
		font-size: 16px;
	}
	.intro_box h4 {
		font-size: 18px;
	}
	.intro_text {
		padding: 1rem;
	}
	.title {
		margin-bottom: 20px;
	}
	.intro_text .more-box {
		margin-top: 20px;
	}
	.news_list_box_right li {
		padding: 30px 0;
	}
	.index-contact-p h1 {
		font-size: 18px;
	}
	.text-top h4 {
		font-size: 16px;
	}
}