@charset "utf-8";
/* CSS Document */

@import "routine.css";
@import "tw_sidebar.css";

a,
a:hover,
a:active,
a:focus {
	text-decoration: none;
	outline: none;
}

body {
	font-family: "微軟正黑體";
}

/*************************************/
/*              header               */
/*************************************/

header {
	background: rgb(255, 255, 255);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e72a2e', GradientType=0);
	overflow: hidden;
}

header .container {
	display: flex;
	align-items: center;
}

@media screen and (max-width:768px) {
	header .container {
		flex-direction: column;
	}
}


.logo-img {
	padding: 5px 0 10px;
}

.lang {
	padding-left: 0;
	list-style-type: none;
	margin-top: 40px;
	text-align: right;
}

.lang li {
	display: inline;
	margin-left: 20px;
}

.lang li a {
	display: inline-block;
	font-size: 15px;
	color: #fff;
	font-weight: bold;
	background: #95AF7B;
	text-align: center;
	width: 105px;
	height: 32px;
	line-height: 30px;
	border-radius: 5px;
}

.lang li a:hover {
	background: #839c6a;
}

@media (max-width:767px) {
	.logo-img {
		margin: 0 auto;
	}

	.lang {
		margin: 15px auto;
		text-align: center;
	}

	.lang li {
		display: inline;
		margin-left: 0;
		margin: 0 8px;
	}
}


/*************************************/
/*            navigation             */
/*************************************/

/* nav */
.nav-bar {
	background: #ECECE4;
	box-shadow: 0px 2px 4px 0px #00000040;
	position: relative;
	z-index: 1;
}

nav.hd_menu {
	position: relative;
	z-index: 99;
}

nav.hd_menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

nav.hd_menu ul li {
	float: left;
	width: 15.2%;
}

nav.hd_menu ul li:last-child {
	width: 24%;
	padding: 10px 10px 6px;
}


nav.hd_menu ul li a {
	text-decoration: none;
	color: #000;
	font-size: 18px;
	display: block;
	text-align: center;
	padding: 17px 10px 16px 10px;
	font-family: Microsoft JhengHei;
	position: relative;
	font-weight: bold;
}

nav.hd_menu ul li:last-child a:after {
	background-image: none;
	border-right: 1px solid #a5a5a5;
}

nav.hd_menu ul li:hover a {
	/*background-color: #d01b1f;*/
	background: #95AF7B;
	color: #ffffff;
}

nav.hd_menu ul li i {
	font-size: 20px;
	text-align: center;
	margin-right: 10px;
	display: none;
}

nav.hd_menu ul li:hover {
	background: #95AF7B;
}

nav.hd_menu ul li.srh:hover {
	background-color: #ECECE4;
}

nav.hd_menu ul li:hover i {
	color: #ffffff;
}

nav.hd_menu .btn {
	color: #000;
	text-transform: uppercase;
	padding: 15px 20px 0;
	cursor: pointer;
	display: none;
	text-align: left;
	font-size: 15px;
}

.menu-toggle {
	border: none;
	background-color: transparent;
	float: right;
	margin-top: 2px;
	position: relative;
}

.menu-toggle .icon-bar {
	border-radius: 1px;
	display: block;
	height: 2px;
	width: 22px;
	background-color: #000;
}

.menu-toggle .icon-bar+.icon-bar {
	margin-top: 4px;
}



@media screen and (max-width: 767px) {
	nav.hd_menu>ul {
		display: none;
		padding-bottom: 10px;
	}

	nav.hd_menu {
		margin-bottom: 15px;
	}

	nav.hd_menu .btn {
		display: block;
	}

	nav.hd_menu ul li,
	nav.hd_menu ul li a {
		display: block;
		text-align: center;
		width: 100%;
	}

	nav.hd_menu ul li a {
		color: #000;
		border-top: 1px solid #e7e7e7;
		border-bottom: 1px solid #a5a5a5;
	}

	nav.hd_menu ul li:hover a {
		-webkit-border-radius: 0;
		-moz-border-radius: 0;
		border-radius: 0;
	}

	nav.hd_menu ul li {
		margin: 0;
	}

	nav.hd_menu ul li a:after {
		background-image: none;
		width: 0;
	}

	nav.hd_menu ul li:first-child a {
		border-left: none;
		border-top: none;
	}

	nav.hd_menu ul li:last-child a:after {
		border-right: none;
	}

	nav.hd_menu ul li a:after,
	nav.hd_menu ul:after,
	nav.hd_menu ul li:first-child a:before {
		display: none;
	}

	nav.hd_menu .btn:active,
	nav.hd_menu .btn.active {
		outline: 0;
		-webkit-box-shadow: none;
		box-shadow: none;
	}

	nav.hd_menu ul li:last-child {
		width: 100%;
	}

	nav.hd_menu ul li:hover a {
		background: rgba(0, 0, 0, 0.03);
	}

	nav.hd_menu ul li i {
		display: inline-block;
	}
}


/*----------search------------*/

ul li.srh {}

.search {
	width: 100%;
	position: relative;
	padding: 8px 10px 4px;
}

.search:before {
	float: right;
	position: relative;
	top: -3px;
	right: 0;
	width: 25px;
	font-family: 'FontAwesome';
	content: '\f002';
	text-align: right;
	color: #95AF7B;
	-webkit-font-smoothing: subpixel-antialiased;
	font-smooth: always;
	font-size: 20px;
}

.searchTerm {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 87%;
	padding: 2px 8px;
	border-radius: 0;
	color: #555;
	border: 1px solid #adadad;
	outline: none;
}

.searchButton {
	position: absolute;
	top: 0;
	right: 0;
	width: 40px;
	height: 40px;
	opacity: 0;
	cursor: pointer;
}

@media (max-width:1200px) {
	.searchTerm {
		width: 80%;
	}
}

@media (max-width:767px) {
	.searchTerm {
		width: 85%;
	}
}


/*************************************/
/*              banner               */
/*************************************/

.banner_arrow {
	background-size: contain;
	background-repeat: no-repeat;
	width: 46px;
	height: 98px;
	display: block;
	position: absolute;
	top: 50%;
	margin-top: -50px;
}

.carousel-control .banner_left {
	left: 30px;
	background-image: url(../tw_img/other/banner_left.png);
}

.carousel-control .banner_right {
	right: 30px;
	background-image: url(../tw_img/other/banner_right.png);
}

@media (max-width:767px) {
	.banner_arrow {
		width: 23px;
		height: 49px;
		top: 50%;
		margin-top: -25px;
	}

	.carousel-control .banner_left {
		left: 15px;
	}

	.carousel-control .banner_right {
		right: 15px;
	}

	.carousel-indicators li {
		width: 15px;
		height: 15px;
	}

	.carousel-indicators .active {
		width: 15px;
		height: 15px;
	}
}

@media (max-width:550px) {
	.carousel-indicators {
		display: none;
	}
}


.banner .carousel-indicators .active {
	background-color: #e72a2e;
}

/*************************************/
/*                index              */
/*************************************/

.title-box {
	text-align: center;
	height: 41px;
	margin: 10px 0;
}

.title-box .title {
	display: inline-block;
	/*background:url(../tw_img/other/title-icon02.png) top left no-repeat;*/
	height: 41px;
	line-height: 41px;
	font-size: 24px;
	font-weight: bold;
	color: #000;
	padding-left: 55px;
}

.more {
	width: 100px;
	height: 32px;
	line-height: 30px;
	color: #fff;
	text-align: center;
	font-size: 15px;
	font-weight: bold;
	background: #95AF7B;
	border-radius: 5px;
	display: inline-block;
	float: right;
	margin-top: 10px;
}

.more:hover {
	background-color: #d01b1f;
	/*box-shadow:2px 2px 2px rgba(0,0,0,0.5);*/
}


.index-section-2 {
	background: url(../tw_img/index/index_bg.jpg) top center no-repeat;
	background-size: cover;
	overflow: hidden;
	padding: 15px 0 35px;
}

.index-section-3 {
	overflow: hidden;
	padding: 15spx 0;
}

@media (max-width:992px) {
	.index-section-1 {
		padding-bottom: 30px;
	}
}


/*************************************/
/*         application list          */
/*************************************/

.app_list {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	overflow: hidden;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 10px 0;
	margin: 0;
}

.app_list_item {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 33.333%;
	padding: 0 15px 30px;
	margin: 0;
}

/*.app_list_inner a img{
	border-bottom:12px solid #7d281d;
}*/

@media (max-width:992px) {
	.app_list_item {
		width: 50%;
	}
}

@media (max-width:768px) {
	.app_list_item {
		width: 33.333%;
	}
}


@media (max-width:600px) {
	.app_list_item {
		width: 50%;
	}
}

@media (max-width:450px) {
	.app_list_item {
		width: 100%;
	}
}


.app_list_item figure {
	margin: 0;
	padding: 10px;
	/* border:1px solid #aaaaaa;*/
	border-radius: 8px;
}

.app_list_inner {
	background: #fff;
	width: 100%;
}

.app_list_inner img {
	display: block;
}

.app_list_inner figcaption {
	padding: 0.25rem;
	color: #821212;
	font-size: 25px;
	text-align: center;
}

@media (max-width:767px) {
	.app_list_inner figcaption {
		font-size: 18px;
	}

}


/*************************************/
/*               footer              */
/*************************************/

.bt-hr {
	width: 100%;
	height: 7px;
	background: #d9002b;
	box-shadow: 3px 3px 5px rgba(0, 0, 0, 1.00);
	position: relative;
}

footer {
	border-top: 4px solid #230901;
	overflow: hidden;
	padding: 20px 0px;
}

.footer-logo {
	margin-top: 20px;
}

.contact-info {
	margin-left: 20px;
}

.contact-info ul {
	list-style-type: none;
}

.contact-info ul li {
	font-size: 16px;
	color: #000;
	line-height: 28px;
}

.contact-info ul li a {
	color: #000;
}

.contact-info ul li .icon {
	color: #000;
	padding-right: 10px;
}

.footer-title {
	font-size: 20px;
	color: #000;
	text-align: right;
}

#gotop {
	bottom: 20px;
	cursor: pointer;
	font-size: 20px;
	height: 62px;
	padding: 10px 15px;
	position: fixed;
	right: 20px;
	width: 62px;
	background-image: url(../tw_img/other/top.png);
	background-repeat: no-repeat;
	z-index: 101010;
}


@media (max-width:992px) {

	footer {
		padding-bottom: 0;
	}

	.contact-info {
		margin-left: 0;
		margin: 20px auto;
	}

	.footer-logo {
		margin-top: 0;
	}

	.contact-info ul {
		text-align: center;
		padding-left: 0;
	}

}



.footer {
	background: #ECECE4;
	color: #000000;
	padding: 15px 0;
	font-size: 15px;
}

.footerUl2 {
	list-style-type: none;
	color: #000;
	font-size: 15px;
	line-height: 25px;
	letter-spacing: 0.03rem;
	padding-left: 5px;
	text-align: center;
	margin-bottom: 0;
}

.footerUl2 li {
	display: inline;
}

.footerUl2 li a {
	color: #000;
	font-size: 13px;
}

.footerUl2 li a:hover {
	text-decoration: none;
	color: #fff;
}

.vLine2 {
	color: #000;
	font-size: 1.4rem;
}

.footerUl br,
.dis {
	display: none;
}


@media (max-width: 992px) {
	.footerUl2 {
		text-align: center;
	}

	.footerUl2 {
		padding-left: 0;
	}

	.footerUl2 li {
		display: inherit;
	}

	.vLine2 {
		display: none;
	}


}

@media (max-width: 650px) {

	.footerUl2 {
		text-align: center;
		font-size: 1.4rem;
	}

	.dis {
		display: inline;
	}
}


/*************************************/
/*               aside               */
/*************************************/

.hotPro {
	color: #fff;
	letter-spacing: 1px;
	font-family: "微軟正黑體";
	padding-bottom: 3.5rem;
	border-radius: 5px;
}

.hotPro>p>span {
	color: #fff;
}

.box {
	width: 100%;
	margin: 0 auto;
	/*box-shadow:1px 1px 2px rgba(0,0,0,0.2);*/
}

.slider_frame p {
	color: rgba(0, 0, 0, 1.00);
}


#cssmenu>ul>li>a {
	background: #95AF7B;
	color: #fff;
	text-align: center;
	margin-bottom: 5px;
	font-size: 20px;
}

#cssmenu>ul>li>a:hover {
	border-bottom: 2px solid #fff;
	color: #fff;
}

.sidBtn {
	float: right;
	padding-right: 15px;
	display: none;
}

.aside-title+i {
	float: right;
	margin-top: 15px;
	margin-right: 50px;
	display: none;
	color: #551c0d;
	font-size: 20px;
	font-weight: bold;
}

@media (max-width:991px) {
	.hotPro>p {
		cursor: pointer;
		width: 100% !important;
	}

	.hotPro {
		padding-bottom: 2rem;
		width: 100% !important;
		border-radius: 5px;
	}

	.sidBtn {
		display: inherit;
	}
}

@media (max-width:767px) {
	.box {
		display: none;
	}

	.menu-dis {
		display: none;
	}

	.aside-title+i {
		display: inherit;
	}
}

@media (max-width:680px) {
	.hotPro img {
		/*width:70%;*/
	}
}

@media (max-width:480px) {
	.hotPro img {
		max-width: 180px;
		height: auto;
	}
}


.index-com {
	margin-top: 20px;
}

.index-com p {
	color: #fff;
	font-family: "微軟正黑體";
	letter-spacing: 1px;
	text-align: justify;
}

.index-com p span {
	color: #ffd33c;
}


/*************************************/
/*           product list            */
/*************************************/

.pro_list {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	overflow: hidden;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 10px 0;
	margin: 0;
}

.pro_list li:hover figure {
	/*opacity:0.7;*/
}

/*.pro_list li:hover figcaption{
  color:#134e60;
  background-color:#b0e4f2;
}*/

.pro_list_item {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 33.333%;
	padding: 0 10px 30px;
	margin: 0;
}

@media (max-width:992px) {
	.pro_list_item {
		width: 50%;
	}
}

@media (max-width:768px) {
	.pro_list_item {
		width: 33.333%;
	}
}


@media (max-width:600px) {
	.pro_list_item {
		width: 50%;
	}
}

@media (max-width:450px) {
	.pro_list_item {
		width: 100%;
	}
}


.pro_list_item figure {
	margin: 0;
	padding: 5px;
	border: 1px solid #aaaaaa;
	background: #ebebeb;
}

.pro_list_item figure:hover {
	border: 1px solid #821212;
	background: #f6eac5;
}

.pro_list_inner {
	background: #fff;
	width: 100%;
}

.pro_list_item figure a img {
	display: block;
	border-bottom: 9px solid #821212;
}

.pro_list_inner figcaption {
	padding: 6px 10px;
	color: #821212;
	font-size: 17px;
	text-align: center;
}




/*************************************/
/*                page               */
/*************************************/


.page {
	text-align: center;
}

.page .pagination>li a {
	color: #fff;
	margin-right: 5px;
	border-radius: 0;
	background: #551c0d;
	font-weight: bold;
}


.page .pagination li a:hover {
	background: #821212;
	color: #fff;
}

@media (max-width:768px) {
	.next-dis {
		display: none;
	}
}


/*************************************/
/*          product detail           */
/*************************************/

.ins-content h1 {
	font-size: 26px;
	margin-left: 20px;
	padding-bottom: 12px;
	color: #000;
	line-height: 40px;
	margin-top: 80px;
	font-weight: bold;
}

#button-wrap-inner {
	margin-top: 40px;
	margin-left: 20px;
}

#button-wrap-inner span {
	display: block;
}

.proBtn,
.proBtn:focus,
.proBtn:active:focus,
.proBtn.active:focus,
.proBtn.focus,
.proBtn.focus:active,
.proBtn.active.focus {
	background: #95AF7B;

	border-radius: 4px;
	margin: 0.5rem 0;
	text-align: center;
	color: #fff;
	font-size: 1.4rem;
	font-family: "微軟正黑體";
	height: 35px;
	padding: 6px 18px 5px 15px;
	width: 130px;
	border: none;
}

.proBtn:hover {
	background: #821212;
	color: #fff;
}

.word-content {
	padding: 10px 0 40px;
}

.infomation-line {
	border-bottom: 1px dashed #000;
}

@media (max-width:991px) {

	.ins-content h1 {
		text-align: center;
		margin: 0 auto;
	}

	#button-wrap-inner span {
		display: inline-block;
	}

	#button-wrap-inner {
		margin: 20px auto;
		text-align: center;
	}
}

@media (max-width:768px) {
	.proBtn {
		text-align: center;
	}

	.word-content {
		padding: 15px 0 40px;
	}
}


@media (max-width:500px) {

	.proBtn,
	.proBtn:focus,
	.proBtn:active:focus,
	.proBtn.active:focus,
	.proBtn.focus,
	.proBtn.focus:active,
	.proBtn.active.focus {
		width: 100%;
	}

	#button-wrap-inner span {
		width: 100%;
	}
}

.word-table tbody tr td.table-header {
	background: #ebebeb;
}

.word-table tbody tr td {
	border: 3px solid #ebebeb;
	background: #fff;
}




/*************************************/
/*            inquiry table          */
/*************************************/
.responsive-table {
	width: 100%;
	margin-bottom: 1.5em;
}

@media (min-width: 704px) {
	.responsive-table {
		font-size: .9em;
	}
}

@media (min-width: 992px) {
	.responsive-table {
		font-size: 1em;
	}
}

.responsive-table thead {
	position: absolute;
	clip: rect(1px 1px 1px 1px);
	/* IE6, IE7 */
	clip: rect(1px, 1px, 1px, 1px);
	padding: 0;
	border: 0;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

@media (min-width: 704px) {
	.responsive-table thead {
		position: relative;
		clip: auto;
		height: auto;
		width: auto;
		overflow: auto;
	}
}

.responsive-table thead th {
	font-weight: normal;
	text-align: center;
	color: #7d281d;
}

.responsive-table thead th:first-of-type {
	text-align: center;
}

.responsive-table tbody,
.responsive-table tr,
.responsive-table th,
.responsive-table td {
	display: block;
	padding: 0;
	text-align: left;
	white-space: normal;
}

@media (min-width: 704px) {

	.responsive-table th,
	.responsive-table td {
		padding: 0 10px;
	}

	.responsive-table tr {
		display: table-row;
	}

	.responsive-table .bottom-line th {
		padding: 0;
	}

	.bottom-line th:after {
		display: block;
		content: "";
		width: 100%;
		height: 4px;
		background: #7d281d;
	}
}

.responsive-table th,
.responsive-table td {
	vertical-align: middle;
}

@media (min-width: 480px) {

	.responsive-table th,
	.responsive-table td {
		padding: 5px 0;
	}
}

@media (min-width: 704px) {

	.responsive-table th,
	.responsive-table td {
		display: table-cell;
		padding: .3em .7em;
	}
}

@media (min-width: 1200px) {

	.responsive-table th,
	.responsive-table td {
		font-family: "微軟正黑體";
	}
}

.responsive-table caption {
	margin-bottom: 1em;
	font-size: 1em;
	font-weight: bold;
	text-align: center;
}

@media (min-width: 704px) {
	.responsive-table caption {
		font-size: 1.5em;
	}
}

.responsive-table tfoot {
	font-size: .8em;
	font-style: italic;
}

@media (min-width: 992px) {
	.responsive-table tfoot {
		font-size: .9em;
	}
}

@media (min-width: 704px) {
	.responsive-table tbody {
		display: table-row-group;
	}
}

.responsive-table tbody tr {
	margin-bottom: 1em;
}

@media (min-width: 704px) {
	.responsive-table tbody tr {
		display: table-row;
		border-width: 1px;
	}
}

.responsive-table tbody tr:last-of-type {
	margin-bottom: 0;
}

@media (min-width: 704px) {
	.responsive-table tbody tr:nth-of-type(even) {
		background-color: rgba(94, 93, 82, 0.1);
	}
}

.responsive-table tbody th[scope="row"] {
	background-color: #dd7901;
	color: white;
}

@media (min-width: 704px) {
	.responsive-table tbody th[scope="row"] {
		background-color: transparent;
		color: #5e5d52;
		text-align: left;
	}
}

.responsive-table tbody td {
	text-align: center;
}

@media (min-width: 704px) {
	.responsive-table tbody td {
		text-align: center;
		background: #f0f1f3;
		border-bottom: 4px solid #fff;
		border-right: 4px solid #fff;
	}

	.responsive-table tbody td:nth-child(5) {
		border-right: none;
	}
}

.responsive-table tbody td[data-type=currency] {
	text-align: center;
}

.responsive-table tbody td[data-title]:before {
	content: attr(data-title);
	float: left;
	color: rgba(0, 0, 0, 1);
	font-weight: bold;
	display: block;
	width: 100%;
	line-height: 40px;
	background: #eee;
	margin-bottom: 10px;
}

.responsive-table tbody td[data-title]:first-child:before {
	background: #b5b5b5;
}

@media (min-width: 480px) {
	.responsive-table tbody td[data-title]:before {
		font-size: 1.1em;
		font-weight: bold;
	}
}

@media (min-width: 704px) {
	.responsive-table tbody td[data-title]:before {
		content: none;
	}
}

@media (max-width:710px) {
	.responsive-table tr {
		border-bottom: 2px dashed #a9a9a9;
		margin-bottom: 40px !important;
	}
}



/*************************************/
/*              inquiry              */
/*************************************/

.getCode img {
	padding-top: 10px;
	text-align: left;
}

.inq_title {
	color: #7d281d;

	font-size: 18px;
	font-family: "微軟正黑體";
	text-align: left;
	letter-spacing: 1px;
	padding: 0;
	/*font-weight:bold;*/
}

.conBtn {
	text-align: center;
	margin: 40px auto 0;
}

.btn_con {
	background: #7d281d;
	color: #fff;
	width: 120px;
	height: 35px;
	vertical-align: middle;
	text-align: center;
	margin: 0 5px 10px;
	font-size: 15px;
	border-radius: 5px;
	letter-spacing: 3px;
}

.btn_con:hover {
	color: #fff;
	text-decoration: none;
	background: #7d281d;
	box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
}

input,
button,
select,
textarea {
	border: none;
}

.proInquiry a {
	color: #3f3f3f;
	font-size: 2.4rem;
	font-weight: 800;
}

.proInquiry table tr th {
	line-height: 35px;
	font-size: 15px;
}


@media (max-width:768px) {

	.sub-content {
		width: 100%;
	}

	.getCode img {
		margin-left: -15px;
		margin-right: -15px;
	}
}

@media (max-width:500px) {
	.btn_con {
		width: 100%;
		display: block;
		margin: 10px 0;
	}

	.proInquiry {
		width: 100%;
	}
}


/*************************************/
/*             sitenews              */
/*************************************/

.content-box {
	font-size: 15px;
}

.mt42 {
	margin-top: 42px;
}

.news-box {
	width: 80%;
	margin: 0 auto;
}

.newsTitleBorder {
	overflow: auto;
}

.newsTitle {
	text-align: left;
	vertical-align: middle;
	display: block;
	padding-left: 5px;
	border-bottom: 3px solid #7d281d;
}

.newsTitle p {
	text-align: center;
	padding: 0;
	font-size: 1.5rem;
	margin-top: 10px;
	color: #7d281d;
}

.downloadTitle p {
	text-align: center;
	padding: 0;
	font-size: 1.5rem;
	margin-top: 10px;
	color: #fff;
}

.dataTitle p {
	text-align: center !important;
}

.news {
	font-size: 1.5rem;
	overflow: auto;
	color: hsla(0, 0%, 0%, 1.00);
	background-color: #fff;
}

.news2 {
	border-bottom: 3px solid #fff;
	background: #ebebeb;
}

.news .subj {
	line-height: 2.5rem;
	padding-bottom: 9px;
	padding-top: 9px;
	text-align: center;
}

.news .subj a {
	text-decoration: none;
	color: rgba(0, 0, 0, 1.00);
}

.news .subj a:hover {
	text-decoration: none;
	color: #a13a3a;
}

.news .data {
	line-height: 2.5rem;
	padding-bottom: 8px;
	padding-top: 10px;
	text-align: center;
	color: rgba(0, 0, 0, 0.6);
	font-weight: bold;
}

.back {
	display: block;
	margin-top: 5%;
	margin-bottom: 5%;
}


#newsBack {
	background: #551c0d;

	float: right;
	border-radius: 8px;
	width: 150px;
	text-align: center;
	box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
	color: #fff;
	font-size: 1.5rem;
	font-family: "微軟正黑體";
	height: 40px;
	margin-bottom: 40px;
	margin-top: 50px;
}

#newsBack a {
	color: #fff;
	margin-top: 0;
	width: 150px;
	padding: 8px 12px;
}

#newsBack:hover {
	box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.5);
}

#newsBack:hover a {
	color: #edd900;
}

@media (max-width:992px) {
	.left-line {
		border-right: none;
	}
}

@media (max-width:768px) {

	.news .data,
	.news .data2 {
		text-align: left;
		padding-left: 15px;
	}

	.newsDetail .data {
		text-align: left;
	}

	.newsCon {
		width: 100%;
		margin-left: 0;
	}

	.dataTitle {
		display: none;
	}

	.newsTitle {
		text-align: left;
	}

	.news .data {
		line-height: 0.5rem;
		padding-top: 15px;
	}

	.newsTitle p {
		text-align: left;
	}

	.downloadTitle p {
		text-align: center;
	}

	.news .subj {
		text-align: left;
	}
}

@media (max-width:500px) {
	#newsBack {
		width: 100%;
		text-align: center;
	}

	#newsBack a {
		width: 100%;
	}
}


/*--------------news detail--------------*/


.new-detail-box {
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#01b5da+0,01b5da+95,f0f1f3+100,f0f1f3+100,f0f1f3+100 */
	background: rgb(1, 181, 218);
	/* Old browsers */
	background: -moz-linear-gradient(left, rgba(137, 137, 137, 1) 0%, rgba(137, 137, 137, 1) 95%, rgba(240, 241, 243, 1) 100%, rgba(240, 241, 243, 1) 100%, rgba(240, 241, 243, 1) 100%);
	/* FF3.6-15 */
	background: -webkit-linear-gradient(left, rgba(137, 137, 137, 1) 0%, rgba(137, 137, 137, 1) 95%, rgba(240, 241, 243, 1) 100%, rgba(240, 241, 243, 1) 100%, rgba(240, 241, 243, 1) 100%);
	/* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, rgba(137, 137, 137, 1) 0%, rgba(137, 137, 137, 1) 95%, rgba(240, 241, 243, 1) 100%, rgba(240, 241, 243, 1) 100%, rgba(240, 241, 243, 1) 100%);
	/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#898989', endColorstr='#f0f1f3', GradientType=1);
	/* IE6-9 */
	border-bottom: 3px solid #fff;
	overflow: hidden;
	border-right: inset 1px solid #fff;
}

.news-detail-title {
	width: 25%;
	float: left;
	background-color: #898989;
	text-align: center;
	padding: 15px 10px;
	color: #fff;
	font-family: "微軟正黑體";
}

.news-detail-content {
	width: 75%;
	float: left;
	padding: 15px 10px;
	color: #000;
	font-family: "微軟正黑體";
	background-color: #f0f1f3;
	border-left: 3px solid #fff;
}

.detailConBg {
	background: rgba(0, 0, 0, 0.00);
	padding: 0 !important;
}

.text-lf {
	text-align: left !important;
	padding-left: 10px;
	min-height: 52px;
}

.text-lf02 {
	padding-left: 2px;
}


@media (max-width:768px) {
	.news-detail-title {
		width: 100%;
		float: none;
		text-align: center;
	}

	.news-detail-content {
		width: 100%;
		float: none;
		text-align: center;
		border-left: none;
	}
}


/*************************************/
/*             contacts              */
/*************************************/

.contactCode {
	margin-bottom: 15px;
}

.getCode img {
	padding-top: 11px;
	text-align: left;
	margin-top: 0;
}


.btn_bu:hover {
	box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
	color: #000;
}

.form-group a:hover {
	text-decoration: none;
}

.contact-info ul.contact {
	display: block;
	text-align: left;
	margin-top: 5px;
}

.contact-info ul.contact li {
	display: block;
	text-align: left;
	line-height: 15px;
	margin-bottom: 5px;
}

.contact-txt {
	font-weight: bold;
	color: #1d3d7b;
}

.googlemap {
	margin-bottom: 20px;
	margin-right: 5px;
	border: 1px solid #fff !important;
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}


@media (max-width:768px) {
	.getCode img {
		margin-left: -15px;
		margin-right: -15px;
	}

	.contact-txt,
	ul.contact {
		display: none !important;
	}
}

.contacts-info {
	font-size: 1.5rem;
	color: #000;
	line-height: 2.5rem;
}



/*************************************/
/*               other               */
/*************************************/

.wrapper {
	/*background:url(../tw_img/other/wrap_up.jpg) top left repeat-x, url(../tw_img/other/wrap_down.jpg) bottom left repeat-x;*/
	overflow: hidden;
	padding: 25px 0;
}

.text {
	font-size: 16px;
	line-height: 30px;
	color: #000;
}

.breadcrumb02 {
	text-align: right;
	font-size: 15px;
	color: #000;
}

.mt-10 {
	margin-top: -10px;
}

.catalog-name {
	font-size: 19px;
	text-align: center;
	padding: 15px;
}

.col-600-50 img {
	border: 1px solid rgba(168, 168, 168, 1.00);
	box-shadow: 0 0 0 3px rgba(228, 228, 228, 1.00), 1px 1px 2px 5px rgba(0, 0, 0, 0.3);
}

@media (max-width:991px) {
	.text {
		text-align: justify;
	}

	.mt-10 {
		margin-top: 20px;
	}
}

@media (max-width:767px) {
	.aside-box {
		height: auto;
		background: rgba(0, 0, 0, 0.15);
		padding: 5px;
		box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.30);
		line-height: 31px !important;
	}

	.aside-box span {
		box-shadow: none;
		margin-left: 60px;
	}

	.catalog-name {
		font-size: 15px;
	}
}

/*************************************/
/*          new product list         */
/*************************************/

.wrapper2 {
	overflow: hidden;
	background: #e5e5e5;
}

.wrapper3 {
	background: url(../tw_img/pro/products_new_bg.jpg) top center no-repeat;
	background-size: cover;
	overflow: hidden;
}

.product-section1 {
	min-height: 489px;
	overflow: hidden;
}

.product-section2 {
	min-height: 489px;
	overflow: hidden;
}

.product-section3 {
	min-height: 489px;
	overflow: hidden;
}

.wrapper3 h2 {
	color: #fff;
	font-size: 30px;
	font-family: Arial;
	font-weight: bold;
	border-bottom: 1px solid #fff;
	margin-top: 70px;
	line-height: 48px;
}

.wrapper3 h3 {
	color: #dcdcdc;
	font-size: 24px;
	line-height: 32px;
	margin: 0;
	margin-bottom: 10px;
}

.wrapper3 p {
	font-size: 14px;
	line-height: 14px;
	color: #fff;
}

.wrapper3 p i {
	margin-right: 3px;
}

.sub-wrapper {
	position: relative;
}

.wrapper3 a {
	display: block;
	width: 100%;
	height: 38px;
	font-weight: 14px;
	text-align: center;
	border: 1px solid #fff;
	line-height: 36px;
	color: #fff;
	font-size: 16px;
	/*position: relative;
	bottom: -170px;*/

}

.more-pt {
	padding-top: 170px;
}

.wrapper3 a:hover {
	color: #000;
	background: rgba(255, 255, 255, 0.6);
	border: none;
	line-height: 38px;
}

@media (max-width:991px) {
	.wrapper3 {
		background: none;
	}

	.product-section1 {
		background: url(../tw_img/pro/products_new_0102.jpg) top left no-repeat;
		background-size: cover;
		min-height: 390px;
	}

	.product-section2 {
		background: url(../tw_img/pro/products_new_0202.jpg) top right -100px no-repeat;
		background-size: cover;
		min-height: 390px;
	}

	.product-section3 {
		background: url(../tw_img/pro/products_new_0302.jpg) top left no-repeat;
		background-size: cover;
		min-height: 390px;
	}

	.sub-wrapper-pd {
		padding: 35px 25px;
	}

	.sub-wrapper {
		background: rgba(0, 0, 0, 0.5);
		overflow: hidden;
		padding: 15px;
		min-height: 366px;
	}

	.wrapper3 h2 {
		margin-top: 0;
	}

}

@media (max-width:680px) {
	.product-section3 {
		background: url(../tw_img/pro/products_new_0302.jpg) top left -100px no-repeat;
		background-size: cover;
	}

}

@media (max-width:580px) {
	.sub-wrapper-pd {
		padding: 20px 0;
	}
}

@media (max-width:480px) {
	.more-pt {
		padding-top: 20px;
	}

}