@charset "utf-8";
/* -------------------------------- 

Primary style

-------------------------------- */
*,
*::after,
*::before {
	box-sizing: border-box;
	color: #333;
}
body {
	font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,PingFang SC,Microsoft YaHei,Helvetica Neue,Helvetica,Arial,sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
@media only screen and (max-width: 768px) {
    body {
        padding: 50px 0 0;
    }
.about div img {
}
.about .text-box img {
    display: none;
}


}
/* -------------------------------- 

导航

-------------------------------- */
.header {
	display: flex;
	justify-content: space-between;
	position: fixed;
	z-index: 3;
	top: 0;
	width: 1200px;
	height: 60px;
    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-image: linear-gradient(0deg, #f9f9f9 50%, #fff 50%);
    background-size: 100% 8px;
    border-bottom-right-radius: 1em;
    border-bottom-left-radius: 1em;
}
.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 0 0 5%;
        margin: 0;
        background-color: #fff;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
	}
}

.logo {
	display: flex;
	align-items: center;
    z-index: 3;
    margin-left: 48px;
}
.logo img {
    margin: 0 auto;
    width: 96px;
}
.nav {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}
.nav-trigger {
	display: none;
}
@media only screen and (max-width: 768px) {
    .logo {
        margin-left: 0;
        display: flex;
        align-items: center;
        z-index: 3;
    }
	.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: #ef8011;
    }
}

.nav > ul {
	z-index: 2;
	display: flex;
	flex-direction: row;
	padding-top: 0;
	justify-content: flex-end;
	align-items: center;
	position: static;
	width: 1000px;
	height: 0;
	background-color: transparent;
	box-shadow: none;
	opacity: 1;
	transform: translateY(0);
	transition: .5s;
    padding: 0 1em;
}
.nav > ul > li {
	width: 120px;
	text-align: center;
    cursor: pointer;
}
.nav > ul a {
	color: #424242;
	font-size: 1em;
	font-weight: normal;
	height: 100%;
	line-height: normal;
	padding: 0;
	border: none;
	transition: all .5s;
    position: relative;
}
.nav > ul a:hover,
.nav > ul a.active {
    color: #f39f4c;
}
.nav > ul a::before {
    content: "";
    display: block;
    opacity: 0;
    background: url("../resource/nav-decorate.png") no-repeat center center / cover;
    width: 8px;
    height: 12px;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -20px);
	transition: all .5s;
}
.nav > ul a:hover::before {
    opacity: 1;
}
.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: #ef8011;
		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: 40px;
    padding: 0 calc(50% - 600px);
	background-color: #efefef;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
footer p,
footer a {
	color: #666;
	font-size: 0.75em;
}
@media only screen and (max-width: 768px) {
	footer {
		height: auto;
        flex-direction: column;
        padding: 0.5em 0;
	}
    footer p,
    footer a {
        line-height: 1.5;
    }
}
/* -------------------------------- 

banner

-------------------------------- */
#banner {
    width: 100%;
    height: 660px;
}
#banner1 {background: url("../resource/paide-banner.jpg") no-repeat center center/cover;}
#banner2 {background: url("../resource/paide-banner-jingdian.jpg") no-repeat center center/cover;}
#banner3 {background: url("../resource/paide-banner-nengliang.jpg") no-repeat center center/cover;}
#banner4 {background: url("../resource/paide-banner-yingyang.jpg") no-repeat center center/cover;}
#banner5 {background: url("../resource/paide-banner-wugu.jpg") no-repeat center center/cover;}
#banner6 {background: url("../resource/paide-banner-vip.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;
    }
.about div video {
    width: 78%;
    margin-top: 28px;
}

}
/* --------------------------------

产品列表

-------------------------------- */
.product-sort {
    width: 100%;
    padding: 0 calc(50% - 600px);
    min-width: 1200px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    margin: 80px 0 0;
    cursor: pointer;
}
.product-sort li {
    width: 20%;
    text-align: center;
    line-height: 4;
}
.product-sort li:nth-child(odd) {
    background-color: #eee;
}
.product-sort li:nth-child(even) {
    background-color: #ddd;
}
.product-sort li:hover {
    background-color: #f39f4c;
}
.product-sort li:hover a {
    color: #fff;
}
.product-sort li a {
    display: block;
    width: 100%;
    height: 100%;
}
#product-sort-current {
    background-color: #f39f4c;
}
#product-sort-current a {
    color: #fff;
}
@media only screen and (max-width: 768px) {
    .product-sort {
        width: 100%;
        padding: 0 10%;
        min-width: inherit;
        margin: 40px 0 0;
    }
    .product-sort li {
        width: 50%;
    }
    .product-sort li:nth-child(4n+1) {
        background-color: #eee;
    }
    .product-sort li:nth-child(4n+2) {
        background-color: #ddd;
    }
    .product-sort li:nth-child(4n+3) {
        background-color: #ccc;
    }
    .product-sort li:nth-child(4n) {
        background-color: #bbb;
    }
}
.product-ul {
	width: 960px;
	display: flex;
	flex-wrap: wrap;
	flex-shrink: 3;
	margin: 80px auto 0;
}
.product-list {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 320px;
	margin: auto auto 120px;
}
.product-list img {
	width: 180px;
	transition: .5s;
}
.product-list:hover img {
	transform: translateY(-10px);
}
.product-list p {
	width: 184px;
	text-align: center;
	overflow: hidden;
	white-space: nowrap;
    text-overflow: ellipsis;
}
.product-list p:nth-child(2) {
	font-size: 14px;
	color: #f39f4c;
	margin-top: 40px;
}
.product-list p:nth-child(3) {
	font-size: 12px;
    color: #666;
	margin-top: 14px;
}
@media only screen and (max-width: 768px) {
	.product-ul {
		width: 80%;
		margin: 50px auto 0;
	}
	.product-list {
		width: 50%;
		margin: auto auto 50px;
	}
	.product-list img {
		width: 100px;
	}
	.product-list p {
		width: 100px;
	}
	.product-list p:nth-child(2) {
		font-size: 14px;
		margin-top: 16px;
	}
	.product-list p:nth-child(3) {
		font-size: 10px;
		margin-top: 8px;
	}
}
/* --------------------------------

产品详情页

-------------------------------- */
/* 左右箭头 */
.arrow {
	position: fixed;
	left: 50%;
	top: 50%;
	transform:translate(-50%,-50%);
	display: flex;
	justify-content: space-between;
	width: 90%;
}
.arrow i::before {
	color: #ccc;
	transition: .5s;
}
.arrow i:hover::before{
	color: #f39f4c;
}
.arrow a i {
	font-size: 2.5em;
}
/* 布局 */
.product-box {
	width: 760px;
	margin: 150px auto 100px;
	display: flex;
	justify-content: space-between;
}
.product {
	width: 244px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.product p {
	font-size: 14px;
	color: #666;
	margin: 36px auto 0;
}
.product-detail {
	width: 320px;
}
.product-detail h2 {
	margin: 20px 0 50px;
	color: #f39f4c;
}
.product-detail p {
	font-size: 12px;
	line-height: 18px;
	text-align: justify;
	color: #666;
	margin-bottom: 50px;
	letter-spacing: .5px;
}
.product-detail h3 {
	font-size: 14px;
	font-weight: bold;
	color: #666;
}
.back {
	font-size: 18px;
	font-weight: normal;
	width: 100%;
	height: 30px;
	line-height: 30px;
	background: #eee;
	display: flex;
	margin: 0;
}
.feed-back {
	width: 960px;
	margin: 0 auto 100px;
}
.back a {
	display: block;
	color: #fff;
	height: 100%;
	text-align: center;
	transition: .5s;
}
.back a:first-child {
	width: 50%;
	background: #f39f4c;
}
.back a:first-child::after {
	content: "";
	display: block;
	width: 21px;
	height: 21px;
	background: #f39f4c;
	transform: translate(-50%,-50%) rotate(45deg);
	position: relative;
	right: -100%;
	top: -50%;
	transition: .5s;
}
.back a:last-child {
	width: 50%;
    color: #666;
}
.back a:hover {
	width: 65%;
}
.back a:hover:first-child::after {
	background: #f39f4c;
}
@media only screen and (max-width: 768px) {
	/* 左右箭头 */
	.arrow a i {
		font-size: 1.5em;
	}
	/* 布局 */
	.product-box {
		width: 70%;
		margin: 80px auto 50px;
		flex-direction: column;
	}
	.product {
		width: 100%;
		margin: 0 auto 50px;
	}
	.product div {
		max-width: 60%;
		margin: 0 auto;
	}
	.product img {
		width: 100%;
	}
	.product p {
		margin: 16px auto 0;
	}
	.product-detail {
		width: 100%;
		display: flex;
		flex-direction: column;
	}
	.product-detail h2 {
		margin: 10px auto 50px;
		text-align: center;
	}
	.back {
		margin: 16px auto 48px;
	}
	.feed-back {
		width: 90%;
	}
}
/* --------------------------------

关于页面

-------------------------------- */
/*
.about {
    width: 100%;
    min-width: 1200px;
    min-height: calc(100vh - 120px);
    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 img {
    display: block;
    margin: 0 auto;
}
.about div:first-of-type {
    width: 55%;
}
.about div:last-of-type {
    width: 45%;
}
.about p {
    color: #666;
    line-height: 1.5;
    margin: 1em 0;
}
@media only screen and (max-width: 768px) {
    .about {
        min-width: inherit;
        min-height: calc(100vh - 80px);
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        -o-flex-direction: column;
        flex-direction: column;
        justify-content: flex-start;
    }
    .about img {
        width: 80%;
        height: auto;
    }
    .about div:first-of-type {
        width: 80%;
    }
    .about div:last-of-type {
        width: 80%;
    }
    .about div {
        margin: 50px 0 0;
    }
    .about p {
        text-align: justify;
    }
}
*/
.about {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding-bottom: 50px;
    min-height: calc(100vh - 40px);
    padding: 0 calc(50% - 600px);
}
.text-box {
    width: 600px;
}
.text-box p {
    font-size: 14px;
    line-height: 1.5;
    text-align: justify;
}
@media only screen and (max-width: 768px) {
    .about {
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        -o-flex-direction: column;
        flex-direction: column;
        padding-bottom: 20px;
        min-height: calc(100vh - 102px);
    }
    .about div:first-of-type {
        margin: 20px 0 0;
    }
    .text-box {
        width: 80%;
        margin: 0 auto;
        text-align: center;
    }
    .qr-box {
        margin: 20px 0 0;
    }
}

.index-bottom {
	background-image: linear-gradient(0deg, #f9f9f9 50%, #fff 50%);
    background-size: 100% 8px;
    padding: 0 calc(50% - 600px);
    min-height: calc(100vh - 700px);
    min-width: 1200px;
}
.index-logo {
    width: 100%;
    height: 100px;
    background-color: #fff;
    margin: 0 auto;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px;
    box-shadow: 0 0 12px 2px rgba(0,0,0,0.10);
    cursor: pointer;
    transform: translateY(-50%);
    position: relative;
    z-index: 2;
}
.index-logo li {
    width: calc(100% / 6);
    height: 70%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #eee;
}
.index-logo li:last-of-type {
    border-right: none;
}
.index-intro {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding-bottom: 50px;
}
.text-box {
    width: 600px;
}
.text-box p {
    font-size: 14px;
    line-height: 1.5;
    text-align: justify;
}
.qr img:last-of-type {
    margin-left: 12px;
}
.qr-box > img {
    margin-top: 6px;
}
@media only screen and (max-width: 768px) {
    .index-bottom {
        min-width: inherit;
        min-height: inherit;
        padding: 0;
    }
    .index-logo {
        transform: translateY(0);
        flex-wrap: wrap;
        height: auto;
        border-radius: 0;
        box-shadow: none;
    }
    .index-logo li {
        width: 50%;
        height: 20vw;
        border: 1px solid #eee;
    }
    .index-logo li img {
        width: 100%;
    }
    .index-intro {
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        -o-flex-direction: column;
        flex-direction: column;
        margin: 20px 0 0;
        padding-bottom: 20px;
    }
    .text-box {
        width: 80%;
        margin: 0 auto;
        text-align: center;
    }
    .qr-box {
        margin: 20px 0 0;
    }
}

@media screen and (min-width:769px){
div video source {
    width: 78%;
}

}
