@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@500&display=swap");
@import url("https://fonts.googleapis.com/css?family=Roboto&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville&display=swap");


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

a {
	cursor: pointer;
	color: #5b5a54;
	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: #5a7aa3;  
	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: 1400px;
	margin: 0 auto;
	padding: 0 50px;
	position: relative;
}

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

/*::selection {
	color: #fff;
	background-color: #008059; 
}*/



/*----- header -----*/
header {
	width: 100%;
	height: 75px; 
	position: fixed;
	top: 0; 
	left: 0;
	z-index: 1000;
}

header.active {
    background-color: #fff;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);  /* 往右偏移0往下偏移2px ，5px的模糊半徑 */
}

header.active nav > ul.menu > li > a,
header.active ul.contactLink > li,
header.active ul.contactLink > li > a {
	color: #909eac;
}

header.active .language ul li a {
	color: #213e59;
}

header .logo {
	float: left;
	display: block;
	width: 160px;
	height: 75px;
}

	

/*----- nav -----*/
header nav {
	float: right;
	margin-right: 60px;
}

header nav > ul.menu {
}

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

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

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

header nav > ul.menu > li.current > a {
	color: #213e59;
}

header nav > ul.menu > li > a::after {
	content: '';
	position: absolute;
	display: block;
	width: 0;
	height: 2px;
	left: 0;
	right: 0;
	bottom: 16px;
	background-color: #213e59;
	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: fixed;
	top: 70px;
	left: 0;
	width: 100%;
	padding: 50px 0;
	box-shadow: 0 5px 10px rgba(60, 60, 60, 0.1);
	background: #fff;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	z-index: 100;
	transition: opacity .4s ease, visibility .4s ease;
	transition-delay: .7s;
}
nav > ul.menu > li:hover > .dropdown-container {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}
nav .nav-main {
	width: 100%;
	padding: 0 10%;
	display: flex;
	justify-content: center;
}
nav .nav-section {
	margin-right: 150px;
	text-align: left;
}
nav .nav-section:last-child {
	margin-right: 0;
}
nav .nav-section h2 {
	font-size: 20px;
	color: #333;
	font-weight: bold;
	border-left: 2px solid #01aa77;
	padding: 4px 0 5px 16px;
}
nav .nav-section ul {
	border-left: 1px solid #dcdcdc;
	padding: 20px 0 20px 16px;
}
nav .nav-section li:not(:last-child) {
	margin: 0 0 15px;
}

nav .nav-section li a {
	font-size: 15px;
	color: #888;
	font-weight: bold;
}

nav .nav-section li a:hover,
nav .nav-section li.active > a {
	color: #01aa77;
}


.mobile-menu {
	display: none;
}



/* 右上icon & language */
header ul.contactLink {
	float: right;
}

header ul.contactLink > li {
	float: left;
	position: relative;
	font-size: 21px;
	color: #fff;
	padding: 0 15px;
    cursor: pointer;
    transition: all .5s;
	line-height: 75px;
}

header ul.contactLink > li > a {
	color: #fff;
}

header ul.contactLink > li > a:hover,
header ul.contactLink > li:hover {
	color: #213e59;
}

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

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

header .language ul li {
	float: none;
	padding: 0;
}

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

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

header .language ul li:hover a,
.m_lang ul li:hover a {
	color: #fff;
    background-color: rgba(90, 122, 163, 0.9);
}



/*----- banner -----*/
.bannerArea {
	clear: both;
	position: relative;
	overflow: hidden;
	color: #fff;
	font-family: 'Libre Baskerville', 微軟正黑體, 新細明體, sans-serif;
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

.bannerArea .wrap {
	height: 465px;
}

.bannerArea .container {
	width: 40%;
	position: absolute;
	top: 50%;
	padding: 0;
	transform: translateY(-40%);
}

.bannerArea h3 {
	font-size: 33px;
	font-weight: bold;
}




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

.title {
	font-size: 33px;
	color: #213e59;
	position: relative;
	text-transform: uppercase;
	font-family: 'Libre Baskerville', 微軟正黑體, 新細明體, sans-serif;
}

.subTitle {
	font-size: 20px;
	color: #000;
	margin-top: 16px;
	position: relative;
	text-transform: uppercase;
}

.m_submenuList {
	display: none;
}



/*----- 子選單區 -----*/
.submenuArea {
	background-color: #34b18b;
}

ul.subMenu {
	height: 60px;
	margin: 0 auto;
	display: table;
	text-align: center;
}

ul.subMenu li {
	float: left;
	position: relative;
}

ul.subMenu li h3 a {
	width: 270px;
	font-size: 18px;
	color: #fff;
	position: relative;
	display: block;
	line-height: 60px;
}

ul.subMenu li.active h3 a {
	background: -webkit-linear-gradient(180deg,rgba(24,162,120,1) 0%,rgba(0,128,89,1) 100%);
	background: -moz-linear-gradient(180deg,rgba(24,162,120,1) 0%,rgba(0,128,89,1) 100%);
	background: linear-gradient(180deg,rgba(24,162,120,1) 0%,rgba(0,128,89,1) 100%);
}


.m_classLink {
	display: none;
}

ul.subLink {
	display: none;
}



/*----- 網站導覽bread -----*/
.bread {
	font-size: 14px;
	margin-top: 25px;
	line-height: 22px;
}

.bread a {
	color: rgba(255, 255, 255, 0.8);
}

.bread a:hover {
	color: #34b18b;
}

.bread i {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.5);
	display: inline-block;
	margin: 0 10px;
	vertical-align: middle;
}

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



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

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

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

.page li > a {
	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;
	background-color: #333;
	border: 1px solid #333;
}

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



/*----- 頁尾資訊 -----*/
footer {
	background-color: #192f53;
}

.footerInfo {
	color: #fff;
	padding: 50px 0;
}

/*.footerInfo > .wrap > .row {
	margin-left: -50px;
	margin-right: -50px;
}*/

.footerInfo > .wrap > .row > .col-lg-8 {
	padding-left: 50px;
} 

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

ul.companyInfo {
}

ul.companyInfo li {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.9;
}

ul.companyInfo li a {
	color: rgba(255, 255, 255, 0.9);
}

ul.companyInfo li a:hover {
	color: #5c7baf;
}

ul.companyInfo li.infoItem span {
	font-size: 20px;
	color: #5c7baf;
	margin-right: 8px;
	vertical-align: text-bottom;
}

a.footerBtn {
	font-size: 15px;
	color: #192f53;
	display: inline-block;
	padding: 9px 30px 7px;
	margin-top: 8px;
	position: relative;
	border: 1px solid #ccd1d9; 
	background-color: #ccd1d9;
	text-align: center;
}

a.footerBtn:hover {
	color: #ccd1d9;
	background-color: #192f53;
}

footer .copyright {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.5);
	padding: 14px 0;
	position: relative;
	border-top: 1px solid rgba(255, 255, 255, 0.4);
	line-height: 22px;
	text-align: center;
}

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

footer .copyright a:hover {
	color: #fff;
}



/*----- cookie -----*/
.cookie {
	width: 100%;
	position: fixed;
	bottom: 0; 
	left: 0;
	font-size: 14px;
	color: #fff;
	padding: 25px 20px;
	z-index: 999;
	background-color: rgba(0, 0, 0, 0.88);
	text-align: center;
}

.cookie p {
	width: auto;
	display: inline-block;
}

.cookie a {
	color: #fff;
	text-decoration: underline;
}

.cookie a:hover {
	text-decoration: none;
}

a.acceptBtn {
	width: 100px;
	height: 36px;
	color: #fff;
	display: inline-block;
	margin-left: 25px;
	border-radius: 4px;
	border: 1px solid #fff;
	text-align: center;
	line-height: 34px;
	text-decoration: none;
}

a.acceptBtn:hover {
	border: 1px solid #0346a9;
	background-color: #0346a9;
}



/*----- 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: 55px;
    height: 55px;
    position: fixed;
    bottom: 50px;
    right: 14px;
    display: none;
	padding-top: 3px;
    text-align: center;
    color: #fff;
    background: #7690af;
    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: #365880;
	/*filter: alpha(opacity=100);
    opacity: 1;*/
}

.gotop i {
	font-size: 12px;
}

.gotop span {
	font-size: 14px;
	display: block;
	line-height: 1.0;
}

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




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

}


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

a.footerBtn {
	padding-left: 19px;
	padding-right: 19px;
}

a.acceptBtn {
	display: block;
	margin: 0 auto;
	margin-top: 15px;
}

}


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

header {
	display: none;
}

.bannerArea {
	margin-top: 60px;
}

.bannerArea .wrap {
	height: 310px;
}

.bannerArea .container {
	transform: translateY(-50%);
}

.bannerArea h3 {
	font-size: 26px;
}

.title {
	font-size: 30px;
}

.submenuArea {
	display: none;
}

.footerInfo > .wrap > .row > .col-lg-8 {
	padding-left: 15px;
	margin: 25px 0;
} 

a.footerBtn {
	padding-left: 30px;
	padding-right: 30px;
}



/*----- 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: 999;
}
.mobile-menu .mask {	
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	padding-bottom: 60px;
	top: 0;
	left: 0;
	z-index: 10;
}
.mobile-menu a.main { 
	position: absolute;
    right: 0;
    top: 0;
    width: 55px;
    height: 60px;
    font-size: 20px;
    color: #fff;
    line-height: 60px;
	z-index: 1001;
    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 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 a.main span:before,
.mobile-menu 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 a.main span:before {
    top: -8px;
}
.mobile-menu a.main span:after {
    top: 8px;
}
.mobile-menu a.main.show span {
    background: transparent;
}
.mobile-menu a.main.show span:before,
.mobile-menu a.main.show span:after {
	top: 0;
	background: #fff;
}
.mobile-menu a.main.show span:before {
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
}
.mobile-menu a.main.show span:after {
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
}

.mobile-menu .controlBox { 
	background: #fff;
	position: relative;
	z-index: 99;
}
.mobile-menu .controlBox .m_logo {
	float: left;
	margin-left: 15px;
}
.mobile-menu .controlBox .m_logo img {
	display: block;
	max-height: 60px;
}
.mobile-menu .controlBox .m_lang {
	float: right;
	margin: 19px 62px 0 0;
	position: relative;
}
.mobile-menu .controlBox .m_lang span {
	font-size: 22px;
	color: #213e59;
	cursor: pointer;
}
.mobile-menu .controlBox .m_lang ul {
	width: 100px;
	position: absolute;
	left: 50%;
	top: 120%;
	transform: translateX(-50%);
	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;
}



/*----- mobile menu 內容 -----*/
.mobile-menu .hideBox { 
	position: fixed;
	left: 1000px;
    top: 0;
    bottom: 0;
    z-index: 101;
    width: 100%;
    padding: 60px 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    background-color: #213e59;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: all .8s;
    -o-transition: all .8s;
    transition: all .8s;
}
.mobile-menu .hideBox.show {
    left: 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);
}



/*----- 手機產品分類選單 -----*/
.m_submenu {
	
}
.m_classLink {
	display: block;
	position: relative;
}
.m_classLink a.head {
	width: 100%;
	position: relative;
	display: block;
	font-size: 15px;
	font-weight: normal;
	color: #fff;
	padding: 14px 16px;
	background: #34b18b;
}
.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 #34b18b;
	border-top: none;
	position: absolute;
	left: 0;
	top: 100%;
	z-index: 99;
	box-sizing: border-box;
}
.m_classLink ul li {
	border-bottom: 1px solid #eaeaea;
	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: #333;
	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: #acdfcf;
}

.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: #444;
}
.m_classLink ul.subLink li dl dt a.current,
.m_classLink ul.subLink li dl dt a:hover {
	color: #0b9067;
	text-decoration: underline;
}

}


/*767*/
@media (max-width: 767px){
.mainArea {
	padding: 65px 0;
}

}


/*575*/
@media (max-width: 575px){
/*body {
	font-size: 15px;
}*/

.bannerArea .wrap {
	height: 180px;
}

.bannerArea .container {
	width: 60%;
}

.bannerArea h3 {
	font-size: 17px;
	font-weight: normal;
}

.bread {
	display: none;
}

.title {
	font-size: 24px;
}

.subTitle {
	font-size: 18px;
}

.footerInfo > .wrap > .row > .col-lg-8 > .row > .col-sm-3 {
	margin-top: 15px;
} 



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

}

