/**产品中心**/
.product-tab{
	margin-top: 20px;
	text-align: center;
	padding-bottom: 20px;
	border-bottom: 1px solid #f0f0f0;
}
.product-tab ul li{
	display: inline-block;
}
.product-tab ul li a{
	font-size: 16px;
	color:#333333;
	display: block;
	padding: 8px 30px;
	border-radius: 20px;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
}
.product-tab ul li a:hover{
	background-color:#f0f0f0;
	color:#61259e;
}
.product-tab ul li.active a{
	background-color:#f0f0f0;
	color:#61259e;
}

/**title**/
.title{
	text-align: center;
	margin-bottom: 60px;
}
.title h3{
	font-size: 24px;
	color: #61259e;
	font-weight: bold;
}
.title h4{
	font-size: 20px;
	color:#4c4c4c;
	font-weight: bold;
}

.product{
	margin-top: 60px;
	margin-bottom: 80px;
}
.product .product-list ul li{
	width: 23%;
	margin-left: 1%;
	margin-right: 1%;
	float: left;
	text-align: center;
}
.product .product-list ul li a{
	display: block;
	padding-top: 40px;
	padding-bottom: 20px;
	margin-bottom: 25px;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
}
.product .product-list ul li a img{
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
}
.product .product-list ul li a h4{
	font-size: 16px;
	color:#61259e;
	font-weight: bold;
	margin-bottom: 5px;
}
.product .product-list ul li a p{
	font-size: 16px;
	color: #333;
}
.product .product-list ul li a:hover img{
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-o-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
}
.product .product-list ul li a:hover{
	box-shadow: 0px 0px 15px #ccc;
}

/**分页**/
.fy{
	text-align: center;
	margin-top: 30px;
}
.fy ul li{
	display: inline-block;
	margin-left: 12px;
	margin-right: 12px;
	vertical-align: middle;
}
.fy ul li.active span{
	padding: 6px 10px;
	border-radius: 50%;
	color:#61259e;
	background-color:#e6e6e6;
}
.fy ul li a{
	font-size: 16px;
	color:#999;
	padding: 6px 10px;
	border-radius: 50%;
}
.fy ul .active a{
	color:#61259e;
	background-color:#e6e6e6;
}
.fy ul li a:hover{
	background-color:#e6e6e6;
}
.fy ul li span{
	color: #999;
	font-size: 16px;
}
/*.fy ul .fy-prev a img{
    animation: dot 1.8s infinite;
}
.fy ul .fy-next a img{
    animation: dot 1.8s infinite;
    }*/
.fy ul .fy-prev a{
	display: block;
	width: 28px;
	height: 28px;
	padding: 0px;
	position: relative;
	background: url(../images/fy-next-q.png) no-repeat;
	overflow: hidden;
}
.fy ul .fy-next a{
	display: block;
	width: 28px;
	height: 28px;
	padding: 0px;
	position: relative;
	background: url(../images/fy-next-q.png) no-repeat;
	overflow: hidden;
}
.fy ul .fy-prev a:after{
	content: "";
	position: absolute;
	top: 7px;
	left: 15px;
	width: 9px;
	height: 15px;
	background: url(../images/fy-prev-j.png) no-repeat;
	z-index: 99;
	animation: fy 1.8s infinite;
	-webkit-animation: fy 1.8s infinite;
}
.fy ul .fy-next a:after{
	content: "";
	position: absolute;
	top: 7px;
	left: 0px;
	width: 9px;
	height: 15px;
	background: url(../images/fy-next-j.png) no-repeat;
	z-index: 99;
	animation: next 1.8s infinite;
	-webkit-animation: next 1.8s infinite;
}
.fy ul .fy-prev a:hover{
	background-color:transparent;
}
.fy ul .fy-next a:hover{
	background-color:transparent;
}
@keyframes fy{
	0%{
		left:100%
	}
	100%{
		left:0%;
	}
}
@-webkit-keyframes fy{
	0%{
		left:100%
	}
	100%{
		left:0%;
	}
}
@keyframes next{
	0%{
		left: -10px;
	}
	100%{
		left: 65%;
	}
}
@-webkit-keyframes next{
	0%{
		left: -10px;
	}
	100%{
		left: 65%;
	}
}

@keyframes dot{
	100%{
		transform: scale(0.9);
	}
	50%{
		transform: scale(1.1);
	}
}
@-webkit-keyframes dot{
	100%{
		transform: scale(0.9);
	}
	50%{
		transform: scale(1.1);
	}
}

/**视频中心**/
.video{
	margin-top:80px;
	margin-bottom: 80px;
}
.video .video-tab{
	text-align: center;
	margin-bottom:40px;
}
.video .video-tab ul li{
	display: inline-block;
	margin-left: 10px;
	margin-right: 10px;
}
.video .video-tab ul li a{
	display: block;
	padding: 7px 20px;
	font-size: 16px;
	color: #333;
	border-radius: 20px;
}
.video .video-tab ul li a:hover{
	background-color: #f0f0f0;
	color: #61259e;
	/*font-weight: bold;*/
}
.video .video-tab ul li.active a{
	background-color: #f0f0f0;
	color: #61259e;
}
.video .video-list ul li{
	width: 23%;
	margin-left: 1%;
	margin-right: 1%;
	float: left;
	text-align: center;
	margin-bottom: 40px;
}
.video .video-list ul li a{
	font-size: 16px;
	color:#333333;
	display: block;
	padding-bottom: 15px;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
}
.video .video-list ul li a p{
	font-size: 16px;
	color:#333333;
	margin-top: 20px;
}
.video .video-list ul li a .video-img{
	overflow: hidden;
}
.video .video-list ul li a .video-img img{
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
}
.video .video-list ul li a:hover .video-img img{
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-o-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
}
.video .video-list ul li a:hover{
	box-shadow: 0px 0px 15px #ccc;
}

/**代理合作**/
.agency{
	margin-top: 70px;
	margin-bottom: 80px;
}
.agency .agency-list{
	margin-bottom: 70px;
}
.agency .agency-list ul li{
	width: 36%;
	margin-left: 7%;
	margin-right: 7%;
	float: left;
	text-align: center;
	margin-top: 40px;
	cursor: pointer;
}
.agency .agency-list ul li h4{
	font-size: 18px;
	color: #333;
	font-weight: 600;
	margin-top: 30px;
	margin-bottom: 20px;
}
.agency .agency-list ul li  p{
	font-size: 14px;
	color: #4c4c4c;
	line-height: 23px;
}
.agency-lx{
	background-color:#f5f5f5;
}
.agency-lx .lx-left{
	width: 50%;
	float: left;
	padding-left: 50px;
	padding-top: 115px;
}
.agency-lx .lx-left h3{
	font-size: 24px;
	color: #1a1a1a;
	margin-bottom: 20px;
}
.agency-lx .lx-left h4{
	font-size: 18px;
	color: #333333;
}
.agency-lx .lx-left .lx-left-list{
	margin-top: 30px;
}
.agency-lx .lx-left .lx-left-list li p{
	font-size: 14px;
	color: #1a1a1a;
}
.agency-lx .lx-left .lx-left-list li p img{
	margin-right: 10px;
}
.agency-lx .lx-left .lx-left-list li:nth-child(4) p{
	color:#61259e;
}
.agency-lx .lx-left .lx-left-list .yx{
	cursor: pointer;
}
.agency-lx .lx-left .lx-left-list .yx p{
	font-weight: bold;
}
.agency-lx .lx-map{
	width: 50%;
	float: right;
	position: relative;
}
.map{
	width:100%;height:450px;border:#ccc solid 1px;
}
.agency-lx .lx-map .lx-map-icon{
	display: block;
	width: 25px;
	height: 35px;
	position: absolute;
	bottom: 138px;
	left: 334px;
	background: url(../images/dh-map-icon.png) no-repeat;
	background-size: 100%;
	animation: dot 1.8s infinite;
	-webkit-animation: dot1 1.8s infinite;
}
.agency-lx .lx-map .lx-map-text{
	position: absolute;
	bottom: 90px;
	left: 334px;
	color: #61259e;
	font-size: 14px;
	font-weight: bold;
}

/**邮箱弹窗**/
.yx-tc{
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.5);
	z-index: 9999;
	display: none;
}
.yx-tc .yx-tc-main{
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -310px;
	margin-top: -202px;
	width: 620px;
	background-color: #FFF;
	padding: 35px 50px;
	text-align: center;
}
.yx-tc .yx-tc-main h4{
	text-align: center;
	font-size: 18px;
	color: #333;
}
.yx-tc .yx-tc-main input{
	width: 100%;
	height: 30px;
	margin-top: 20px;
	border: 1px solid #f0f0f0;
	padding-left: 15px;
	border-radius: 6px;
}
.yx-tc .yx-tc-main input::placeholder{
	font-size: 14px;
	color:#b2b2b2;
}
.yx-tc .yx-tc-main textarea{
	width: 100%;
	margin-top: 20px;
	border: 1px solid #f0f0f0;
	padding-left: 15px;
	border-radius: 6px;
}
.yx-tc .yx-tc-main textarea::placeholder{
	font-size: 14px;
	color:#b2b2b2;
}
.yx-tc .yx-tc-main button{
	margin-top: 20px;
	padding: 6px 45px;
	background-color:#f0f0f0;
	border: 1px solid #f0f0f0;
	border-radius: 20px;
}


/**代理合作-形象店铺分布**/
.figure{
	margin-top: 70px;
	margin-bottom: 80px;
}
.figure .figure-fb dl dt{
	width: 60%;
	float: right;
	position: relative;
}
.figure .figure-fb dl dd{
	width: 30%;
	float:left;
	margin-top: 180px;
}
.figure .figure-fb dl dd h4{
	font-size: 20px;
	color: #4c4c4c;
	font-weight: 600;
	margin-bottom: 50px;
}
.figure .figure-fb dl dd p{
	font-size: 14px;
	color:#1a1a1a;
	line-height: 25px;
}
.figure-stope{
	margin-top: 80px;
}
.figure-stope .figure-stope-list ul li{
	width: 50%;
	float: left;
}
.figure-stope .figure-stope-list a{
	display: block;
	overflow: hidden;
}
.figure-stope .figure-stope-list a img{
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
}
.figure-stope .figure-stope-list a:hover img{
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-o-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
}
.figure .figure-fb dl dt .map-icon{
	position: absolute;
}
.figure .figure-fb dl dt .map-icon.map-icon1{
	top: 222px;
	left: 519px;
}
.figure .figure-fb dl dt .map-icon.map-icon1 span i{
	-webkit-animation: sk-pulseScaleOut 3s infinite 0.5s ease-in-out;
	animation: sk-pulseScaleOut 3s infinite 0.5s ease-in-out;
}
.figure .figure-fb dl dt .map-icon.map-icon2{
	top: 241px;
	left: 497px;
}
.figure .figure-fb dl dt .map-icon.map-icon2 span i{
	-webkit-animation: sk-pulseScaleOut 3s infinite 0.7s ease-in-out;
	animation: sk-pulseScaleOut 3s infinite 0.7s ease-in-out;
}
.figure .figure-fb dl dt .map-icon.map-icon3{
	top: 260px;
	left: 530px;
}
.figure .figure-fb dl dt .map-icon.map-icon3 span i{
	-webkit-animation: sk-pulseScaleOut 3s infinite 0.2s ease-in-out;
	animation: sk-pulseScaleOut 3s infinite 0.2s ease-in-out;
}
.figure .figure-fb dl dt .map-icon.map-icon4{
	top: 288px;
	left: 486px;
}
.figure .figure-fb dl dt .map-icon.map-icon4 span i{
	-webkit-animation: sk-pulseScaleOut 3s infinite ease-in-out;
	animation: sk-pulseScaleOut 3s infinite  ease-in-out;
}
.figure .figure-fb dl dt .map-icon.map-icon5{
	top: 349px;
	left: 571px;
}
.figure .figure-fb dl dt .map-icon.map-icon5 span i{
	-webkit-animation: sk-pulseScaleOut 3s infinite 1.2s ease-in-out;
	animation: sk-pulseScaleOut 3s infinite 1.2s ease-in-out;
}
.figure .figure-fb dl dt .map-icon.map-icon6{
	top: 379px;
	left: 526px;
}
.figure .figure-fb dl dt .map-icon.map-icon6 span i{
	-webkit-animation: sk-pulseScaleOut 3s infinite 0.9s ease-in-out;
	animation: sk-pulseScaleOut 3s infinite 0.9s ease-in-out;
}
.figure .figure-fb dl dt .map-icon.map-icon7{
	top: 394px;
	left: 476px;
}
.figure .figure-fb dl dt .map-icon.map-icon7 span i{
	-webkit-animation: sk-pulseScaleOut 3s infinite 2s ease-in-out;
	animation: sk-pulseScaleOut 3s infinite 2s  ease-in-out;
}
.figure .figure-fb dl dt .map-icon.map-icon8{
	top: 354px;
	left: 368px;
}
.figure .figure-fb dl dt .map-icon.map-icon8 span i{
	-webkit-animation: sk-pulseScaleOut 3s infinite 1s ease-in-out;
	animation: sk-pulseScaleOut 3s infinite 1s ease-in-out;
}
.figure .figure-fb dl dt .map-icon.map-icon9{
	top: 464px;
	left: 494px;
}
.figure .figure-fb dl dt .map-icon.map-icon9 span i{
	-webkit-animation: sk-pulseScaleOut 3s infinite 0.5s ease-in-out;
	animation: sk-pulseScaleOut 3s infinite 0.5s ease-in-out;
}
.figure .figure-fb dl dt .map-icon.map-icon10{
	top: 452px;
	left: 327px;
}
.figure .figure-fb dl dt .map-icon.map-icon10 span i{
	-webkit-animation: sk-pulseScaleOut 3s infinite 1.3s ease-in-out;
	animation: sk-pulseScaleOut 3s infinite 1.3s ease-in-out;
}
.figure .figure-fb dl dt .map-icon span{
	position: relative;
	cursor: pointer;
}
.figure .figure-fb dl dt .map-icon.map-icon span i{
	position: absolute;
	top: -3px;
	left:0px;
}
.figure .figure-fb dl dt .map-icon span i{
	-webkit-animation: sk-pulseScaleOut 3s infinite ease-in-out;
	animation: sk-pulseScaleOut 3s infinite ease-in-out;
}

.figure .figure-fb dl dt .map-text{
	display: none;
	width: 70px;
	margin-left: -25px;
	text-align: center;
	/*z-index: 999;*/
	color: #FFF;
	position: relative;
}
.figure .figure-fb dl dt .map-text p{
	position: absolute;
	top: 0px;
	left: 0px;
	width: 70px;
	text-align: center;
	z-index: 999;
}
/*.figure .figure-fb dl dt .map-text.map-text1{
    top: 223px;
    left: 544px;
    }*/
@keyframes sk-pulseScaleOut{
	0% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}
	100% {
		-webkit-transform: scale(3);
		transform: scale(3);
		opacity: 0;
	}
}
@-webkit-keyframes sk-pulseScaleOut{
	0% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}
	100% {
		-webkit-transform: scale(3);
		transform: scale(3);
		opacity: 0;
	}
}

/**防伪查询**/
.inquire-banner{
	padding-top: 240px;
	background: url(../images/inquire-banner.jpg) no-repeat;
	background-size: 100%;
	padding-bottom: 230px;
}
.inquire-banner .inquire-btn{
	margin-top: 60px;
	text-align: center;
	height: 50px;
}
.inquire-banner .inquire-btn a{
	padding: 13px 84px;
	font-size: 22px;
	color: #FFF;
	background-color:#61259e;
	border-radius: 30px;
	font-weight: normal;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
}
.inquire-banner .inquire-btn a:hover{
	padding: 14px 90px;
	font-size: 24px;
	box-shadow: 0px 0px 15px #ccc;
}

/**联系我们**/
.contact-banner{
	padding-top: 120px;
	background: url(../images/contact-banner1.jpg) no-repeat center;
	padding-bottom: 140px;
}
.contact-banner .contact-banner-lx{
	/*width: 60%;
    margin: 0 auto;*/
	/*background-color: rgba(255,255,255,0.8);*/
	padding: 60px;
}
.contact-banner .contact-banner-text{
	margin-top: 60px;
	text-align: center;
}
.contact-banner .contact-banner-text ul li p{
	font-size: 14px;
	color: #FFF;
	cursor: pointer;
}
.contact-banner .contact-banner-text ul li{
	display: inline-block;
	margin-left: 15px;
	margin-right: 15px;
	width: 15%;
	vertical-align: middle;
}
/*.contact-banner .contact-banner-text ul li.contact-ly{*/
/*	margin-left: 50px;*/
/*	margin-right: 20px;*/
/*}*/

.contact-banner .contact-banner-text ul li span{
	vertical-align: middle;
	display: inline-block;
}

.contact-banner .contact-banner-text ul li span:nth-child(1){
	width: 10%;
}
.contact-banner .contact-banner-text ul li span:nth-child(2){
	width: 80%;
}
/*.contact-banner .contact-banner-lx dl dt{
    width: 50%;
    float: left;
    margin-top: 30px;
}
.contact-banner .contact-banner-lx dl dd{
    width: 50%;
    float: left;
}
.contact-banner .contact-banner-lx dl dd h3{
    font-size: 24px;
    color: #1a1a1a;
    font-weight: 600;
}
.contact-banner .contact-banner-lx dl dd h5{
    font-size: 14px;
    color:#61259e;
    font-weight: bold;
    cursor: pointer;
}
.contact-banner .contact-banner-lx dl dd p{
    font-size: 14px;
    color: #1a1a1a;
    line-height: 23px;
    }*/
.contact{
	margin-top: 60px;
	margin-bottom: 80px;
}
.contact .contact-main{
	position: relative;
	background: url(../images/dt-map.jpg) no-repeat center;
	background-size: 100%;
	height: 618px;
}
.contact .contact-main .contact-map{
	display: block;
	width: 25px;
	height: 35px;
	position: absolute;
	bottom: 234px;
	left: 610px;
	background: url(../images/dh-map-icon.png) no-repeat;
	background-size: 100%;
	animation: dot2 1.8s infinite;
	-webkit-animation: dot2 1.8s infinite;
}
.contact .contact-main .contact-map-text{
	position: absolute;
	bottom: 188px;
	left: 610px;
	color: #61259e;
	font-weight: bold;
}

/**售后服务**/
.service{
	padding-bottom: 70px;
}
.service .service-sales{
	margin-top: 80px;
	padding-bottom: 50px;
	border-bottom: 1px solid #f0f0f0;
}
.service .service-sales .servise-salas-text{
	text-align: center;
}
.service .service-sales .servise-salas-text p{
	font-size: 16px;
	color:#333;
	line-height: 28px;
}
.service .service-corporate{
	margin-top: 100px;
	padding-bottom: 100px;
}
.service .service-corporate .service-corporate-text dl dt{
	width: 54%;
	float: right;
}
.service .service-corporate .service-corporate-text dl dd{
	width: 40%;
	float: left;
}
.service .service-corporate .service-corporate-text dl dd p{
	margin-bottom: 0px;
	line-height: 30px;
	font-size: 16px;
	color: #333;
}
.service-tk .service-tk-text dl dt{
	width: 50%;
	float: left;
}
.service-tk .service-tk-text dl dd{
	width: 45%;
	float: right;
}
.service-tk .service-tk-text dl dd p{
	font-size: 16px;
	color:#333333;
	margin-bottom: 0px;
	line-height: 32px;
}

/**加入我们**/
.join{
	margin-top: 70px;
	margin-bottom: 100px;
}
.join .join-tab{
	padding-bottom: 50px;
	border-bottom: 1px solid #f0f0f0;
}
.join .join-tab-list{
	width: 60%;
	margin: 0 auto;
	text-align: center;
}
.join .join-tab-list ul li{
	display: inline-block;
	margin-bottom: 20px;
}
.join .join-tab-list ul li a{
	display:block;
	padding: 10px 25px;
	font-size: 16px;
	color: #333;
	border-radius: 20px;
}
.join .join-tab-list ul li a:hover{
	background-color: #f0f0f0;
	color:#61259e;
	/*font-weight: bold;*/
}
.join .join-tab-list ul li.active a{
	background-color: #f0f0f0;
	color:#61259e;
}
.join-text{
	margin-top: 30px;
	margin-bottom: 150px;
}
.join-text .zw{
	text-align: center;
}
.join-text .zw span{
	display: inline-block;
	margin-left: 15px;
	margin-right: 15px;
}
.join-text .join-text-list{
	margin-top: 45px;
}
.join-text .join-text-list li{
	width: 27.33%;
	float: left;
	margin-left: 3%;
	margin-right: 3%;
}
.join-text .join-text-list li h5{
	font-size: 14px;
	color: #121212;
	margin-bottom: 20px;
}
.join-text .join-text-list li p{
	margin-bottom: 0px;
	line-height: 28px;
	font-size: 14px;
	color: #666;
}

.agency-lx .lx-left .join-title h3{
	font-size: 24px;
	color: #61259e;
	font-weight: bold;
	margin-bottom: 10px;
}
.agency-lx .lx-left .join-title h4{
	font-size: 20px;
	color: #4c4c4c;
	font-weight: bold;
}
.agency-lx .lx-left .join-title{
	margin-bottom: 65px;
}
.agency-lx .lx-left .lx-join-text h4{
	font-size: 18px;
	color: #333;
	font-weight: bold;
}
.agency-lx .lx-left .lx-join-text h5{
	font-size: 14px;
	color: #61259e;
	cursor: pointer;
	font-weight: bold;
}
.agency-lx .lx-left .lx-join-text p{
	font-size: 14px;
	color: #333;
}
.join-hj{
	margin-top: 85px;
}
.join-hj-tp .join-hj-tp-left{
	width: 50.01%;
	float: left;
}
.join-hj-tp .join-hj-tp-left dl dt{
	width: 49.15%;
	float: left;
}
.join-hj-tp .join-hj-tp-left dl dd{
	width: 50.85%;
	float: left;
}
.join-hj-tp .join-hj-tp-right{
	width: 49.99%;
	float: left;
}
.join-hj-tp .join-hj-tp-right dl dt{
	width: 50.8%;
	float: left;
}
.join-hj-tp .join-hj-tp-right dl dd{
	width: 49.2%;
	float: left;
}
.join-hj-tp a{
	display: block;
	overflow: hidden;
}
.join-hj-tp a img{
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
}
.join-hj-tp a:hover img{
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-moz-transform: scale(1.1);
}
/*.join-hj .join-hj-tp dl dt{
    width: 49.3%;
    float: left;
}
.join-hj .join-hj-tp dl dd{
    width: 49.5%;
    float: right;
}
.join-hj .join-hj-tp dl dd img{
    margin-bottom: 17px;
    }*/

/**品牌介绍**/
.introduce{
	margin-bottom: 80px;
}
.introduce-banner{
	margin-top: 71px;
}
.introduce-abstract{
	margin-top: 70px;
}
.introduce-abstract .introduce-abstract-text{
	text-align: center;
	margin-bottom: 60px;
}
.introduce-abstract .introduce-abstract-text p{
	font-size: 16px;
	color: #333333;
	line-height: 30px;
}
.introduce-abstract .introduce-jz{
	margin-top: 75px;
	margin-bottom: 75px;
}
.introduce-jz-list{
	text-align: center;
}
.introduce-jz-list ul li{
	display: inline-block;
	width: 18%;
	margin-left: 2%;
	margin-right: 2%;
}
.introduce-jz-list ul li a{
	display: block;
	text-align: center;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
}
.introduce-jz-list ul li a:hover{
	transform:rotate(360deg);
	-ms-transform:rotate(360deg); /* Internet Explorer */
	-moz-transform:rotate(360deg); /* Firefox */
	-webkit-transform:rotate(360deg); /* Safari 和 Chrome */
	-o-transform:rotate(360deg);
}

.introduce-sm{
	background: url(../images/introduce-bg.jpg) no-repeat;
	padding-top: 160px;
	text-align: center;
	padding-bottom: 160px;

}
.introduce-sm .introduce-sm-title{
	margin-bottom: 40px;
}
.introduce-sm .introduce-sm-title h3{
	font-size: 24px;
	color: #FFF;
	font-weight: bold;
}
.introduce-sm .introduce-sm-title h4{
	font-size: 20px;
	color: #FFF;
	font-weight: bold;
}
.introduce-sm p{
	font-size: 16px;
	color: #FFF;
}
.introduce-ln{
	margin-top: 70px;
}
.introduce-ln .introduce-ln-list ul li{
	width: 33.33%;
	float: left;
	text-align: center;
}
.introduce-ln .introduce-ln-list ul li a{
	display: block;
	position: relative;
	overflow: hidden;
}
.introduce-ln .introduce-ln-list ul li a img{
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
}
.introduce-ln .introduce-ln-list ul li a:hover img{
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-o-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
}
.introduce-ln .introduce-ln-list ul li a .introduce-ln-list-text p{
	font-size: 24px;
	color: #FFF;
	margin-bottom: 0px;
}
.introduce-ln .introduce-ln-list ul li a .introduce-ln-list-text{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	left: 0px;
	width: 100%;
	text-align: center;
}

/**品牌咨询**/
.new{
	margin-top: 75px;
	margin-bottom: 80px;
}
.new .new-list{
	border-top: 1px solid #e6e6e6;
	margin-bottom: 50px;
}
.new .new-list ul li{
	padding-top: 50px;
	padding-bottom: 50px;
	border-bottom: 1px solid #e6e6e6;
}
.new .new-list ul li dl dt{
	width: 34%;
	float: right;
	margin-left: 8%;
	margin-right: 8%;
}
.new .new-list ul li dl dd{
	width: 34%;
	float: left;
	margin-left: 8%;
	margin-right: 8%;
}
.new .new-list ul li dl dd a{
	display: block;
}
.new .new-list ul li dl dd h4{
	font-size: 18px;
	color:#333;
	margin-bottom: 30px;
}
.new .new-list ul li dl dd p{
	font-size: 14px;
	color: #333;
	line-height: 25px;
}
.new .new-list ul li dl dd span{
	display: block;
	margin-top: 30px;
	font-size: 14px;
	color: #333;
}

/**搜索失败**/
.failure{
	margin-top: 71px;
	margin-bottom: 180px;
}
.failure-wz{
	padding-top: 20px;
	padding-bottom: 10px;
	border-bottom: 1px solid #f0f0f0;
}
.failure-wz p{
	font-size: 14px;
	color: #4c4c4c;
}
.failure-wz p a{
	font-size: 14px;
	color: #4c4c4c;
}
.failure .failure-text{
	width: 50%;
	margin: 0 auto;
	margin-top: 80px;
}
.failure .failure-text dl dt{
	width: 40%;
	float: left;
}
.failure .failure-text dl dd{
	width: 60%;
	float: right;
}
.failure .failure-text dl dd h4{
	font-size: 20px;
	color: #1a1a1a;
	margin-bottom: 30px;
}
.failure .failure-text dl dd p{
	font-size: 14px;
	color: #1a1a1a;
	line-height: 28px;
}

/**产品详情**/
.productxq{
	margin-top: 71px;
}
.product-main{
	margin-bottom: 80px;
}
.productxq .product-main-text{
	margin-top: 100px;
}
.productxq .product-main-text dl dt{
	width: 50%;
	float: left;
}
.productxq .product-main-text dl dd{
	width: 45%;
	float: right;
}
.productxq .product-main-text dl dd .productxq-title{
	margin-bottom: 30px;
}
.productxq .product-main-text dl dd .productxq-title h3{
	font-size: 30px;
	color: #61259e;
}
.productxq .product-main-text dl dd .productxq-title h4{
	font-size: 20px;
	color: #4c4c4c;
}
.productxq .product-main-text dl dd .productxq-list li{
	padding-top: 20px;
	padding-bottom: 20px;
	border-top: 1px solid #f0f0f0;
}
.productxq .product-main-text dl dd .productxq-list .sj{
	font-size: 14px;
	color: #5f5f5f;
}
.productxq .product-main-text dl dd .productxq-list .xh{
	font-size: 12px;
	color:#5f5f5f;
}

/**咨询详情**/
.newxq{
	margin-top: 71px;
}
.newxq-text{
	margin-top: 65px;
	margin-bottom: 50px;
}
.newxq-text .newxq-left{
	width: 63%;
	float: left;
}
.newxq-text .newxq-left .newxq-title{
	text-align: center;
	margin-bottom: 30px;
}
.newxq-text .newxq-left .newxq-title h4{
	font-size: 20px;
	color:#191919;
}
.newxq-text .newxq-left .newxq-title h5{
	font-size: 14px;
	color:#808080;
}
.newxq-text .newxq-left p{
	font-size: 14px;
	color: #191919;
	margin-bottom: 0px;
	line-height: 28px;
}
.newxq-text .newxq-left img{
	margin-top: 30px;
	margin-bottom: 30px;
}
.newxq-text .newxq-right{
	width: 28%;
	float: right;
	background-color: #f5f5f5;
}
.newxq-text .newxq-right h4{
	padding: 15px 25px;
	border-bottom: 1px solid #e6e6e6;
}
.newxq-text .newxq-right .newxq-right-list{
	padding: 3px 25px 25px 25px;
}
.newxq-text .newxq-right .newxq-right-list ul li{
	margin-top: 10px;
}
.newxq-text .newxq-right .newxq-right-list ul li a{
	font-size: 14px;
	color: #333;
}


/**视频详情**/
.video-xq{
	margin-top: 71px;
	margin-bottom: 80px;
}
.videoxq-main{
	text-align: center;
	margin-top: 60px;
}
.videoxq-main h4{
	font-size: 20px;
	color:#4c4c4c;
	margin-bottom: 40px;
}
.videoxq-main-img{
	position: relative;
}
.videoxq-main-img .videoxq-icon{
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -58px;
	margin-top: -57px;
	cursor: pointer;
}
.videoxq-main-img .videoxq-icon img{
	animation: video 1.8s infinite;
	-webkit-animation: video 1.8s infinite;
}
@keyframes video{
	100%{
		transform: scale(0.98);
	}
	50%{
		transform: scale(1.08);
	}
}
@-webkit-keyframes video{
	100%{
		transform: scale(0.98);
	}
	50%{
		transform: scale(1.08);
	}
}

@keyframes dot1{
	 100%{
		 transform: scale(0.98);
		 bottom: 139px;
	 }
	 80%{
		 transform: scale(1.03);
		 bottom: 141px;
	 }
	 50%{
		 transform: scale(1.05);
		 bottom: 142px;
	 }
	 20%{
		 transform: scale(0.98);
		 bottom: 140px;
	 }
	 0%{
		 transform: scale(0.95);
		 bottom: 137px;
	 }
 }
@-webkit-keyframes dot1{
	100%{
		transform: scale(0.98);
		bottom: 139px;
	}
	80%{
		transform: scale(1.03);
		bottom: 141px;
	}
	50%{
		transform: scale(1.05);
		bottom: 142px;
	}
	20%{
		transform: scale(0.98);
		bottom: 140px;
	}
	0%{
		transform: scale(0.95);
		bottom: 137px;
	}
}
@keyframes dot2{
	100%{
		transform: scale(0.98);
		bottom: 235px;
	}
	80%{
		transform: scale(1.03);
		bottom: 237px;
	}
	50%{
		transform: scale(1.05);
		bottom: 239px;
	}
	20%{
		transform: scale(0.98);
		bottom: 236px;
	}
	0%{
		transform: scale(0.95);
		bottom: 233px;
	}
}
@-webkit-keyframes dot2{
	100%{
		transform: scale(0.98);
		bottom: 235px;
	}
	80%{
		transform: scale(1.03);
		bottom: 237px;
	}
	50%{
		transform: scale(1.05);
		bottom: 239px;
	}
	20%{
		transform: scale(0.98);
		bottom: 236px;
	}
	0%{
		transform: scale(0.95);
		bottom: 233px;
	}
}


/**添加页面-防伪查询**/
.query-wz{
	margin-top: 90px;
}
.query-wz p a{
	font-style: 14px;
	color:#4c4c4c;
}
.query-wz p a:hover{
	text-decoration: underline;
}
.query-wz p{
	padding-bottom: 20px;
	border-bottom: 1px solid #f0f0f0;
}
.query-main{
	margin-top: 75px;
	margin-bottom: 100px;
}
.query-search{
	width: 550px;
	margin: 0 auto;
}
.query-search .form{
	border: 1px solid #333333;
	height: 43px;
	border-radius: 20px;
}
.query-search button{
	width: 8%;
	background-color:transparent;
	border: none;
	height: 36px;
}
.query-search input{
	width: 85%;
	height: 41px;
	border: none;
	text-align: center;
}
.query-search input::placeholder{
	font-style: 14px;
	color:#b2b2b2;
}
.query-search p{
	font-size: 16px;
	color: #121212;
	margin-top:20px;
	line-height: 30px;
	text-align: center;
}

/**产品详情**/
#exzoom {
	width: 350px;
	margin: 0 auto;
}

.product-banner .yd{
	display: none;
}
.introduce-banner .yd{
	display: none;
}



@media(min-width: 768px) and (max-width: 992px){
	/**防伪查询**/
	.inquire-banner {
		padding-top: 101px;
		background: url(../images/inquire-banner.jpg) no-repeat;
		background-size: 100%;
		padding-bottom: 50px;
	}

	/**品牌介绍**/
	.introduce-jz-list ul li {
		display: inline-block;
		width: 20%;
		margin-left: 2%;
		margin-right: 2%;
	}
	.introduce-jz-list ul li a {
		display: block;
		text-align: center;
		min-height: 100px;
		line-height: 147px;
	}
	.introduce-jz-list ul li:nth-child(1) a {
		background: url(../images/introduce-jz-bg1.png) no-repeat;
		background-size: 100%;
	}
	.introduce-jz-list ul li:nth-child(2) a{
		background-size: 100%;
	}
	.introduce-jz-list ul li:nth-child(3) a{
		background-size: 100%;
	}
	.introduce-jz-list ul li:nth-child(4) a{
		background-size: 100%;
	}


	/**加入我们**/
	.join .join-tab-list {
		width: 100%;
		margin: 0 auto;
		text-align: center;
	}

	/**品牌咨询**/
	.new .new-list ul li dl dd {
		width: 50%;
		float: left;
		margin-left: 0%;
		margin-right: 0%;
	}

	/**新闻详情**/
	.newxq-text .newxq-left {
		width: 58%;
		float: left;
	}
	.newxq-text .newxq-right {
		width: 40%;
		float: right;
		background-color: #f5f5f5;
	}




	/**产品中心**/
	.product .product-list ul li {
		width: 31.33%;
		margin-left: 1%;
		margin-right: 1%;
		float: left;
		text-align: center;
	}

	/**视频中心**/
	.video .video-list ul li {
		width: 31.33%;
		margin-left: 1%;
		margin-right: 1%;
		float: left;
		text-align: center;
		margin-bottom: 40px;
	}

	/**地图**/
	.figure .figure-fb dl dt .map-icon.map-icon1{
		top: 137px;
		left: 322px;
	}
	.figure .figure-fb dl dt .map-icon.map-icon2{
		top: 152px;
		left: 305px;
	}
	.figure .figure-fb dl dt .map-icon.map-icon3{
		top: 165px;
		left: 327px;
	}
	.figure .figure-fb dl dt .map-icon.map-icon4{
		top: 184px;
		left: 298px;
	}
	.figure .figure-fb dl dt .map-icon.map-icon5{
		top: 229px;
		left: 220px;
	}
	.figure .figure-fb dl dt .map-icon.map-icon6{
		top: 225px;
		left: 352px;
	}
	.figure .figure-fb dl dt .map-icon.map-icon7{
		top: 242px;
		left: 321px;
	}
	.figure .figure-fb dl dt .map-icon.map-icon8{
		top: 252px;
		left: 288px;
	}
	.figure .figure-fb dl dt .map-icon.map-icon9{
		top: 290px;
		left: 303px;
	}
	.figure .figure-fb dl dt .map-icon.map-icon10{
		top: 286px;
		left: 196px;
	}


	/**联系我们**/
	.contact .contact-main a {
		display: block;
		width: 100%;
		height: 100%;
		position: absolute;
		bottom: 0px;
		left: 0px;
	}
	.agency-lx .lx-map .lx-map-icon{
		display: block;
		width: 100%;
		height: 100%;
		position: absolute;
		bottom: 0px;
		left: 0px;
	}

	.agency-lx .lx-map .lx-map-icon{
		display: block;
		width: 23px;
		height: 29px;
		position: absolute;
		bottom: 96px;
		left: 203px;
	}
	.agency-lx .lx-map .lx-map-text {
		position: absolute;
		bottom: 47px;
		left: 203px;
		color: #61259e;
		font-size: 14px;
	}
	.agency-lx .lx-left {
		width: 50%;
		float: left;
		padding-left: 50px;
		padding-top: 11px;
	}
	.agency-lx .lx-left h3 {
		font-size: 22px;
		color: #1a1a1a;
		margin-bottom: 20px;
	}


	/**修改**/
	.contact .contact-main {
		position: relative;
		background: url(../images/dh-map1.jpg) no-repeat center;
		background-size: 100%;
		height: 618px;
	}
	.contact .contact-main .contact-map {
		display: block;
		width: 25px;
		height: 35px;
		position: absolute;
		bottom: 234px;
		left: 422px;
		background: url(../images/dh-map-icon.png) no-repeat;
		background-size: 100%;
	}
	.contact .contact-main .contact-map-text {
		position: absolute;
		bottom: 187px;
		left: 422px;
		color: #61259e;
	}
	@keyframes dot1{
		100%{
			transform: scale(0.98);
			bottom: 96px;
		}
		80%{
			transform: scale(1.03);
			bottom: 98px;
		}
		50%{
			transform: scale(1.05);
			bottom: 101px;
		}
		20%{
			transform: scale(0.98);
			bottom: 97px;
		}
		0%{
			transform: scale(0.95);
			bottom: 95px;
		}
	}



	roduct-banner .yd{
		display: none;
	}
	.introduce-banner .yd{
		display: none;
	}

}
@media(max-width: 767px){


	.contact-banner .contact-banner-text ul li span:nth-child(1){
		width: 10%;
	}
	.contact-banner .contact-banner-text ul li span:nth-child(2){
		width: 38%;
	}

	.query-search button{
		width: 10%;
		background-color:transparent;
		border: none;
		height: 36px;
	}

	.introduce-sm{
		background: url(../images/introduce-bg.jpg) no-repeat center;
		padding-top: 160px;
		text-align: center;
		padding-bottom: 160px;
		margin-top: 30px;
	}

	.introduce-abstract .introduce-abstract-text {
		text-align: center;
		margin-bottom: 60px;
		padding-left: 10px;
		padding-right: 10px;
	}

	/**代理合作**/
	.agency {
		margin-top: 25px;
		margin-bottom: 80px;
	}
	.contact-banner .contact-banner-text ul li {
		display: inline-block;
		margin-left: 0px;
		margin-right: 0px;
		width: 100%;
	}
	.title h3 {
		font-size: 22px;
		color: #61259e;
		font-weight: bold;
	}
	.title h4 {
		font-size: 18px;
		color: #4c4c4c;
		font-weight: bold;
	}
	.title {
		text-align: center;
		margin-bottom: 40px;
	}
	.agency .agency-list ul li {
		width: 100%;
		margin-left: 0%;
		margin-right: 0%;
		float: left;
		text-align: center;
		margin-top: 15px;
	}
	.agency-lx .lx-left {
		width: 100%;
		float: left;
		padding-left: 50px;
		padding-top: 50px;
		padding-bottom: 30px;
	}
	.agency-lx .lx-map {
		width: 100%;
		float: right;
	}

	/**邮箱弹窗**/
	.yx-tc .yx-tc-main{
		position: absolute;
		top: 50%;
		left: 0%;
		margin-top: -202px;
		margin-left: 0px;
		width: 100%;
		background-color: #FFF;
		padding: 35px 20px;
		text-align: center;
	}

	/**联系我们**/
	.contact-banner .contact-banner-lx {
		width: 100%;
		margin: 0 auto;
		padding: 10px;
	}
	.contact-banner {
		padding-top: 135px;
		padding-bottom: 105px;
	}
	.contact .contact-main a {
		display: block;
		width: 100%;
		height: 100%;
		position: absolute;
		bottom: 0px;
		left: 0px;
	}
	.contact .contact-main{
		position: relative;
		background: url(../images/dt-img1.jpg) no-repeat center;
		height: 318px;
		background-size: cover;
	}

	/**搜索失败**/
	.failure .failure-text {
		width: 100%;
		margin: 0 auto;
		margin-top: 80px;
	}
	.failure .failure-text dl dd h4 {
		font-size: 19px;
		color: #1a1a1a;
		margin-bottom: 30px;
	}


	/**店铺展示**/
	.figure .figure-fb dl dt {
		width: 320px;
		float: none;
		margin: 0 auto;
	}
	.figure .figure-fb dl dd {
		width: 100%;
		float: none;
		margin-top: 30px;
	}
	.figure-stope .figure-stope-list ul li {
		width: 100%;
		float: left;
	}
	.figure-stope .figure-stope-list ul li ul li{
		width: 50%;
		margin-bottom: 0px;
	}
	.introduce-jz-list ul li a p {
		font-size: 20px;
		color: #FFF;
	}
	/**地图**/
	.figure .figure-fb dl dt .map-icon.map-icon1{
		top: 99px;
		left: 234px;
	}
	.figure .figure-fb dl dt .map-icon.map-icon2{
		top: 112px;
		left: 223px;
	}
	.figure .figure-fb dl dt .map-icon.map-icon3{
		top: 119px;
		left: 240px;
	}
	.figure .figure-fb dl dt .map-icon.map-icon4{
		top: 132px;
		left: 220px;
	}
	.figure .figure-fb dl dt .map-icon.map-icon5{
		top: 161px;
		left: 264px;
	}
	.figure .figure-fb dl dt .map-icon.map-icon6{
		top: 175px;
		left: 236px;
	}
	.figure .figure-fb dl dt .map-icon.map-icon7{
		top: 180px;
		left: 211px;
	}
	.figure .figure-fb dl dt .map-icon.map-icon8{
		top: 164px;
		left: 158px;
	}
	.figure .figure-fb dl dt .map-icon.map-icon9{
		top: 212px;
		left: 223px;
	}
	.figure .figure-fb dl dt .map-icon.map-icon10{
		top: 209px;
		left: 142px;
	}

	/**防伪查询**/
	.inquire-banner {
		padding-top: 170px;
		background: url(../images/inquire-banner.jpg) no-repeat;
		background-size: 100%;
		padding-bottom: 168px;
	}
	.inquire-banner .inquire-btn a {
		padding: 13px 80px;
		font-size: 18px;
		color: #FFF;
		background-color: #61259e;
		border-radius: 30px;
		font-weight: normal;
	}


	/**品牌介绍**/
	.introduce-jz-list ul li {
		display:block;
		width: 38%;
		margin-left: 6%;
		margin-right: 6%;
		float: left;
	}

	.introduce-jz-list ul li:nth-child(1) a {
		/*background: url(../images/introduce-jz-bg1.png) no-repeat;*/
		background-size: 100%;
	}
	.introduce-jz-list ul li:nth-child(2) a{
		background-size: 100%;
	}
	.introduce-jz-list ul li:nth-child(3) a{
		background-size: 100%;
	}
	.introduce-jz-list ul li:nth-child(4) a{
		background-size: 100%;
	}
	.introduce-jz-list ul li a {
		display: block;
		text-align: center;
		min-height: 180px;
		line-height: 169px;
	}
	.introduce-ln .introduce-ln-list ul li {
		width: 100%;
		float: left;
		text-align: center;
	}
	.introduce-ln .introduce-ln-list ul li a .introduce-ln-list-text p {
		font-size: 22px;
		color: #FFF;
		margin-bottom: 0px;
	}


	/**加入我们**/
	.join {
		margin-top: 40px;
		margin-bottom: 50px;
	}
	.join .join-tab-list {
		width: 100%;
		margin: 0 auto;
		text-align: center;
		overflow: hidden;
	}
	.join .join-tab-list ul li{
		width: 50%;
		float: left;
	}
	.join-text .join-text-list li {
		width: 100%;
		float: left;
		margin-left: 0%;
		margin-right: 0%;
		margin-bottom: 20px;
	}
	.join-text {
		margin-top: 30px;
		margin-bottom: 30px;
	}
	/*.join-hj .join-hj-tp dl dt {
        width: 100%;
        float: left;
    }
    .join-hj .join-hj-tp dl dd {
        width: 100%;
        float: right;
        margin-top: 15px;
        }*/


	/**新闻中心**/
	.new {
		margin-top: 35px;
		margin-bottom: 80px;
	}
	.new .new-list ul li {
		padding-top: 35px;
		padding-bottom: 35px;
		border-bottom: 1px solid #e6e6e6;
	}
	.new .new-list ul li dl dt {
		width: 100%;
		float: right;
		margin-left: 0%;
		margin-right: 0%;
	}
	.new .new-list ul li dl dd {
		width: 100%;
		float: left;
		margin-left: 0%;
		margin-right: 0%;
		margin-top: 20px;
	}
	.fy ul li {
		display: inline-block;
		margin-left: 6px;
		margin-right: 6px;
	}


	/**新闻详情**/
	.newxq-text {
		margin-top: 30px;
	}
	.newxq-text .newxq-left {
		width: 100%;
		float: left;
	}
	.newxq-text .newxq-right {
		width: 100%;
		float: right;
		background-color: #f5f5f5;
		margin-bottom: 50px;
	}


	/**产品中心**/
	.product {
		margin-top: 28px;
		margin-bottom: 80px;
	}
	.product .product-list ul li {
		width:50%;
		margin-left: 0%;
		margin-right: 0%;
		float: left;
		text-align: center;
	}

	.product .product-list ul li a {
		display: block;
		padding-top: 10px;
		padding-bottom: 10px;
		margin-bottom: 10px;
	}

	/**产品详情**/
	.productxq .product-main-text dl dt {
		width: 100%;
		float: left;
	}
	.productxq .product-main-text dl dd {
		width: 100%;
		float: right;
		margin-top: 30px;
	}

	.productxq .product-main-text {
		margin-top: 0px;
	}
	.product-main {
		margin-bottom: 10px;
	}

	.productxq .product-main-text dl dd .productxq-title h3 {
		font-size: 26px;
		color: #61259e;
	}
	.productxq .product-main-text dl dd .productxq-title h4 {
		font-size: 18px;
		color: #4c4c4c;
	}

	/**售后服务**/
	.service .service-corporate {
		margin-top: 80px;
		padding-bottom: 50px;
	}
	.service .service-corporate .service-corporate-text dl dt {
		width: 100%;
		float: right;
	}
	.service .service-corporate .service-corporate-text dl dd {
		width: 100%;
		margin-top: 20px;
		float: left;
	}
	.service-tk .service-tk-text dl dt {
		width: 100%;
		float: left;
	}
	.service-tk .service-tk-text dl dd {
		width: 100%;
		margin-top: 20px;
		float: right;
	}

	/**视频中心**/
	.video {
		margin-top: 40px;
		margin-bottom: 80px;
	}
	.video .video-tab{
		overflow: hidden;
	}
	.video .video-tab ul li {
		display:block;
		width: 24%;
		margin-left: 0.5%;
		margin-right: 0.5%;
		float: left;
		margin-top: 5px;
	}

	.video .video-tab ul li a {
		display: block;
		padding: 7px 0px;
		font-size: 14px;
		color: #333;
		border-radius: 20px;
	}
	.video .video-list ul li {
		width: 48%;
		margin-left: 1%;
		margin-right: 1%;
		float: left;
		text-align: center;
		margin-bottom: 12px;
	}

	.video .video-list ul li a p {
		font-size: 14px;
		color: #333333;
		margin-top: 20px;
	}
	.contact-banner .contact-banner-text {
		margin-top: 50px;
		text-align: center;
	}



	.agency-lx .lx-map .lx-map-icon{
		display: block;
		width: 100%;
		height: 100%;
		position: absolute;
		bottom: 0px;
		left: 0px;
	}

	.join-hj-tp .join-hj-tp-left {
		width: 100%;
		float: left;
	}
	.join-hj-tp .join-hj-tp-right {
		width: 100%;
		float: left;
	}


	.contact .contact-main{
		position: relative;
		background: url(../images/dh-map1.jpg) no-repeat center;
		height: 318px;
		background-size: cover;
	}
	.contact .contact-main .contact-map {
		display: block;
		width: 25px;
		height: 35px;
		position: absolute;
		bottom: 103px;
		left: 221px;
		background: url(../images/dh-map-icon.png) no-repeat;
		background-size: 100%;
	}
	.contact .contact-main .contact-map-text {
		position: absolute;
		bottom: 58px;
		left: 210px;
		color: #61259e;
	}

	.agency-lx .lx-map .lx-map-icon{
		display: block;
		width: 23px;
		height: 29px;
		position: absolute;
		bottom: 96px;
		left: 215px;
	}
	.agency-lx .lx-map .lx-map-text {
		position: absolute;
		bottom: 47px;
		left: 214px;
		color: #61259e;
		font-size: 14px;
	}

	/**防伪查询**/
	.query-main {
		margin-top: 24px;
		margin-bottom: 100px;
	}
	.query-search {
		width: 100%;
		margin: 0 auto;
	}
	.query-search p {
		font-size: 14px;
	}

	.product-tab ul li {
		display: inline-block;
		width: 24%;
	}
	.product-tab ul li a {
		font-size: 14px;
		color: #333333;
		display: block;
		padding: 8px 10px;
		border-radius: 20px;
		transition: all 0.5s;
		-webkit-transition: all 0.5s;
		-o-transition: all 0.5s;
		-ms-transition: all 0.5s;
		-moz-transition: all 0.5s;
	}

	.contact-banner .contact-banner-text ul li span:nth-child(1) {
		width: 19%;
	}
	.contact-banner .contact-banner-text ul li p img{
		margin-right: 10px;
	}
	.contact-banner .contact-banner-text {
		text-align: left;
		width: 50%;
		margin: 0 auto;
		margin-top: 50px;
	}
	.contact-banner .contact-banner-text ul li span:nth-child(2) {
		width: 77%;
	}


	@keyframes dot1{
		100%{
			transform: scale(0.98);
			bottom:96px;
		}
		80%{
			transform: scale(1.03);
			bottom: 98px;
		}
		50%{
			transform: scale(1.05);
			bottom: 101px;
		}
		20%{
			transform: scale(0.98);
			bottom: 97px;
		}
		0%{
			transform: scale(0.95);
			bottom: 95px;
		}
	}
	@keyframes dot2{
		100%{
			transform: scale(0.98);
			bottom: 111px;
		}
		80%{
			transform: scale(1.03);
			bottom: 113px;
		}
		50%{
			transform: scale(1.05);
			bottom: 116px;
		}
		20%{
			transform: scale(0.98);
			bottom: 113px;
		}
		0%{
			transform: scale(0.95);
			bottom: 110px;
		}
	}


	.product-banner .yd{
		display: block;
	}
	.product-banner .pc{
		display: none;
	}
	.introduce-banner .yd{
		display: block;
	}
	.introduce-banner .pc{
		display: none;
	}

}


@media(max-width: 380px){
	/**修改**/
	.agency-lx .lx-map .lx-map-icon{
		display: block;
		width: 21px;
		height: 25px;
		position: absolute;
		bottom: 96px;
		left: 195px;
	}
	.agency-lx .lx-map .lx-map-text {
		position: absolute;
		bottom: 44px;
		left: 192px;
		color: #61259e;
		font-size: 14px;
	}
	.contact .contact-main .contact-map {
		display: block;
		width: 25px;
		height: 35px;
		position: absolute;
		bottom: 111px;
		left: 202px;
		background: url(../images/dh-map-icon.png) no-repeat;
		background-size: 100%;
	}
	.contact .contact-main .contact-map-text {
		position: absolute;
		bottom: 65px;
		left: 201px;
		color: #61259e;
	}
}


@media(max-width: 350px){
	/**品牌介绍**/
	.introduce-jz-list ul li a p {
		font-size: 16px;
		color: #FFF;
	}
	.introduce-jz-list ul li a {
		display: block;
		text-align: center;
		min-height: 157px;
		line-height: 137px;
	}
	.fy ul li {
		display: inline-block;
		margin-left: 3px;
		margin-right: 3px;
	}

	.agency-lx .lx-map .lx-map-icon {
		display: block;
		width: 17px;
		height: 25px;
		position: absolute;
		bottom: 78px;
		left: 164px;
	}
	.agency-lx .lx-map .lx-map-text {
		position: absolute;
		bottom: 37px;
		left: 159px;
		color: #61259e;
		font-size: 12px;
	}
	.contact .contact-main .contact-map {
		display: block;
		width: 25px;
		height: 35px;
		position: absolute;
		bottom: 111px;
		left: 174px;
		background: url(../images/dh-map-icon.png) no-repeat;
		background-size: 100%;
	}
	.contact .contact-main .contact-map-text {
		position: absolute;
		bottom: 64px;
		left: 174px;
		color: #61259e;
	}

	/**产品详情**/
	#exzoom {
		width: 320px;
		margin: 0 auto;
	}



	@keyframes dot1{
		100%{
			transform: scale(0.98);
			bottom: 78px;
		}
		80%{
			transform: scale(1.03);
			bottom: 80px;
		}
		50%{
			transform: scale(1.05);
			bottom: 83px;
		}
		20%{
			transform: scale(0.98);
			bottom: 80px;
		}
		0%{
			transform: scale(0.95);
			bottom: 77px;
		}
	}

	.contact-banner .contact-banner-text ul li span:nth-child(1) {
		width: 15%;
	}
	.contact-banner .contact-banner-text ul li p img{
		margin-right: 10px;
	}
	.contact-banner .contact-banner-text {
		text-align: left;
		width: 60%;
		margin: 0 auto;
		margin-top: 50px;
	}
	.contact-banner .contact-banner-text ul li span:nth-child(2) {
		width: 80%;
	}

}