
@import url(../fonts/font-awesome/font-awesome.min.css);
@import url(../fonts/flaticon/flaticon.css);
@import url(index_header.css);
@import url(index_banner.css);
@import url(index_footer.css);



/*========================================================
                      	 產品介紹
=========================================================*/


.products-list {
    background: url(../../images/products_bg.jpg) no-repeat center top;
    background-size: cover;
	padding-bottom: 50px;
}
.products-list img {
    width: 100%;
    vertical-align: bottom;
}
.products-list h1 {
	background-color: #2a2a2a;
	text-align: center;
	color: #fff;
	font-size: 28px;
	position: relative;
	margin: 0 0 80px 0;
	padding: 15px 0;
}

.products-list [class*="col-"] dl dd { 
    background-color: #2a2a2a;
	color: #fff;
	text-align: center;
	padding: 20px 0;
	border-bottom: 5px solid #efefef;
	position: relative;
}
.products-list [class*="col-"] dl dd:before { 
	content: '';
	position: absolute;
	top: -12px;
	left: 50%;
	transform : translateX(-50%);
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 10px 12px 10px;
	border-color: transparent transparent #2a2a2a transparent;
}
.products-list [class*="col-"] dl dd h3 { 
    margin: 0;
}
.products-list [class*="col-"] dl dd p { 
    margin: 0;
}
.products-list .more {
	display: block;
	text-align: center;
	margin-top: 40px;

}
.products-list .more a {
	display: inline-block;
	background-color: #1f365d;
	padding: 10px 30px;
	border: 1px solid #fff;
	color: #fff;
	font-size: 24px;
}
.products-list .more a:hover {
	background-color: #272a2f;
	color: #fff;
}


/*  尺寸設定 */

@media (min-width: 768px) {
	.products-list h1 {
		font-size: 32px;
	}
	.products-list {
		padding-bottom: 30px;
	}
}
@media (min-width: 1200px) {
	.products-list h1 {
		font-size: 36px;
	}
}


/*========================================================
                      	 公司簡介
=========================================================*/

.about-list {
    background: url(../../images/about_bg.jpg) no-repeat center top;
    background-size: cover;
	position: relative;
	color: #fff;
	padding-top: 40px;
	font-size: 18px;
	line-height: 36px;
	padding-bottom: 60px;
}
.about-list h1 {
	font-size: 28px;
	text-align: center;
}
.about-list img {
	max-width: 100%;
	vertical-align: bottom;
}

/* 三角形 */
.about-top {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 5;
	display: none;
}
.about-top img  {
	width: 100%;
	vertical-align: bottom;
}

/* more */
.about-list .more {
	margin-top: 20px;
}
.about-list .more a {
	background-color: #2c5292;
	color: #fff;
	border: 1px solid #fff;
	padding: 7px 50px;
}



/*  尺寸設定 */
@media (min-width: 768px) {
	
	.about-list h1 {
		font-size: 32px;
	}
	.about-top {
		display: block;
	}
	.about-list {
		padding-top: 8%;
	}
}
@media (min-width: 1200px) {
	.about-list h1 {
		font-size: 36px;
	}
}



/*========================================================
                      	 新聞中心
=========================================================*/


.news-list {
	margin-top: 20px;
	margin-bottom: 60px;
}
.news-list img {
    width: 100%;
    vertical-align: bottom;
}
.news-list h1 {
	font-size: 28px;
	text-align: center;
	margin-bottom: 30px;
}
.news-list dl dd h3 {
	font-weight: bold;
}


/*  尺寸設定 */
@media (min-width: 768px) {
	.news-list h1 {
		font-size: 32px;
	}
}
@media (min-width: 1200px) {
	.news-list h1 {
		font-size: 36px;
	}
}



/*========================================================
                         圖片效果
=========================================================*/

a.figure {
	display: block;
	position: relative;
}
a.figure:hover:before {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
a.figure:before {
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 10px;
    right: 10px;
    content: '';
    display: inline-block;
    background: rgba(255,255,255,0.15) url(../../images/magnifier.png) no-repeat center center;
    opacity: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    transition: .3s;
}
