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

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


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

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: #97ca20;  
	text-decoration: none; 
}

img { 
	max-width: 100%; 
}

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

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: 1450px;
	margin: 0 auto;
	padding: 0 15px;
}

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

::selection {
	color: #fff;
	background-color: #97ca20; 
}



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

header ul.contactList {
	height: 30px;
	padding: 0 20px;
	background-color: #262626;
	text-align: right;
}

header ul.contactList li {
	font-size: 13px;
	color: #fff;
	display: inline-block;
	margin-left: 30px;
	line-height: 30px;
}

header ul.contactList li i {
	font-size: 12px;
	margin-right: 6px;
}

header ul.contactList li span {
	color: #a0da17;
}

header .navWrap {
	background-color: rgba(0, 0, 0, 0.6);
}

header .logo {
	float: left;
	display: block;
	width: 299px;
	height: 58px;
}

/*
header .logo a {
	display: block;
	background: url(../images/en/logo.png) no-repeat center center;
	background-size: cover;
	width: 373px;
	min-height: 85px;
	text-indent: -9999px;
}
*/
	

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

header nav > ul.menu {
}

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

header nav > ul.menu > li.drop-down::after {
	content: '\f107';
    font-family: FontAwesome;
    font-size: 12px;
	color: rgba(255, 255, 255, 0.5);
    display: inline-block;
    margin-left: 5px;
	vertical-align: bottom;
}

header nav > ul.menu > li.drop-down > a {
	display: inline-block;
}

header nav > ul.menu > li > a {
	color: #fff;
	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: #97ca20;
}

header nav > ul.menu > li.current > a {
	color: #97ca20;
}

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(151, 202, 32, 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: 50%;
	width: 200px;
	visibility: hidden;
	padding: 0;
	margin-left: -100px;
	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 {
	top: 83px;
	margin-top: -25px;
	opacity: 1;
	visibility: visible;
	z-index: 100;
}
nav .dropdown-container li {
}
nav .dropdown-container li a {
	padding: 10px 25px;
	font-size: 14px;
	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: #90c514;
}


.mobile-menu {
	display: none;
}



/* language */
.language {
	float: right;
	color: #e0e0e0;
	position: relative;
	display: block;
	margin-left: 35px;
    cursor: pointer;
    transition: all .5s;
	font-family: "Roboto", sans-serif, "微軟正黑體";
	line-height: 54px;
}

.language span {
	position: relative;
    display: inline-block;
	font-size: 13px;
    z-index: 10;
    cursor: pointer;
}

.language span::after {
	content: '\f0d7';
    font-family: FontAwesome;
    font-size: 12px;
    display: inline-block;
    margin-left: 7px;
    transition: all .5s;
}

.language:hover span::after {
    -webkit-transform: rotateX(-180deg);
    transform: rotateX(-180deg);
}

.language ul {
    position: absolute;
    left: -10%;
    top: 45px;
    width: 120%;
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
    border: 1px solid #eee;
    box-shadow: 0 5px 10px rgba(60, 60, 60, 0.1);
}

.language:hover ul {
    opacity: 1;
    visibility: visible;
    top: 58px;
}

.language ul li + li a,
.m_lang ul li + li a {
    border-top: 1px solid #eee;
}

.language ul li a,
.m_lang ul li a {
    display: block;
	font-size: 13px;
	color: #444;
	text-align: center;
    padding: 7px 0;
    background-color: rgba(255, 255, 255, 0.75);
	line-height: 22px;
}

.language ul li:hover a,
.m_lang ul li:hover a {
	color: #fff;
    background-color: rgba(60, 60, 60, 1);
}

.searchIcon {
	float: right;
	font-size: 20px;
	color: #efefef;
	margin: 13px 0 0 35px; 
}



/*----- search 彈出畫面 -----*/
.pop-up {
	position: fixed;
	z-index: 1001;
	left: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	background: rgba(0, 0, 0, 0.87);
	display: none;
}

.pop-up .inner {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.searchArea .inner {
	width: 500px;
	text-align: center;
}

.searchArea select {
	height: 35px;
	color: #fff;
	margin-bottom: 35px;
	border: 1px solid #666;
	background: rgba(0, 0, 0, 0.50);
}

.searchArea input {
	width: 82%;
	height: 35px;
	padding-bottom: 8px;
	line-height: 35px;
	background: none;
	border: none;
	border-radius: 0;
	border-bottom: 1px solid #ddd;
	color: #fff;
	vertical-align: middle;
}

.searchArea input:focus {
	outline: none;
}

.searchArea button {
	border: none;
	background-color: transparent;
	cursor: pointer;
}

.searchArea button i {
	font-size: 22px;
	color: #ddd;
	vertical-align: middle;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.searchArea button:hover i {
	color: #97ca20;
}

.btnClose {
	position: absolute;
	right: 15px;
	top: 15px;
	display: block;
	width: 40px;
	height: 40px;
	background: #000;
	padding: 10px;
	box-sizing: border-box;
	transition: all .5s;
}

.btnClose:before, .btnClose:after {
	content: '';
	position: absolute;
	top: 50%;
	width: 60%;
	height: 1px;
	background: #fff;
}

.btnClose:before {
	left: 8px;
	transform: rotate(45deg);
}

.btnClose:after {
	right: 8px;
	transform: rotate(-45deg);
}



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

/*.bannerTitle:after{
	content: " ";
	display: block;
	width: 60px;
	height: 2px;
	background: rgba(255, 255, 255, 0.6);
	position: absolute;
	bottom: -15px;
	left: 50%;
	margin-left: -30px;
} */



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

.leftArea {
	width: 19%;
	float: left;
}

.rightArea {
	width: 77%;
	float: right;
	min-height: 500px;
}

h3.leftTitle {
	color: #555;
	font-size: 28px;
	font-weight: 400;
	padding-left: 14px;
	margin-bottom: 12px;
	position: relative;
	line-height: 36px;
	font-family: 'Tauri', 微軟正黑體, 新細明體, sans-serif;
}

h3.leftTitle:after {
	content: " ";
	display: block;
	width: 3px;
	height: 26px;
	background-color: #97ca20;
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -14px;
}


.titleBox {
	margin: -3px 0 40px;
	border-bottom: 1px solid #dbdbdb;
}

.titleBox h2 {
	color: #222;
	font-size: 25px;
	font-weight: 500;
	padding-bottom: 7px;
	margin-bottom: -1px;
	display: inline-block;
	border-bottom: 3px solid #97ca20;
	font-family: 'Tauri', 微軟正黑體, 新細明體, sans-serif;
}

.title {
	font-size: 34px;
	color: #0f0f0f;
	font-weight: normal;
	margin: 10px 0 27px;
	position: relative;
	text-align: center;
	font-family: 'Tauri', 微軟正黑體, 新細明體, sans-serif;
}

.title span {
	color: #82b50b;
}

.title::after{
	content: " ";
	display: block;
	width: 1px;
	height: 45px;
	position: absolute;
	background-color: #cacaca;
	left: 50%;
	top: -50px;
	transform: translateX(-50%);
}


.shapeLeft {
	position: absolute;
	left: 0;
	top: 210px;
	z-index: -2;
}

.shapeRight {
	position: absolute;
	right: 0;
	bottom: 3px;
	z-index: -1;
}

.m_submenuList {
	display: none;
}



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

ul.subMenu li a {
	font-size: 15px;
	color: #fff;
	padding: 8px 12px 8px 30px;
	margin-bottom: 2px;
	display: block;
	background-color: #555;
	position: relative;
}

ul.subMenu li a:hover,
ul.subMenu li.active > a  {
	background-color: #8fc610;
}

ul.subMenu li a:before {
	content: '\f0da';
    font-family: FontAwesome;
    font-size: 13px;
	position: absolute;
	top: 10px;
	left: 12px;
}

ul.subMenu li ul {
}

ul.subMenu li ul li a {
	font-size: 15px;
	color: #515151;
	padding: 8px 5px 8px 30px;
	margin-bottom: 0;
	display: block;
	border-bottom: 1px dotted #bfbfbf;
	background-color: transparent;
}

ul.subMenu li ul li:last-child a {
	border-bottom: none;
}

ul.subMenu li ul li a:hover,
ul.subMenu li ul li.active > a  {
	color: #7bad06;
	background-color: transparent;
}

ul.subMenu li ul li a:before {
	display: none;
}



.m_classLink {
	display: none;
}

ul.subLink {
	display: none;
}



/*----- 網站導覽bread -----*/
.breadBox {
	padding: 7px 0;
	background-color: #d5d5d5;
}

.bread {
	font-size: 13px;
	color: #777;
	line-height: 20px;
}

.bread a {
	color: #777;
}

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

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

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



/*----- 頁碼 -----*/
.page {
	padding-top: 60px;
	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 {
	background: url(../images/tw/footer-bg.jpg) no-repeat center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

.footerInfo {
	padding: 40px 0 48px;
}

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

.footerInfo > .wrap > .row > .col-md-3 {
	flex: 0 0 20%;
    max-width: 20%;
	padding-left: 50px;
	padding-right: 50px;
	border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.footerInfo > .wrap > .row > .col-md-3:first-child {
    flex: 0 0 30%;
    max-width: 30%;
	border-left: none;
} 

.footerInfo > .wrap > .row > .col-md-3:last-child {
    flex: 0 0 30%;
    max-width: 30%;
} 

.footerInfo > .wrap > .row > .col-md-3 > figure {
	padding-right: 25px;
	text-align: right;
}

.footerInfo > .wrap > .row > .col-md-3 > figure > img {
	max-width: 100%;
	height: auto;
}

.headline {
	font-size: 15px;
	color: #fff;
	margin-bottom: 13px;
}

ul.quicklink li {
	display: block;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
	margin-top: 6px;
	line-height: 23px;
}

ul.quicklink li a {
	color: rgba(255, 255, 255, 0.7);
}

ul.quicklink li a:hover {
	color: #97ca20;
}

footer .copyright {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.5);
	padding-bottom: 25px;
	position: relative;
	line-height: 22px;
	text-align: center;
}

footer .copyright a {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.5);
	margin-left: 10px;
}

footer .copyright a:hover {
	color: #01a485;
}




/*---------------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;
    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;
	-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    filter: alpha(opacity=80);
    opacity: 0.8;
    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 {
	background: #111;
	filter: alpha(opacity=100);
    opacity: 1;
}

.gotop i,
.gotop:hover i,
.gotop:focus i {
	color: #fff;
    line-height: 48px;
}




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

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

.language {
	margin-left: 20px;
}

.searchIcon {
	margin-left: 15px; 
}

.shapeLeft {
	display: none;
}



}


@media (max-width: 1199px){
.wrap-fluid {
	padding: 0 20px;
}

header {
	display: none;
}

.bannerArea {
	margin-top: 60px;
}

.footerInfo > .wrap > .row > .col-md-3 {
	flex: 0 0 23%;
    max-width: 23%;
}

.footerInfo > .wrap > .row > .col-md-3:first-child,
.footerInfo > .wrap > .row > .col-md-3:last-child {
    flex: 0 0 27%;
    max-width: 27%;
} 

.footerInfo > .wrap > .row > .col-md-3 > figure {
	padding-right: 0;
}



/*----- 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: #262626;
	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: #fff;
    -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: #fff;
    -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: 40px;
}
.mobile-menu .controlBox .m_logo img {
	display: block;
	max-height: 60px;
}

.mobile-menu .controlBox .m_lang {
	float: right;
	margin: 20px 20px 0 0;
	position: relative;
}
.mobile-menu .controlBox .m_lang i {
	font-size: 18px;
	color: #efefef;
	cursor: pointer;
}
.mobile-menu .controlBox .m_lang ul {
	width: 100px;
	position: absolute;
	top: 28px;
	right: 0;
	border: 1px solid #eee;
    box-shadow: 0 5px 10px rgba(60, 60, 60, 0.1);
}
.mobile-menu .controlBox .m_lang ul li a {
    padding: 5px 0;
	-webkit-transition: none;
	-moz-transition: none;
	-o-transition: none;
	transition: none;
}

.searchIcon {
	font-size: 21px;
	margin: 15px 20px 0 0; 
}



/*----- 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(120, 165, 15, 0.95);
    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.3);
}
.mobile-menu ul.nav li {
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.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.25);
}
.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.25);
}



}


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

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

.leftArea {
	width: 100%;
	float: none;
}

.rightArea {
	width: 100%;
	float: none;
	padding-left: 0;
	border-left: none;
}

h3.leftTitle {
	display: none;
}

.title {
	margin-top: 30px;
}

ul.subMenu {
	display: none;
}

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

.footerInfo > .wrap > .row > .col-md-3 {
	flex: 0 0 25%;
    max-width: 25%;
	padding-left: 20px;
	padding-right: 20px;
}

.footerInfo > .wrap > .row > .col-md-3:first-child,
.footerInfo > .wrap > .row > .col-md-3:last-child {
    flex: 0 0 25%;
    max-width: 25%;
} 

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



/*----- 手機產品分類選單 -----*/
.m_submenu {
	margin-bottom: 30px;
}
.m_classLink {
	display: block;
	position: relative;
}
.m_classLink a.head {
	position: relative;
	display: block;
	font-size: 15px;
	font-weight: normal;
	color: #fff;
	padding: 8px 15px;
	border: 1px solid #8fc610;
	background: #8fc610;
}
.m_classLink a.head i {
	display: block;
	font-size: 15px;
	position: absolute;
	right: 10px;
	top: 50%;
	margin-top: -7px;
}
.m_classLink a.head:hover {
	color: #fff;
}
.m_classLink ul {
	padding: 0;
	list-style: none;
	display: none;
	width: 100%;
	background: #fff;
	border: 1px solid #a6d240;
	position: absolute;
	left: 0;
	top: 100%;
	z-index: 99;
	box-sizing: border-box;
}
.m_classLink ul li {
	border-bottom: 1px solid #e0edc3;
	position: relative;
}
.m_classLink ul li:last-child {
	border-bottom: none;
}
.m_classLink ul li a {
	position: relative;
	display: block;
	padding: 14px 15px 14px 40px;
	font-size: 15px;
	color: #555;
	box-sizing: border-box;
	transition: all .5s;
}
.m_classLink ul li > a:after {
	content: '\f0da';
	font-family: "FontAwesome";
	position: absolute;
	font-size: 13px;
	left: 18px;
	top: 16px;
}
.m_classLink ul li > a:hover,
.m_classLink ul li > a.current {
	background: #e6f4c8;
}

.m_classLink ul.subLink li dl {
	display: none;
	padding: 5px 0 0;
}
.m_classLink ul.subLink li dl dt a {
	display: block;
	padding: 13px 15px 5px 40px;
	font-size: 14px;
	color: #555;
}
.m_classLink ul.subLink li dl dt a.current,
.m_classLink ul.subLink li dl dt a:hover {
	color: #7bad06;
	text-decoration: underline;
}
		

}


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

.bannerTitle {
	font-size: 22px;
}

.titleBox h2 {
	font-size: 20px;
}

.footerInfo > .wrap > .row > .col-sm-4:first-child {
	flex: 0 0 100%;
    max-width: 100%;
	margin-bottom: 40px;
}

.footerInfo > .wrap > .row > .col-sm-4,
.footerInfo > .wrap > .row > .col-sm-4:last-child {
	flex: 0 0 33.333333%;
    max-width: 33.333333%;
	padding-left: 20px;
	padding-right: 20px;
	border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.footerInfo > .wrap > .row > .col-sm-4:nth-child(2) {
	border-left: none;
}

.footerInfo > .wrap > .row > .col-md-3 > figure {
	padding-right: 0;
	text-align: center;
}



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



}


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

.searchArea .inner {
	width: 85%;
	top: 15%;
}

.titleBox {
	margin-bottom: 33px;
}

.title {
	font-size: 27px;
	margin: -5px 0 15px;
}

.title:after {
	display: none;
}

footer {
	background-image: none;
	background-color: #30459f;
}

.footerInfo {
	padding: 35px 0 40px;
}

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

.footerInfo > .wrap > .row > .col-sm-4,
.footerInfo > .wrap > .row > .col-sm-4:first-child,
.footerInfo > .wrap > .row > .col-sm-4:last-child {
	flex: 0 0 100%;
    max-width: 100%;
	margin-bottom: 35px;
	/*padding-left: 0;
	padding-right: 0;*/
	border-left: none;
}

.footerInfo > .wrap > .row > .col-sm-4:last-child {
	margin-bottom: 0;
}


}



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



}
