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

@import url(font-awesome/css/font-awesome.min.css);
@import url("https://fonts.googleapis.com/css?family=Lora&display=swap");
@import url("https://fonts.googleapis.com/css?family=Arya&display=swap");
@import url("https://fonts.googleapis.com/css?family=Roboto&display=swap");


body {
    font-family: 'Roboto', 微軟正黑體, 新細明體, sans-serif;
	font-size: 15px;
	color: #323232;
	background: #f2f2f2;
	line-height: 1.6;
}

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

a:hover, a:focus { 
	color: #00a4b0;  
	text-decoration: none; 
}

img { 
	max-width: 100%; 
}

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	font-weight: normal;
	line-height: 1.6;		   
}

p {
	margin: 0;
}

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

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

input[type="text"],
input[type="email"] {
	-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;
}

.wrap-fluid {
	width: 100%;
	padding: 0 30px; 
}

::selection {
	color: #fff;
	background-color: #0093cc; 
}



/*----- header -----*/
header {
	width: 100%;
	height: 70px; 
	position: fixed;
	top: 0; 
	left: 0;
	z-index: 1000;
	box-shadow: 0 2px 8px rgba(226, 226, 226, 0.6);  /* 往右偏移0往下偏移2px ，5px的模糊半徑 */
	background-color: #fff; 
}

header .logo {
	float: left;
	display: block;
	width: 177px;
	height: 70px;
}



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

header nav > ul.menu {
}

header nav > ul.menu > li {
	float: left;
	font-size: 16px;
	padding: 0 30px;
	position: relative;
	line-height: 70px;
}

header nav > ul.menu > li > a {
	color: #111;
	position: relative;
	display: block;
}

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

header nav > ul.menu > li.current > a {
	color: #4ba700;
}

header nav > ul.menu > li > a::after {
	content: '';
	position: absolute;
	display: block;
	width: 0;
	height: 2px;
	left: 0;
	right: 0;
	bottom: 10px;
	background-color: rgba(75, 167, 0, 0.8);
	opacity: 0;
	transition: all .4s ease-out;
}

header nav > ul.menu > li > a:hover::after,
header nav > ul.menu > li:hover > a::after,
header nav > ul.menu > li.current > a::after {
	width: 100%;
	left: 0;
	opacity: 1;
}



/*----- 彈出式第二層 -----*/
nav .dropdown-container {
	position: absolute;
	left: 0;
	width: 200px;
	visibility: hidden;
	padding: 0;
	border: 1px solid #eee; 
	/*box-shadow: 0 1px 2px rgba(135, 135, 135, .4); */
	box-shadow: 0 5px 10px rgba(60, 60, 60, 0.1);
	background: rgba(255, 255, 255, 0.9);
	opacity: 0;
	-webkit-transition: top .45s ease, margin-top .4s ease;
	transition: top .45s ease, margin-top .4s ease;
}
nav > ul.menu > li:hover > .dropdown-container {
	left: 0;
	top: 95px;
	margin-top: -25px;
	opacity: 1;
	visibility: visible;
	z-index: 100;
}
nav .dropdown-container li {
}
nav .dropdown-container li a {
	padding: 12px 25px;
	font-size: 15px;
	color: #444;
	display: block;
	position: relative;
	border-bottom: 1px solid #e6e6e6;
	line-height: 24px;
}
nav .dropdown-container li:last-child a {
	border-bottom: none;
}

nav .dropdown-container li a:hover,
nav .dropdown-container li.active > a {
	color: #fff;
	background-color: #3c2d28;
}


.mobile-menu {
	display: none;
}



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




/*----- 內容框架 -----*/
.mainArea {
	padding: 35px 0 90px;
	position: relative;
}

.title {
	margin-bottom: 35px;
	text-align: center;
}

.title h2 {
	font-size: 36px;
	color: #0f0f0f;
	font-weight: normal;
	display: inline-block;
	position: relative;
}

.title h2:before,
.title h2:after {
	content: " ";
	display: block;
	width: 100px;
	height: 1px;
	background: #4ba700;
	position: absolute;
	bottom: 50%;
}

.title h2:before {
	right: -115px;
}

.title h2:after {
	left: -115px;
}

.m_submenuList {
	display: none;
}



/*----- 子選單區 -----*/
ul.subMenu {
	
}

ul.subMenu li a {
	font-size: 16px;
	color: #393939;
	padding: 12px;
	display: block;
	border-bottom: 1px solid #eee;
	line-height: 25px;
}

ul.subMenu li a:hover,
ul.subMenu li.active > a  {
	color: #203f9a;
}

ul.subMenu li ul {
	padding: 6px 0;
	border-bottom: 1px solid #eee;
}

ul.subMenu li ul li a {
	font-size: 15px;
	color: #393939;
	padding: 5px 5px 5px 15px;
	display: block;
	border-bottom: none;
	line-height: 24px;
}

ul.subMenu li ul li a:hover,
ul.subMenu li ul li.active > a  {
	color: #203f9a;
}

ul.subMenu li ul li a i {
	font-size: 13px;
	margin: 0 8px 3px 0;
	display: inline-block;
	vertical-align: middle;
	/*-webkit-transform: scale(0.95);
	-ms-transform: scale(0.95);
	transform: scale(0.95); */
}


.m_classLink {
	display: none;
}

ul.subLink {
	display: none;
}



/*----- 網站導覽bread -----*/
.breadBox {
	padding: 13px 0;
	margin-bottom: 35px;
	background-color: #0093cc;
}

.bread {
	font-size: 14px;
	color: #fff;
	line-height: 22px;
}

.bread a {
	color: #fff;
}

.bread a:hover {
	color: #fed133;
}

.bread i {
	font-size: 12px;
	color: #fff;
	display: inline-block;
	margin: 0 8px;
	vertical-align: middle;
}

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



/*----- 頁碼 -----*/
.page {
	padding-top: 50px;
	clear: both;
}

.page ul {
	text-align: center;
	list-style: none;
}

.page li {
	display: inline-block;
	font-size: 13px;
}

.page li > a, .page li > span {
	color: #777;
	display: inline-block;
	padding: 7px 15px;
	background-color: #fff;
	border: 1px solid #a7a7a7;
}

.page li > a:hover,
.page li > a:focus,
.page li > a.current {
	color: #fff;
	text-decoration: none;
	background-color: #333;
	border: 1px solid #333;
}

.page li > a i {
	font-size: 15px;
}



/*----- 頁尾資訊 -----*/
footer {
	padding: 25px 0;
	/*border-top: 1px solid #98b400;*/
	background-color: #2d2d2d;
}

footer > .wrap-fluid > .align {
	align-items: baseline;
}

footer > .wrap-fluid > .row > figure > img {
	max-width: 100%;
	height: auto;
}

ul.quicklink {
	text-align: center;
}

ul.quicklink li {
	display: inline-block;
	font-size: 14px;
	color: #d9d9d9;
	margin: 0 10px;
}

ul.quicklink li a {
	color: #d9d9d9;
}

ul.quicklink li a:hover {
	color: #4ba700;
}

footer .copyright {
	font-size: 13px;
	color: #939393;
	line-height: 22px;
	text-align: right;
}

footer .copyright a {
	color: #939393;
	margin-left: 10px;
}

footer .copyright a:hover {
	color: #4ba700;
}




/*---------------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: 50px;
    height: 50px;
    /*-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    filter: alpha(opacity=80);
    opacity: 0.8;*/
    position: fixed;
    bottom: 20px;
    right: 15px;
    display: none;
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
	border-radius: 99em;
    background: #222;
    z-index: 9999;
	cursor: pointer;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.gotop:hover {
	opacity: 0.5;
    -ms-filter: alpha(Opacity=50);
    filter: alpha(Opacity=50);
	/*background: #98b400;
	filter: alpha(opacity=100);
    opacity: 1;*/
}

.gotop i,
.gotop:hover i,
.gotop:focus i {
    line-height: 50px;
}




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

.wrap-fluid {
	padding: 0 3.5%;
}

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


}


/*991*/
@media (max-width: 991px){
.wrap{
	padding: 0 5%;
}

header {
	display: none;
}

.bannerArea {
	margin-top: 60px;
}

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

ul.subMenu {
	display: none;
}

.footerInfo > .wrap > .row {
  margin-left: -20px;
  margin-right: -20px;
}

.footerInfo > .wrap > .row > .col-md-3 {
	padding-left: 20px;
	padding-right: 20px;
}



/*----- mobile menu -----*/
.mobile-menu {
	display: block;
	width: 100%;
	box-shadow: 0 2px 5px rgba(126, 126, 126, 0.5);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
}
.mobile-menu .mask {	
	display: none;
	/*background: rgba(33,33,33,1);*/
	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 {
	width: 100%;
	text-align: center;
}
.mobile-menu .controlBox .m_logo img {
	max-width: 240px;
}



/*----- 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: rgba(0, 0, 0, 0.92);
    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 9px;
	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.1);
}
.mobile-menu ul.nav li a {
	padding: 20px 10px; 
	font-family: 'Roboto', 微軟正黑體, 新細明體, sans-serif; 
	display: block; 
	font-size: 15px; 
	color: #fff; 
	text-align: center;
	position: relative;
}
/*.mobile-menu ul.nav li > a:focus, */
.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);
}



/*----- 下拉子分類選單 -----*/	
.m_submenuList {
	display: block;
	width: 100%;
	margin-bottom: 28px;
}
.m_submenuHead {
	width: 100%;
	padding: 8px 10px;
	font-size: 16px;
	color: #404040;
	font-weight: bold;
	cursor: pointer;
	border: 1px solid #4ba700;
	position: relative;
	background: 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 #4ba700;
	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 #4ba700;
}

.m_submenuBody a:hover {
	color: #4ba700;
	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;
}

		

}


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

.title {
	margin-bottom: 22px;
}

.title h2 {
	font-size: 30px;
}

.title h2:before,
.title h2:after {
	width: 70px;
}

.title h2:before {
	right: -80px;
}

.title h2:after {
	left: -80px;
}

footer,
footer .copyright {
	text-align: center;
}

ul.quicklink {
	margin: 20px 0;
}


}


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

.wrap-fluid {
	padding: 0 15px;
}



/*----- 頁碼 -----*/
.page {
	padding-top: 43px;
}



}



/*480*/
@media (max-width: 480px){
footer .copyright a {
	display: block;
}




}
