.layout {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
}
input {
	outline: 0;
}
.search {
	position: relative;
}
.search-cont {
	position: absolute;
	background: #fff;
	z-index: 2;
	display: flex;
	right: 20px;
	top: 50px;
	padding: 20px 10px 20px 20px;
	border-radius: 5px;
	box-shadow: 0 0 5px #eee;
	display: none;
}
.search-cont input {
	line-height: 32px;
	padding: 0 5px;
	width: 300px;
	border-radius: 3px;
	border: 1px solid #ccc;
}
.search-cont button {
    border: 0;
    background-color: inherit;
}
.search-cont button {
    padding: 0 10px;
    line-height: 32px;
    border: 1px solid #ccc;
    border-radius: 3px;
}
#search_btn i {
    font-size: 16px;
}
.head {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.logo-top {
	width: 220px;
}
.logo-top a {
	display: block;
}
.logo-top a img {
	max-width: 220px;
}
nav {
	flex: 1;
	margin: 0 3%;
}
.nav-tree {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.nav-item a{
	display: block;
	font-size: 16px;
	font-weight: bold;
	padding: 0 20px;
	line-height: 100px;
}
.nav-tree .nav-item{
	position: relative;
}
.nav-tree .nav-item:before {
	content: "";
	display: block;
	position: absolute;
	width: 0;
	height: 100%;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	background: #009541;
	z-index: -1;
}
.nav-tree > .current a, .nav-tree .nav-item:hover a {
	color: #fff;
}
.nav-tree > .current:before, .nav-tree .nav-item:hover:before {
	width: 100%;
}
.head-right {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 5px 0;
	border-radius: 30px;
	border: 1px solid #ccc;
}
#search_btn {
	display: block;
	margin-right: 20px;
	padding: 0 20px;
	font-size: 20px;
	border-right: 1px solid #ccc;
	color: #666;
}
.lang {
	position: relative;
	padding-right: 20px;
}
.lang b {
	display: flex;
	align-items: center;
	cursor: pointer;
}
.lang b:after {
	content: "\f0d7";
	margin-left: 5px;
	color: #999;
	display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.lang img {
	width: 30px;
	margin-right: 5px;
}
.lang span {
	display: block;
	font-size: 14px;
}

.lang-cont {
	position: absolute;
	display: flex;
    top: 35px;
    right: 0;
    width: 300px;
    background: #FFF;
    padding: 20px 10px 20px 20px;
    transform: scale3d(0.9, 0.9, 1);
    opacity: 0;
    z-index: -1;
    border: 1px solid #eee;
    border-radius: 5px;
    max-height: 80vh;
}
.lang-cont li {
	width: 49%;
	cursor: pointer;
}
.lang-cont li a {
	display: flex;
}
.lang:hover .lang-cont {
	opacity: 1;
	z-index: 9;
	transform: scale3d(1, 1, 1);
}
.lang:hover b:after {
	transform: rotate(-180deg);
}
.slider_banner .swiper-pagination-bullet-active {
	width: 20px;
	border-radius: 10px;
}
:root {
    --swiper-theme-color: #009541;
}

.index-product {
	padding: 60px 0;
}
.index-title {
	margin-bottom: 30px;
	text-align: center;
}
.index-title h2 {
	font-size: 40px;
	font-weight: bold;
	text-align: center;
	line-height: 1.7;
}
.index-title small {
	color: #009541;
	font-size: 12px;
	position: relative;
	text-transform: uppercase;
}
.index-title small:after, .index-title small:before {
	content: "";
	display: block;
	position: absolute;
	width: 20px;
	height: 1px;
	background: #EE7E2E;
	top: 50%;
	transform: translateY(-50%);
}
.index-title small:after {
	right: -30px;
}
.index-title small:before {
	left: -30px;
}
.index_pro_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.index_pro_item {
	width: 24%;
	margin-bottom: 20px;
}
.index_pro_info h3 {
	text-align: center;
	padding: 10px;
	border: 1px solid #EE7E2E;
	background: #EE7E2E;
	color: #fff;
	font-size: 16px;
	line-height: 20px;
}
.index_pro_img {
	overflow: hidden;
}
.index_pro_item:hover img {
	transform: scale(1.05);
}
.index_pro_item:hover h3 {
	color: #EE7E2E;
	background: #fff;
}

.index_about_cont {
	display: flex;
	flex-wrap: wrap;
}
.index_about_img, .index_about_info {
	width: 50%;
}
.index_about_info {
	background: #009541;
	padding: 0 50px;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
}
.index_about_info .index-title {
	width: 100%;
}
.index_about_info .index-title h2, .index_about_info .index-title small {
	color: #fff;
}
.index_about_info .index-title small:after, .index_about_info .index-title small:before {
	background: #fff;
}
.index_about_desc p {
	color: #fff;
	line-height: 1.7;
	font-size: 16px;
	width: 100%;
	text-align: center;
}
.index_about_btn {
	margin-top: 40px;
	display: flex;
	justify-content: center;
	width: 100%;
}
.index_about_btn a {
	display: block;
	line-height: 40px;
	padding: 0 20px;
	background: #EE7E2E;
	color: #fff;
	border-radius: 5px;
	text-transform: uppercase;
	font-size: 16px;
}
.index_about_btn:hover a {
	color: #EE7E2E;
	background: #fff;
}

.index-news {
	padding: 60px 0;
}
.index_news_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}
.index_news_item {
	width: 31%;
	box-shadow: 0 0 10px #ddd;
	overflow: hidden;
} 
.index_news_info {
	padding: 60px 30px 20px;
	margin-top: -11%;
	position: relative;
	z-index: 2;
}
.index_news_img img {
	transform: scale(1.05);
}
.index_news_item:hover .index_news_img img {
	transform: scale(1);
}
.index_news_info h3 a {
	display: block;
	font-size: 20px;
	font-weight: bold;
	line-height: 2;
	text-align: center;
}
.index_news_info p {
	font-size: 14px;
	color: #666;
	line-height: 1.5;
	overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    margin: 20px 0;
    height: 130px;
}

.index_news_info:before {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #fff;
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-transform: skewY(-6deg);
    transform: skewY(-6deg);
    will-change: transform;
    transition: all .3s ease;
    pointer-events: none;
    z-index: -1;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.index_news_item:hover .index_news_info:before {
	transform: skewY(0);
}
.index_news_time {
	display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    text-align: center;
    font-size: 36px;
    color: rgba(255,255,255,.7);
    background-color: #76bd42;
    background-image: -webkit-linear-gradient(bottom, #6da941 0%, #71de20 100%);
    background-image: -ms-linear-gradient(bottom, #6da941 0%, #71de20 100%);
    background-image: -moz-linear-gradient(bottom, #6da941 0%, #71de20 100%);
    background-image: -o-linear-gradient(bottom, #6da941 0%, #71de20 100%);
    background-image: linear-gradient(to top, #6da941 0%, #71de20 100%);
    position: absolute;
    right: 15%;
    top: -35px;
    margin-right: 0;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.index_news_item:hover .index_news_time {
	right: calc(50% - 35px);
}

.index-ce {
	padding: 60px 0;
	background-image: url(../images/company_subscribe_bg.jpg);
}
.layer-mask {
    width: 100%;
    height: 100%;
    opacity: 0.3;
    transition: all 0.5s;
    background-color: #3e3e3e;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
}
.index-ce .swiper-wrapper {
	padding: 80px 0;
}
.index-ce .swiper-slide {
    transform: scale(1);
}
.index-ce .swiper-slide-prev, .index-ce .swiper-slide-next {
    transform: scale(1.2);
    z-index: 1000;
}
.index-ce .swiper-slide-active {
    transform: scale(1.4);
    z-index: 1002;
}
.index-ce .swiper-slide-active .layer-mask {
    display: none;
}

.index-ce .swiper-button-next, .index-ce .swiper-button-prev {
	color: #fff;
	background: rgba(0,0,0,0.6);
	border-radius: 50%;
	width: 80px;
	height: 80px;
}
.index-ce .swiper-button-next:after, .index-ce .swiper-button-prev:after {
	font-size: 20px;
}
.index-ce .swiper-button-prev {
	left: 20px;
}
.index-ce .swiper-button-next {
	right: 20px;
}

.index-brand {
	padding: 60px 0;
}

.index-brand .swiper-slide {
	padding: 10px;
	border-radius: 5px;
	border: 1px solid #ccc;
}

.footer-wrapper {
	background: #333;
	padding: 60px;
}
.footer-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.footer-item {
	width: 24%;
}
.footer-item h3 {
	font-size: 20px;
	color: #fff;
	line-height: 1;
	margin-bottom: 20px;
}
.code li {
	display: block;
	justify-content: flex-end;
}
.code img {
	max-width: 150px;
}
.footer-item li {
	padding: 5px 0;
	display: flex;
}
.footer-item li a {
	display: block;
	color: #f2f2f2;
	line-height: 20px;
	font-size: 14px;
	width: calc(100% - 25px)
}
.footer-item li i {
	margin-right: 5px;
	width: 20px;
	line-height: 20px;
	text-align: center;
	color: #f2f2f2;
}
.foot {
	padding: 30px 20px;
	text-align: center;
	color: #e3e3e3;
	background: #333;
	border-top: 1px solid #555;
}


/* neiye */

.inner-nav {
    background-color: #f3f3f3;
}
.inner-nav .inner-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.inner-list .inner-item {
    width: 240px;
}
.inner-item a {
    display: block;
    line-height: 60px;
    text-align: center;
    font-size: 20px;
    position: relative;
    z-index: 1;
}
.inner-item a.active, .inner-item a:hover {
    color: #fff;
}
.inner-item a:after {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    height: 100%;
    background-color: #009541;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    z-index: -1;
    transition: width 0.3s ease-in-out,left 0.3s ease-in-out;
}
.inner-item a.active:after, .inner-item a:hover:after {
    width: 100%;
}
.inner-main {
    margin: 60px 0;
}
.page {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
}
.page a {
    display: block;
    margin: 0 10px;
    font-size: 16px;
    line-height: 30px;
    width: 50px;
    text-align: center;
    padding: 5px 0;
    border: 1px solid #ccc;
}
.page i {
    font-size: 16px;
}
.page a:hover, .page a.active {
    color: #fff;
    background: #009541;
    border-color: #009541;
}

/*about*/
.about-desc {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.about-desc .about-txt {
    width: 50%;
    transform: translateX(5%);
    background-color: #e9f4ee;
    padding: 30px 40px;
}
.about-txt p {
    font-size: 16px;
    line-height: 2;
    color: #888;
    margin-bottom: 20px;
    text-indent: 32px;
}
.about-txt p:last-child {
    margin-bottom: 0;
}
.about-desc .about-img {
    width: 50%;
}
.about-list {
    display: flex;
    flex-wrap: wrap;
}
.about-list .about-item {
    width: 24%;
    margin: 0.5%;
}
.about-item .about-img {
    overflow: hidden;
    border: 1px solid #ccc;
}
.about-item img {
    width: 100%;
}
#outerdiv {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.7);
    z-index: 100;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 999999;
}
#innerdiv {
    position: absolute;
}

/*news*/

.news-item {
    width: 100%;
    display: flex;
    padding: 20px 15px 20px 90px;
    background: #fff;
    box-shadow: 0 5px 10px #ccc;
    margin-bottom: 40px;
    position: relative;
    justify-content: space-between;
    flex-wrap: wrap;
}
.news-item .news-time {
    background: #000;
    padding: 10px;
    text-align: right;
    position: absolute;
    left: 0;
    top: 0;
}
.news-time big {
    font-size: 18px;
    color: #fff;
    display: block;
}
.news-time small {
    font-size: 14px;
    color: #fff;
}
.news-item .news-info {
    padding: 20px 0;
    width: calc(100% - 500px);
}
.news-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
}
.news-info p {
    height: 125px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    margin-bottom: 20px;
}
.news-info a {
    display: block;
    border: 1px solid #000;
    width: 120px;
    text-align: center;
    border-radius: 20px;
    line-height: 36px;
}
.news-item .news-img {
    width: 400px;
    overflow: hidden;
}
.news-img img {
    width: 100%;
}
.news-item:hover {
    padding-left: 140px;
}
.news-item:hover .news-time {
    background: #009541;
    padding-left: 60px;
}
.news-item:hover .news-info a {
    color: #fff;
    background: #000;
}
.inner-title {
    margin-bottom: 30px;
    text-align: center;
}
.inner-title h1 {
    text-align: center;
    font-size: 24px;
    padding-bottom: 10px;
    text-transform: uppercase;
    position: relative;
}
.map-txt {
	padding: 20px;
}
.map-txt img {
	max-width: 300px !important;
}


/*product*/
.pro-wrap {
    width: 100%;
    font-size: 14px;
}
.pro-wrap th.w89 {
    overflow: auto;
}
.sorting-ico .on {
    display: none;
}
.pro-wrap th, .pro-wrap td {
    text-align: center;
}
.pro-wrap th {
    background-color: #b6eeca;
    padding: 10px 0;
    font-size: 14px !important;
    color: #333;
    border: 1px solid #fff;
}
.pro-wrap td {
    border: 1px solid #fff;
    background-color: #ecf2ee;
    font-size: 12px;
    color: #333;
    padding: 10px 0;
    min-width: 80px;
    max-width: 120px;
}
.pro-wrap th, .pro-wrap td {
    text-align: center;
}
.sorting .sorting-ico {
    width: 9px;
    height: 13px;
    margin: 5px auto;
    position: relative;
    cursor: pointer;
}
.ui {
    background-image: url(../images/ico.png);
    background-repeat: no-repeat;
}
.sorting .sorting-ico .sorting-ico-t {
    width: 9px;
    height: 5px;
    background-position: -396px -147px;
    position: absolute;
    top: 0px;
}
.sorting .sorting-ico .sorting-ico-b {
    width: 9px;
    height: 5px;
    background-position: -396px -155px;
    position: absolute;
    bottom: 0px;
}
.ui-widget-content {
    border: 0px solid #aaa !important;
    background: #0c9c3f !important;
    color: #222;
}
.Widget-Width {
    width: 4px !important;
    left: 50%;
    margin-left: -2px;
}
.slider-text-min, .slider-text-max {
    border-width: 0;
    background-color: #fff;
    text-align: center;
    margin: 0 10%;
    width: 80%;
}
.ui-slider .ui-slider-handle {
    width: 16px !important;
    height: 4px !important;
}
.ui-slider-vertical .ui-slider-handle {
    left: -6px !important;
    margin-left: 0 !important;
    margin-bottom: 0 !important;
}
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
    border: 0px solid #d3d3d3 !important;
    background: #0c9c3f !important;
    font-weight: 400 !important;
    color: #555 !important;
    cursor: pointer !important;
}
.pro-input {
    width: 100%;
    border: 1px #ccc solid;
    padding: 5px 0;
    margin-bottom: 7px;
    text-align: center;
}
#tableList {
	width: 100%;
}
.position {
    padding: 30px 0 10px 0;
    border-bottom: 2px solid #eee;
}
.position span {
    display: inline-block;
    margin-right: 10px;
    font-size: 14px;
    color: #666;
}
.pro-menu {
    width: 100%;
    height: auto;
    line-height: 42px;
    text-align: center;
    margin: 30px 0;
}
.pro-menu li {
    height: 22px;
    zoom: 1;
    display: inline-block;
    padding: 0 30px;
    border-right: 2px #e0e0e0 solid;
}
.pro-menu li a {
    display: block;
}
.pro-menu li span {
    height: 42px;
    display: block;
    border-radius: 22px;
    -moz-border-radius: 22px;
    -webkit-border-radius: 22px;
    -o-border-radius: 22px;
    border: 1px #fff solid;
    cursor: pointer;
    margin-top: -10px;
    font-size: 16px;
    color: #333;
    padding: 0 20px;
}
.pro-menu li.hover span {
    background-color: #0c9c3f;
    color: #fff;
    border: 1px #0c9c3f solid;
}
.pro-menu li:last-child {
    border-right: 0;
}
.pro-con li {
    line-height: 26px;
    padding: 9px;
    zoom: 1;
    display: inline-block;
    *display: inline;
}
.pro-con li a {
    padding: 0 10px;
    color: #666;
    border: 1px #e0e0e0 solid;
    border-radius: 18px;
    -moz-border-radius: 18px;
    -webkit-border-radius: 18px;
    -o-border-radius: 18px;
    font-size: 14px;
}
.pro-con li .hover {
    border: 1px #0c9c3f solid;
}
.pro-con {
    width: 100%;
    height: auto;
    clear: both;
    padding: 35px 0;
    text-align: center;
}


.news-list_ny {
    width: 100%;
    margin-top: 16px;
}
.news-list_ny ul {
    display: flex;
    flex-wrap: wrap;
}
.news-list_ny ul li {
    width: 30.33333333333%;
    margin: 1.5%;
    border-radius: 10px;
    height: 451px;
    overflow: hidden;
    background: #fff;
    margin-top: 30px;
    box-shadow: 0 2px 10px 2px #ebebec;
}
.news-img_ny {
    width: 100%;
    overflow: hidden;
    max-height: 240px;
}
.news-img_ny img {
    width: 100%;
    object-fit: cover;
    transition: all .6s ease;
}
.news-words_ny {
    width: 100%;
    padding: 56px 32px;
    background: #fff;
    position: relative;
    z-index: 2;
    transition: all .4s ease;
}
.news-words_ny h6 a {
    display: block;
    font-size: 20px;
    font-weight: bold;
}
.news-words_ny p {
    font-size: 16px;
    color: #666;
    transition: all .4s ease;
    line-height: 26px;
    margin-top: 0px;
    height: 0px;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.news-words_ny span {
    display: block;
    margin-top: 42px;
    font-size: 16px;
    color: #848484;
}
.news-list_ny ul li:hover .news-img_ny img {
    transform: scale(1.1);
}
.news-list_ny ul li:hover .news-words_ny {
    margin-top: -78px;
}
.news-list_ny ul li:hover .news-words_ny p {
    height: 52px;
    margin-top: 26px;
}

#tableList thead {
    position: sticky;
    top: 0;
}