.main_outer{
	display: block;
	overflow: hidden;
	width: 100%;
	background-color: #ffffff;
}

/*按鈕*/
.item_button{
	display: inline-block;
	font-size: 20px;
	line-height: 20px;
	padding: 15px 20px;
	letter-spacing: 1px;
	color: #01439F;
	border: 1px solid #01439F;
	border-radius: 8px;
	transition: 0.3s;
	cursor:pointer;
}
.item_button:hover{
	background-color: #01439F;
	color: #ffffff;
}
.item_button.bt_blue{
	background-color: #01439F;
	color: #ffffff;
}
.item_button.bt_blue:hover{
	background-color: #005EE0;
	border: 1px solid #005EE0;
}

/*圖片放大*/
.img_lighbox{
	transition: 0.5s;
	cursor: pointer;
}
.img_lighbox:hover{
	transform: scale(1.1);
	opacity: 0.8;
}
.imgPreview {
	display: none;
	top: 0;
	left: 0;
	width: 100%; /*容器佔滿整個螢幕*/
	height: 100%;
	position: fixed;
	background: rgba(0, 0, 0, 0.6);
}
.imgPreview .img_pic {
	z-index: 99999;
	width: 65%;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.img_closebt{
	position: fixed;
	top: 20px;
	right: 20px;
}
@media only screen and (max-width: 800px) { /*MOBILE*/
	.imgPreview .img_pic {
		width: 92%;
	}
	.img_closebt{
		top:15px;
		right:15px;
	}
}

/*---------版頭---------*/
.top_title{
	display: block;
	overflow: hidden;
	width: 100%;
	height: 470px;
	position: relative;
	background-position:top center;
	background-repeat: no-repeat;
	background-size: cover;
}
.top_title .title_cont{
	display: block;
	overflow: hidden;
	width: 585px;
	padding: 20px 0 20px 380px;
	background-color: rgba(0,0,0, 0.7);
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-100%);
}
.top_title .title_cont::after{
	content: "";
	height: 150px;
	width: 20px;
	background-color: rgba(0,167,255, 0.9);
	position: absolute;
	top: 0;
	right: 0;
}
.top_title .title_cont h2{
	font-size: 40px;
	line-height: 50px;
	font-weight: bold;
	color: #ffffff;
	letter-spacing: 1px;
}
.top_title .title_cont p{
	font-size: 20px;
	line-height: 30px;
	color: #ffffff;
	letter-spacing: 1px;
}

@media only screen and (max-width: 1200px) { /*PC*/
	.top_title .title_cont{
		padding: 20px 0 20px 15px;
		bottom: 0;
		left: 0;
		transform: translateX(0);
	}
}
@media only screen and (max-width: 800px) { /*MOBILE*/
	.top_title{
		height: 300px;
	}
	.top_title .title_cont{
		width: 100%;
	}
	.top_title .title_cont::after{
		width: 30px;
	}
	.top_title .title_cont h2{
		font-size: 24px;
		line-height: 34px;
	}
	.top_title .title_cont p{
		font-size: 16px;
		line-height: 26px;
	}
}
/*---------版頭 END---------*/

/*---------內容---------*/
/*內容外誆*/
.cont_outer{
	display: block;
	overflow: hidden;
    width: 100%;
	max-width: 1200px;
	margin: 0 auto;
    padding: 100px 15px 0 15px;
	box-sizing: border-box;
}
@media only screen and (max-width: 800px) { /*MOBILE*/
	.cont_outer{
		padding: 50px 15px 0 15px;
	}
}
/*內容外誆 END*/

/*關於我們*/
.about_cont{
	display: block;
	overflow: hidden;
	width: 100%;
}
.about_cont h4{
	font-size: 38px;
	line-height: 50px;
	font-weight: bold;
	color: #707070;
}
.about_cont p{
	margin-top: 20px;
	font-size: 20px;
	line-height: 30px;
	letter-spacing: 1px;
	color: #707070;
}
.about_cont.area_a{
	display: flex;
    margin-bottom: 100px;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap;
}
.about_cont.area_a .area_a_cont{
	display: block;
	overflow: hidden;
	width: 60%;
	max-width: 670px;
}
.about_cont.area_a > img{
	width: 35%;
}
.about_cont.area_a .area_a_cont .area_a_pic{
	display: flex;
	flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
	margin-bottom: 50px;
}
.about_cont.area_a .area_a_cont .area_a_pic img:nth-child(1){
	width: 210px;
}
.about_cont.area_a .area_a_cont .area_a_pic img:nth-child(2){
	width: 70px;
}
@media only screen and (max-width: 800px) { /*MOBILE*/
	.about_cont h4{
		font-size: 24px;
		line-height: 34px;
	}
	.about_cont p{
		margin-top: 10px;
		font-size: 16px;
		line-height: 26px;
	}
	.about_cont.area_a{
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
		flex-wrap: nowrap;
    	margin-bottom: 30px;
	}
	.about_cont.area_a .area_a_cont{
		width: 100%;
		max-width: 100%;
	}
	.about_cont.area_a > img{
		width: 100%;
		max-width: 500px;
		margin-top: 30px;
	}
	.about_cont.area_a .area_a_cont .area_a_pic{
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		flex-wrap: nowrap;
		margin-bottom: 30px;
	}
	.about_cont.area_a .area_a_cont .area_a_pic img:nth-child(2){
		width: 80px;
	}
}
/*關於我們 END*/


/*熱銷個案*/
.sales_wrap{
	display: block;
	overflow: hidden;
	width: 100%;
	padding-top: 100px;
	margin-top: 100px;
	border-top: 1px solid #707070;
}
.sales_wrap:first-child{
	padding-top: 0;
	margin-top: 0;
	border-top:none;
}
.sales_wrap .sales_title{
	display: flex;
	flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
}
.sales_wrap .sales_title h4{
	margin-right: 20px;
	font-size: 50px;
	line-height: 60px;
	letter-spacing: 1px;
	color: #707070;
}
.sales_wrap .sales_title p{
	font-size: 110px;
	line-height: 110px;
	letter-spacing: 1px;
	color: #707070;
}

.sales_wrap .sales_pic_wrap{
	display: block;
	overflow: hidden;
    width: 100%;
    margin-top: 30px;
}
.sales_wrap .sales_pic_wrap img{
	width: 100%;
}

.sales_wrap .sales_pic_wrap li{
	display: block;
	overflow: hidden;
	float: left;
	width:32.45%;
	box-sizing: border-box;
}
.sales_wrap .sales_pic_wrap li .pic_item{
	display: block;
	overflow: hidden;
}
.sales_wrap .sales_pic_wrap li:first-child{
	display: block;
	overflow: hidden;
	width:67%;
	padding-right: 10px;
}
.sales_wrap .sales_pic_wrap li:nth-child(3){
	margin-top: 10px;
}

.sales_wrap .sales_cont{
	display: block;
	overflow: hidden;
	width: 100%;
}
.sales_wrap .sales_cont h5{
	margin-top: 30px;
	margin-bottom: 10px;
	font-size: 24px;
	line-height: 34px;
	font-weight: bold;
	color: #707070;
}
.sales_wrap .sales_cont p,.sales_wrap .item_detailed_wrap .item_detailed ul li{
	font-size: 20px;
	line-height: 30px;
	letter-spacing: 1px;
	color: #707070;
}
.sales_wrap .item_detailed_wrap{
	display: flex;
    margin-top: 10px;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: nowrap;
}
.sales_wrap .item_detailed_wrap .item_detailed{
	display: flex;
	flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
	width: 90%;
	max-width: 850px;
}
.sales_wrap .item_detailed_wrap .item_detailed ul{
	display: block;
	overflow: hidden;
	width: 38%;
}
.sales_wrap .item_detailed_wrap .item_detailed ul:first-child{
	width: 60%;
}
.sales_wrap .item_detailed_wrap .item_detailed ul li{
	margin-bottom: 10px;
}
.sales_wrap .item_detailed_wrap .item_detailed ul li:last-child{
	margin-bottom: 0px;
}
.sales_wrap .item_detailed_wrap .item_bt_wrap .item_button{
	margin-right: 10px;
	margin-top: 10px;
}
.sales_wrap .item_detailed_wrap .item_bt_wrap .item_button:last-child{
	margin-right: 0px;
}

@media only screen and (max-width: 800px) { /*MOBILE*/
	.sales_wrap{
		padding-top: 50px;
		margin-top: 50px;
	}
	.sales_wrap .sales_title h4{
		font-size: 30px;
		line-height: 40px;
	}
	.sales_wrap .sales_title p{
		font-size: 70px;
		line-height: 70px;
	}
	.sales_wrap .sales_pic_wrap{
		margin-top: 20px;
	}
	.sales_wrap .sales_pic_wrap li{
		display: block;
		overflow: hidden;
		float: left;
		width:50%;
		box-sizing: border-box;
	}
	.sales_wrap .sales_pic_wrap li .pic_item{
		display: block;
		overflow: hidden;
	}
	.sales_wrap .sales_pic_wrap li:first-child{
		width:100%;
		padding-right:0px;
	}
	.sales_wrap .sales_pic_wrap li:nth-child(2){
		margin-top: 10px;
		padding-right: 5px;
	}
	.sales_wrap .sales_pic_wrap li:nth-child(3){
		margin-top: 10px;
		padding-left: 5px;
	}
	.sales_wrap .sales_cont h5{
		margin-top: 20px;
		font-size: 24px;
		line-height: 34px;
	}
	.sales_wrap .sales_cont p,.sales_wrap .item_detailed_wrap .item_detailed ul li{
		font-size: 16px;
		line-height: 26px;
	}
	
	.sales_wrap .item_detailed_wrap .item_detailed ul li:last-child{
		margin-bottom: 10px;
	}
	.sales_wrap .item_detailed_wrap{
		display: flex;
		flex-direction: column;
		flex-wrap: nowrap;
		justify-content: center;
		align-items: flex-start;
	}
	.sales_wrap .item_detailed_wrap .item_detailed{
		display: flex;
		flex-direction: column;
		width: 100%;
	}
	.sales_wrap .item_detailed_wrap .item_detailed ul,
	.sales_wrap .item_detailed_wrap .item_detailed ul:first-child{
		display: block;
		overflow: hidden;
		width: 100%;
	}
	.sales_wrap .item_detailed_wrap .item_bt_wrap{
		display:flex;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		flex-wrap: nowrap;
		width: 100%;
	}
	.sales_wrap .item_detailed_wrap .item_bt_wrap .item_button{
		display: block;
		overflow:hidden;
		width: 45%;
		padding: 15px;
		text-align: center;
	}

}
/*熱銷個案 END*/


/*個案子頁*/
.case_outer{
	padding-top: 50px;
}
.case_wrap{
	display: block;
	overflow: hidden;
	width: 100%;
}
.case_wrap  h4{
	margin-right: 20px;
	font-size: 50px;
	line-height: 60px;
	letter-spacing: 1px;
	color: #707070;
}

.case_wrap .case_pic_wrap{
	display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    margin-top: 30px;
}
.case_wrap .case_pic_wrap img{
	width: 100%;
}
.case_wrap .case_pic_wrap li{
	display: block;
	overflow: hidden;
	width:24%;
	margin-top: 15px;
}
.case_wrap .case_pic_wrap li .pic_item{
	display: block;
	overflow: hidden;
}
.case_wrap .case_pic_wrap li:first-child{
	display: block;
	overflow: hidden;
	width:100%;
	margin-top: 0px;
}

.case_wrap .case_cont{
	display: block;
	overflow: hidden;
	width: 100%;
}
.case_wrap .case_cont h5{
	margin-top: 30px;
	margin-bottom: 10px;
	font-size: 24px;
	line-height: 34px;
	font-weight: bold;
	color: #707070;
}
.case_wrap .case_cont p,.case_wrap .item_detailed_wrap .item_detailed ul li{
	font-size: 20px;
	line-height: 30px;
	letter-spacing: 1px;
	color: #707070;
}
.case_wrap .item_detailed_wrap{
	display: flex;
    margin-top: 10px;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: nowrap;
}
.case_wrap .item_detailed_wrap .item_detailed{
	display: flex;
	flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
	width: 100%;
	max-width: 850px;
}
.case_wrap .item_detailed_wrap .item_detailed ul{
	display: block;
	overflow: hidden;
	width: 35%;
}
.case_wrap .item_detailed_wrap .item_detailed ul:first-child{
	width: 60%;
}
.case_wrap .item_detailed_wrap .item_detailed ul li{
	margin-bottom: 10px;
}
.case_wrap .item_detailed_wrap .item_detailed ul li:last-child{
	margin-bottom: 0px;
}
@media only screen and (max-width: 800px) { /*MOBILE*/
	.case_outer{
		padding-top: 30px;
	}
	.case_wrap h4{
		font-size: 30px;
		line-height: 40px;
	}
	.case_wrap .case_pic_wrap{
		margin-top: 20px;
	}
	
	.case_wrap .case_pic_wrap{
		margin-top: 20px;
	}
	.case_wrap .case_pic_wrap li{
		display: block;
		overflow: hidden;
		float: left;
		width:49%;
		margin-top: 2%;
	}
	.case_wrap .case_cont h5{
		margin-top: 20px;
		font-size: 24px;
		line-height: 34px;
	}
	.case_wrap .case_cont p,.case_wrap .item_detailed_wrap .item_detailed ul li{
		font-size: 16px;
		line-height: 26px;
	}
	
	.case_wrap .item_detailed_wrap .item_detailed ul li:last-child{
		margin-bottom: 10px;
	}
	.case_wrap .item_detailed_wrap{
		display: flex;
		flex-direction: column;
		flex-wrap: nowrap;
		justify-content: center;
		align-items: flex-start;
	}
	.case_wrap .item_detailed_wrap .item_detailed{
		display: flex;
		flex-direction: column;
		width: 100%;
	}
	.case_wrap .item_detailed_wrap .item_detailed ul,
	.case_wrap .item_detailed_wrap .item_detailed ul:first-child{
		display: block;
		overflow: hidden;
		width: 100%;
	}
}
/*個案子頁 END*/

/*經典個案*/
.classic_wrap{
	display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}
.classic_wrap .classic_item{
	display: block;
	overflow: hidden;
	width: 32%;
	margin-bottom: 20px;
	background-color: #F8F8F8;
	border-bottom: 3px #01439F solid;
}
.classic_wrap .classic_item a{
	display: block;
	overflow: hidden;
}
.classic_wrap .classic_item .classic_pic{
	display: block;
	overflow: hidden;
	width: 100%;
}
.classic_wrap .classic_item .classic_pic img{
	width: 100%;
	transition: 0.5s;
}
.classic_wrap .classic_item:hover .classic_pic img{
	transform: scale(1.1);
	opacity: 0.8;
}
.classic_wrap .classic_item .classic_cont{
	display: block;
	overflow: hidden;
	padding: 20px;
}
.classic_wrap .classic_item .classic_cont h5{
	font-size: 24px;
	line-height: 34px;
	letter-spacing: 1px;
	color: #707070;
	font-weight: bold;
}
.classic_wrap .classic_item .classic_cont p{
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	height: 52px;
	margin-top: 5px;
	font-size: 18px;
	line-height: 26px;
	letter-spacing: 1px;
	color: #707070;
}
.classic_wrap .classic_item .classic_cont .next_bt{
	margin: 15px 0 5px 0;
	text-align: right;
}
.classic_wrap .classic_item .classic_cont .next_bt img{
	transform: translateX(-5px);
	transition: 0.5s;
}
.classic_wrap .classic_item:hover .next_bt img{
	transform: translateX(0px);
}

@media only screen and (max-width: 1000px) { /*PAD*/
	.classic_wrap .classic_item{
		width: 49%;
	}
	.classic_wrap .classic_item .classic_cont h5{
		font-size: 20px;
		line-height: 30px;
		letter-spacing: 1px;
	}
	.classic_wrap .classic_item .classic_cont p{
		height: 48px;
		font-size: 16px;
		line-height: 24px;
	}
}
@media only screen and (max-width: 640px) { /*MOBILE*/
	.classic_wrap .classic_item{
		width: 100%;
	}
	
}
/*經典個案 END*/

/*聯絡環泥*/
.contact_top{
	display: block;
	overflow: hidden;
	width: 100%;
	text-align: center;
	background-color: #01439F;
	padding: 100px 15px;
	box-sizing: border-box;
}
.contact_top h6{
	font-size: 40px;
	line-height: 40px;
	color: #ffffff;
	font-weight: bold;
}
.contact_top h6::after{
	content: "";
	display: block;
	overflow: hidden;
	width: 80px;
	height: 5px;
	margin: 30px auto;
	background-color: #ffffff;
}
.contact_top p,
.contact_top a{
	font-size: 20px;
	line-height: 30px;
	color: #ffffff;
	text-align: center;
	letter-spacing: 1px;
}
.contact_top a{
	margin-right: 10px;
}


.contact_cont{
	display: block;
	overflow: hidden;
	padding: 50px 15px 0;
	text-align: center;
}
.contact_cont p{
	margin-top: 20px;
	font-size: 20px;
	line-height: 30px;
	letter-spacing: 1px;
	color: #707070;
}
.location_map_wrap,
.location_map_wrap iframe{
	display: block;
	overflow: hidden;
	width: 100%;
	height: 500px;
}
.contact_label{
	display: flex;
	flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    max-width: 800px;
    margin: 30px auto;
}
.contact_label input,
.contact_label textarea{
    width: 100%;
	margin-top:15px;
	padding: 15px 30px;
	box-sizing: border-box;
	border-radius: 5px;
	font-size: 18px; 
	line-height: 28px;
	color: #01439F;
	border: 1px #C0C0C0 solid;
	outline: none;
}
.contact_label input:focus,
.contact_label textarea:focus{
	border: 1px #01439F solid;
}
.contact_label .frity{
	width: 49%;
}
@media only screen and (max-width: 800px) { /*MOBILE*/
	.contact_top{
		padding: 50px 15px;
	}
	.contact_top h6{
		font-size: 30px;
		line-height: 30px;
	}
	.contact_top h6::after{
		margin: 25px auto;
	}
	.contact_top p,
	.contact_top a{
		font-size: 16px;
		line-height: 26px;
	}
	.contact_top a{
		margin-right: 0;
	}
	.contact_top span{
		display: block;
	}
	
	.location_map_wrap,
	.location_map_wrap iframe{
		display: block;
		overflow: hidden;
		width: 100%;
		height: 300px;
	}
	.contact_cont{
		display: block;
		overflow: hidden;
		padding: 30px 15px 0;
		text-align: center;
	}
	.contact_label input,
	.contact_label textarea{
		padding: 15px 20px;
	}
	.contact_cont p{
		font-size: 16px;
		line-height: 26px;
	}
	.contact_label{
		margin: 20px auto;
	}
	
}
/*聯絡環泥 END*/


/*---------內容 END---------*/





