@charset "utf-8";
/* -------------------------------- 

Primary style

-------------------------------- */
*,
*::after,
*::before {
	box-sizing: border-box;
	color: #333;
}
body {
    font-family: Helvetica, Tahoma, Arial, "Heiti SC", "Microsoft YaHei", "WenQuanYi Micro Hei";
    font-family: "PingFang SC", "Hiragino Sans GB", "Heiti SC", "Microsoft YaHei", "WenQuanYi Micro Hei";
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
    background-color: #fafafa;
}
@media only screen and (max-width: 768px) {
    body {
        padding: 50px 0 0;
    }
}
/* -------------------------------- 

导航

-------------------------------- */
.header {
	display: flex;
	justify-content: space-between;
	position: fixed;
	z-index: 3;
	top: 0;
	width: 1200px;
	height: 80px;
    margin: 0 calc(50% - 600px);
	/*-webkit-backdrop-filter:saturate(180%) blur(20px);
	backdrop-filter:saturate(180%) blur(20px);*/
	-webkit-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	user-select:none;
	-webkit-transform: translateZ(0);
	        transform: translateZ(0);
	will-change: transform;
	-webkit-transition: -webkit-transform .5s;
	transition: -webkit-transform .5s;
	transition: transform .5s;
	transition: transform .5s, -webkit-transform .5s;
	background-color: #99cc33;
}
.header.is-hidden {
	-webkit-transform: translateY(-100%);
	    -ms-transform: translateY(-100%);
	        transform: translateY(-100%);
}
@media only screen and (max-width: 768px) {
	.header {
	    width: 100%;
		height: 50px;
		padding: 0;
        margin: 0;
        background-color: #fff;
	}
}

.logo {
	display: flex;
	align-items: center;
    z-index: 3;
    width: 200px;
    background-color: #fff;
}
.logo img {
    margin: 0 auto;
    height: 40px;
}
.nav {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}
.nav-trigger {
	display: none;
}
@media only screen and (max-width: 768px) {
    .logo {
        background-color: transparent;
    }
	.nav-trigger {
		display: flex;
		justify-content: center;
		align-items: center;
		height: 100%;
		width: 70px;
		z-index: 3;
	}
    .nav-trigger ul {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        -o-flex-direction: column;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
    }
    .nav-trigger ul li {
        width: 100%;
        height: 4px;
        background-color: #99cc33;
    }
}

.nav > ul {
	z-index: 2;
	display: flex;
	flex-direction: row;
	padding-top: 0;
	justify-content: space-between;
	align-items: center;
	position: static;
	width: 1000px;
	height: 0;
	background-color: transparent;
	box-shadow: none;
	opacity: 1;
	transform: translateY(0);
	transition: .5s;
}
.nav > ul > li {
	width: 100%;
	text-align: center;
    cursor: pointer;
/*    border: 1px solid #ff0000;*/
}
.nav > ul a {
	color: #fff;
	font-size: 1em;
	font-weight: normal;
	height: 100%;
	line-height: normal;
	padding: 0;
	border: none;
	transition: all .5s;
    padding: 0.5em 1em;
}
.nav > ul a:hover,
.nav > ul a.active {
    background-color: #fff;
    color: #99cc33;
}
.nav-open .nav ul,
.nav ul:target {
	display: flex;
	flex-direction: column;
	align-items: center;
	opacity: 1;
	transform: translateY(0);
}
@media only screen and (max-width: 768px) {
	.nav > ul {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		padding-top: 50px;
		background-color: #fff;
		flex-direction: column;
		justify-content: flex-start;
		transform: translateY(-100%);
		opacity: 0;
		transition: .5s;
	}
	.nav > ul > li {
		width: 100%;
		text-align: center;
	}
	.nav > ul a {
		display: block;
		height: 50px;
		line-height: 50px;
		color: #99cc33;
		border-top: 1px solid rgba(153,204,51,0.10);
        padding: 0;
	}
	.nav > ul > li:last-child {
		border-bottom: 1px solid rgba(153,204,51,0.10);
	}
}
/* -------------------------------- 

页脚

-------------------------------- */
footer {
	width: 100%;
	height: 30px;
    padding: 0 calc(50% - 600px);
	background-color: #eee;
	background-color: #99cc33;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
footer p,
footer a {
	color: #999;
	color: #fff;
	font-size: 0.75em;
}
@media only screen and (max-width: 768px) {
	footer {
		height: auto;
        flex-direction: column;
	}
    footer p,
    footer a {
        line-height: 1.5;
    }
}
/* -------------------------------- 

banner

-------------------------------- */
#banner {
    width: 100%;
    height: 700px;
}
#banner1 {
	background: url("../resource/banner-1.jpg") no-repeat center center/cover;
}
#banner2 {
	background: url("../resource/banner-2.jpg") no-repeat center center/cover;
}
.swiper-slide {
	text-align: center;
	font-size: 18px;
	background-size: cover;
	background-position: center;
	background-repeat:no-repeat;

	/* Center slide text vertically */
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}
.swiper-pagination {
    position: relative;
    bottom: 100px !important;
}
/* 分页器颜色 */
.swiper-container{
	--swiper-pagination-color: #ffffff;/* 两种都可以 */
}
@media only screen and (max-width: 768px) {
	#banner {
		height: 200px;
	}
    .swiper-pagination {
        bottom: 24px !important;
    }
}

.index-content {
    width: 1200px;
    height: 250px;
    background-color: #eee;
    margin: 0 auto;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    top: -70px;
    padding: 30px;
}
.index-news {
    width: 360px;
    height: 100%;
    margin-right: 10px;
}
.index-news-title {
    width: 100%;
    height: 40px;
    margin: 0;
    border-bottom: 1px solid #99cc33;
}
.index-news-title h2,
.index-news-title a {
    display: inline;
    color: #99cc33;
}
.index-news-title h2 {
    font-size: 1em;
}
.index-news-title a {
    float: right;
    font-size: 0.75em;
}
.index-news ul {
    margin: 24px 0 0;
    height: 125px;
    width: 100%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    justify-content: space-between;
}
.index-news ul li a {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
}
.index-news ul li a span {
    color: #666;
    font-size: 0.75em;
	transition: all .5s;
}
.index-news ul li a span:first-of-type {
    width: 270px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.index-news ul li a:hover span {
    color: #99cc33;
}
.index-content > a {
    height: 190px;
    text-align: center;
    background-color: #99cc33;
	transition: all .5s;
}
.index-content > a p {
    height: 50px;
    line-height: 44px;
    color: #fff;
	transition: all .5s;
}
.index-content > a:hover {
    background-color: #fff;
}
.index-content > a:hover p {
    color: #99cc33;
}
@media only screen and (max-width: 768px) {
    .index-content {
        position: static;
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        -o-flex-direction: column;
        flex-direction: column;
        width: 100%;
        height: auto;
        padding: 0;
    }
    .index-news {
        width: 100%;
        padding: 20px 5%;
        background-color: #fff;
    }
    .index-news-title {
        height: 30px;
    }
    .index-news ul li a span:first-of-type {
        width: 70%;
    }
    .index-news ul {
        margin: 18px 0 0;
    }
    .index-content > a {
        width: 90%;
        height: auto;
        margin: 30px 5% 0;
    }
    .index-content > a:last-of-type {
        margin-bottom: 30px;
    }
    .index-content > a img {
        width: 100%;
        height: auto;
    }
}

.index-bottom {
    width: 100%;
    padding: 0 calc(50% - 600px);
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    top: -35px;
}
.index-bottom a:first-of-type {
    margin-right: 20px;
}
.index-bottom a img {
    height: 40px;
}
.index-bottom span img {
    margin-left: 20px;
    height: 90px;
}
@media only screen and (max-width: 768px) {
    .index-bottom {
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        -o-flex-direction: column;
        flex-direction: column;
        position: static;
    }
    .index-bottom a:first-of-type {
        margin-right: 0;
    }
    .index-bottom span img {
        margin-left: 0;
    }
    .index-bottom span img:first-of-type {
        display: none;
    }
    .index-bottom span {
        margin: 10px 0;
    }
    .index-bottom a {
        margin: 20px 0 0;
    }
}

[class^="top-pic-"] {
    width: 100%;
    height: 30vw;
    overflow: hidden;
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.top-pic-news {background-image: url("../resource/top-pic-news.jpg");}
.top-pic-about {background-image: url("../resource/top-pic-about.jpg");}
[class^="top-pic-"] h1 {
    font-size: 36px;
    letter-spacing: .25em;
    width: fit-content;
    color: #fff;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
@media only screen and (max-width: 768px) {
    [class^="top-pic-"] {
        height: 50vw;
    }
    [class^="top-pic-"] h1 {
        font-size: 30px;
        transform: translate(-50%, -100%);
    }
}

.content-layout {
    width: 100%;
    padding: 50px calc(50% - 600px) 80px;
    text-align: center;
}
@media only screen and (max-width: 768px) {
    .content-layout {
        padding: 20px 10%;
    }
    .content-layout img {
        width: 100%;
        height: auto;
    }
}

h2 {
    color: #99cc33;
}
.honor li {
    text-align: center;
}
.honor li::after {
    content: "";
    display: block;
    width: 4px;
    height: 3em;
    background-color: #99cc33;
    margin: 1em auto;
}
.honor li:last-of-type::after {
    display: none;
}
.honor p {
    padding: 0 0 1em;
    color: #666;
}

/*新闻列表*/
.news-list {
    width: 1200px;
    background-color: #fff;
    margin: 50px auto;
    padding: 50px 0;
}
.news-list li a {
    width: 1000px;
    height: 200px;
    margin: 0 auto 10px;
    padding: 20px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    background-color: #fafafa;
	transition: all .5s;
}
.news-list li:last-of-type a {
    border: none;
}
.news-thumb-pic {
    width: 270px;
    height: 100%;
    overflow: hidden;
/*	transition: all .5s;*/
}
.news-thumb-pic img {
    width: 100%;
    height: 100%;
}
.news-list div:nth-of-type(2) {
    width: 660px;
    height: 100%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    justify-content: space-between;
	transition: all .5s;
}
.news-list h2 {
    color: #424242;
	transition: all .5s;
}
.news-list div:nth-of-type(2) div {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
}
.news-list div:nth-of-type(2) div span {
    color: #999;
	transition: all .5s;
}
.news-list li a:hover {
    background-color: #99cc33;
}
.news-list li a:hover div:nth-of-type(2) {
    transform: translateX(-10px);
}
.news-list li a:hover h2,
.news-list li a:hover span{
    color: #fff;
}
@media only screen and (max-width: 768px) {
    .news-list {
        width: 100%;
        margin: 30px auto;
        padding: 10px 0;
    }
    .news-list li a {
        width: 80%;
        height: 360px;
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        -o-flex-direction: column;
        flex-direction: column;
    }
    .news-thumb-pic {
        width: 100%;
        height: 100%;
    }
    .news-list div:nth-of-type(2) {
        width: 100%;
        height: auto;
    }
}

	.news-page {
    width: 1200px;
    margin: 0 auto 50px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: center;
	flex-wrap: wrap;
}
.news-page li {
    margin: 0 8px;
	transition: all .5s;
}
.news-page a {
    display: block;
    height: 36px;
    padding: 0 1em;
    line-height: 36px;
    text-align: center;
    color: #99cc33;
    border: 1px solid #99cc33;
	transition: all .5s;
}
.news-page li:hover {
    color: #fff;
    background-color: #99cc33;
}
.news-page li:hover a {
    color: #fff;
}
@media only screen and (max-width: 768px) {
    .news-page {
        width: 100%;
        margin: 0 auto 20px;
    }
    .news-page li {
        display: none;
    }
    .news-page li:nth-of-type(2),
    .news-page li:nth-of-type(14) {
        display: inherit;
    }
}

/*新闻详情页*/
.news-wrapper {
    width: 1000px;
    padding: 50px 100px;
    background-color: #fff;
    margin: 120px auto 50px;
    text-align: center;
    min-height: calc(100vh - 200px);
}
.news-wrapper h2 {
    margin: 0;
    color: #99cc33;
}
.news-wrapper span {
    color: #666;
    display: block;
    margin: 20px 0 40px;
}
.news-wrapper p {
    text-align: justify;
    color: #424242;
    line-height: 1.8;
    text-indent: 2em;
    margin: 1em 0;
}
.news-wrapper img {
    width: 800px;
    height: auto;
}
@media only screen and (max-width: 768px) {
    .news-wrapper {
        width: 100%;
        padding: 40px 10%;
        margin: 0 auto;
    }
    .news-wrapper span {
        margin: 10px auto 20px;
    }
    .news-wrapper img {
        width: 100%;
    }
}

/*简介页面*/
.about-intro {
    width: 100%;
    height: 600px;
    padding: 0 calc(50% - 600px);
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.about-intro-left {
    width: 400px;
    height: auto;
}
.about-intro-left p {
    text-align: justify;
    line-height: 2;
    margin-bottom: 30px;
}
.about-intro-left a {
    color: #99cc33;
    border: 1px solid #99cc33;
    padding: 0.5em 2em;
    display: block;
    width: fit-content;
}

.about-brand {
    width: 100%;
    height: 720px;
    padding: 0 calc(50% - 600px);
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f4f9e8;
}
.about-brand img {
    width: 550px;
    height: 552px;
}
.about-brand p {
    width: 600px;
    text-align: justify;
    line-height: 2;
}

.about-map {
    width: 100%;
    height: auto;
    padding: 50px calc(50% - 600px);
    text-align: center;
    background-color: #fff;
}
.about-map h2 {
    color: #0069b1;
    font-size: 30px;
    margin: 0 auto 30px;
}
.about-map p {
    text-align: center;
    line-height: 2;
    margin: 2em auto 0;
}
@media only screen and (max-width: 768px) {
    .about h2 {
        color: #0069b1;
        font-size: 24px;
    }
    .about-intro {
        height: auto;
        padding: 0 10% 30px;
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        -o-flex-direction: column;
        flex-direction: column;
    }
    .about-intro-left {
        width: 100%;
        padding: 30px 0;
        text-align: center;
    }
    .about-intro-left p {
        text-align: justify;
    }
    .about-intro-left a {
        margin: 0 auto;
    }
    .about-intro > a {
        width: 100%;
        margin: 0 auto;
    }
    .about-intro > a img {
        width: 100%;
    }
    
    .about-brand {
        height: auto;
        padding: 30px 10%;
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        -o-flex-direction: column;
        flex-direction: column;
    }
    .about-brand img {
        width: 100%;
        height: auto;
        margin-bottom: 30px;
    }
    .about-brand p {
        width: 100%;
    }
    
    .about-map {
        height: auto;
        padding: 30px 0;
    }
    .about-map img {
        width: 90%;
        margin: 0 auto;
    }
    
    .about-map p {
        width: 80%;
    }
}

/*品牌页面*/
.brand-box {
    width: 1200px;
    margin: 120px auto;
    padding: 30px 50px;
    background-color: #fff;
}
.brand-list {
    margin: 30px 0;
    background-color: #fafafa;
    transition: all 0.5s;
}
.brand-list:hover {
    background-color: #99cc33;
}
.brand-list a {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    padding: 50px;
}
.brand-list div:last-of-type {
    text-align: justify;
    margin-left: 50px;
    position: relative;
}
.brand-list p {
    line-height: 1.8;
    margin-bottom: 20px;
    transition: all 0.5s;
    text-indent: 2em;
}
.brand-list span {
    position: absolute;
    right: 0;
    transition: all 0.5s;
}
.brand-list:hover p,
.brand-list:hover span {
    color: #fff;
}
@media only screen and (max-width: 768px) {
    .brand-box {
        width: 100%;
        margin: 1px auto;
        padding: 10px 5%;
    }
    .brand-list a {
        padding: 40px 5%;
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        -o-flex-direction: column;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .brand-list div:last-of-type {
        margin-left: 0;
        margin-top: 20px;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        -o-flex-direction: column;
        flex-direction: column;
        align-items: center;
    }
    .brand-list span {
        position: relative;
        color: #99cc33;
    }
}

/*联系我们*/
.contact-box {
    width: 1200px;
    margin: 100px auto;
    background-color: #fff;
    padding: 20px 50px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.contact-list {
    width: 49%;
    padding: 50px 20px;
    border-bottom: 1px solid #99cc33;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.contact-list:last-of-type,
.contact-list:nth-last-child(2) {
    border-bottom: none;
}
.contact-list img {
    width: 100px;
}
.contact-list p {
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
}
.contact-list li {
    margin: 0.5em;
}
@media only screen and (max-width: 768px) {
    .contact-box {
        width: 100%;
        margin: 1px auto;
        padding: 20px 10%;
    }
    .contact-list {
        width: 100%;
        padding: 30px 0;
        flex-wrap: wrap;
    }
    .contact-list:nth-last-child(2) {
        border-bottom: 1px solid #99cc33;
    }
    .contact-list p {
        text-align: right;
        width: calc(100% - 100px);
    }
    .contact-list ul {
        margin: 20px 0 0;;
    }
}