@charset "utf-8";
#option_column {
  display: none;
  position: absolute;
  top: 50px;
  left: -100%;
  z-index: 99999;
  width: 100%;
  overflow-y: auto;
  background-color: rgba(255, 255, 255, 1);
  transform: translateX(0%);
  -webkit-transform: translateX(0%);
  -webkit-overflow-scrolling: touch
}

#option_column.clicked {
  display: block;
  transform: translateX(100%);
  -webkit-transform: translateX(100%);
  animation: slide .2s;
  -webkit-animation: slide .2s
}

#option_column.back {
  display: block;
  transform: translateX(0%);
  -webkit-transform: translateX(0%);
  animation: slideback .2s;
  -webkit-animation: slideback .2s
}

@-webkit-keyframes slide {
  0% {
    -webkit-transform: translateX(0%)
  }
  to {
    -webkit-transform: translateX(100%)
  }
}

@-webkit-keyframes slideback {
  0% {
    -webkit-transform: translateX(100%)
  }
  to {
    -webkit-transform: translateX(0%)
  }
}

@keyframes slide {
  0% {
    transform: translateX(0%)
  }
  to {
    transform: translateX(100%)
  }
}

@keyframes slideback {
  0% {
    transform: translateX(100%)
  }
  to {
    transform: translateX(0%)
  }
}

#option_column .option_title {
  width: 100%;
  color: #fff;
  font-size: 1.2em;
  line-height: 40px;
  text-indent: 20px;
  display: block;
  cursor: pointer
}

#option_column .option_menu {
  width: 100%;
  margin: 0;
  padding: 0;
}

#option_column .option_menu img {
  float: right;
  margin:0;
}

#option_column .option_menu .end {
  clear: both;
  width: 100%;
  display: block;
  border-bottom: 2px solid #558d0d;
  margin: 0 0 20px 0
}

#option_column .option_sel {
  clear: both;
  width: 100%;
  color: #ccc;
  line-height: 50px;
  height: 49px;
  list-style: none;
}

#option_column .option_sel a {
  width: calc(100% - 60px);
  height: 49px;
  font-size: 1.2em;
  text-indent: 20px;
  display: inline-block;
  border-top: 1px solid #e2e2e2;
  color: #000;
}
#option_column .option_sel .expandable{
  display: inline-block;
  position: relative;
  top:-1px;
  width: 50px;
  height: 48px;
  background: #999;
  color: #fff;
  text-align: center;
  font-size: 1.6em;
  font-weight: lighter;
  line-height: 45px;
}

#option_column .option_sel.option_link {
  width: calc(100% - 35px);
  padding: 0 0 0 20px;
  height: auto
}

#option_column .option_sel.option_link a {
  width: 32px;
  height: 32px;
  display: inline-block;
  border-top: none;
  margin: 20px 10px 0 0;
}

#option_column .bottom {
  width: 100%;
  height:80px
}
ul.categoryitems {
  float: right;
  width: 100%;
  border-top: 1px solid #e2e2e2;
  margin: 0 0 20px 0;
  padding: 0;
  overflow: hidden;
}
.categoryitems li {
  width: 100%;
  clear: both;
  line-height: 50px;
  list-style: none;
}
.categoryitems li a {
  width: 100%;
  font-size: 1em;
  line-height: 1.2em;
  display: block;
  padding:12px 0 12px 30px;
  color: #666
}
.container {
  width: 100%;
  /*max-width: 1920px;*/
  margin: 0 auto;
  padding-top: 100px;
}
@media screen and (max-width:1100px) {
  .container{
    padding-top: 50px;
  }
}
.head {
  position: fixed;
  width: 100%;
  height: 100px;
  top: 0;
  left: 0;
  background: rgba(255,255,255,0.95);
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .5);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, .5);
  box-shadow: 0 1px 3px rgba(0, 0, 0, .5);
  z-index: 999;
  transition: all 0.2s ease-in; -webkit-transition: all 0.2s ease-in;
}
.head .column {
  clear: both;
  width: 100%;
  max-width: 1920px;
  padding: 0 100px;
  margin: 0 auto;
  height: 80px
}
@media screen and (max-width:1620px) {
  .head .column{
    padding: 0 10px;
  }
}
@media screen and (max-width:1500px) {
  .head .column{
    padding: 0 10px;
  }
}
.head .column .logo {
  float: left;
  margin: 8px 0 0 0;
  overflow: hidden;
  transition: all 0.2s ease-in; -webkit-transition: all 0.2s ease-in;
}
.head .column .logo a{
  display: block;
  width: 100%;
  height: 100%;
}
.head .column .logo .left_column{
  display: inline-block;
}
.head .column .logo .left_column img {
  /*width: 142px;
  height: 57px;*/
  width: 311px;
  height: 85px;
}
@media screen and (max-width:1200px) {
  .head .column .logo {
    margin: 16px 0 0 0;
  }
  .head .column .logo .left_column img {
    width: 238px;
    height: 65px;
  }
}
.head .column .logo .right_column{
  display: inline-block;
  padding: 0 0 0 10px;
  vertical-align: top;
  position: relative;
  top:4px;
}
@media screen and (max-width:1750px) {
  .head .column .logo .right_column{
    display: none;
  }
}
.head .column .logo .right_column .logo_text_1{
  clear: both;
  font-size: 18pt;
  font-family:Georgia, 'Times New Roman', Times, serif;
  color: #000;
}
.head .column .logo .right_column .logo_text_2{
  clear: both;
  font-size: 14pt;
  font-family:Georgia, 'Times New Roman', Times, serif;
  color: #000;
}
.head .column .option {
  float: right;
  width: 55px;
  height: 50px;
  background-image: url(../images/icon_head_option_agent.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 50px 50px;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  background-size: contain;
  display: none;
  cursor: pointer;
  margin: 15px 0 0 0
}
.head .column .option.close {
  background-image: url(../images/icon_head_option_close.svg)
}
@media screen and (max-width:1000px) {
  .head {
    height: 50px
  }
  .head .column {
    height: 50px;
    padding: 0;
  }
  .head .column .logo {
    margin: 5px 0 0 10px;
  }
  .head .column .logo .left_column img {
    width: 146px;
    height: 40px
  }
  .head .column .option {
    margin: 0 0 0 0;
    height: 50px;
    display: inline-block;
  }
}
.menu {
  float: right;
}
@media screen and (max-width:1000px) {
  .menu {
    display: none
  }
}
.menu ul.nav {
  text-align: center;
  width: 100%;
  letter-spacing: -4px;
  margin: 0;
  padding: 0;
  height: 100px;
}
.menu ul.nav li {
  position: relative;
  display: inline-block;
  text-align: left;
  letter-spacing: 0;
  cursor: pointer;
  transition: all 0.2s ease-in; -webkit-transition: all 0.2s ease-in;
}
.menu ul.nav li:hover {
  background-color: #ebebeb;
}
.menu ul.nav li>a {
  font-size: 1em;
  line-height: 100px;
  height: 100px;
  padding: 0 20px;
  display: block;
  color: #000;
  text-align: center;
}
.menu ul.nav li>a:hover {
  color: #558d0d;
}
.menu ul.nav .sel {
  height: 100px;
  border-bottom: 5px solid #558d0d;
}
.menu ul.nav .sel:hover {
  height: 100px;
}
.menu ul li .submenu {
  position: absolute;
  z-index: 1;
  width: 100%;
  background: #ebebeb;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .5);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, .5);
  box-shadow: 0 1px 3px rgba(0, 0, 0, .5);
  top: 100px;
  max-height: 0;
  transition: all 0.2s ease-in; -webkit-transition: all 0.2s ease-in;
}
.menu ul li:hover .submenu {
  max-height: 600px;
  overflow: hidden;
  z-index: 9999
}
.menu ul li .submenu_style1 {
  width: 250px;
  max-width: 250px;
  left: 0;
  overflow: hidden
}
.menu ul li:last-child .submenu_style1 {
  width: 250px;
  max-width: 250px;
  left: auto;
  right: 0;
  overflow: hidden
}
.menu ul li .submenu .sub_class {
  float: left;
  width: 100%;
  margin: 0
}
.menu ul li .submenu .sub_class .title {
  float: left;
  width: 100%;
  padding: 0 0 0 0;
  height: inherit;
  margin: 0 0 0 0;
  text-align: left;
  overflow: hidden;
  transition: all 0.2s ease-in; -webkit-transition: all 0.2s ease-in;
}
.menu ul li .submenu .sub_class .title:hover {
  background: rgba(255,255,255,0.66);
}
.menu ul li .submenu .sub_class .title a {
  display: block;
  font-size: .9em;
  line-height: 1.2em;
  height: inherit;
  color: #000;
  margin: 0 0 0 0;
  padding: 12px 20px;
  border-bottom:1px solid #ddd;
}
.menu ul li .submenu .sub_class .title:last-child a{
  border-bottom:none;
}
.menu ul li .submenu .sub_class .title a:hover {
  color: #558d0d
}

.menu_search{float: right; border: 1px solid #999; padding:4px 10px 6px 16px; margin: 32px 0 0 32px; -webkit-border-radius:8px; -moz-border-radius:8px; border-radius:8px; background: #fff;}
.menu_search input{border: 0; font-size: 12pt; width: 160px; background: none;}
.menu_search input::placeholder{color: #999;}
.menu_search input:focus{outline: none;}
.menu_search img{position: relative; vertical-align: bottom; position: relative; top:1px; cursor: pointer;}
.menu_search img:hover{top:0px;}
button.topsearch_button{background: transparent; border:0; margin: 0; padding: 0; border: none;}
@media screen and (max-width:1500px) {
  .menu_search{
    width: 32px;
    height: 32px;
    padding: 3px;
    border: none;
    background: #ddd;
    -webkit-border-radius:50%; -moz-border-radius:50%; border-radius:50%;
  }
  .menu_search input{
    display: none;
  }
}
@media screen and (max-width:1300px) {
  .menu ul.nav li>a {
    font-size: 0.9em;
    padding: 0 10px;
  }
  .menu ul li .submenu .sub_class .title a {
      display: block;
      font-size: .8em;
      line-height: 1.1em;
      padding: 15px;
  }
}
@media screen and (max-width:1000px) {
  .menu_search {
    display: none;
  }
}
/********************************************/
.copyright_column {
  clear: both;
  width: 100%;
  margin: 0 auto;
  background-color: #374016;
  background-position: center;
  text-align: center;
  overflow: hidden;
  padding: 40px 10px 40px 10px;
  -moz-background-size: cover; -webkit-background-size: cover; -o-background-size: cover; background-size: cover;
}
.copyright_column .icon_arrow_down{
  display: block;
  width: 30px;
  height: 20px;
  margin: 0 auto 40px auto;
  background: url('../images/icon_arrow_down.svg') no-repeat top center;
  -moz-background-size: contain; -webkit-background-size: contain; -o-background-size: contain; background-size: contain;
}
.copyright_column .logo{
  width: 100%;
}
.copyright_column .logo .logo_pic{
  width: 100%;
  max-width: 260px;
  margin: 0 auto 10px auto;
}
.copyright_column .logo .logo_pic img{
  width: 100%;
}
.copyright_column .logo .logo_text{
    clear: both;
    font-size: 1.2em;
    color: #fff;
}
.copyright_column .info {
  display: block;
  width: 95%;
  max-width: 980px;
  margin: 0 auto;
  color: #fff;
  padding: 0 0 10px 0;
  overflow: hidden;
  text-align: center;
  font-size: .9em;
  line-height: 1.2em
}

.copyright_column .info .copyright {
  clear: both;
  padding: 10px 0 0 0;
  text-align: center
}

.copyright_column .info .copyright .column_grid2{
  display: grid;
  gap: 2px;
  grid-template-columns: repeat(2,1fr);
}
.copyright_column .info .copyright .column_grid2 .box_grid{

}
@media screen and (max-width:860px) {
  .copyright_column .info .copyright .column_grid2{
    gap: 20px;
    grid-template-columns: repeat(1,1fr);
  }
}
.copyright_column .info .copyright img {
  clear: both;
  display: block;
  width: 80%;
  margin: 0 auto;
  max-width: 300px
}

.copyright_column .info .copyright .row {
  display: inline-block;
  text-align: center;
  padding: 0 5px 0 5px;
  line-height: 1em
}

.copyright_column .info .copyright .row a {
  color: #fff
}

.copyright_column .info .copyright .row2{
  clear: both;
  width: 100%;
  padding:10px 5px 5px 5px;
  text-align: center
}
.copyright_column .info .copyright .email {
  display: block;
  width: 100%;
  text-align: center;
  padding:25px 5px;
  font-size: 1.2em;
  line-height: 1.2em
}
.copyright_column .info .copyright .email a {
  color: #fff;
  text-decoration-line: underline;
}
.copyright_column .info .copyright .email a:hover{

  color: #558d0d;
}
.copyright_column .info .copyright .copyright{
  clear: both;
  padding: 30px 0 0 0;
  text-align: center;
  font-size: 0.85em;
  color: #fff;
}

.font_color_000 {
  color: #000
}

.font_color_ccc {
  color: #ccc
}

.font_color_399 {
  color: #399
}

.font_color_39c {
  color: #39c
}

.font_color_c40000 {
  color: #BE0D0A
}

.font_color_c00 {
  color: #c00
}

.font_color_333 {
  color: #333
}

.font_color_f30 {
  color: #f30
}

.font_color_666 {
  color: #666
}
.font_color_999 {
  color: #999
}
.font_size_10 {
  font-size: 10px
}
.font_size_12 {
  font-size: 12px
}
.font_size_13 {
  font-size: 13px
}
.font_size_14 {
  font-size: 14px
}
.font_size_20 {
  font-size: 20px
}
.font_bold{
  font-weight: bold !important;
}
.float_right {
  float: right
}

.float_left {
  float: left
}
.width_full{
  display: inline-block;
  width: 100% !important;
}

img {
  border: 0
}

html {
  overflow-x: hidden
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: "Noto Sans TC","Microsoft JhengHei", "simhei", "Arial";
  font-size: 1em;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  text-size-adjust: none
}

a:link,
a:visited,
a:hover {
  text-decoration: none
}

.over_length {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis
}
.align_center{
  text-align: center;
}

@media print {
  .head{
    position: static;
    overflow: hidden
  }
  .new_banner_column,
  .main_bar {
    margin: 0 auto
  }
}
*{
  -webkit-box-sizing: border-box; -moz-box-sizing: border-box; -ms-box-sizing: border-box; box-sizing: border-box;
}

/********/
.div_custom {
  clear: both;
  display: block;
  margin: 65px auto;
  width: 95%
}

.div_custom table {
  max-width: 100% !important
}

.div_custom img {
  max-width: 100% !important;
  height: auto !important
}

@media screen and (max-width:1000px) {
  .div_custom {
    max-width: 97.5%
  }
  .div_custom table {
    max-width: 100% !important;
    width: 100% !important
  }
  .div_custom img {
    max-width: 100% !important;
    height: auto !important
  }
}
/********************************************/
/*view_more_column a*/
.view_more_column a{
  display: inline-block;
  text-decoration: none;
  color: #fff;
  min-width: 130px;
  text-align: center;
  border:1px solid #fff;
  font-size: 11pt;
  padding: 6px 12px;
  margin: 0 2px 6px 0;
}
.view_more_column a::after{
  content: "詳細資訊";
}
.view_more_column a.button{
  transition: all 0.5s ease-out; -webkit-transition: all 0.5s ease-out;
}
.view_more_column a.button_1{
  border-color: #558d0d;
  background-color: #558d0d;
}
.view_more_column a.button_1:hover{
  border-color: #558d0dbb;
  background-color: #558d0dbb;
}
.view_more_column a.button_2:hover{
  color: #000;
  background-color: #fff;
}
/********************************************/
._color0{
  color: #555555;
}
._color1{
  color: #456789;
}
._center{
 text-align: center; 
}
/********************************************/
