﻿@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;
    padding: 90px 0 0;
    background-color: #fafafa;
}
@media only screen and (max-width: 768px) {
    body {
        padding: 50px 0 0;
    }
}
/* -------------------------------- 

导航

-------------------------------- */
.header {
	display: flex;
	justify-content: center;
	position: fixed;
	z-index: 100;
	top: 0;
	width: 100%;
	height: 90px;
	padding: 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: #fff;
}
.header::after {
    content: "";
    display: block;
    width: 392px;
    height: 31px;
    position: absolute;
    top: 89px;
    background-image: url("../resource/header-image.png");
}
.header.is-hidden {
	-webkit-transform: translateY(-100px);
	    -ms-transform: translateY(-100px);
	        transform: translateY(-100px);
}
.logo-mobile-hidden {
    position: relative;
    top: 10px;
}
@media only screen and (max-width: 768px) {
	.header {
	    justify-content: space-between;
		height: 50px;
		padding: 0 0 0 5%;
	}
    .header::after {
        display: none;
    }
    .logo-mobile-hidden {
        display: none;
    }
}

.logo {
	display: none;
}
.nav {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}
.nav-trigger {
	display: none;
}
.nav-trigger ul {
    display: none;
}
@media only screen and (max-width: 768px) {
    .logo {
        left: 5%;
        display: flex;
        align-items: center;
        z-index: 3;
    }
    .logo img {
        width: 40px;
    }
	.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: #50a9b5;
    }
}

.nav > ul {
	z-index: 2;
	display: flex;
	flex-direction: row;
	padding-top: 0;
	justify-content: space-between;
	align-items: center;
	position: static;
	width: 100%;
	height: 0;
	background-color: #fff;
	box-shadow: none;
	opacity: 1;
	transform: translateY(0);
	transition: .5s;
}
.nav > ul > li {
	width: 100%;
	text-align: center;
    cursor: pointer;
    margin: 0 3em;
}
.nav > ul a {
	font-size: 1em;
	font-weight: normal;
	height: 100%;
	line-height: normal;
	padding: 0;
	border: none;
	transition: all .5s;
    color: #50a9b5;
}
.nav > ul a:hover,
.nav > ul a.active {
	font-weight: bold;
}
.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;
		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;
		border-top: 1px solid #eee;
	}
	.nav > ul > li:last-child {
		border-bottom: 1px solid #eee;
	}
}

/* -------------------------------- 

banner

-------------------------------- */
#banner {
	width: 100%;
	height: 800px;
}
#banner1 {background-image: url("../resource/banner-1.jpg");}
#banner2 {background-image: url("../resource/banner-huotui.jpg");}
#banner3 {background-image: url("../resource/banner-shanshi.jpg");}
#banner4 {background-image: url("../resource/banner-wugu.jpg");}
#banner5 {background-image: url("../resource/banner-huixianbao.jpg");}
#banner6 {background-image: url("../resource/banner-shanglang.jpg");}
.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-container{
	--swiper-pagination-color: #fff;/* 两种都可以 */
}
@media only screen and (max-width: 768px) {
	#banner {
		height: 400px;
	}
#banner1 {background-image: url("../resource/banner-m-1.jpg");}
	#banner2 {background-image: url("../resource/banner-m-huotui.jpg");}
	#banner3 {background-image: url("../resource/banner-m-shanshi.jpg");}
	#banner4 {background-image: url("../resource/banner-m-wugu.jpg");}
	#banner5 {background-image: url("../resource/banner-m-huixianbao.jpg");}
	#banner6 {background-image: url("../resource/banner-m-shanglang.jpg");}
	
}
/* -------------------------------- 

页脚

-------------------------------- */
footer {
	width: 100%;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
    background-color: #50a9b5;
}
footer > a {
    line-height: 30px;
    font-size: 0.75em;
    color: #fff;
}
@media only screen and (max-width: 768px) {
}
/* --------------------------------

产品列表

-------------------------------- */
.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: #50a9b5;
}
.product-sort li:hover a {
    color: #fff;
}
.product-sort li a {
    display: block;
    width: 100%;
    height: 100%;
}
#product-sort-current {
    background-color: #50a9b5;
}
#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: #50a9b5;
	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: #50a9b5;
}
.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: #50a9b5;
}
.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: #50a9b5;
}
.back a:first-child::after {
	content: "";
	display: block;
	width: 21px;
	height: 21px;
	background: #50a9b5;
	transform: translate(-50%,-50%) rotate(45deg);
	position: relative;
	right: -100%;
	top: -50%;
	transition: .5s;
}
.back a:last-child {
	width: 50%;
    color: #50a9b5;
}
.back a:hover {
	width: 65%;
}
@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%;
	}
}

.intro {
    width: 100%;
    height: 560px;
    background-image: url("../resource/map.png");
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.intro img:first-of-type {
    width: 176px;
}
.intro img:last-of-type {
    width: 820px;
}
.intro p {
    width: 780px;
    margin: 2em auto;
    text-align: center;
    line-height: 1.5;
    color: #666;
}
@media only screen and (max-width: 768px) {
    .intro {
        background-size: contain;
    }
    .intro img:last-of-type {
        width: 80%;
    }
    .intro p {
        width: 80%;
        text-align: justify;
    }
}

.multi-swiper-wrapper {
    width: 100%;
    height: 560px;
    background-color: #f3f3f3;
    display: flex;
    align-items: center;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    justify-content: center;
}
.multi-swiper-wrapper > p {
    font-size: 2em;
    font-weight: bold;
    color: #50a9b5;
    padding: 0 0 40px;
}
.multi-swiper {
	width:1200px;
    margin: 0 auto;
	position: relative;
}
.current-swiper {
	width:650px;
	height:370px;
	border-radius:10px;
	margin:0 auto;
	box-shadow:0 0 20px rgba(0,0,0,0.05);
	position:relative;
	z-index: 2;
}
.left-swiper {
	position:absolute;
	left:117px;
	top:52px;
	z-index:1;
}
.right-swiper {
	position:absolute;
	right:117px;
	left:auto;
	top:52px;
	z-index:1;
}
.nocurrent-swiper {
	width:479px;
	height:273px;
	border-radius:8px;
	box-shadow:0 0 20px rgba(0,0,0,0.05);
}
.nocurrent-swiper:before {
	content:'';
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:rgba(237,240,240,0.9);
	z-index:99;
}
.slide1 {
	background:url("../resource/new-huixianbao.jpg") no-repeat right 50%/auto 100% #fff;
}
.slide2 {
	background:url("../resource/new-shanshi.jpg") no-repeat right 50%/auto 100% #e2e3e8;
}
.slide3 {
	background:url("../resource/new-huotui.jpg") no-repeat right 50%/auto 100% #f0faf9;
}
@media only screen and (max-width: 768px) {
    .multi-swiper-wrapper {
        height: 70vw;
    }
    .multi-swiper-wrapper > p {
        font-size: 1.5em;
        padding: 0 0 20px;
    }
    .nocurrent-swiper {
        display: none;
    }
    .multi-swiper {
        width: 100%;
    }
    .current-swiper {
        width: 80vw;
        height: 45vw;
    }
}

.two-block {
    width: 100%;
    height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.two-block a {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    width: 574px;
    height: 340px;
    border-radius: 1em;
    margin: 1em;
    position: relative;
}
.two-block a:first-of-type {
    background-image: url("../resource/story.jpg");
}
.two-block a:last-of-type {
    background-image: url("../resource/video.jpg");
}
.two-block a p {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    position: absolute;
    left: 48px;
    bottom: 32px;
}
.two-block a p::before {
    content: "";
    display: block;
    width: 4px;
    height: 24px;
    background-color: #50a9b5;
    position: absolute;
    top: 0;
    left: -16px;
}
@media only screen and (max-width: 768px) {
    .two-block {
        flex-direction: column;
    }
    .two-block a {
        width: 80vw;
        height: 48vw;
    }
    .two-block a p {
        font-size: 1em;
        left: 32px;
        bottom: 16px;
    }
    .two-block a p::before {
        height: 1em;
    }
}

.logos {
    width: 100%;
    height: 200px;
    background-color: #f3f3f3;
    padding: 0 calc(50% - 600px);
    display: flex;
}
.logos li {
    display: block;
    width: calc(100% / 5);
    height: 100%;
    text-align: center;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}
.logos li {
    background-repeat: no-repeat;
    background-position: center center;
}
.logos li:first-of-type {background-image: url("../resource/sublogo-1.png");}
.logos li:nth-of-type(2) {background-image: url("../resource/sublogo-2.png");}
.logos li:nth-of-type(3) {background-image: url("../resource/sublogo-3.png");}
.logos li:nth-of-type(4) {background-image: url("../resource/sublogo-4.png");}
.logos li:nth-of-type(5) {background-image: url("../resource/sublogo-5.png");}
.logos li:last-of-type {background-image: url("../resource/sublogo-6.png");}
.logos li a {
    display: block;
    width: 100%;
    height: 100%;
}
@media only screen and (max-width: 768px) {
    .logos {
        padding: 0 10%;
        flex-wrap: wrap;
        height: auto;
    }
    .logos li {
        width: 50%;
        height: 40vw;
    }
}
/* --------------------------------

关于页面

-------------------------------- */
.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;
    }
}