﻿@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;400;500&display=swap');
html{font-size: 16px;}
/*html *{font-size: 1rem;}*/
body{
	font-size: 1rem;
	margin: 0;
	padding: 0;
	font-family: 'arial', 'Noto Sans TC', sans-serif;
	color: #000;
}
.preload{
	position: fixed;
	background: #FFF center center no-repeat;
	/*background-image: url(../images/loading.svg), url(../images/logo-icon.png);*/
	background-image: url(../images/loading.svg);
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999;
}
/*
*{transition: all .50s linear;}
*:hover{transition: all .50s linear;}
*/
a{
	text-decoration: none !important;
	outline: none;
	color: #000;
}
a:hover{ color: #000; }

img{
	max-width: 100%;
}
input, select, textarea{outline: none;}

/*=[hover effect]==============================*/
/*
*:hover, *:focus , * {
	transition: all .20s linear
}
*/
#pageWrapper{
	position:relative;
	margin: 0 auto;
	box-sizing: border-box;
}
#pageWrapper.fixed{
	height: 100vh;
	overflow: hidden;
}
.wrapper{
	position: relative;
	width: 100%;
	max-width: 1140px;
	margin: 0 auto;
	padding: 10px;
	box-sizing: border-box;
	overflow: hidden;
}

/*=[header]=========*/
header{
	
}
header .top-bar{
	background: #1A1A1A;
}
header .top-bar .logo{
	display: inline-block;
	vertical-align: top;
	margin-top: 10px;
}
header .top-bar .wrapper{
	padding: 10px 0;
}
header .top-bar .icons-top{
	margin-bottom: 5px;
	text-align: right;
}
header .top-bar .nav_icon{
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 10;
	color: #FFF;
	display: none;
}

header .mainnav-bar{
	background: #FFF;
}
header .mainnav-bar .wrapper{
	padding: 0 0 5px;
	overflow: visible;
}
header .mainnav{
	position: relative;
}
header .mainnav ul{
	margin: 0;
	padding: 0;
}
header .mainnav ul li{
	position: relative;
	display: inline-block;
}
header .mainnav ul li a{
	display: inline-block;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1rem;
	min-width: 100px;
	padding: 15px;
	box-sizing: border-box;
	text-align: center;
	color: #666;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
}
header .mainnav ul li:hover > a{
	color: #FFF;
	background: #727171;
}
header .mainnav ul li a.current{
	color: #FFF;
	background: #727171;
}
header .mainnav ul li:hover > ul{
	display: block;
}
header .mainnav ul ul{
	display: none;
	position: absolute;
	top: 46px;
	left: 0;
	z-index: 10;
}
header .mainnav ul ul li{
	display: block;
}
header .mainnav ul ul li a{
	display: inline-block;
	width: 200px;
	padding: 15px;
	box-sizing: border-box;
	color: #000;
	background: #FFF;
}
header .mainnav ul ul li:hover > a{
	color: #000;
	background: #C9CACA;
}

header .search-input{
	display: inline-block;
	vertical-align: middle;
	width: calc(100% - 60px);
	color: #555;
	background: #FFF;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}
header .submit{
	display: inline-block;
	vertical-align: middle;
	width: 60px;
	color: #FFF;
	background: #666666;
	cursor: pointer;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	background: url(../images/icon-search.png) #4D4D4D center center no-repeat;
	background-size: auto 100%;
}


.fixed-nav-wrap{
	position: relative;
	height: 80px;
	display: none;
}
.fixed-nav.fixed{
	position: fixed;
	width: 100%;
	top: 60px;
	left: 0;
	z-index: 10;
}
.fixed-nav .scroll-wrap{
	padding: 20px 0;
	background: #FFF;
}
.fixed-nav ul{
	text-align: center;
	margin: 0;
	padding: 0;
}
.fixed-nav ul li{
	display: inline-block;
	padding: 0 10px;
}
.fixed-nav ul li a{
	display: inline-block;
	font-size: 1.2rem;
	line-height: 1.2rem;
	padding: 10px;
	box-sizing: border-box;
	color: #B5B5B6;
}
.fixed-nav ul li a:hover{
	color: #595757;
}
.fixed-nav ul li a.current{
	color: #595757;
}


/*=[section]=========*/
.section-title{
	position: relative;
	padding: 15px 0;
	font-size: 1.5rem;
	font-weight: 600px;
	color: #0071BC;
}
.section-title:after {
	content: "";
	position: absolute;
	width: calc(100% - 120px);
	top: 30px;
	left: 120px;
	z-index: 1;
	border-top: 2px #00A0E9 solid;
}
.section-title.no-deco:after{
	width: 0;
}

.owl-carousel .owl-nav {
	position: absolute;
	width: 100%;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 46px;
	margin: auto;
	z-index: 20;
}
.owl-carousel .owl-nav .owl-prev{
	position: absolute;
	top: 0;
	left: -50px;
	width: 28px;
	height: 46px;
	background: url(../images/btn_owl_prev.png) center center no-repeat;
}
.owl-carousel .owl-nav .owl-next{
	position: absolute;
	top: 0;
	right: -50px;
	width: 28px;
	height: 46px;
	background: url(../images/btn_owl_next.png) center center no-repeat;
}

#slideshow_owl .owl-dots{
  position: absolute;
  width: 100%;
  bottom: 10px;
  left: 0;
  z-index: 20;
  text-align: center;
  box-sizing: border-box;
}
#slideshow_owl .owl-dot{
  display: inline-block;
}
#slideshow_owl .owl-dot span{
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 10px;
  border-radius: 6px;
  background: #fff;
}
#slideshow_owl .owl-dot.active span{
  background: #EA1E79;
}


/*=page index=======*/
.index .banner .wrapper{

}
.index .section1 .wrapper{
	overflow: visible;
}
.index .section1 .item{
	
}
.index .section1 .item-img{
	height: 180px;
}
.index .section1 .item-info{
	padding: 15px;
	border: 1px #00A0E9 solid;
	max-height: 220px;
	overflow: hidden;
}
.index .section1 .item-title{
	color: #0071BC;
	font-size: 1.1rem;
	font-weight: 500;
	min-height: 60px;
}
.index .section1 .item-txt{
	color: #808080;
}
.index .section1 .item-date{
	display: inline-block;
	color: #FFF;
	background: #ED1E79;
	font-size: 0.9rem;
	line-height: 0.9rem;
	padding: 5px;
	border-radius: 5px;
}
.index .section2 .wrapper{
	overflow: visible;
}
.index .section2 .item{
	border: 1px #00A0E9 solid;
	padding: 20px;
}
.index .section2 .item-category{
	color: #0071BC;
	font-weight: 500;
	text-align: center;
	margin-bottom: 10px;
}
.index .section2 .item-title{
	font-size: 1.2rem;
	font-weight: 600;
	margin: 20px 0 0;
}
.index .section3 .item{
	margin-bottom: 20px;
}
.index .section3 .item-img{
	width: 100%;
	height: 260px;
}
.index .section3 .item-txt{
	color: #FFF;
	padding: 40px;
	box-sizing: border-box;
	height: 260px;
}

/*=page about=======*/
.about .section1 .img-wrap{
	padding: 20px;
}
.about .section2 .item{
	display: inline-block;
	padding: 20px 10px;
	width: 100%;
	box-sizing: border-box;
	text-align: center;
}
.about .section2 .wrapper{
	margin-bottom: 20px;
}
.about .section2 .item-img{
	height: 80px;
}

/*=page news=======*/
.news .section1 .wrapper{
	padding: 40px 10px;
}
.news .section1 .item{
	margin-bottom: 40px;
}
.news .section1 .item-info{
	padding-left: 40px;
}
.news .section1 .item-title{
	color: #0071BC;
	font-size: 1.4rem;
	font-weight: 500;
}
.news .section1 .item-txt{
	color: #808080;
	margin-top: 10px;
}
.news .section1 .item-date{
	display: inline-block;
	color: #FFF;
	background: #ED1E79;
	font-size: 0.9rem;
	line-height: 0.9rem;
	padding: 5px;
	border-radius: 5px;
}
.news .section1 .btn-more{
	float: right;
	display: inline-block;
	color: #FFF;
	background: #3E3A39;
	font-size: 0.9rem;
	line-height: 0.9rem;
	padding: 5px;
	border-radius: 5px;
}
.news .section1 .content{
	max-width: 800px;
	margin: 0 auto;
}

/*=page product=======*/
.product .aside-wrap{
	padding-right: 40px;
	margin-bottom: 60px;
}
.product .aside-title{
	color: #FFF;
	background: #0071BC;
	padding: 10px;
	margin: 20px 0 20px;
	font-size: 1.4rem;
}
.product .aside-wrap ul{
	margin: 0;
	padding: 0;
}
.product .aside-wrap ul li{
	position: relative;
	list-style: none;
}
.product .aside-wrap ul li a{
	display: block;
	padding: 5px 0;
}
.product .aside-wrap ul li.has-child:after{
	content: "+";
	position: absolute;
	right: 10px;
	top: 0;
	z-index: 1;
	color: #ED1E79;
	font-size: 1.4rem;
	cursor: pointer;
}
.product .aside-wrap ul ul{
	display: none;
	padding-left: 20px;
}
.product .aside-wrap ul li.current ul{
	display: block;
}
.product .aside-wrap ul ul li.current a{
	color: #0071BC;
}

.product .section1 .content-inner{
	margin-bottom: 60px;
}
.product .section1 .item{
	padding: 10px;
}
.product .section1 .item-wrap{
	border: 1px #00A0E9 solid;
	padding: 20px;
}
.product .section1 .item-category{
	color: #0071BC;
	font-weight: 500;
	text-align: center;
	margin-bottom: 10px;
}
.product .section1 .item-title{
	font-size: 1.2rem;
	font-weight: 600;
	margin: 20px 0 0;
}
.product .section1 .product-wrap{
	margin: 40px auto;
}
.product .section1 .product-category{
	color: #0071BC;
	font-weight: 500;
}
.product .section1 .product-title{
	font-size: 1.2rem;
	font-weight: 600;
	margin: 10px 0 0;
}
.product .section1 .product-num{
	margin-bottom: 20px;
}
.product .section1 .product-summary{
	color: #808080;
}
.product .section1 .main-pic{
	width: 100%;
	max-width: 100%;
}
.product .section1 .thumbnail{
	margin-top: 10px;
}
.product .section1 .thumbnail-pic{
	height: 80px;
	cursor: pointer;
}
.product .section1 .info{
	padding-left: 40px;
}
.product .section2{
	background: #DCDDDD;
	padding: 40px 0;
}
.product .section2 .wrapper{
	background: #FFF;
	padding: 20px;
}
.product .tabs{
	text-align: center;
	margin-bottom: 30px;
}
.product .tab{
	display: inline-block;
	padding: 10px 30px;
	cursor: pointer;
}
.product .tab.current{
	border-bottom: 2px #0071BC solid;
}
.product .tab-content{
	display: none;
}
.product .tab-content.current{
	display: block;
}

/*=page distributor=======*/
.distributor .section1 .wrapper{
	padding: 40px 10px;
}
.distributor .tabs{
	border-bottom: 1px #0071BC solid;
	margin-bottom: 40px;
}
.distributor .tab{
	padding: 10px;
	text-align: center;
	font-size: 1.2rem;
}
.distributor .tab a{
	color: #0071BC;
}
.distributor .tab.current{
	background: #0071BC;
}
.distributor .tab.current a{
	color: #FFF;
}
.distributor .item{
	padding: 10px;
}
.distributor .item-wrap{
	border: 1px #00A0E9 solid;
	padding: 20px;
}
.distributor .item-title{
	color: #0071BC;
	font-weight: 500;
	text-align: center;
	margin-bottom: 10px;
}
.distributor .item .item-info{
	line-height: 1.8rem;
	margin-top: 20px;
	border-top: 1px #CCC solid;
	padding-top: 10px;
}
.distributor .item-time{
	margin-top: 40px;
}
.distributor .fa-external-link{
	color: #0071BC;
}

/*=page contact=======*/
.contact .section1 .wrapper{
	padding: 40px 10px;
}
.contact .map{
	width: 100%;
	height: 600px;
}
.contact .info-wrap{
	padding-left: 40px;
}
.contact .contact-item{
	margin-bottom: 10px;
}
.contact .form-wrap{
	margin-top: 20px;
}
.contact .form-wrap input, .contact .form-wrap select, .contact .form-wrap textarea{
	margin-bottom: 10px;
}
.contact .form-wrap input.submit{
	border: 1px #CCC solid;
	background: #FFF;
}

/*=[footer]=========*/
footer{
	background: #4D4D4D;
}
footer .wrapper{
	padding: 20px 10px;
}
footer .sus{
	color: #CCC;
}
footer .sus .title{
	font-size: 1.6rem;
}
footer .info{
	padding: 10px 0;
	background: #FFF;
}
footer .item-info{
	display: inline-block;
	margin: 3px 10px;
}
footer .subscribe-form{
	margin-top: 15px;
}
footer .subscribe-form .subscribe-input{
	display: inline-block;
	vertical-align: middle;
	width: calc(100% - 80px);
	color: #FFF;
	background: #333;
}
footer .subscribe-form .submit{
	display: inline-block;
	vertical-align: middle;
	width: 80px;
	color: #FFF;
	background: #666666;
}

#scrollup{
	position: fixed;
	right: 20px;
  bottom: 20px;
	z-index:20;
	display: none;
	width: 48px;
	height: 48px;
	background: url(../images/btn-totop.png) center center no-repeat;
	cursor:pointer;
}


/*=[common]=========*/
input, textarea, select{
	color: #666;
	width: 100%;
	box-sizing: border-box;
	padding: 8px;
	border: none;
	border-radius: 0;
	resize: none;
}
input.bg, select.bg, textarea.bg{
	background-color: #F5F5F5;
}
input.border, select.border, textarea.border{
	border: 1px #DCDDDD solid;
}
/*
input[type=submit],input[type=button]{
	cursor: pointer;
	width: 100%;
	box-sizing: border-box;
	text-align: center;
	padding: 12px;
	border: none;
	font-size: 1rem;
	line-height: 1rem;
}
*/
select{
	appearance: none;
	-moz-appearance: none; /* Firefox */
	-webkit-appearance: none;
	background: url(../images/select-arrow.png) right center no-repeat;
	background-size: auto 100%; 
}

.mobile{display: none !important;}

.cover{
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0,0,0, 0.7);
	z-index: 10;
	display: none;
}

.tableBorder{
	border-collapse: collapse;
    width:100%;
    border-collapse: collapse;
}
.tableBorder th{
	padding: 20px 10px;
	border-bottom: 1px #CCC solid;
	text-align:left;
}
.tableBorder td{
	padding: 20px 10px;
	border-bottom: 1px #CCC solid;
	text-align:left;
}

.btn{
	display: inline-block;
	padding: 18px;
	min-width: 200px;
	box-sizing: border-box;
	text-align: center;
	line-height: 14px;
	color: #FFF;
	background: #2E454C;
	border: none;
	transition: background-color .5s;
}
.btn:hover{
	color: #FFF;
	background: #425D72;
}
.btn-block{
	width: 100%;
	display: block;
}
.pages{
	margin: 30px 0;
}
.pages a{
	display: inline-block;
	color: #B5B5B6;
	width: 10px;
	margin: 0 5px;
	box-sizing: border-box;
	text-align: center;
	font-size: 1.2rem;
}
.pages a.current, .pages a:hover{
	color: #000; 
}

.breadcrumb{
	font-size: 16px;
}

.fit-img{
	object-fit: cover;
}
.fit-img-contain{
	object-fit: contain;
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

@media screen and (max-width: 1024px) {
	.pad{ display: none !important;}
	.desktop{ display: none !important;}
	.mobile{ display: block !important;}

	header .top-bar .wrapper{
		padding: 15px 10px;
	}
	header .top-bar .logo{
		width: 180px;
		margin-top: 0;
	}
	header .top-bar .nav_icon{display: block;}
	header .mainnav-bar .wrapper{
		padding: 0;
	}
	header .mainnav{
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 30;
		background: #CCC;
		margin-top: 0;
		display: none;
	}
	header .mainnav.open{display: block;}
	header .mainnav ul li{
		position: relative;
		display: block;
	}
	header .mainnav ul li:hover > ul{
		display: none;
	}
	header .mainnav ul li a{
		display: block;
		border-bottom-right-radius: 0;
		border-bottom-left-radius: 0;
	}
	header .mainnav ul ul{
		position: static;
	}
	header .mainnav ul ul.open{
		display: block !important;
		width: 100%;
	}
	header .mainnav ul ul li a{
		display: block;
		width: 100%;
	}

	footer .item-info{
		display: block;
		margin: 0;
		padding: 3px 10px;
		text-align: left;
	}
}

@media screen and (max-width: 767px) {
	.index .section1 .item-img{
		height: 200px;
	}
	.index .section3 .item-img{
		width: 100%;
		height: 160px;
	}
	.about .section1 .img-wrap{
		padding: 0;
	}
	.news .section1 .item{
		margin-bottom: 20px;
	}
	.news .section1 .item-info{
		padding-left: 0;
	}
	.product .aside-wrap{
		padding-right: 0;
	}
	.product .section1 .info{
		padding-left: 0;
	}
	.distributor .tabs{
		border-bottom: none;
	}
	.distributor .tab{
		border: 1px #0071BC solid;
	}
	.contact .map{
		width: 100%;
		height: 400px;
	}
	.contact .info-wrap{
		padding-left: 0;
	}
}
