.w1200 {
	width: 1220px;
	margin: 0 auto;
}
.w1900 {
	width: 1900px;
	margin: 0 auto;
	position: relative;
}

.head-container {}

.head {
	position: absolute;
	width: 100%;
	z-index: 10;
	transition: .3s;
	background-color: rgba(0,0,0,0.1);
}

.head .head-top {
	height: 90px;
	display: flex;
	justify-content: space-between;
	position: relative;
}

.head .head-top .left {
	flex: 0 0 30%;
	display: flex;
	align-items: center;
}


.head .head-top .center {
	display: flex;
	align-items: center;
	flex: 50%;
	position: relative;
}

.head .head-top .center h2 {
	margin: 0;
	font-size: 24px;
	color: #215ab1;
}

.head .head-top .center .text p {
	color: #666666;
}

.head .head-top .center .icon {
	padding: 5px 5px 0 0;
}
.logoimg {
	height: 45px;
}
.logoA h2{
	color: white;
	font-weight: bold;
	font-size: 28px;
}
.head-nav {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: flex-end;
}

.nav-li {
	padding: 0 15px;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 14px;
}

.navA {
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 15px 5px;
	transition: 0.5s;
	color: #fff;
	border-bottom: 2px solid transparent;
}
.navA:hover{
	border-color: #008fd1;
	color: #fff;
}
.navA.active{
	border-color: #008fd1;
}
.goods-box{
	padding-bottom: 40px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.goods-box .box{
	flex: 0 0 30%;
}
.title{
	text-align: center;
	margin-bottom: 40px;
}
.title h3{
	font-size: 16px;
	text-transform: capitalize;
	color: #666;
	font-weight: 400;
	margin-bottom: 30px;
	position: relative;
}
.title h3::before{
	content: "";
	position: absolute;
	width: 50px;
	height: 1px;
	background-color: #e1e1e1;
	left: 44.5%;
	bottom: -14px;
}
.title h3::after{
	content: "";
	position: absolute;
	width: 50px;
	height: 1px;
	background-color: #e1e1e1;
	right: 44.5%;
	bottom: -14px;
}
.title h2{
	font-size: 28px;
	position: relative;
	color: #222;
}
.title h2::before{
	content: "";
	position: absolute;
	width: 7px;
	height: 7px;
	left: 50%;
	top: -20px;
	transform: translate(-50%,0) rotate(45deg);
	background-color: #008fd1;
}
.product{
	padding: 60px 0 0;
	background-color: #fff;
}
.product .swiper-slide{
	overflow: hidden;
	background-color: #f8f8f8;
	position: relative;
	border-right: 1px solid #e2e2e2;
}
.product img{
	width: 100%;
	transition: .5s;
	opacity: 0.8;
}
.product .swiper-slide:hover img{
	transform: scale(1.1);
	opacity: 1;
}
.product p{
	transition: .5s;
	position: absolute;
	bottom: 10px;
	width: 100%;
	color: #666;
	text-align: center;
	font-size: 16px;
	font-weight: bold;
	opacity: 0;
}
.product .swiper-slide:hover p{
	opacity: 1;
}
.home-goods{
	position: relative;
}
.home-goods::before{
	content: "";
	position: absolute;
	width: 40px;
	height: 40px;
	background-color: #fff;
	left: 50%;
	top: 0;
	z-index: 10;
	transform: translate(-50%,-50%) rotate(45deg);
}
.about{
	padding: 60px 0;
}
.about .about-icon{
	display: flex;
	justify-content: space-between;
	margin-top: 80px;
}
.about .about-icon .box{
	flex: 0 0 26%;
	display: flex;
}
.about .about-icon .box .left{
	flex: 0 0 30%;
}
.about .about-icon .box .left .img{
	width: 75px;
	height: 75px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: 1px solid #008fd1;
}
.about .about-icon .box .left .img img{
	max-width: 40px;
	max-height: 40px;
}
.about .about-icon .box .right h2{
	font-size: 18px;
	font-weight: bold;
}
.about .about-icon .box .right p{
	font-size: 12px;
}

.news{
	border-top: 1px solid #e1e1e1;
	padding: 60px 0;
	position: relative;
}
.news::before{
	content: "";
	position: absolute;
	width: 40px;
	height: 40px;
	border: 1px solid #e1e1e1;
	border-top: none;
	border-left: none;
	transform: rotate(45deg) translate(-50%,0);
	background-color: #fff;
	top: -6px;
	left: 49.6%;
}
.news .news-box{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.news .news-box .box{
	flex: 0 0 49%;
	padding: 18px 25px;
	margin: 10px 0;
	transition: .3s;
	border: 1px solid #e1e1e1;
}

.news .news-box .box a:hover{
	color: #000;
}
.news .news-box .box:hover{
	box-shadow: 0 0 5px #dfdfdf;
}
.news .news-box .box .top{
	padding-bottom: 8px;
}
.news .news-box .box .bottom{
	padding-top: 8px;
}
.news .news-box .box h2{
	font-size: 18px;
	margin: 0;
}
.footer{
	padding: 40px 0 0;
	background-color: #222222;
	color: #aaa;
}
.footer a{
	color: #aaa;
}
.footer .footer-box{
	padding-bottom: 40px;
	display: flex;
	justify-content: space-between;
}
.footer .box{
	flex: 0 0 21%;
}
.footer .box h2{
	font-size: 22px;
	margin-bottom: 15px;
}
.footer .box li{
	margin-bottom: 5px;
}
.footer .box:last-child{
	flex: 1;
	text-align: center;
}
.footer .box:last-child img{
	width: 120px;
	height: 120px;
	padding: 5px;
	background-color: #fff;
}
.footer .box:last-child p{
	padding-top: 10px;
}

.copys{
	text-align: center;
	text-transform: uppercase;
	padding: 15px 0;
	border-top: 1px solid rgba(255,255,255,.1);
}
.list-li.active .category-ul{
	display: block;
}
.list-li.active span{
	transform: rotate(-180deg);
}

.category-ul{
	display: none;
}
.category-ul li{
	padding: 10px 20px 0 20px;
}
.category-ul li:last-child{
	border: none;
}
.list-li.ul span{
	display: inline-block;
	width: 20px;
	height: 20px;
	position: absolute;
	right: 5px;
	top: 15px;
	cursor: pointer;
	background: url(http://www.3whzz.cn/template/default/images/goods-icon.png) center no-repeat;
}
.details-content{
	padding-top: 60px;
}
.details-content img{
	max-width: 650px;
	margin: 0 auto;
	box-shadow: 0 0 10px #eee;
}
.details-content p{
	text-align: center;
}
.gypages-detail{
	padding: 0 0 25px;
}
.gypages-detail h2{
	font-size: 28px;
	font-weight: bold;
	margin: 0;
	position: relative;
}
.gypages-detail span{
	font-size: 16px;
	text-transform: uppercase;
	margin-bottom: 10px;
	display: inline-block;
}
.gypages-detail p{
	font-size: 14px;
	color: #717171;
	line-height: 30px;
}
.gypages-title{
	text-align: center;
}
.gypages-title{
	position: relative;
	margin-bottom: 30px;
}
.gypages-title h2{
	margin: 0;
	font-size: 32px;
	font-weight: bold;
	padding-bottom: 10px;
}
.gypages-title p{
	color: #959595;
}

.main-goods{
	padding-bottom: 40px;
	display: flex;
}
.news-list{
	padding-bottom: 20px;
}
.newspages-li{
	padding: 30px 0;
	border-bottom: 1px dashed #cbcbcb;
}
.newspages-li:last-child{
	border: none;
}
.newspages-li .news-title{
	display: flex;
	justify-content: space-between;
	padding-bottom: 8px;
}
.newspages-li .news-title h2{
	display: inline-block;
	flex: 0 0 80%;
	font-size: 16px;
}
.newspages-li .newspages-content{
	color: #333333;
	padding-bottom: 10px;
	font-size: 12px;
}
.contact .top{
	padding-bottom: 20px;
}
.contact-box .right #map{
	height: 350px;
}
.contact-box .wechatimg{
	padding: 10px 0;
}
.flipbook-viewport .container{
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
    padding: 5px;
}

.flipbook-viewport .flipbook{
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
}

.flipbook-viewport .flipbook img{
    width: 100%;
}


.flipbook-viewport .flipbook:before{
    content: "";
    position: absolute;
    width: 40px;
    height: 30px;
    left: 0;
    top: 5px;
    background: url(../image/prev.png) center no-repeat;
    background-size: 30px;
    opacity: 0.1;
    z-index: 999;
}
.flipbook-viewport .flipbook:after{
    content: "";
    position: absolute;
    width: 40px;
    height: 30px;
    right: 0;
    top: 5px;
    background: url(../image/next.png) center no-repeat;
    background-size: 30px;
    opacity: 0.1;
    z-index: 999;
}
.flipbook-viewport .flipbook:after {
    content: "";
    position: absolute;
    width: 40px;
    height: 30px;
    right: 0;
    top: 5px;
    background: url(../image/next.png) center no-repeat;
    background-size: 30px;
    opacity: 0.5;
    z-index: 999;
}
.flipbook-viewport .flipbook:before {
    content: "";
    position: absolute;
    width: 40px;
    height: 30px;
    left: 0;
    top: 5px;
    background: url(../image/prev.png) center no-repeat;
    background-size: 30px;
    opacity: 0.5;
    z-index: 999;
}
#video{
    position: relative;
}
#video span {
    z-index: 999;
    cursor: pointer;
    display: inline-block;
    width: 100%;
    height: 100%;
    background: url(../image/video.png) center no-repeat;
    background-size: 70px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.gypages{
    margin-top: 100px;
}