*,.pure-g [class *="pure-u"]{box-sizing: border-box;font-family: "微軟正黑體","sans-serif";}
body{
	margin:0;
}

/*全版尺寸*/
.wrapper {
	margin: 0 3%;
}

/*半版尺寸
.wrapper {
	margin: 0 auto;
	max-width: 1200px;
}*/
header {
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	background-color: #FFF;
	width: 100%;
	padding: 5px 3%;
	z-index: 999;
}
/*logo*/
.logo {
	padding: 10px 0;
	text-align: center;
	display: inline-block;
	width: 250px;
	margin-right: auto;
}
.logo img {display: block;max-width: 100%;}
.logo a {
	display: inline-block;
	vertical-align: bottom;
}
/*會員登入區+語言列*/
.login {
	position: absolute;
	top:30px;
	right: 30px;
}
.login a {
	text-decoration: none;
	color: #272822;
	font-weight: bold;
}
.login a:hover {
	color: #9FA0A0;
}
.language {display: inline-block;}
.language span {
	display: inline-block;padding: 0 0.5em;
}
/*手機板選單鈕*/
.menu_trigger {
    position: absolute;
    top:8px;
    right: 10px;
	width: 30px;
	height: 30px;
	cursor: pointer;
	display: none;
}
.bar,.bar:after,.bar:before {
	width: 20px;
	height: 3px;
}

.bar {
	position: relative;
	transform: translateY(25px);
	background: #3BA3D3;
	transition: all 0ms 300ms;
}
.bar.animate {
	background: rgba(255, 255, 255, 0);
}

.bar:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 8px;
	background: #3BA3D3;
	transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.bar:after {
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	background: #3BA3D3;
	transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.bar.animate:after {
	top: 0;
	transform: rotate(45deg);
	transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.bar.animate:before {
	bottom: 0;
	transform: rotate(-45deg);
	transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

/*導覽列按鈕*/
nav {
	display: flex;
	-ms-align-items: center;
	align-items: center;
}

ul.nav, ul.nav_subbtn {
	margin: 0;
	padding: 0;
	list-style: none;
	letter-spacing: 2px;
}
ul.nav > li {
	display: inline-block;
	padding: 0.2em 10px;
	position: relative;
	font-size: 1.05em;
}
ul.nav > li > a {
	display: block;
	padding: 0.3em;
	text-decoration: none;
	color: #000;
	cursor: pointer;
	font-weight: 600;
}

ul.nav_subbtn {
	z-index: 300;
	position: fixed;
	top: 85px;
	left: 0;
	width: 100%;
	padding: 1.5em;
	background-color: #1A354C;
	text-align: center;
	font-size: 0.95em;
	display: none;
	letter-spacing: 3px;
}
ul.nav_subbtn > li {
	padding: 5px;
	display: inline-block;
}
ul.nav_subbtn > li > a {
	padding: 0.8em;
	display: block;
	text-decoration: none;
	color: #FFF;
	border-radius: 5px;
	font-weight: 600;
}
ul.nav_subbtn > li > a .sbtn_img {width: 5em;}
ul.nav_subbtn > li > a .sbtn_name {display: block;}
ul.nav_subbtn > li > a:hover {
	background-color: #FFF;
	color: #1A354C;
}
ul.nav_subbtn > li > a:hover .sbtn_img {
	filter: invert(1) opacity(.9)  drop-shadow(0 0 0 #1A354C);
}
ul.nav > li.has_sub_btn {
	padding-right: 1em;
	background: url(../images/website_image/arrow_bottom.png) no-repeat center right;
	-webkit-background-size: 1em;
	background-size: 1em;
	cursor: pointer;
}
/*浮動購物車*/
.float_cart {
	position: fixed;
	top: 20%;
	right: 0;
	z-index: 500;
	text-decoration: none;
	color: #FFF;
}
.float_cart span {
	display: inline-block;
	padding: 0.15em 0.5em;
	border-radius: 50%;
	background-color: red;
	position: absolute;
	top: 0;
	right: 0;
}
#gotop {
	position: fixed;
	bottom: 10%;
	right: 0;
	width: 65px;
	cursor: pointer;
	z-index: 600;
}
/*Banner*/
#banner {
	position: relative;
	overflow: hidden;
	z-index: 99;
}
#banner .img {
	white-space: nowrap;
	position: absolute;
}
#banner .img img {
	vertical-align: top;
}
#banner_control {
	position: absolute;
	bottom: 10px;
	width: 100%;
	text-align: center;
	padding-left: 30px;
	z-index: 100;
}
#banner_control img {width: 1em;}
#banner #banner_control span {
	cursor: pointer;
	padding: 0 3px;
}
#banner #banner_control span img:nth-child(2) {
	display: none;
}
#banner #banner_control span img:nth-child(1) {
	display: inline-block;
}
#banner #banner_control span:hover img:nth-child(1),
#banner #banner_control span.now img:nth-child(1) {
	display: none;
}
#banner #banner_control span:hover img:nth-child(2),
#banner #banner_control span.now img:nth-child(2) {
	display: inline-block;
}
/*Banner End*/

/*以下為首頁內文樣式*/
/*index_news*/
.index_news {
	margin: 0 auto;
	max-width: 800px;
	letter-spacing: 1px;
}
.index_news_title {
	margin: 60px 0;
    font-size: 2.5em;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.1em;
}
.index_news_title span {
	display: block;
	font-size: 0.45em;
	font-weight: 500;
}
.index_news_item {
	display: block;
	text-decoration: none;
	margin: 20px 0;
	color: #000;
}
.index_news_item:hover .index_news_sinfo {
	background-color: #3BA3D3;
	color: #FFF;
}
.index_news_right {padding: 0 15px;}
.index_news_img, .index_product_img {width: 100%;}
.index_news_date {
	background-color: #3BA3D3;
	color: #FFF;
	padding: 0.8em 1.2em 1em;
	margin-bottom: -1em;
	display: inline-block;
	font-size: 1.1em;
	font-weight: 600;
}
.index_news_name {
	padding: 0.3em;
	display: inline-block;
	font-size: 1.25em;
	font-weight: 600;
	width: calc(100% - 8em);
}
.index_news_sinfo {
	color: #434343;
	word-wrap: break-word;
	border-top: 1px #3BA3D3 solid;
	padding: 1em 3%;
}
.index_news_more, .index_product_more {
	margin: 50px 0 20px;
	text-align: center;
}
.index_news_more a, .index_product_more a {
	padding: 1em;
	display: inline-block;
	font-weight: bold;
    letter-spacing: 1px;
    text-decoration: none;
    color: #FFF;
    background-color: #20384D;
    width: 550px;
    max-width: 100%;
    vertical-align: middle;

}
.index_news_more a img, .index_product_more a img {
	vertical-align: middle;
	height: 1.1em;
	margin: 0 1em;
}
.index_news_more a:hover, .index_product_more a:hover {
    background: #3BA3D3;
}
/*首頁產品*/
.index_product_title {
	background: url(../images/website_image/product/bg.png) no-repeat top center;
	-webkit-background-size: cover;
	background-size: cover;	
	margin: 60px 0;
	padding: 1em 0;
    font-size: 2.5em;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #FFF;
}
.index_product_title span {
	display: block;
	font-size: 0.45em;
	font-weight: 500;
}
.product_list_title {
	padding: 1em 0 1em 2em;
	font-size: 1.5em;
	color: #FFF;
	background-color: #20384D;
	font-weight: 600;
	letter-spacing: 2px;
	position: relative;
}
ul.product_class {
	margin: 0;
	padding: 0;
	padding-right: 5%;
	list-style: none;
}
ul.product_class > li > a {
	display: block;
	text-decoration: none;
    padding: 1em 0 1em 2em;
    font-size: 1.2em;
    color: #000;
    letter-spacing: 1px;
}
ul.product_class > li > a:hover {
	background-color: #3BA3D3;
	color: #FFF;
}
.product_list_right {
	padding:0 3%;
}
.index_product_item {
	padding: 5px 10px;
	text-decoration: none;
	color: #000;
}
.index_product_name {
	padding: 1em 0.5em;
	text-align: center;
	letter-spacing: 1px;
}
.index_product_item:hover .index_product_name {
	background-color: #3BA3D3;
	color: #FFF;
}/*
.index_product_price {
	display: flex;
	justify-content: space-between;
}
.index_product_price .del {
	text-decoration: line-through;
}*/
/*footer 區塊*/
footer{
	margin-top: 50px;	
	background-color: #20384D;
}
.footer_logo {
	margin-top: -0.7em;
	padding: 1.1em 4%;
	background-color: #3BA3D3;
	color: #FFF;
	text-decoration: none;
	font-weight: 600;
	font-size: 2em;
	letter-spacing: 0.15em;
	display: inline-block;
}
.footer_in {
	position: relative;
}
.footer_icon {
	position: absolute;
	top: 0;
	right: 0;
}
.footer_icon img {height: 3.5em;margin: 0 0.3em;}
ul.footer_nav {
	margin: 0;
	padding:  2em 4% 1.5em;
	list-style-type: none;
	background-color: #474747;
}
ul.footer_nav > li {
	display: inline-block;
	border-right: 1px #FFF solid;
	margin-bottom: 0.5em;
}
ul.footer_nav > li > a {
	padding: 0 0.5em;
	display: inline-block;
	text-decoration: none;
	color: #FFF;
	cursor: pointer;
	letter-spacing: 2px;
}
ul.footer_nav > li > a:hover {
	color: #FFFFFF;
}
ul.footer_subnav {
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: inline;
}
ul.footer_subnav li {
	display: inline-block;
}
ul.footer_subnav li a {
	padding: 0.1em 0.2em;
	display: inline-block;
	text-decoration: none;
	color: #4B4B4B;
	background-color: #CCCCCC;
}
ul.footer_subnav li a:hover {
	background-color: #E6E6E6;
}
.footer_txt {
	padding: 1em 4%;
}
.footer_qr {
	padding-top: 1em;
	background-color: #505050;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.footer_qr > div {
	width: 260px;
	position: relative;
}
.qr_img {
	width: 115px;
	position: absolute;
	top: -90px;
	left: -20px;

}
.copyright {
	padding: 1em 4%;
	border-top: 1px #FFF solid;
	font-size: 0.8em;
	letter-spacing: 1px;
}
.copyright, .copyright a {
	text-decoration: none;
	color: #FFF;

}


/*.breadcrumb 麵包屑*/
.breadcrumb {
	background-color: #20384D;
	padding: 1em 4%;
}
.breadcrumb a {
	display: inline-block;
    letter-spacing: 0.1em;
    text-decoration: none;
    color: #FFF;
    vertical-align: middle;
}
.breadcrumb img {
	vertical-align: middle;
	height: 1em;
	margin: 0 10px;
}

/*.page 頁碼*/
.page {
	padding: 30px 0;
	text-align: center;
	font-size: 1.2em;
	font-family: sans-serif;
}
.page ul {
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 0.9em;	
}
.page ul li {
	display: inline-block;
	vertical-align: top;
}
.page ul li a {
	display: block;
	padding: 0.2em 0.6em;
	text-decoration: none;
	background-color: #20384D;
	color: #FFF;
	border: 1px #20384D solid;
}
.page ul li a.page_number {
	color: #20384D;
	background-color: #FFF;
	padding: 0.3em 0.7em;
}
.page ul li a:hover {
	background-color: #20384D;
	color: #FFF;
}
.page ul li a.select {
    background-color: #20384D;
	color: #FFF;
}
.page ul li a span {vertical-align: middle;}
.page ul li a img {
	height: 1em;
	margin: 0 0.5em;
	vertical-align: middle;
}
