@font-face{
            font-family: 'VeneerCleanReg';
            src :url(../font/VeneerCleanReg.otf);
        }
@font-face{
            font-family: 'OpenSans';
            src :url(../font/OpenSans-Regular.ttf);
        }



.about{
	padding: 30px 0;
}
.about_title{
	padding-bottom: 26px;
	
}

.about_title h3{
	line-height: 1;
	font-size: 12px;
	float: left;
	font-weight: normal;
}
.about_title i{
	font-size: 12px;
	color: #e40c24;
	float: left;
	padding: 0 10px;
}
.about_title p{
	line-height: 1;
	font-size: 12px;
	float: left;
}





.contant{
	
	
	

}

.product{
	padding: 30px;
	background: #fff;
}



.slider{
	width: 420px; /*Same as width of the large image*/
	position: relative;
	/*Instead of height we will use padding*/
	padding-top: 420px; /*That helps bring the labels down*/
	float: left;
	
	margin: 20px auto 20px 60px;
	
}


/*Last thing remaining is to add transitions*/
.slider>img{
	position: absolute;
	left: 0; top: 0;
	transition: all 0.5s;
	width: 100%;
}

.slider input[name='slide_switch'] {
	display: none;
}

.slider label {
	/*Lets add some spacing for the thumbnails*/
	margin: 20px 0 0 8px;
	border: 1px solid #ddd;
	width: 74px;
	height: 74px;
	float: left;
	cursor: pointer;
	transition: all 0.5s;
	
	/*Default style = low opacity*/
	opacity: 0.6;
}

.slider label img{
	display: block;
	width: 100%;
	height: 100%;
}

/*Time to add the click effects*/
.slider input[name='slide_switch']:checked+label {
	border-color: #333;
	opacity: 1;
}
/*Clicking any thumbnail now should change its opacity(style)*/
/*Time to work on the main images*/
.slider input[name='slide_switch'] ~ img {
	opacity: 0;
	transform: scale(1.1);
}
/*That hides all main images at a 110% size
On click the images will be displayed at normal size to complete the effect
*/
.slider input[name='slide_switch']:checked+label+img {
	opacity: 1;
	transform: scale(1);
}





.p_text{
	float: left;
	margin-left: 50px;
	margin-top: 45px;
}
.p_text p{
	font-size: 16px;
	line-height: 1;
}
.p_text img{
	width: 150px;
	margin-top: 30px;
}

.gwc{
	/*float: right;*/
	width: 166px;
	cursor: pointer;
}
.gwc img{
	width: 100%;
}
.gwc:hover{
	transform: scale(.97);
}
.gwc1{
	margin-top: 30px;
	width: 166px;
	cursor: pointer;
	display: none;
}
.gwc1 img{
	width: 100%;
}
.gwc1:hover{
	transform: scale(.97);
}







.p_text_box{
	padding: 30px;
	background: #fff;
	
}
.p_text_box_title{
	border-bottom: 1px solid #ddd;
	margin-bottom: 20px;
}
.p_text_box_title h5{
	font-size: 18px;
}

.p_text_box_text img{
	max-width: 100%;
}
.p_text_box_text p{
	font-size: 14px;
}



@media screen and (max-width: 1000px){
	.gwc1{	
		display: block;
	}
/*	.gwc{
		display: none;*/
	}
	.p_text{
		margin-left: 20px;
		margin-bottom: 30px;
	}



@media screen and (max-width: 910px){
	.slider{
		width:100%;
		margin: 0;
		padding-top: 100%;
		 margin:0px;
	}
	.contant_right{
		width: 100%;
		padding: 0;
	}
	.contant_left{
		width: 100%;
		position: relative;
		margin-bottom: 20px;
		left: 0;
    	top: 0;
	}

	.p_li_pic{
    width: 130px;
    height: 130px;
}
	.p_li {
    float: left;
    margin-right: 0px;
    margin-bottom: 50px;
    text-align: center;
    cursor: pointer;
    padding: 35px;
}
	.product {
    padding: 10px;
    background: #fff;
}
}



