@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=Vollkorn+SC:wght@400;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Brygada+1918&display=swap");


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

a {
	cursor: pointer;
	color: #242424;
	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: #b47f2a;  
	text-decoration: none; 
}

img { 
	max-width: 100%; 
}

img[usemap] {
	border: none;
	height: auto;
	max-width: 100%;
	width: auto;
}

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

p {
	margin: 0;
	line-height: 2.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: 16px;
}

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 15px;
	position: relative;
}

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

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

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


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

header .logo {
	float: left;
	display: block;
	width: 343px;
	height: 80px;
	margin-left: 30px;
}

/*
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;
	position: relative;
	font-size: 18px;
	padding: 0 36px;
	line-height: 80px;
}

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: #bd9658;
}

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

header nav > ul.menu > li > a::after {
	content: '';
	position: absolute;
	display: block;
	width: 0;
	height: 3px;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #bd9658;
	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: -9999px;
	width: 200px;
	visibility: hidden;
	padding: 0;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
	background: #fff;
	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: 101px;
	/*transform: translateX(-50%);*/
	margin-top: -25px;
	opacity: 1;
	visibility: visible;
	z-index: 100;
}
nav .dropdown-container li {
	padding: 0 20px;
	text-align: left;
}
nav .dropdown-container li a {
	padding: 12px 0;
	font-size: 15px;
	color: #333;
	display: block;
	position: relative;
	border-bottom: 1px solid #e5e5e5;
	line-height: 23px;
	transition: .3s all ease;
}
nav .dropdown-container li:last-child a {
	border-bottom: none;
}

nav .dropdown-container li a::after {
	content: '\f105';
	font-family: 'FontAwesome';
	position: absolute;
	top: 50%;
	left: 0;
	font-size: 14px;
	color: #008cd6;
	/*line-height: 15px;*/
	opacity: 0;
    visibility: hidden;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	transition: .3s all ease;
}

nav .dropdown-container li a:hover,
nav .dropdown-container li.active > a {
	color: #008cd6;
	padding-left: 22px;
}

nav .dropdown-container li a:hover::after {
	opacity: 1;
    visibility: visible;
}


a.onlineTool {
	float: right;
	width: 130px;
	height: 80px;
	font-size: 16px;
	color: #fff;
	padding-top: 12px;
	margin-left: 60px;
	background-color: #bd9658;
	text-align: center;
}

a.onlineTool i {
	font-size: 26px;
	display: block;
	margin-bottom: 8px;
}

a.onlineTool:hover {
	opacity: 0.55;
    -ms-filter: alpha(Opacity=55);
    filter: alpha(Opacity=55);
}


.mobile-menu {
	display: none;
}



/*----- 聯絡我們 彈出畫面 -----*/
.pop-up {
	position: fixed;
	z-index: 9999;
	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%);
}

.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: 2px;
	background: #fff;
}

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

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

.photoArea .inner {
	width: 100%;
	text-align: center;
}



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



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

.title {
	font-size: 36px;
	font-weight: bold;
	margin-bottom: 35px;
	position: relative;
}

.title img {
	width: 34px;
	margin-right: 15px;
	vertical-align: top;
}

.grayBg {
	background-color: #d7d7d7;
}

.darkgrayBg {
	background-color: #5c5c5c;
}

.lineHeight {
	line-height: 2.0;
}

a.reserveBtn {
	color: #ddd;
	margin-top: 50px;
	display: inline-block;
}

a.reserveBtn i {
	width: 48px;
	height: 48px;
	font-size: 30px;
	color: #bd9658;
	margin-left: 30px;
	position: relative;
	border-radius: 99em;
	border: 1px solid #bd9658;
	line-height: 45px;
	text-align: center;
	vertical-align: middle;
}

a.reserveBtn i::after {
	content: '';
	position: absolute;
	width: 44px;
	height: 2px;
	top: 50%;
	left: -22px;
	margin-top: -1px;
	z-index: 2;
	background-color: #bd9658;
}

a.reserveBtn:hover {
	color: #bd9658;
}


.m_submenuList {
	display: none;
}



/*----- 子選單區 -----*/
ul.subMenu {
	margin-bottom: 50px;
}

ul.subMenu li {
	width: 200px;
	height: 44px;
	display: inline-block;
	margin: 0 17px 10px 0;
}

ul.subMenu li a {
	font-size: 17px;
	color: #fff;
	font-weight: bold;
	display: block;
	text-align: center;
	line-height: 44px;
	background-color: #bd9658; 
}

ul.subMenu li:hover, 
ul.subMenu li.active {
	 
}

ul.subMenu li:hover a, 
ul.subMenu li.active a {
	color: #000;
	border: 1px solid #626262;
	background-color: #fff;
}


.m_classLink {
	display: none;
}

ul.subLink {
	display: none;
}



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

.bread {
	font-size: 15px;
	color: #808080;
}

.bread a {
	color: #808080;
}

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

.bread i {
	font-size: 14px;
	display: inline-block;
	margin: 0 10px;
}

.bread i.fa-home {
	margin: 0 6px 0 0;
}

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



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

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

.page li {
	display: inline-block;
	
}

.page li > a {
	width: 40px;
	height: 40px;
	font-size: 13px;
	color: #1f1f1f;
	display: inline-block;
	margin: 0 3px;
	background-color: #fff;
	border-radius: 99em;
	line-height: 40px;
}

.page li > a:hover,
.page li > a:focus,
.page li > a.current {
	color: #fff;
	background-color: #008cd6;
}

.page li > a span {
	font-size: 15px;
	line-height: 40px;
	vertical-align: middle;
}



/*----- 頁尾資訊 -----*/
footer {
	color: #fff;
	padding: 50px 0;
	background-color: #000;
}

.footerLogo {
	margin-top: -10px;
}

.footerInfo {
	font-size: 16px;
	color: #fff;
	margin-top: 9px;
	line-height: 2.1;
}

.footerInfo a {
	color: #fff;
}

.footerInfo a:hover {
	color: #b47f2a;
}

.footerQrcode {
	text-align: right;
}

.copyright {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.45);
	margin-top: 35px;
	line-height: 1.8;
	text-align: center;
}

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

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



/*---------------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: 30px;
    right: 14px;
	padding-top: 1px;
    display: none;
    text-align: center;
    color: #fff;
    background: #484848;
    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: #bd9658;
	/*filter: alpha(opacity=100);
    opacity: 1;*/
}

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

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

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




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

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

a.onlineTool {
	width: 94px;
	margin-left: 25px;
}

}


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

header nav > ul.menu > li {
	font-size: 17px;
	padding: 0 15px;
}

.footerInfo {
	margin-top: 0;
}

}


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

header {
	display: none;
}

.bannerArea {
	margin-top: 60px;
}

footer {
	/*padding-top: 40px;*/
}

.footerLogo {
	margin-bottom: 20px;
}

.footerLogo img {
	width: 310px;
}



/*----- 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;
	position: fixed;
	width: 100%;
	height: 100%;
	padding-bottom: 60px;
	top: 0;
	left: 0;
	z-index: 10;
}
.mobile-menu .controlBox { 
	background-color: #000;
	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: 55px;
}
.mobile-menu .controlBox .m_logo img {
	display: block;
	max-width: 200px;
}

a.onlineTool {
	width: 60px;
	height: 60px;
	padding-top: 0;
}

a.onlineTool i {
	font-size: 24px;
	margin-bottom: 0;
	line-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: #aa8447;
    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);
}



/*----- 手機產品分類選單 -----*/
.m_submenuList {
	display: block;
	width: 100%;
}

.m_submenuHead {
	width: 100%;
	padding: 12px 20px;
	font-size: 16px;
	color: #fff;
	font-weight: bold;
	cursor: pointer;
	position: relative;
	background: #008cd6 url(../images/pro_down.png) center right no-repeat;
}

.m_submenuBody {
	width: 100%;
	height: auto;
	overflow: hidden;
	font-size: 15px;
	background: #f5f5f5;
	box-sizing: border-box;
}

.m_submenuBody a {
	display: block;
	padding: 14px 15px 14px 40px;
	position: relative;
	color: #333;
	/*background: #f5f5f5;*/
	border-bottom: 1px solid #dedede;
}

.m_submenuBody a:hover {
	background: #d2eefd;
}

.m_submenuBody a:before{
	content: '\f0da';
	font-family: "FontAwesome";
	position: absolute;
	font-size: 13px;
	left: 23px;
	top: 16px;
}


}


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

.footerQrcode {
	margin-top: 32px;
	text-align: left;
}


}


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

body {
	font-size: 16px;
}

.wrap,
.wrap-small {
	padding: 0 5.5%;
}

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

.title {
	font-size: 30px;
	font-weight: normal;
	margin-bottom: 28px;
}

.title img {
	width: 29px;
}

ul.subMenu {
	margin: 0 -6px 35px 0;
}

ul.subMenu li {
	width: 155px;
	margin-right: 6px;
}

ul.subMenu li a {
	font-size: 16px;
}

.bread {
	font-size: 14px;
}



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

}
