@charset "utf-8";

/* CSS Document */

html {
	font-size: calc(100vw/7.5);
}
@media screen and (min-width: 750px) {
	html {
		font-size: 100px;
	}
}
:root {
	--color: #79b428;
	--bgcolor: #f2f2f2;
	--borcolor: #e1e1e1;
}
a {
	text-decoration: none;
}
a:link {
	color: #333;
}
a:visited {
	color: #333;
}
a:hover {
	color: var(--color);
	/*text-decoration: underline;*/
}
a:active {
	color: #333;
}
input[type="text"], input[type="submit"] {
	display: block;
	background: none;
	border: 0;
	font-size: 15px;
	font-family: "微软雅黑", "microsoft yahei";
	line-height: 1;
	padding: 5px;
	width: 100%;
	outline: none;
}
.b-radius {
	-webkit-border-radius: 0.05rem;
	-moz-border-radius: 0.05rem;
	-o-border-radius: 0.05rem;
	border-radius: 0.05rem;
}
.p40 {
	padding-top: 0.40rem;
	padding-bottom: 0.40rem;
}
.mt30 {
	margin-top: 0.30rem;
}
.txt {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.com-title {
	color: #888;
	text-align: center;
	width: 100%;
	margin-bottom: 0.30rem;
}
.com-title .column {
	margin-bottom: 15px;
	position: relative;
}
.com-title .column:before {
	display: block;
	content: '';
	color: #f3f3f3;
	font-size: 50px;
	line-height: 1;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
}
.com-title .column:after {
	display: block;
	content: '';
	background-color: var(--color);
	overflow: hidden;
	height: 5px;
	width: 46px;
	margin-left: -23px;
	position: absolute;
	left: 50%;
	bottom: 0;
	z-index: 2;
}
.com-title h2 {
	color: #333;
	font-size: 24px;
	font-weight: 400;
	padding-top: 5px;
	padding-bottom: 15px;
	position: relative;
	z-index: 3;
}

/* Header */
.welcome {
	background-color: var(--color);
	color: #fff;
	padding-top: 0.08rem;
	padding-bottom: 0.08rem;
}
.welcome a {
	color: #fff;
}
.welcome .com-container {
	flex-wrap: nowrap;
	justify-content: space-between;
}
.welcome .txt-right,
.index-header .search,
.index-header .contact {
	display: none;
}
.welcome .txt-right span {
	color: #e5e5e5;
	padding-right: 6px;
	padding-left: 6px;
}
.index-header .com-container {
	justify-content: center;
	align-items: center;
	padding-top: 0.26rem;
	padding-bottom: 0.26rem;
}
.index-header .logo img {
	display: block;
	height: 0.70rem;
	max-height: 60px;
}
.index-header .search {
	flex: 1 1 auto;
	padding-right: 70px;
	padding-left: 90px;
	max-width: 580px;
}
.index-header .search .content {
	background-color: #fafafa;
	border: 1px solid #e6e6e6;
	padding: 0.05rem 0.45rem 0.05rem 0.05rem;
	overflow: hidden;
}
.index-header .search input[type="submit"] {
	background: url("../images/search.jpg") 50% 50% no-repeat;
	height: 100%;
	width: 42px;
	cursor: pointer;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
}
.index-header .contact .content {
	align-items: center;
	color: var(--color);
	text-align: right;
}
.index-header .contact .content span {
	font-size: 16px;
}
.index-header .contact .content img {
	display: block;
	height: 82px;
	width: 82px;
	margin-left: 0.15rem;
}

/* PC-nav */
.index-nav {
	display: none;
	border-top: 2px solid #cdcecc;
	width: 100%;
	padding-top: 0.15rem;
	padding-bottom: 0.15rem;
}

.index-nav ul.pc-nav li {
	position: relative;
}
.s-a {
	display: block;
	font-size: 16px;
	padding: 0.05rem 0.10rem;
	position: relative;
}
.index-nav ul.pc-nav li.active > a {
	color: var(--color);
}
.index-nav ul.pc-nav li:before {
	display: block;
	content: '';
	background-color: var(--color);
	height: 2px;
	overflow: hidden;
	width: 0;
	position: absolute;
	bottom: 0;
	left: 50%;
	z-index: 1;
}
.index-nav ul.pc-nav li:hover:before, .index-nav ul.pc-nav li.active:before {
	width: calc(100% - 0.20rem);
	left: 0.10rem;
}
.index-nav ul.pc-nav li:hover .drop-menu {
	display: block;
}

/* PC端导航 */
.drop-menu {
	display: none;
	animation: showDropMenu .4s;
	min-width: 100%;
	background-color: #fff;
	padding-top: 0.15rem;
	position: absolute;
	left: 50%;
	top: 100%;
	z-index: 3;
	-moz-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}
.drop-menu dl dd {
	border-bottom: 1px solid #63a608;
	text-align: center;
}
.drop-menu dl dd:last-child {
	border-bottom: 0;
}
.drop-menu a {
	display: block;
	background-color: var(--color);
	color: #fff;
	white-space: nowrap;
	padding: 10px 12px;
}
.drop-menu a:hover {
	background-color: #63a608;
}

/* 移动端导航 */
.m-nav {
	background-color: #f5f5f5;
	height: 100%;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	-webkit-transform: translateX(100%);
	-moz-transform: translateX(100%);
	-o-transform: translateX(100%);
	transform: translateX(100%);
}
.m-nav .nav-container {
	padding-top: 20px;
}
.m-nav .nav-content {
	width: 90%;
	margin-left: auto;
	margin-right: auto;
}
.m-nav .item {
	background-color: #fff;
	border: 1px solid #f0f0f0;
	border-left: 3px solid var(--color);
	padding: 5px;
	margin-top: 10px;
}
.m-nav .item:first-child {
	margin-top: 0;
}
.m-nav .item  a {
	display: block;
	padding: 3px 5px;
}
.m-nav .item .title {
	font-size: 15px;
}
.m-nav .item .content {
	display: none;
	border-top: 1px dashed var(--color);
	padding-top: 5px;
}
.m-nav .item li {
	padding: 5px;
}
.m-nav .item li a {
	background-color: #eaeaea;
}
.m-nav .item li a:hover {
	color: #fff;
	background-color: var(--color);
}
.m-search {
	margin-bottom: 15px;
}
.m-search .form-item {
	width: 70%;
	padding-right: 36px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}
.m-search .form-item input[type="text"] {
	background-color: #fff;
	border: 1px solid var(--color);
	padding: 7px;
}
.m-search .form-item input[type="submit"] {
	cursor: pointer;
	height: 100%;
	width: 36px;
	background: var(--color) url("../images/icon-search.png") 50% 50% no-repeat;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
}
#openPopMenu {
	background: #df130b url("../images/icon-mnav.png") 50% 50% no-repeat;
	background-size: 26px 26px;
	border-radius: 4px;
	cursor: pointer;
	height: 34px;
	width: 34px;
	position: absolute;
	left: calc(-34px - 0.15rem);
	top: 0.80rem;
	z-index: 9;
}
#closePopMenu {
	background: url("../images/icon-closed.png") 0 0 no-repeat;
	background-size: 100%;
	cursor: pointer;
	height: 36px;
	width: 36px;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 99;
}
.hide-nav {
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateX(0);
}

/* Banner */
.banner, .index-pro, .index-ys, .index-solution , .index-main{
	width: 100%;
}
.banner img {
	display: block;
	width: 100%;
	max-width: 1920px;
	margin-left: auto;
	margin-right: auto;
}
#banner .swiper-pagination-bullet-active {
	background: var(--color);
}

/* Index-pro */
.com-title .product:before {
	content: 'PRODUCT';
}
.list-tab {
	text-align: center;
	margin-top: 0.15rem;
}
.list-tab span {
	display: inline-block;
	background-color: var(--bgcolor);
	cursor: pointer;
	margin: 0.10rem;
	padding: 0.06rem 0.24rem;
	-webkit-border-radius: calc(12px + 0.06rem);
	-moz-border-radius: calc(12px + 0.06rem);
	-o-border-radius: calc(12px + 0.06rem);
	border-radius: calc(12px + 0.06rem);
}
.list-tab span.active {
	background-color: var(--color);
	color: #fff;
}
.pro-list li {
	flex: 0 0 50%;
	padding: 0.15rem;
	max-width: 50%;
}
.pro-item figure {
	width: 100%;
}
.pro-item figure figcaption {
	font-size: 16px;
	text-align: center;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	margin-top: 0.12rem;
}
.pro-item .pro-desc {
	color: #666;
	margin-top: 0.08rem;
	margin-bottom: 0.25rem; 
}
.pro-item .viewmore {
	text-align: center; 
}
.pro-item .viewmore a, .page-prolist .item .viewmore a {
	display: inline-block;
	border: 1px solid #dcdcdc;
	color: #666;
	padding: 0.06rem 0.20rem;
	-webkit-border-radius: 0.04rem;
	-moz-border-radius: 0.04rem;
	-o-border-radius: 0.04rem;
	border-radius: 0.04rem;
}
.pro-item .viewmore a:hover, .page-prolist .item .viewmore a:hover {
	color: #fff;
	background-color: var(--color);
	border-color: var(--color);
}

/* Index-ys */
.index-ys {
	background-color: var(--bgcolor);
	padding-top: 0.40rem;
}
.ys-container {
	background-color: #fff;
	width: 100%;
	position: relative;
}
.ys-container .com-container {
	position: relative;
	z-index: 2;
}
.ys-container.ys-a {
	background-color: var(--color);
	color: #fff;
}
.ys-container.ys-b {
	padding-bottom: 0.40rem;
}
.ys-container .text, .ys-container .img {
	flex-grow: 0;
	flex-shrink: 0;
	flex-basis: 100%;
	max-width: 100%;
	padding: 0.15rem;
}
.ys-container.ys-b .text {
	order: 1;
}
.ys-container.ys-b .img {
	order: 2;
}
.ys-container .text section {
	padding-left: 80px;
	padding-top: 0.20rem;
	padding-bottom: 0.20rem;
}
.ys-container .ys-title {
	padding-bottom: 10px;
	margin-bottom: 0.20rem;
	position: relative;
}
.ys-container .ys-title:before {
	display: block;
	content: '';
	height: 60px;
	width: 60px;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: -80px;
	z-index: 1;
}
.ys-container .ys-title:after {
	display: block;
	content: '';
	height: 3px;
	width: 60px;
	overflow: hidden;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1;
}
.ys-container.ys-a .ys-title:after {
	background-color: #fff;
}
.ys-container.ys-b .ys-title:after {
	background-color: #b5b5b5;
}
.ys-container .ys-title h3 {
	font-size: 22px;
	line-height: 1.5;
}
.ys-container.ys-b .ys-title h3 {
	color: var(--color);
}
.ys-container .ys-title small {
	display: inline-block;
	font-size: 14px;
	line-height: 1;
}
.ys-container.ys-a .ys-title.step-01:before {
	background: url("../images/icon.png") 0 0 no-repeat;
}
.ys-container.ys-a .ys-title.step-02:before {
	background: url("../images/icon.png") -60px 0 no-repeat;
}
.ys-container.ys-b .ys-title.step-01:before {
	background: url("../images/icon.png") -120px 0 no-repeat;
}
.ys-container.ys-b .ys-title.step-02:before {
	background: url("../images/icon.png") -180px 0 no-repeat;
}

/* Index-solution */
.com-title .solution:before {
	content: 'SOLUTION';
}
.index-solution {
	background: url("../images/solution-bg.jpg") 50% 50% no-repeat;
	background-size: cover;
}
.index-solution .sol-container {
	background-color: var(--bgcolor);
	width: 100%;
	justify-content: space-between;
}
.index-solution .sol-title {
	background-color: var(--bgcolor);
	flex: 0 0 49%;
	max-width: 49%;
	flex-direction: column;
	justify-content: space-between;
}
.index-solution .order-00 {
	order: 0;
}
.index-solution .order-01 {
	order: 1;
}
.index-solution .order-02 {
	order: 3;
}
.index-solution .sol-title .item {
	flex: 1 1 auto;
	width: 100%;
	background-color: #fff;
	border-bottom: 4px solid var(--bgcolor);
	padding-top: 0.15rem;
	padding-bottom: 0.15rem;
	padding-left: calc(0.30rem + 60px);
	padding-right: 0.15rem;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	align-content: center;
}
.index-solution .sol-title .item:last-child {
	border-bottom: 0;
}
.index-solution .sol-title .item:before {
	display: block;
	content: '';
	background-image: url("../images/icon.png");
	background-repeat: no-repeat;
	height: 60px;
	width: 60px;
	overflow: hidden;
	margin-top: -30px;
	position: absolute;
	top: 50%;
	left: 0.15rem;
	z-index: 2;
}
.index-solution .sol-title .item h3 {
	flex: 0 0 100%;
	font-size: 16px;
}
.index-solution .sol-title .item small {
	flex: 0 0 100%;
	font-size: 14px;
}
.index-solution .sol-title .item:hover, .index-solution .sol-title .item.active {
	background-color: var(--color);
	color: #fff;
}
.index-solution .sol-title .item-01:before {
	background-position: 0 -60px;
}
.index-solution .sol-title .item-01:hover:before, .index-solution .sol-title .active.item-01:before {
	background-position: 0 -120px;
}
.index-solution .sol-title .item-02.item:before {
	background-position: -60px -60px;
}
.index-solution .sol-title .item-02.item:hover:before, .index-solution .sol-title .active.item-02:before {
	background-position: -60px -120px;
}
.index-solution .sol-title .item-03.item:before {
	background-position: -120px -60px;
}
.index-solution .sol-title .item-03.item:hover:before, .index-solution .sol-title .active.item-03:before {
	background-position: -120px -120px;
}
.index-solution .sol-title .item-04.item:before {
	background-position: -180px -60px;
}
.index-solution .sol-title .item-04.item:hover:before, .index-solution .sol-title .active.item-04:before {
	background-position: -180px -120px;
}
.index-solution .sol-title .item-05.item:before {
	background-position: -240px -60px;
}
.index-solution .sol-title .item-05.item:hover:before, .index-solution .sol-title .active.item-05:before {
	background-position: -240px -120px;
}
.index-solution .sol-title .item-06.item:before {
	background-position: -300px -60px;
}
.index-solution .sol-title .item-06.item:hover:before, .index-solution .sol-title .active.item-06:before {
	background-position: -300px -120px;
}
.index-solution .sol-title .item-07.item:before {
	background-position: -360px -60px;
}
.index-solution .sol-title .item-07.item:hover:before, .index-solution .sol-title .active.item-07:before {
	background-position: -360px -120px;
}
.index-solution .sol-title .item-08.item:before {
	background-position: -420px -60px;
}
.index-solution .sol-title .item-08.item:hover:before, .index-solution .sol-title .active.item-08:before {
	background-position: -420px -120px;
}
.index-solution .sol-title .item-09.item:before {
	background-position: -480px -60px;
}
.index-solution .sol-title .item-09.item:hover:before, .index-solution .sol-title .active.item-09:before {
	background-position: -480px -120px;
}
.index-solution .sol-title .item-10.item:before {
	background-position: -540px -60px;
}
.index-solution .sol-title .item-10.item:hover:before, .index-solution .sol-title .active.item-10:before {
	background-position: -540px -120px;
}
.index-solution .sol-content {
	flex: 0 0 100%;
	max-width: 100%;
	padding-top: 0.30rem;
}
.index-solution .sol-content .desc {
	flex: 1 1 auto;
	background-color: #4e4e4e;
	color: #fff;
	padding: 0.15rem 0.20rem;
}
.index-solution .sol-content .desc h4 {
	font-size: 18px;
	margin-bottom: 0.08rem;
}
.index-solution .sol-content .viewmore {
	flex: 0 0 130px;
	background-color: var(--color);
}
.index-solution .sol-content .viewmore a {
	justify-content: center;
	align-items: center;
	color: #fff;
	font-size: 16px;
	height: 100%;
	text-align: center;
	width: 100%;
}

/* Index-case */
.com-title .case:before {
	content: 'CASE';
}
.case-list {
	width: 100%;
}
.case-list li {
	flex-grow: 0;
	flex-shrink: 0;
	flex-basis: 50%;
	max-width: 50%;
	padding: 0.15rem;
}
.case-list .item {
	border-bottom: 1px solid #dcdcdc;
	padding-bottom: 0.30rem;
	position: relative;
}
.case-list .item:after {
	display: block;
	content: '';
	background-color: var(--color);
	height: 1px;
	width: 0;
	overflow: hidden;
	position: absolute;
	bottom: -1px;
	left: 50%;
	z-index: 2;
}
.case-list .item:hover:after {
	width: 100%;
	left: 0;
}
.case-list .item h4 {
	font-size: 16px;
	margin-top: 0.12rem;
}
.case-list .item .txt {
	color: #666;
	margin-top: 0.08rem;
}
.index-case .viewmore {
	text-align: center;
	margin-top: 0.25rem;
}
.index-case .viewmore a {
	display: inline-block;
	font-size: 16px;
	border: 2px solid var(--color);
	padding: 0.08rem 0.45rem;
	-webkit-border-radius: 24px;
	-moz-border-radius: 24px;
	-o-border-radius: 24px;
	border-radius: 24px;
}
.index-case .viewmore a:hover {
	background-color: var(--color);
	color: #fff;
}
/* Index-choose */
.index-choose {
	padding-top: 0.20rem;
	position: relative;
}
.index-choose:before {
	display: block;
	content: '';
	background-color: var(--color);
	height: 2.14rem;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
.index-choose .com-container {
	position: relative;
	z-index: 2;
}
.index-choose .title, .index-choose .desc {
	flex-grow: 0;
	flex-shrink: 0;
	flex-basis: 100%;
	max-width: 100%;
}
.index-choose .title h2 {
	color: #fff;
	font-size: 0.50rem;
}
.index-choose .title small {
	display: block;
	color: #fff;
	font-size: 0.26rem;
	line-height: 1;
	margin-top: 0.20rem;
	margin-bottom: 0.60rem;
}
.index-choose .desc section {
	margin-top: 0.30rem;
}
.index-choose .desc h3, .index-choose .desc h4 {
	color: var(--color);
	font-weight: bold;
}
.index-choose .desc h3 {
	font-size: 0.34rem;
	line-height: 2;
}
.index-choose .desc h4 {
	font-size: 15px;
	position: relative;
	padding-bottom: 12px;
}
.index-choose .desc h4:before {
	display: block;
	content: '';
	background-color: var(--color);
	height: 2px;
	width: 90px;
	overflow: hidden;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 3;
}
.index-choose .desc .text {
	margin-top: 0.30rem;
	margin-bottom: 0.30rem;
}
.index-choose .desc .text p {
	text-indent: 2em;
}
.index-choose .desc .viewmore a {
	display: inline-block;
	background-color: var(--color);
	color: #fff;
	font-size: 16px;
	padding: 0.08rem 0.45rem;
	-webkit-border-radius: 0.04rem;
	-moz-border-radius: 0.04rem;
	-o-border-radius: 0.04rem;
	border-radius: 0.04rem;
}

/* Index-honor */
.com-title .honor:before {
	content: 'HONOR';
}
.honor-list {
	width: 100%;
}
.honor-list li {
	flex-grow: 0;
	flex-shrink: 0;
	flex-basis: 33.3333333%;
	max-width: 33.3333333%;
	padding: 0.15rem;
}
.honor-list li:nth-last-child(1), .honor-list li:nth-last-child(2) {
	display: none;
}
.honor-list figure {
	position: relative;
}
.honor-list figcaption {
	background-color: rgba(0, 0, 0, .5);
	color: #fff;
	text-align: center;
	width: 100%;
	padding: 0.08rem 0.05rem;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 2;
}

/* Index-news */
.com-title .news:before {
	content: 'NEWS';
}
.index-news {
	padding-bottom: 0.40rem;
}
.index-news .n-container {
	flex-grow: 0;
	flex-shrink: 0;
	flex-basis: 100%;
	max-width: 100%;
	padding: 0.15rem;
}
.img-news {
	margin-left: -0.075rem;
	margin-right: -0.075rem;
	height: 100%;
}
.img-news .item {
	flex: 0 0 50%;
	max-width: 50%;
	padding-left: 0.075rem;
	padding-right: 0.075rem;
}
.img-news .item .item-container {
	background-color: var(--bgcolor);
	color: #8f8f8f;
	height: 100%;
	width: 100%;
}
.img-news .item .content {
	padding: 0.20rem;
}
.img-news .item .date, .txt-news-item .date {
	font-style: italic;
	margin-bottom: 0.05rem;
}
.img-news .item h4, .txt-news-item h4, .page-newslist .item h4 {
	font-size: 16px;
	margin-bottom: 0.08rem;
}
.img-news .item .txt {
	-webkit-line-clamp: 4;
}
.img-news .item .viewmore {
	text-align: right;
	margin-top: 0.08rem;
}
.img-news .item .viewmore a {
	color: #8f8f8f;
}
.txt-news-item {
	background-color: var(--bgcolor);
	color: #8f8f8f;
	padding: 0.20rem;
	margin-top: 0.15rem;
}
.txt-news-item:first-child {
	margin-top: 0;
}

/* Index-message */
.index-message {
	background-color: var(--bgcolor);
}
.index-message .msg-row {
	margin-left: -0.15rem;
	margin-right: -0.15rem;
}
.index-message .msg-item {
	flex-grow: 0;
	flex-shrink: 0;
	padding: 0.15rem;
}
.index-message .msg-item .item {
	border: 2px solid #9a9a9a;
	padding: 15px;
	align-items: center;
}
.index-message .msg-item .item i {
	flex: 0 0 28px;
	background-image: url("../images/icon.png");
	background-repeat: no-repeat;
	height: 28px;
	overflow: hidden;
	margin-right: 15px;
}
.index-message .item .form-container {
	flex: 1 1 auto;
	border-left: 2px solid #9a9a9a;
	padding: 4px 10px;
}
.index-message .msg-item.name, .index-message .msg-item.tel, .index-message .msg-item.ly, .index-message .msg-item.code {
	flex-basis: 100%;
}
.index-message .msg-item.name .item i {
	background-position: -472px 0;
}
.index-message .msg-item.tel .item i {
	background-position: -504px 0;
}
.index-message .msg-item.ly .item i {
	background-position: -536px 0;
}
.index-message .msg-item.code .item i {
	background-position: -568px 0;
}
.index-message .msg-item.code .item figure {
	flex: 0 0 90px;
}
.index-message .msg-item .submit input[type="submit"] {
	background-color: var(--color);
	color: #fff;
	cursor: pointer;
	font-size: 18px;
	height: 60px;
}
.index-message .msg-item.code {
	justify-content: center;
}
.index-message .msg-item.code .item {
	flex: 0 0 100%;
}
.index-message .msg-item.code .submit {
	flex: 0 0 180px;
	padding-top: 0.40rem;
}

/* Index-footer */
.index-footer, .index-footer a {
	color: #f0f0f0;
}
.index-footer .sub-container {
	
	background-color: var(--color);
	width: 100%;
}
.index-footer dl {
	padding: 0.15rem;
}
.index-footer dl dt {
	color: #fff;
	font-size: 18px;
	margin-bottom: 0.08rem;
}
.index-footer dl dd {
	padding-top: 2px;
	padding-bottom: 2px;
}
.index-footer .nav {
	justify-content: space-between;
	width: 100%;
}
.index-footer .ewm figure {
	text-align: center;
	padding: 0.15rem;
}
.index-footer .ewm figcaption {
	margin-top: 0.12rem;
}
.index-footer .ewm img {
	display: block;
	width: 110px;
}
.index-footer .copyright {
	background-color: #4b8003;
	text-align: center;
	width: 100%;
	padding-top: 0.12rem;
	padding-bottom: 0.12rem;
}
.index-footer .copyright .com-container {
	justify-content: center;
}
.index-footer .copyright p {
	flex-grow: 0;
	flex-shrink: 0;
	flex-basis: 100%;
	padding-left: 0.05rem;
	padding-right: 0.05rem;
}

/* Page */
.page-drop-nav {
	width: 100%;
}
.mfixed {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
}
.page-drop-nav .content {
	background-color: #fff;
	border-bottom: 1px solid var(--borcolor);
}
.page-drop-nav ul {
	border-left: 1px solid var(--borcolor);
}
.page-drop-nav ul li {
	border-right: 1px solid var(--borcolor);
	position: relative;
}
.page-drop-nav a, .page-drop-nav span {
	display: block;
	padding: 12px 15px;
}
.page-drop-nav a.home {
	background: url("../images/icon-home.png") 50% 50% no-repeat;
	width: 48px;
}
.page-drop-nav li i {
	display: inline-block;
	height: 0;
	width: 0;
	margin-left: 6px;
	border-top: 5px solid #c5c5c5;
	border-right: 5px solid transparent;
	border-left: 5px solid transparent;
	border-bottom: 0;
	position: relative;
	top: -2px;
}
.page-drop-nav .dl {
	display: none;
	animation: showDropMenu .4s;
	background-color: #fff;
	border: 1px solid var(--borcolor);
	text-align: center;
	min-width: calc(100% + 2px);
	position: absolute;
	top: 100%;
	left: -1px;
	z-index: 3;
}
.page-drop-nav .dl dd {
	border-top: 1px solid var(--bgcolor);
	white-space: nowrap;
}
.page-drop-nav .dl dd:first-child {
	border-top: 0;
}
.page-drop-nav li.has-dl:hover .dl {
	display: block;
}

.index-main {
	padding-top: 0.30rem;
	padding-bottom: 0.30rem;
}
.page-left-container, .page-right-container {
	flex-grow: 0;
	flex-shrink: 0;
	flex-basis: 100%;
	max-width: 100%;
	padding: 0.15rem;
}
.page-left-container {
	display: none;
}
.page-left-container h2 {
	background-color: var(--color);
	color: #fff;
	font-size: 20px;
	font-weight: normal;
	padding: 0.12rem 0.15rem;
	margin-top: 0.30rem;
}
.page-left-container h2:first-child {
	margin-top: 0;
}
.page-left-container dl {
	margin-top: 0.15rem;
}
.page-left-container .content {
	background-color: var(--bgcolor);
	padding: 0.15rem;
}
.page-left-container ul.menu {
	width: 100%;
}
.page-left-container ul.menu li {
	border-bottom: 1px solid #e5e5e5;
}
.page-left-container ul.menu li > a {
	display: block;
	padding-top: 0.12rem;
	padding-bottom: 0.12rem;
	padding-left: 0.35rem;
	position: relative
}
.page-left-container ul.menu li > a:before {
	display: block;
	content: '';
	background-image: url("../images/icon.png");
	background-position: -300px 0;
	background-repeat: no-repeat;
	height: 13px;
	width: 13px;
	overflow: hidden;
	margin-top: -6px;
	position: absolute;
	left: 0.10rem;
	top: 50%;
	z-index: 1;
}
.page-left-container ul.menu li:hover > a, .page-left-container ul.menu li.active > a {
	background-color: #666;
}
.page-left-container ul.menu li:hover > a:before, .page-left-container ul.menu li.active > a:before {
	background-position: -315px 0;
}
.page-left-container ul.menu li:hover > a, .page-left-container ul.menu li.active > a {
	color: #fff;
}
.page-left-container ul.menu dl {
	display: none;
	background-color: #fff;
	padding-top: 0.12rem;
	padding-bottom: 0.12rem;
	margin-top: 0;
}
.page-left-container ul.menu dl a {
	display: block;
	padding: 0.03rem 0.03rem 0.03rem 0.35rem;
}
.page-right-container .page-wrapper {
	background-color: var(--bgcolor);
	width: 100%;
	min-height: 100%;
	padding: 0.30rem;
}
.page-right-container .page-title {
	justify-content: space-between;
	align-items: center;
	margin-bottom: 0.30rem;
	position: relative;
}
.page-right-container .page-title:before {
	display: block;
	content: '';
	border-top: 1px solid var(--borcolor);
	height: 0;
	width: 100%;
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 1;
}
.page-right-container .page-title .column {
	background-color: var(--bgcolor);
	color: var(--color);
	font-size: 20px;
	padding-right: 0.15rem;
	position: relative;
	z-index: 2;
}
.page-right-container .page-title .pos {
	display: none;
	background-color: var(--bgcolor);
	color: #999;
	padding-left: 0.15rem;
	position: relative;
	z-index: 2;
}
.page-right-container .page-title .pos span {
	color: var(--color);
}

/* 产品列表 */
.page-prolist {
	margin-left: -0.12rem;
	margin-right: -0.12rem;
}
.page-prolist li {
	flex-grow: 0;
	flex-shrink: 0;
	flex-basis: 50%;
	max-width: 50%;
	padding: 0.12rem;
}
.page-prolist .item {
	justify-content: space-between;
	background-color: #fff;
	border: 1px solid var(--color);
	text-align: center;
	width: 100%;
	height: 100%;
	padding: 0.08rem;
}
.page-prolist .item h5 {
	font-size: 15px;
	font-weight: bold;
}
.page-prolist .item .propic {
	justify-content: center;
	align-items: center;
	flex: 1 0 auto;
	width: 100%;
}
.page-prolist .item .propic img {
	display: block;
	height: auto;
	max-width: 100%;
}
.page-prolist .item .proname {
	flex: 0 0 auto;
	width: 100%;
	padding: 0.15rem;
}
.page-prolist .item .viewmore {
	margin-top: 0.15rem;
}

/* 产品详细 */
.pro-param figure, .pro-param .param {
	flex-grow: 0;
	flex-shrink: 0;
	flex-basis: 100%;
	max-width: 100%;
	padding: 0.15rem;
}
.pro-param .param h3 {
	font-size: 20px;
}
.pro-param .param .desc, .pro-param .param .contact, .pro-param .param .viewmore {
	margin-top: 0.20rem;
}
.pro-param .param .contact {
	color: var(--color);
	font-size: 20px;
}
.pro-param .param .viewmore a {
	display: inline-block;
	color: #fff;
	font-size: 16px;
	padding: 10px 20px;
	-webkit-border-radius: 0.04rem;
	-moz-border-radius: 0.04rem;
	-o-border-radius: 0.04rem;
	border-radius: 0.04rem;
}
.pro-param .param .viewmore a span {
	padding-left: 40px;
	position: relative;
}
.pro-param .param .viewmore a span:before {
	display: block;
	content: '';
	background-image: url("../images/icon.png");
	background-repeat: no-repeat;
	height: 26px;
	width: 26px;
	overflow: hidden;
	margin-top: -12px;
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 2;
}
.pro-param .param .viewmore a.zx {
	background-color: var(--color);
}
.pro-param .param .viewmore a.zx span:before {
	background-position: -364px 0;
}
.pro-param .param .viewmore a.kf {
	background-color: #666;
	margin-left: 0.20rem;
}
.pro-param .param .viewmore a.kf span:before {
	background-position: -390px 0;
}
.pro-js {
	border-top: 1px solid var(--borcolor);
	border-bottom: 1px solid var(--borcolor);
	color: var(--color);
	font-size: 16px;
	font-weight: bold;
	padding-top: 0.10rem;
	padding-bottom: 0.10rem;
	margin-top: 0.20rem;
	margin-bottom: 0.20rem;
}
/* 新闻列表 */
.page-newslist li {
	flex-grow: 0;
	flex-shrink: 0;
	flex-basis: 100%;
	max-width: 100%;
	padding: 0.15rem;
}
.page-newslist .item {
	background-color: #fff;
	border: 1px solid var(--borcolor);
	padding: 0.20rem;
}
.page-newslist .item .txt {
	-webkit-line-clamp: 4;
}
.page-newslist .item .date {
	color: #8f8f8f;
	margin-top: 0.08rem;
}
.page-newslist .item:hover {
	border-color: var(--color);
}
.art-title {
	border-bottom: 1px dashed #ccc;
	text-align: center;
}
.art-title h1 {
	color: #333;
	font-size: 24px;
}
.art-title .date {
	color: #999;
	padding-top: 0.15rem;
	padding-bottom: 0.20rem;
}

/* 媒体 */
@media (min-width: 576px) {
	.pro-list li {
		flex-basis: 33.3333333%;
		max-width: 33.3333333%;
	}
	.pro-list li:last-child, .case-list li:last-child {
		display: none;
	}
	.case-list li, .page-prolist li {
		flex-basis: 33.3333333%;
		max-width: 33.3333333%;
	}
	.index-message .msg-item.code {
		flex-wrap: nowrap;
		justify-content: space-between;
	}
	.index-message .msg-item.code .item {
		flex: 1 1 auto;
	}
	.index-message .msg-item.code .submit {
		flex-basis: 210px;
		padding-top: 0;
		padding-left: 0.30rem;
	}
	.index-message .msg-item.code .submit input[type="submit"] {
		height: 100%;
	}
}
@media (min-width: 768px) {
	.m-nav {
		display: none;
	}
	.welcome .txt-right,
	.index-nav {
		display: block;
	}
	.ys-container.ys-a:after {
		display: block;
		content: '';
		background-color: var(--bgcolor);
		width: 50%;
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		z-index: 1;
	}
	.ys-container.ys-b:before {
		display: block;
		content: '';
		background-color: var(--color);
		height: 20%;
		width: 50%;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 1;
	}
	.ys-container .row {
		flex-wrap: nowrap;
	}
	.ys-container .text, .ys-container .img {
		flex-basis: 50%;
		max-width: 50%;
	}
	.ys-container .img img {
		display: none;
	}
	.ys-container.ys-b .text {
		order: 2;
	}
	.ys-container.ys-b .img {
		order: 1;
	}
	.ys-container.ys-a .img {
		padding-top: 0;
		padding-bottom: 0;
		padding-left: 0;
	}
	.ys-container.ys-b .img {
		padding-top: 0;
		padding-bottom: 0;
		padding-right: 0;
	}
	.ys-container.ys-a .img .content {
		background: url("../images/img-02.jpg") 0 0 no-repeat;
		background-size: cover;
		height: 100%;
	}
	.ys-container.ys-b .img .content {
		background: url("../images/img-01.jpg") 0 0 no-repeat;
		background-size: cover;
		height: 100%;
	}
	.honor-list li {
		flex-basis: 25%;
		max-width: 25%;
	}
	.honor-list li:nth-last-child(2) {
		display: block;
	}
	.index-footer .copyright p {
		flex-basis: auto
	}
	.pro-param figure {
		flex-basis: 40%;
		max-width: 40%;
	}
	.pro-param .param {
		flex-basis: 60%;
		max-width: 60%;
	}
}
@media (min-width: 960px) {
	.index-header .com-container {
		justify-content: space-between;
	}
	.index-header .contact,
	.page-right-container .page-title .pos {
		display: block;
	}
	.pro-list li {
		flex-basis: 25%;
		max-width: 25%;
	}
	.pro-list li:last-child, .case-list li:last-child {
		display: block;
	}
	.case-list li {
		flex-basis: 25%;
		max-width: 25%;
	}
	.index-choose .title, .index-choose .desc {
		flex-basis: 50%;
		max-width: 50%;
	}
	.index-choose .desc section {
		background-color: #fff;
		padding: 0.50rem 0.15rem 0.15rem 0.30rem;
		margin-top: 0.80rem;
	}
	.honor-list li {
		flex-basis: 20%;
		max-width: 20%;
	}
	.honor-list li:nth-last-child(1) {
		display: block;
	}
	.index-news .n-container, .page-newslist li {
		flex-basis: 50%;
		max-width: 50%;
	}
	.index-message .msg-item.name, .index-message .msg-item.tel, .index-message .msg-item.ly, .index-message .msg-item.code {
		flex-basis: 50%;
	}
	.page-drop-nav {
		display: none;
	}
	.page-left-container {
		display: block;
		flex-basis: 24%;
		max-width: 24%
	}
	.page-right-container {
		flex-basis: 76%;
		max-width: 76%;
	}
}
@media (min-width: 1200px) {
	.index-header .search {
		display: block;
	}
	.index-nav ul.pc-nav {
		justify-content: space-between;
	}
	.index-solution .order-01 {
		order: 2;
	}
	.index-solution .order-02 {
		order: 1;
	}
	.index-solution .sol-title {
		flex-basis: 18%;
		max-width: 18%;
	}
	.index-solution .sol-content {
		align-items: center;
		flex-basis: 62%;
		max-width: 62%;
		padding-top: 0;
	}
	.page-prolist li {
		flex-basis: 25%;
		max-width: 25%;
	}
}
@media (min-width: 1300px) {
	.index-message .msg-container {
		flex-wrap: nowrap;
		justify-content: space-between;
	}
	.index-message .msg-item.name, .index-message .msg-item.tel {
		flex-basis: 18%;
	}
	.index-message .msg-item.ly {
		flex: 1 1 auto;
	}
	.index-message .msg-item.code {
		flex-basis: 500px;
	}
}

/* Keyframes */
@-webkit-keyframes showDropMenu {
	0% {margin-top: -10px; opacity: 0;}
	100% {margin-top: 0; opacity: 1;}
}
@-moz-keyframes showDropMenu {
	0% {margin-top: -10px; opacity: 0;}
	100% {margin-top: 0; opacity: 1;}
}
@-o-keyframes showDropMenu {
	0% {margin-top: -10px; opacity: 0;}
	100% {margin-top: 0; opacity: 1;}
}
@keyframes showDropMenu {
	0% {margin-top: -10px; opacity: 0;}
	100% {margin-top: 0; opacity: 1;}
}
