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

@import url(font-awesome/css/font-awesome.min.css);
@import url(icomoon/style.css);
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Roboto&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700;900&display=swap");


body {
    font-family: 微軟正黑體, 新細明體, sans-serif;
	font-size: 16px;
	color: #333;
	font-weight: 400;
	letter-spacing: 1.5px;
	background: #fff;
}

a {
	cursor: pointer;
	color: #1e7cc2;
	text-decoration: none;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

a:hover, a:focus { 
	color: #1e7cc2;  
	text-decoration: none; 
}

img { 
	max-width: 100%; 
}

h1, h2, h3, h4, h5, h6 {
	margin: 0;			   
}

p {
	margin: 0;
}

ul, ol, label, figure {
	margin: 0;
	padding: 0;
}

ul, li {
	list-style-type: none;
}

h1 {
    font-family: 'Noto Sans TC', "微軟正黑體", "新細明體", sans-serif;
    font-size: 32px;
    color: #333;
    line-height: 1.7;
    font-weight: normal;
}

input[type="text"]{
	-webkit-appearance: none;
	font-size: 15px;
}

textarea {
	-webkit-appearance: none;
}

.border-box {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

.wrap {
	width: 1200px;
	margin: 0 auto;
	padding: 0 15px; 
	position: relative;
}



/*----- header -----*/
header {
	width: 100%;
	height: 80px; 
	position: fixed;
	top: 0; 
	left: 0;
	z-index: 9999;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);  /* 往右偏移0往下偏移3px ，10px的模糊半徑 */
	background-color:#fff; 
}

header .logo {
	float: left;
	display: block;
	width: 200px;
	height: 80px;
}

	

/*----- nav -----*/
header nav {
	float: right;
}

header nav ul.menu {
}

header nav ul.menu li {
	float: left;
	position: relative;
	z-index: 1;
	text-align: center;
}

header nav ul.menu li > a {
	font-size: 16px;
	font-weight: 400;
	color: #000;
	padding: 0 35px;
	display: block;
	line-height: 80px;
	font-family: 'Noto Sans TC', "微軟正黑體", "新細明體", sans-serif;
}

header nav ul.menu li > a:hover,
header nav ul.menu li:hover > a {/* 滑鼠移入次選單上層按鈕保持變色*/
	color: #fff;
}


header nav ul.menu li.current > a {
	background-color: #506caf;
	color: #fff;
}

header nav ul.menu li ul {
	min-width: 200px;
	margin-top: 0;
	padding: 0;
	border: 0;
	background-color: #506caf;
	-moz-border-radius: 0; 
	-webkit-border-radius: 0; 
	border-radius: 0;
	box-shadow: none;
}

header nav ul.menu li ul li {
	float: none;
}

header nav ul.menu li ul li > a {
	font-size: 14px;
	color: #fff;
	line-height: 25px;
	text-align: left;
	padding: 10px 15px;
}

header nav ul.menu li ul li > a:hover {
	color: #fff;
	background-color: #016ad3;
}

.mobile-menu {
	display: none;
}


/* Sweep To Bottom */
.hvr-sweep-to-bottom {
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
	position: relative;
  	-webkit-transition-property: color;
  	transition-property: color;
  	-webkit-transition-duration: 0.3s;
  	transition-duration: 0.3s;
}
.hvr-sweep-to-bottom:before {
  	content: "";
  	position: absolute;
  	z-index: -1;
  	top: 0;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	background: #506caf;
  	-webkit-transform: scaleY(0);
  	transform: scaleY(0);
  	-webkit-transform-origin: 50% 0;
  	transform-origin: 50% 0;
  	-webkit-transition-property: transform;
  	transition-property: transform;
  	-webkit-transition-duration: 0.3s;
  	transition-duration: 0.3s;
  	-webkit-transition-timing-function: ease-out;
  	transition-timing-function: ease-out;
}
.hvr-sweep-to-bottom:hover, .hvr-sweep-to-bottom:focus, .hvr-sweep-to-bottom:active {
  	color: white;
}
.hvr-sweep-to-bottom:hover:before, .hvr-sweep-to-bottom:focus:before, .hvr-sweep-to-bottom:active:before {
	-webkit-transform: scaleY(1);
  	transform: scaleY(1);
}



/*----- banner -----*/
.bannerArea {
	clear: both;
	position: relative;
	margin-top: 80px;
}



/*----- 子選單區 -----*/
.subMenu {
	text-align:center; 
	margin-bottom: 70px;
}

.subMenu li {
	min-width: 120px;
	display: inline-block;
	margin: 0 8px 17px;
	background-color: #eee; 
	text-align: center;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.subMenu li h3 a {
	font-size: 16px;
	color: #333;
	font-weight: normal;
	padding: 14px 22px;
	display: block;
}

.subMenu li h3 a:hover {
	color: #fff;
}

.subMenu li:hover, 
.subMenu li.active {
	color: #fff;
	background-color: #00529b;
}

.subMenu li.active a {
	color :#fff;
}



/*----- 內容區 -----*/
.mainArea {
	/*min-height: 500px;*/
	padding: 55px 0 90px 0;
	position: relative;
	background: #fff;
}

.title {
	color: #0a3667;
	font-size: 46px;
	font-weight: 500;
	padding: 0 0 20px 0;
	margin-bottom: 50px;
	letter-spacing: 6px;
	text-align: center; 
	position: relative;
	font-family: 'Noto Sans TC', "微軟正黑體", "新細明體", sans-serif;
}

.title:after {
	content: " ";
	display: block;
	width: 90px;
	height: 1px;
	background: #6f86bb;
	position: absolute;
	bottom: 0;
	left: 50%;
	margin-left: -45px;
}

.lineHeight {
	line-height: 2.0;
}

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

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


.m_submenuList {
	display: none;
}
	
	


/*----- 網站導覽bread -----*/
.mainArea .bread{
	font-size: 13px;
	color: #828282;
	text-align: right;	
	margin: 0 0 20px 0;
}

.mainArea .bread a {
	color: #828282;
}

.mainArea .bread a:hover {
	color: #cf9b00;
}

.mainArea .bread a i {
	font-size: 20px;
	vertical-align: bottom;
}

.mainArea .bread span.sign {
	padding: 0 5px;
	color: #a8a8a8;
}

.mainArea .bread span.current,
.mainArea .bread span.current a {
	color: #cf9b00;
}



/*----- 頁尾資訊 -----*/
footer .footerArea {
	padding: 70px 0;
	background-color: #161616;
}
.footerInfo {
	float: left;
	width: 42%;
}
.footerInfo h1.companyName {
	font-size: 26px;
	color: #fff;
	font-weight: 400;
	letter-spacing: 5.4px;
	margin-bottom: 20px;
	line-height: 27px;
}
.footerInfo h3 {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
	font-weight: 300;
	margin-bottom: 40px;
	letter-spacing: 1px;
	font-family: 'Noto Sans TC', "微軟正黑體", "新細明體", sans-serif;
}
.footerInfo p.infotext,
.footerInfo p.infotext a {
	font-size: 15px;
	color: #fff;
	margin-bottom: 9px;
}
.footerInfo p.copyright,
.footerInfo p.copyright a  {
	font-size: 13px;
	color: #9a9996;
	margin-top: 40px;
	line-height: 1.7;
}
.footerInfo p.copyright a:hover {
	color: #fff;
}
.footerInfo a[href^=tel] {
    color: inherit;
    text-decoration: none;
}

.footermenuBox {
	float: right;
	width: 58%;
	margin-top: 70px;
	text-align: right;
}
ul.footerMenu {
	list-style: none;
	display: inline-block;
	padding: 0 25px;
}
ul.footerMenu li {
	margin: 0 0 25px 0; 
	font-size: 16px;
	color: #fff;
	text-align: left;
}
ul.footerMenu li a {
	position: relative; 
	color: #fff;
}
ul.footerMenu li a:hover {
	color:rgba(255, 255, 255, 0.5);
}

.footerQrcode {
	display: inline-block;
	padding: 4px 0 0 70px;
	vertical-align: top;
}



/*----- loading -----*/
.loading {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 60px;
  height: 60px;
  margin: -30px 0 0 -30px;
  z-index: 300;
}
.loading .sk-child {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.loading .sk-child:before {
  content: '';
  display: block;
  margin: 0 auto;
  width: 15%;
  height: 15%;
  background-color: #bbb;
  border-radius: 100%;
  -webkit-animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
          animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
}
.loading .sk-circle2 {
  -webkit-transform: rotate(30deg);
      -ms-transform: rotate(30deg);
          transform: rotate(30deg); }
.loading .sk-circle3 {
  -webkit-transform: rotate(60deg);
      -ms-transform: rotate(60deg);
          transform: rotate(60deg); }
.loading .sk-circle4 {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg); }
.loading .sk-circle5 {
  -webkit-transform: rotate(120deg);
      -ms-transform: rotate(120deg);
          transform: rotate(120deg); }
.loading .sk-circle6 {
  -webkit-transform: rotate(150deg);
      -ms-transform: rotate(150deg);
          transform: rotate(150deg); }
.loading .sk-circle7 {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg); }
.loading .sk-circle8 {
  -webkit-transform: rotate(210deg);
      -ms-transform: rotate(210deg);
          transform: rotate(210deg); }
.loading .sk-circle9 {
  -webkit-transform: rotate(240deg);
      -ms-transform: rotate(240deg);
          transform: rotate(240deg); }
.loading .sk-circle10 {
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
          transform: rotate(270deg); }
.loading .sk-circle11 {
  -webkit-transform: rotate(300deg);
      -ms-transform: rotate(300deg);
          transform: rotate(300deg); }
.loading .sk-circle12 {
  -webkit-transform: rotate(330deg);
      -ms-transform: rotate(330deg);
          transform: rotate(330deg); }
.loading .sk-circle2:before {
  -webkit-animation-delay: -1.1s;
          animation-delay: -1.1s; }
.loading .sk-circle3:before {
  -webkit-animation-delay: -1s;
          animation-delay: -1s; }
.loading .sk-circle4:before {
  -webkit-animation-delay: -0.9s;
          animation-delay: -0.9s; }
.loading .sk-circle5:before {
  -webkit-animation-delay: -0.8s;
          animation-delay: -0.8s; }
.loading .sk-circle6:before {
  -webkit-animation-delay: -0.7s;
          animation-delay: -0.7s; }
.loading .sk-circle7:before {
  -webkit-animation-delay: -0.6s;
          animation-delay: -0.6s; }
.loading .sk-circle8:before {
  -webkit-animation-delay: -0.5s;
          animation-delay: -0.5s; }
.loading .sk-circle9:before {
  -webkit-animation-delay: -0.4s;
          animation-delay: -0.4s; }
.loading .sk-circle10:before {
  -webkit-animation-delay: -0.3s;
          animation-delay: -0.3s; }
.loading .sk-circle11:before {
  -webkit-animation-delay: -0.2s;
          animation-delay: -0.2s; }
.loading .sk-circle12:before {
  -webkit-animation-delay: -0.1s;
          animation-delay: -0.1s; }

@-webkit-keyframes sk-circleBounceDelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  } 40% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes sk-circleBounceDelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  } 40% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}



/*----- Go Top -----*/
.gotop {
    width: 52px;
    height: 52px;
    position: fixed;
    bottom: 30px;
    right: 14px;
    display: none;
    text-align: center;
    color: #fff;
    font-size: 18px;
	border-radius: 99em;
	/*border: 1px solid #0d926a;*/
    background: #506caf;
    z-index: 9999;
	cursor: pointer;
	line-height: 50px;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.gotop:hover {
	background: #000;
	/*filter: alpha(opacity=100);
    opacity: 0.5;*/
}

.gotop:hover i,
.gotop:focus i {
	color: #fff;
}



/*----- 響應式 -----*/
@media (max-width: 1199px){
.wrap {
	width: 100%;
	padding: 0 4%;
}

header nav ul.menu li > a {
	padding: 0 32px;
}


}


/*991*/
@media (max-width: 991px){
header {
	display: none;
}

.bannerArea {
	margin-top: 60px;
}
	
.footerQrcode {
	padding-left: 15px;
}



/*----- mobile menu -----*/
.mobile-menu {
	display: block;
	width: 100%;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
}
.mobile-menu .mask {	
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	padding-bottom: 60px;
	top: 0;
	left: 0;
	z-index: 10;
}
.mobile-menu .controlBox { 
	background-color: #fff;
	position: relative;
	z-index: 99;
}
.mobile-menu .controlBox a.main { 
	position: absolute;
    left: 0;
    top: 0;
    width: 55px;
    height: 60px;
    font-size: 20px;
    color: #fff;
    line-height: 60px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
}
.mobile-menu .controlBox a.main span {
    position: relative;
    display: inline-block;
    width: 28px;
    height: 1px;
    background: #1b1b1b;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.mobile-menu .controlBox a.main span:before,
.mobile-menu .controlBox a.main span:after {
    content: '';
    position: absolute;
    left: 0;
    width: 28px;
    height: 1px;
    background: #1b1b1b;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.mobile-menu .controlBox a.main span:before {
    top: -8px;
}
.mobile-menu .controlBox a.main span:after {
    top: 8px;
}
.mobile-menu .controlBox a.main.show span {
    background: transparent;
}
.mobile-menu .controlBox a.main.show span:before {
    top: 0;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
}
.mobile-menu .controlBox a.main.show span:after {
    top: 0;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
}
.mobile-menu .controlBox .m_logo {
	float: left;
	margin-left: 55px;
}
.mobile-menu .controlBox .m_logo img {
	display: block;
	max-height: 60px;
}



/*----- mobile menu 內容 -----*/
.mobile-menu .hideBox { 
	position: fixed;
	left: 0;
    top: 50px;
    bottom: 0;
    z-index: 11;
    width: 100%;
    padding: 60px 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    background-color: #506caf;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: all .8s;
    -o-transition: all .8s;
    transition: all .8s;
}
.mobile-menu .hideBox.show {
    top: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.mobile-menu .hideBox p.sp { 
	display: none;
	padding: 10px;
	font-size: 13px;
	color: #fff;
	background: #c80303;
}
.mobile-menu .contactIcon {
	padding: 30px 0;
	text-align: center;
}
.mobile-menu .contactIcon a {
	margin: 0 8px;
	display: inline-block;
	font-size: 20px;
	color: #fff;
	width: 46px;
	height: 46px;
	line-height: 46px;
	text-align: center;
	border-radius: 100%;
	background-color: rgba(255, 255, 255, 0.2);
}
.mobile-menu ul.nav li {
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.mobile-menu ul.nav li a {
	padding: 20px 10px; 
	font-family: 'Roboto', 微軟正黑體, 新細明體, sans-serif; 
	display: block; 
	font-size: 16px; 
	color: #fff; 
	text-align: center;
	position: relative;
}
.mobile-menu ul.nav li > a:hover {
	background-color: rgba(255, 255, 255, 0.2);
}
.mobile-menu ul.nav li a i {
	display: block;
	position: absolute;
	right: 10px;
	top: 50%;
	margin-top: -7px; 
}
.mobile-menu ul.nav li .submenu {
	display: none;
}
.mobile-menu ul.nav li .submenu a {	
	padding: 10px 20px;
}
.mobile-menu ul.nav li .submenu a:hover {
	background-color: rgba(255, 255, 255, 0.2);
}


}



/*767*/
@media (max-width: 767px){

.innerWrap {
	padding: 0 8%;
}

.title {
	font-size: 36px;
}

.subMenu {
	display: none;
}



/*----- 手機(下拉)子分類選單 -----*/	
.m_submenuList {
	display: block;
	margin: 0 0 45px;
	width: 100%;
}
.m_submenuHead {
	width: 100%;
	padding: 10px;
	font-size: 15px;
	color: #fff;
	cursor: pointer;
	border: 1px solid #00529b;
	position: relative;
	font-weight: bold;
	background: #00529b url(../images/pro_down.png) center right no-repeat;
}

.m_submenuBody {
	width: 100%;
	height: auto;
	overflow: hidden;
	font-size: 15px;
	backguound: #fff;
	border: 1px solid #a2bdd4;
	border-top: none;
	box-sizing: border-box;
}

.m_submenuBody a {
	display: block;
	padding: 15px 5px 15px 27px;
	position: relative;
	color: #333;
	background: #fff;
	text-decoration: none;
	border-top: 1px solid #a2bdd4;
}

.m_submenuBody a:hover {
	color: #00529b;
	text-decoration: none;
}

.m_submenuBody a:before{
	content:"．";
	position:absolute;
	top:9px;
	left:6px;
	font-size:1.5em;
	width:20px;
	height:20px;
	display:block;
}

.m_submenuBody a:first-child {
	border-top: none;
}


/*----- footer -----*/
.footerInfo {
	float: none;
	width: 100%;
	text-align: center;
}

.footermenuBox {
	float: none;
	width: 100%;
	margin-top: 45px;
	text-align: center;
}

}


@media (max-width: 575px){

.mainArea {
	padding: 45px 0 60px;
}

.title {
	padding-bottom: 15px;
	margin-bottom: 40px;
}

.footerQrcode {
	padding-left: 0;
}


}

