@import url("../css/icomoon.css");
/*------------------------------------*\
    變數樣式 _var.scss
\*------------------------------------*/
/*------------------------------------*\
    _base.scss 常會套用的樣式
\*------------------------------------*/
/* box-sizing 屬性，IE8+ 之後就開始支援 */
/* line 7, ../sass/_base.scss */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 13, ../sass/_base.scss */
html {
  -webkit-font-smoothing: antialiased !important;
  /* 在有動畫效果時，某些元素上的文字粗細會被改變。 */
  text-rendering: optimizelegibility;
  /* 瀏覽器運算時易讀性優先，會啟用字距調整和連字。 */
  font-family: Arial, "微軟正黑體", "新細明體", sans-serif, Helvetica, "LiHei Pro";
  font-size: 13.008px;
}

/* line 20, ../sass/_base.scss */
body {
  line-height: 1.8;
}

/* 連結效果 */
/* line 25, ../sass/_base.scss */
a {
  -webkit-transition: color 0.25s ease-out;
  -moz-transition: color 0.25s ease-out;
  -ms-transition: color 0.25s ease-out;
  -o-transition: color 0.25s ease-out;
  transition: color 0.25s ease-out;
}

/* line 34, ../sass/_base.scss */
.font-bigger {
  font-size: 20px;
}

/* line 35, ../sass/_base.scss */
.base-font {
  font-size: 16px;
}

/* line 36, ../sass/_base.scss */
.font-large {
  font-size: 15.008px;
}

/* line 37, ../sass/_base.scss */
.font-middle {
  font-size: 13.008px;
}

/* line 38, ../sass/_base.scss */
.font-small {
  font-size: 12px;
}

/* line 39, ../sass/_base.scss */
.font-remark {
  font-size: 11.008px;
}

/* 圖片框線樣式 */
/* line 42, ../sass/_base.scss */
.imgBorder_13px {
  background-color: #FFFFFF;
  padding: 13px;
  border: 1px solid #c3c3c3;
  /*圖片內陰影*/
  -moz-box-shadow: inset 0px 0px 39px rgba(40, 40, 40, 0.3);
  -webkit-box-shadow: inset 0px 0px 39px rgba(40, 40, 40, 0.3);
  box-shadow: inset 0px 0px 39px rgba(40, 40, 40, 0.3);
}

/* line 52, ../sass/_base.scss */
.imgBorder_8px {
  background-color: #FFFFFF;
  padding: 8px;
  border: 1px solid #c3c3c3;
  text-align: center;
  overflow: hidden;
  /*圖片內陰影*/
  -moz-box-shadow: inset 0px 0px 39px rgba(40, 40, 40, 0.3);
  -webkit-box-shadow: inset 0px 0px 39px rgba(40, 40, 40, 0.3);
  box-shadow: inset 0px 0px 39px rgba(40, 40, 40, 0.3);
}

/* 浮動靠左靠右樣式 */
/* line 66, ../sass/_base.scss */
.float-left {
  float: left;
  margin-right: 15px;
  margin-bottom: 10px;
}

/* line 72, ../sass/_base.scss */
.float-right {
  float: right;
  margin-left: 15px;
  margin-bottom: 10px;
}

/* line 77, ../sass/_base.scss */
.clearfloat {
  clear: both;
}

/* 分隔線樣式 */
/* line 82, ../sass/_base.scss */
.line {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #DFDFDF;
  margin-bottom: 20px;
  padding-bottom: 10px;
}

/* 特別標註 */
/* line 91, ../sass/_base.scss */
strong {
  color: #ca1f93;
  margin-right: 2px;
  margin-left: 2px;
  font-weight: bold;
}

/* line 97, ../sass/_base.scss */
.strong_orange {
  color: #FF6600;
}

/* line 100, ../sass/_base.scss */
.strong_bg_orange {
  color: #FFFFFF;
  background-color: #FF6600;
}

/* icon顏色 */
/* line 106, ../sass/_base.scss */
span.iconMargin-right-5px {
  margin-right: 5px;
}

/* line 109, ../sass/_base.scss */
span.iconColor_yellow {
  color: #fce434;
}

/* line 112, ../sass/_base.scss */
span.iconColor_orange {
  color: #FF6600;
}

/* clearfix：參考"變動欄高，float和clear合併使用.html" */
/* line 117, ../sass/_base.scss */
div#main:after {
  display: block;
  /* 說明2. 指定「display:block;」，變換成讓"父元素寬度"放到最大的"塊級元素" */
  clear: both;
  /* 說明3. 用clear屬性解除float */
  height: 0;
  visibility: hidden;
  content: ".";
  /* 說明1. 使用after虛擬元素和content屬性，然後在div container區塊後面產生行內區塊元素 */
}

/*------------------------------------*\
    重置css
\*------------------------------------*/
/* line 5, ../sass/_rest.scss */
body, div, ul, ol, li, h1, h2, h3, h4, h5, h6, form, input, button, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}

/* line 9, ../sass/_rest.scss */
img {
  border: 0;
}

/* line 10, ../sass/_rest.scss */
:focus {
  outline: 0;
}

/* line 11, ../sass/_rest.scss */
h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

/* line 12, ../sass/_rest.scss */
input, button, textarea, select, optgroup, option {
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
}

/* line 18, ../sass/_rest.scss */
code, kbd, samp, tt {
  font-size: 100%;
}

/*purpose To enable resizing for IE */
/*branch For IE6-Win, IE7-Win */
/* line 22, ../sass/_rest.scss */
input, button, textarea, select {
  *font-size: 100%;
}

/* line 23, ../sass/_rest.scss */
ol, ul, li {
  list-style: none;
}

/* line 24, ../sass/_rest.scss */
:link, :visited, ins {
  text-decoration: none;
}

/* line 25, ../sass/_rest.scss */
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}

/*HTML5 tag*/
/* line 28, ../sass/_rest.scss */
section, article, aside, footer, header, nav, main {
  display: block;
}

/*------------------------------------*\
    整體版面 _layout.scss
\*------------------------------------*/
/* line 5, ../sass/_layout.scss */
body {
  background-image: url(../images/bg.png);
}

/* line 8, ../sass/_layout.scss */
#wrapper {
  margin: 0 auto;
  width: 984px;
  background-color: #fff;
  border-radius: 0;
  font-family: Arial, "微軟正黑體", "新細明體", sans-serif, Helvetica, "LiHei Pro";
  position: relative;
  border: 10px solid rgba(255, 255, 255, 0.7);
  -webkit-border-radius: 0;
  /*-------For CSS3 陰影-------*/
  box-shadow: 4px 4px 12px 4px rgba(0, 0, 0, 0.2);
  /*-------For Firefox和Webkit  陰影-------*/
  -moz-box-shadow: 4px 4px 12px 4px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 4px 4px 12px 4px rgba(0, 0, 0, 0.2);
  /*-------For IE 5.5 - 7 陰影-------*/
  filter: progid:DXImageTransform.Microsoft.Shadow(Strength=8, Direction=135, Color='#000000');
  /*-------For IE 8 陰影-------*/
  -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=8, Direction=135, Color='#000000')";
}

/* ========跑馬燈=========== */
marquee {
  display: block;
}
#marquee_index {
  position: absolute;
  top: 98px;
  left: 360px;
  width: 500px;
  padding: 0px 10px 0px 0px;
}
#marquee_index a {
  font-size: 13px;
  color: #1EC89D;
  line-height: 2em;
  height: 2em;
}
#marquee_index a:hover {
  color: #e49e06;
}

/* ========標題區=========== */
/* line 31, ../sass/_layout.scss */
#header {
  height: 129px;
  background-image: url(../images/header-bg.jpg);
}
/* line 34, ../sass/_layout.scss */
#header #logo {
  background-image: url(../images/logo.png);
  background-repeat: no-repeat;
  text-indent: -9999px;
  float: left;
  margin-top: 40px;
  margin-left: 15px;
}
/* line 42, ../sass/_layout.scss */
#header #en_logo {
  background-image: url(../images/en_logo.png);
  background-repeat: no-repeat;
  text-indent: -9999px;
  float: left;
  margin-top: 40px;
  margin-left: 15px;
}
/* line 50, ../sass/_layout.scss */
#header #logo a, #header #en_logo a {
  display: block;
  height: 62px;
  width: 289px;
}
/* line 55, ../sass/_layout.scss */
#header #lang {
  background-color: #bbbbbb;
  border: 1px solid #CCCCCC;
  height: 1.8em;
  color: #fff;
  font-size: 11.008px;
  /* 11px */
  font-family: "新細明體";
  line-height: 1.8em;
  text-align: center;
  padding-top: 0px;
  padding-right: 8px;
  padding-bottom: 0px;
  padding-left: 8px;
  width: auto;
  display: inline-block;
  position: absolute;
  right: 0px;
  top: 0px;
  z-index: 500;
}
/* line 75, ../sass/_layout.scss */
#header #lang a:link {
  font-size: 11.008px;
  /* 11px */
  font-family: "新細明體";
  text-decoration: none;
  color: #fff;
}
/* line 81, ../sass/_layout.scss */
#header #lang a:visited {
  color: #fff;
}
/* line 84, ../sass/_layout.scss */
#header #lang a:hover {
  color: #0b857a;
}
/* line 87, ../sass/_layout.scss */
#header span.lang_action {
  color: #0b857a;
}
/* ========主選單區=========== */
/* line 94, ../sass/_layout.scss */
#menu {
  float: left;
  margin-left: 25px;
  margin-top: 0;
}
/* line 98, ../sass/_layout.scss */
#menu ul {
  list-style: none;
  padding: 0;
}
/* line 102, ../sass/_layout.scss */
#menu li {
  float: left;
}
/* line 105, ../sass/_layout.scss */
#menu li a {
  display: block;
  font-family: "微軟正黑體";
  font-weight: bold;
  text-decoration: none;
  font-size: 16px;
  color: #878787;
  height: 129px;
  width: 110px;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.9);
  text-align: center;
  padding: 40px 0 0 0;
}
/* line 118, ../sass/_layout.scss */
#menu li a:hover {
  color: #0b857a;
  text-shadow: 2px 2px 2px white;
  background-image: url(../images/menu-hover.png);
  background-repeat: no-repeat;
}
/* line 124, ../sass/_layout.scss */
#menu li a span {
  font-family: Arial;
  text-decoration: none;
  font-size: 11px;
  display: block;
  font-style: normal;
  font-weight: lighter;
  line-height: normal;
  text-transform: lowercase;
  margin-top: 3px;
  text-align: center;
}

/* ========主導覽======== */
/* line 140, ../sass/_layout.scss */
#nav {
  color: #a7a7a7;
  font-size: 12px;
  /*12px*/
  line-height: 1.5em;
  font-family: Arial,"新細明體";
  width: auto;
  position: absolute;
  right: 0;
  top: 90px;
  float: right;
  padding-right: 30px;
  /*邊框CSS*/
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #c8c8c8;
}

/* line 156, ../sass/_layout.scss */
#nav a {
  color: #CCCCCC;
  text-decoration: none;
}

/* line 160, ../sass/_layout.scss */
#nav a:hover {
  color: #0b857a;
}

/* line 163, ../sass/_layout.scss */
.here {
  color: #0b857a;
}

/* ========導覽列=========== */
/* ========內容區=========== */
/* line 175, ../sass/_layout.scss */
#main {
  padding: 0;
  letter-spacing: 1;
  background-color: #fff;
  position: relative;
}

/* line 181, ../sass/_layout.scss */
.mian-bg-about {
  background: url(../images/mian-bg-about.jpg) center bottom no-repeat;
  height: 1191px;
}

/* line 185, ../sass/_layout.scss */
.mian-bg {
  background: url(../images/mian-bg.jpg) center bottom no-repeat;
}

/* line 188, ../sass/_layout.scss */
.product-mian-bg {
  background: url(../images/product-mian-bg.jpg) center bottom no-repeat;
}

/* line 191, ../sass/_layout.scss */
.box {
  border-left-width: 1px;
  border-left-style: solid;
  border-left-color: #bcbcbc;
  padding-left: 15px;
  margin-left: 30px;
}

/* line 198, ../sass/_layout.scss */
.h2-title {
  font-family: "微軟正黑體";
  font-size: 40px;
  color: #a5c21b;
  margin-bottom: 10px;
  line-height: 1.5em;
  margin-top: 8px;
}

/* line 205, ../sass/_layout.scss */
.subtitle {
  color: #634d1a;
  font-size: 14px;
  font-family: Helvetica;
  letter-spacing: 1rem;
  display: block;
  line-height: 1em;
  margin-left: 5px;
}

/* line 214, ../sass/_layout.scss */
.h3-title {
  font-family: "微軟正黑體";
  color: #e49e06;
  font-size: 18px;
  line-height: 1.3em;
  margin-bottom: 0.5em;
}

/* line 221, ../sass/_layout.scss */
.text {
  color: #6a6a74;
  line-height: 1.9em;
  font-size: 13.008px;
  font-family: "新細明體";
}

/* line 227, ../sass/_layout.scss */
.pos-01 {
  position: absolute;
  top: 137px;
  left: 510px;
}

/* line 232, ../sass/_layout.scss */
.pos-02 {
  position: absolute;
  top: 400px;
  left: 31px;
}

/* 最新消息 頁面 CSS */
/* line 239, ../sass/_layout.scss */
.news-mian-bg {
  background: url(../images/mian-bg-news.jpg) center bottom no-repeat;
  height: 941px;
}

/* line 243, ../sass/_layout.scss */
.news-paper {
  margin-left: 28px;
  margin-right: 28px;
  margin-bottom: 150px;
  background: url(../images/bg-paper.jpg) no-repeat left top;
  background-color: #D1D1D1;
  overflow-x:hidden;
  overflow-y:auto;
  
  /*邊框CSS*/
  border-width: 1px;
  border-style: solid;
  border-color: #aeaeae;
  
  /*最小高度*/
  min-height: 670px; 
  height:auto;
}

/* line 254, ../sass/_layout.scss */
.news-column {
  margin-top: 80px;
  margin-left: 290px;
  margin-right: 90px;
}

/* line 259, ../sass/_layout.scss */
li.news-list {
  font-family: "新細明體";
  font-size: 13.008px;
  width: 550px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #bcbcbc;
  list-style-position: inside;
  letter-spacing: 0.1em;
}

/* line 270, ../sass/_layout.scss */
li.news-list a {
  color: #12726c;
  font-size: 13.008px;
  line-height: 3em;
  display: block;
  padding-left: 10px;
}

/* line 277, ../sass/_layout.scss */
li.news-list a:hover {
  color: #5f860e;
  background-color: #fff;
}

/* line 281, ../sass/_layout.scss */
.icon-size {
  font-size: 1.5em;
  vertical-align: middle;
  margin-right: 5px;
}

/* line 286, ../sass/_layout.scss */
.date {
  text-align: right;
  color: #5e5e5e;
  font-family: Arial;
  font-size: 12px;
  position: absolute;
  right: 100px;
}

/* 最新消息 導覽選單 CSS */
/* line 296, ../sass/_layout.scss */
.news-nav {
  width: 500px;
  height: 50px;
  margin-top: 100px;
  margin-left: 460px;
  margin-bottom: 40px;
}

/* line 303, ../sass/_layout.scss */
.news-nav li a {
  padding: 0px 7px;
  margin-left: 5px;
  background-color: #fff;
  color: #626262;
  font-family: Arial;
  font-size: 13.008px;
  display: inline;
  float: left;
  /* 邊框CSS */
  border-width: 1px;
  border-style: solid;
  border-color: #8e8e8e;
  /* 內陰影 */
  -webkit-box-shadow: 0 0 17px -5px black inset;
  box-shadow: 0 0 17px -5px black inset;
}

/* line 322, ../sass/_layout.scss */
.news-nav li a:hover {
  color: #fff;
  background-color: #12726c;
  border-color: #00aea3;
}

/* line 327, ../sass/_layout.scss */
.news-nav-i {
  font-size: 23px;
  padding: 0;
}

/* 最新消息 頁面 CSS */
/* line 333, ../sass/_layout.scss */
.icon-size-big {
  font-size: 3em;
  color: #12726c;
  margin-bottom: 10px;
}

/* line 338, ../sass/_layout.scss */
.news-title {
  color: #555555;
  font-size: 12px;
  font-family: "新細明體";
  line-height: 3em;
  font-weight: bold;
}

/* line 345, ../sass/_layout.scss */
.news-text {
  color: #6a6a74;
  line-height: 3em;
  font-weight: normal;
}

/* line 350, ../sass/_layout.scss */
.news-text a {
  color: #6a6a74;
}

/* line 353, ../sass/_layout.scss */
.news-text-01 {
  color: #12726c;
  font-size: 1.75em;
  font-family: "微軟正黑體";
  line-height: 3em;
  font-weight: bold;
}

/* line 360, ../sass/_layout.scss */
.bt-goback {
  margin-top: 150px;
  margin-left: 760px;
  margin-bottom: 25px;
}

/* 聯絡我們 CSS */
/* line 367, ../sass/_layout.scss */
.contact-paper {
  margin-left: 28px;
  margin-right: 28px;
  margin-bottom: 140px;
  background: url(../images/mian-bg-contact.jpg) left top no-repeat;
  /*邊框CSS*/
  border-width: 1px;
  border-style: solid;
  border-color: #aeaeae;
}

/* line 378, ../sass/_layout.scss */
.contact-column {
  margin-left: 180px;
  margin-top: 29px;
}

/* line 382, ../sass/_layout.scss */
.contact-info {
  color: #12726c;
  font-size: 15.008px;
  font-family: "微軟正黑體";
  font-weight: bold;
}

/* line 388, ../sass/_layout.scss */
.contact-info span {
  margin-right: 10px;
}

/* 聯絡我們 表單 */
/* line 393, ../sass/_layout.scss */
#contact_form {
  margin-top: 20px;
  margin-left: -5px;
}

/* line 397, ../sass/_layout.scss */
#contact_form tr {
  padding-left: 10px;
  margin-bottom: 8px;
  background: url(../images/input-icon.png) top left no-repeat;
  background-color: rgba(255, 255, 255, 0.7);
  line-height: 2em;
  display: block;
  width: auto;
  /*邊框CSS*/
  border-width: 1px;
  border-style: solid;
  border-color: #c2c2c2;
}

/* line 410, ../sass/_layout.scss */
#contact_form .form-title {
  color: #627219;
  font-family: "微軟正黑體";
  margin-left: 0px;
  font-weight: bold;
  margin-right: 10px;
  width: 80px;
  display: block;
  float: left;
}

/* line 420, ../sass/_layout.scss */
#contact_form input {
  color: #747474;
  font-size: 15.008px;
  float: left;
  /*邊框CSS*/
  border-width: 1px;
  border-style: solid;
  border-color: #c2c2c2;
  padding: 8px 5px;
}

/* line 431, ../sass/_layout.scss */
#contact_form textarea {
  float: right;
}

/* 產品介紹 類別 category css */
/* line 436, ../sass/_layout.scss */
.product-column {
  margin-left: 30px;
  margin-top: 30px;
  margin-bottom: 140px;
  float: left;
}

/* line 442, ../sass/_layout.scss */
.category {
  width: 215px;
  height: 251px;
  margin-bottom: 10px;
  float: left;
  margin-right: 10px;
}

/* line 449, ../sass/_layout.scss */
.category a {
  width: 215px;
  height: 251px;
  background-image: url(../images/category-bg.png);
  display: block;
}

/* line 455, ../sass/_layout.scss */
.category a:hover {
  background-image: url(../images/category-bg-hover.png);
}

/* line 458, ../sass/_layout.scss */
.category-album {
  padding: 15px 10px 0 0px;
  margin: 0 auto;
  text-align: center;
}
.category-album img {
  /*min-height:135px;*/
  height:inherit;
  width:expression(document.body.clientWidth&gt;135?"135px""auto");/*若圖片大於550px就調整*/
  overflow:hidden;      /*超過不顯示*/
}

/* line 461, ../sass/_layout.scss */
.category-title {
  color: #12726c;
  font-family: "微軟正黑體";
  font-weight: bold;
  font-size: 13pt;
  margin-left: 30px;
  margin-top: 3px;
  letter-spacing: 0.1;
}

/* 產品介紹 子類別 category-sub css */
/* line 471, ../sass/_layout.scss */
.category-sub {
  width: 228px;
  height: 267px;
  margin-bottom: 10px;
  float: left;
  margin-right: 0;
}

/* line 478, ../sass/_layout.scss */
.category-sub a {
  width: 228px;
  height: 267px;
  background-image: url(../images/category-sub-bg.png);
  display: block;
}

/* line 484, ../sass/_layout.scss */
.category-sub a:hover {
  background-image: url(../images/category-sub-bg-hover.png);
}

/* line 487, ../sass/_layout.scss */
.category-sub-album {
  padding: 6px 5px 0 0px;
  margin: 0 auto;
  text-align: center;
}

.category-sub-album img {
  /*max-height:150px;*/
  height:inherit;
  width:expression(document.body.clientWidth&gt;150?"150px""auto");/*若圖片大於550px就調整*/
  overflow:hidden;      /*超過不顯示*/
}
  

/* line 490, ../sass/_layout.scss */
.category-sub-title {
  color: #12726c;
  font-family: "微軟正黑體";
  font-weight: bold;
  font-size: 13pt;
  margin-left: 20px;
  margin-top: 5px;
  letter-spacing: 0.1;
}

/* 產品介紹 內容頁 produtc-pager css */
/* line 500, ../sass/_layout.scss */
.product-paper {
  margin-left: 28px;
  margin-right: 28px;
  margin-bottom: 150px;
  /* background: url(../images/product-paper-bg.jpg) left top; */
  /*邊框CSS*/
  border-width: 1px;
  border-style: solid;
  border-color: #aeaeae;
  background-color: #ECECEC;
  box-shadow: inset 0px 0px 39px rgba(40, 40, 40, 0.1);
}

/* line 511, ../sass/_layout.scss */
.product-paper-column {
  margin-right: 20px;
  margin-left: 10px;
  margin-top: 30px;
  margin-bottom: 140px;
  float: left;
  width: 380px;
}

/* line 519, ../sass/_layout.scss */
.product-paper-title {
  margin-top: 30px;
  margin-left: 10px;
  color: #12726c;
  font-size: 26px;
  font-family: "微軟正黑體";
  font-weight: bold;
}

/* line 527, ../sass/_layout.scss */
.format-title {
  color: #555555;
  font-size: 13.008px;
  font-family: "新細明體";
  font-weight: bold;
}

/* line 533, ../sass/_layout.scss */
li.product-paper-list {
  margin-left: 10px;
  color: #6a6a74;
  font-family: Arial;
  font-size: 13.008px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #bcbcbc;
  list-style-position: inside;
  letter-spacing: 0.1em;
  line-height: 2.4em;
  width: 390px;
}

/* line 546, ../sass/_layout.scss */
li.product-paper-list img {
  vertical-align: middle;
}

/* line 549, ../sass/_layout.scss */
li.product-paper-list a {
  color: #12726c;
  line-height: 1.8em;
  height: 1.8em;
}

/* line 554, ../sass/_layout.scss */
li.product-paper-list a:hover {
  color: #5f860e;
}

/* line 557, ../sass/_layout.scss */
.mark-size {
  font-size: 1.5em;
  margin-left: 5px;
  vertical-align: middle;
}

/* line 562, ../sass/_layout.scss */
.product-pager-photo {
  margin-left: 26px;
  margin-top: 26px;
  background-color: #FFFFFF;
  padding: 15px 15px 40px 15px;
  border: 1px solid #c3c3c3;
  /*圖片內陰影*/
  -moz-box-shadow: inset 0px 0px 39px rgba(40, 40, 40, 0.3);
  -webkit-box-shadow: inset 0px 0px 39px rgba(40, 40, 40, 0.3);
  box-shadow: inset 0px 0px 39px rgba(40, 40, 40, 0.3);
}

/* line 574, ../sass/_layout.scss */
.product-pager-buy {
  margin: 20px auto;
  text-align: center;
}

/* 產品規格 */
/* line 581, ../sass/_layout.scss */
.product-pager-table , .order-list-table {
  margin: 50px auto;
  color: #636363;
}

/* line 584, ../sass/_layout.scss */
.product-pager-table .table-title {
  font-family: Arial, "新細明體";
  font-weight: bold;
}

/* line 591, ../sass/_layout.scss */
.product-pager-table td , .order-list-table td {
  /*color: #636363;*/
  font-family: Arial, "新細明體";
  line-height: 12px;
  font-size: 11px;
  text-align: center;
  letter-spacing: normal;

  padding: 5px 0;

  /*下底線 CSS*/
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #c8c8c8;
}

.align-center td {
  text-align: center;
}

.align-left td {
  text-align: left;
}
.padding-left-60px {
  padding-left:60px;
}

.order-title {
  font-family: Arial, "新細明體";
  font-weight: bold;
  background-color: #b0b0b0;
}
.buyCar-title {
  font-family: Arial, "新細明體";
  font-weight: bold;
  background-color: #b0b0b0;
  background-image: url(../images/input-icon.png) no-repeat left;
  padding-left: 20px;
}
td.order-total {
  font-family: Arial, "新細明體";
  font-size: 16px;
  color: #1A837F;
  font-weight: bold;
  text-align: right;
  padding-right: 10px;
}
a.order_delete {
  font-family: Arial;
  color: #71253e;
  text-decoration: underline;
  letter-spacing: 0.1em;

}

/* ========版權宣告區=========== */
/* line 608, ../sass/_layout.scss */
#footer {
  margin: 0 auto;
  background-image: url(../images/footer-bg.jpg);
  width: 964px;
  height: 79px;
}
/* line 613, ../sass/_layout.scss */
#footer .mail-style {
  float: left;
  margin-top: 32px;
  margin-left: -20px;
}
/* line 618, ../sass/_layout.scss */
#footer .mail-style a {
  font-size: 2rem;
  color: #fff;
}
/* line 623, ../sass/_layout.scss */
#footer .copyright {
  font-family: Arial, "新細明體";
  font-style: normal;
  color: #fff;
  margin-right: 50px;
  margin-top: 25px;
  text-decoration: none;
}
/* line 630, ../sass/_layout.scss */
#footer .copyright a {
  color: #fff;
  font-family: Arial, "新細明體";
  font-size: 11.008px;
}
/* line 635, ../sass/_layout.scss */
#footer .copyright a:hover {
  color: #ed8810;
}

/*------------------------------------*\
    _mixin.scss 模組化樣式
\*------------------------------------*/
/* line 61, ../sass/_mixin.scss */
#sub-Menu-index {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  width: 520px;
  overflow: hidden;
  border: none;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  font: normal normal normal 16px/1 Arial, Helvetica, sans-serif;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  -webkit-box-shadow: 1px 2px 2px 1px rgba(0, 0, 0, 0.19);
  box-shadow: 1px 2px 2px 1px rgba(0, 0, 0, 0.19);
  -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 10ms;
  -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 10ms;
  -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 10ms;
  transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 10ms;
  padding: 5px 20px;
  position: relative;
  top: 20px;
  left: 50px;
  background: #c79702;
}
/* line 30, ../sass/_mixin.scss */
#sub-Menu-index ul li {
  list-style-type: none;
}
/* line 33, ../sass/_mixin.scss */
#sub-Menu-index ul li a {
  padding: 5px 15px 5px 5px;
  -webkit-transition: all .35s ease;
  -moz-transition: all .35s ease;
  -ms-transition: all .35s ease;
  -o-transition: all .35s ease;
  transition: all .35s ease;
  font-size: 15px;
  text-decoration: none;
  line-height: 20px;
  display: inline-block;
  float: left;
}
/* line 64, ../sass/_mixin.scss */
#sub-Menu-index li a {
  color: #302400;
}
/* line 67, ../sass/_mixin.scss */
#sub-Menu-index li a:hover, #sub-Menu-index a:hover span {
  color: #fffefc;
}
/* line 70, ../sass/_mixin.scss */
#sub-Menu-index span {
  color: #fed864;
}

/* line 74, ../sass/_mixin.scss */
.triangle-index {
  display: block;
  position: absolute;
  height: 5px;
  width: 5px;
  left: 380px;
  top: 85px;
  border-left: 5px solid rgba(150, 150, 150, 0.1);
  border-bottom: 15px solid #c79702;
  border-right: 10px solid rgba(150, 150, 150, 0.1);
}

/* line 82, ../sass/_mixin.scss */
#sub-Menu-page {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  width: 520px;
  overflow: hidden;
  border: none;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  font: normal normal normal 16px/1 Arial, Helvetica, sans-serif;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  -webkit-box-shadow: 1px 2px 2px 1px rgba(0, 0, 0, 0.19);
  box-shadow: 1px 2px 2px 1px rgba(0, 0, 0, 0.19);
  -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 10ms;
  -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 10ms;
  -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 10ms;
  transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 10ms;
  padding: 5px 20px;
  position: relative;
  top: 20px;
  left: 50px;
  background: #29adb9;
}
/* line 30, ../sass/_mixin.scss */
#sub-Menu-page ul li {
  list-style-type: none;
}
/* line 33, ../sass/_mixin.scss */
#sub-Menu-page ul li a {
  padding: 5px 15px 5px 5px;
  -webkit-transition: all .35s ease;
  -moz-transition: all .35s ease;
  -ms-transition: all .35s ease;
  -o-transition: all .35s ease;
  transition: all .35s ease;
  font-size: 15px;
  text-decoration: none;
  line-height: 20px;
  display: inline-block;
  float: left;
}
/* line 85, ../sass/_mixin.scss */
#sub-Menu-page li a {
  color: #0d383c;
}
/* line 88, ../sass/_mixin.scss */
#sub-Menu-page li a:hover, #sub-Menu-page a:hover span {
  color: white;
}
/* line 91, ../sass/_mixin.scss */
#sub-Menu-page span {
  color: #94e0e7;
}

/* line 95, ../sass/_mixin.scss */
.triangle-page {
  display: block;
  position: absolute;
  height: 5px;
  width: 5px;
  left: 380px;
  top: 85px;
  border-left: 5px solid rgba(150, 150, 150, 0.1);
  border-bottom: 15px solid #29adb9;
  border-right: 10px solid rgba(150, 150, 150, 0.1);
}


/* 2014-10-17 新增 */

/* TOP 購物清單按鈕 */
#header #buy_car a {
  background-color: #bbbbbb;
  border: 1px solid #CCCCCC;
  height: 1.8em;
  color: #fff;
  font-size: 11.008px;
  /* 11px */
  font-family: Arial,"新細明體";
  line-height: 1.8em;
  text-align: center;
  padding-top: 0px;
  padding-right: 8px;
  padding-bottom: 0px;
  padding-left: 8px;
  width: auto;
  display: inline-block;
  position: absolute;
  right: 140px;
  top: 0px;
  z-index: 500;
}
#header #buy_car a:hover {
  color: #fff;
  background-color: #0b857a;
}

/* 購物車 完成 */
.buy_ok {
  margin-top: 80px;
  margin-left: 155px;
  margin-bottom: 140px;
  background: url(../images/buy_ok_bg.jpg) white 0px 60px no-repeat;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  width: 400px;
  height: 300px;
  padding: 50px;
  border: none;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  font: normal 16px/1 Arial, Helvetica, sans-serif;
  color: black;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  -webkit-box-shadow: 1px 1px 1px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 1px 1px 1px 0 rgba(0, 0, 0, 0.3);
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.25);
}
.buy_ok .buy_ok_title {
  font-family: Arial, "微軟正黑體";
  font-size: 20px;
  font-weight: bold;
  line-height: 2em;
  margin-bottom: 10px;
  color: #206A67;
}
.buy_ok .buy_ok_text {
  font-family: Arial, "微軟正黑體";
  font-size: 18px;
  line-height: 1.5em;
  font-weight: bold;
  color: #2E9C97;
}

.sky_icon {
  width:60px; overflow:hidden; margin-right:30px
}