@charset "utf-8";

/* CSS Document */
/* --------------- RWD TABLE CSS CODE START -------------------*/
.table-rwd {}

/*這是額外做顏色，沒有什麼意義*/
/* --- 標題TR底色設定 ---*/
tr.tr-only-hide {
  font-size: 1rem;
  line-height: 1.42857143;
  font-weight: 500;
  color: #5a5a5a;
  background-color: transparent !important;
}

/* --------------- 以下標準bootstrap.min table CSS -------------------*/
/ .table-bordered {
  border: 1px solid #ddd;
}

.table-striped tbody tr:nth-of-type(2n+1) {
  /*background-color: transparent;   */
  /*列表第一分色*/
  /*background-color: rgba(0, 0, 0, 0.05);*/
}

/* .table-striped tbody tr:nth-of-type(2n) {
  background-color: rgba(0, 0, 0, 0.02);
  /*列表第二分色*/
/*background-color: rgba(0, 0, 0, 0.05);*/
}

*/ .table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 10px;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

table {
  background-color: transparent;
}

.table-bordered>tbody>tr>td,
.table-bordered>tbody>tr>th,
.table-bordered>tfoot>tr>td,
.table-bordered>tfoot>tr>th,
.table-bordered>thead>tr>td,
.table-bordered>thead>tr>th {
  border: 1px solid #ddd;
}

.table>tbody>tr>th {
  /*padding: 8px 25px;*/
  padding: 8px 10px;
  vertical-align: top;
  /* border-bottom: 1px solid #ddd; */
}

.table>tbody>tr>td {
  font-size: 0.95rem;
  line-height: 1.42857143;
  font-weight: 500;
  color: #5a5a5a;
  vertical-align: middle;
  padding: 15px 0;
  /*top*/
  /* border-bottom: 1px solid #ddd; */
  word-break: break-all;
  border-top: 1px dotted #ddd !important;
  /*自動折行*/
}

.table>tbody>tr:nth-of-type(2)>td {
  border-top: 0 dotted #ddd !important;
}

@media(min-width:1480px) {
  .tab-content .tr-only-hide th:nth-child(1) {
    width: 13% !important;
  }

  .tab-content .tr-only-hide th:nth-child(2) {
    width: 87% !important;
  }
}

@media(max-width:940px) {
  .tab-content .tr-only-hide th:nth-child(1) {
    width: 25% !important;
  }

  .tab-content .tr-only-hide th:nth-child(2) {
    width: 75% !important;
  }
}

@media(max-width:785px) {
  .tab-content .tr-only-hide th:nth-child(1) {
    width: 25% !important;
  }

  .tab-content .tr-only-hide th:nth-child(2) {
    width: 75% !important;
  }
}

@media(max-width:480px) {
  .table>tbody>tr>td {
    padding: 10px 10px;
  }
}

.table tr .update {
  /* padding: 8px 10px 2px 10px; */
  font-size: 0.8rem;
}

.table_td_vertical_align {
  font-size: 1rem !important;
  vertical-align: middle !important;
}

.table_td_vertical_align a {
  color: #f16609 !important;
}

.table>tbody>tr>td a {
  font-weight: 800;
  color: #5a5a5a;
}

.table>tbody>tr>td i {
  margin-left: 10px;
  color: #337ab7;
}

.table>tbody>tr>td a:hover {
  font-weight: 800;
  color: #415ab5;
}

th {
  text-align: left;
}

td, th {
  padding: 0;
  word-break: break-all;
}

/* --------------- 每列底色設定 --------------- */
tr.tr-only-hide-light-green {
  font-size: 1rem;
  line-height: 1.42857143;
  font-weight: 500;
  color: #fff;
  background-color: #6aaa00 !important;
}

tr.tr-only-hide th {
  border-top: 0 solid #ddd !important;
  padding: 0 !important;
}

.table>tbody>tr.light-green>td,
.table>tbody>tr.light-green>th,
.table>tbody>tr>td.light-green,
.table>tbody>tr>th.light-green,
.table>tfoot>tr.light-green>td,
.table>tfoot>tr.light-green>th,
.table>tfoot>tr>td.light-green,
.table>tfoot>tr>th.light-green,
.table>thead>tr.light-green>td,
.table>thead>tr.light-green>th,
.table>thead>tr>td.light-green,
.table>thead>tr>th.light-green {
  background-color: #dff0d8;
}

.table>tbody>tr.light-yellow>td,
.table>tbody>tr.light-yellow>th,
.table>tbody>tr>td.light-yellow,
.table>tbody>tr>th.light-yellow,
.table>tfoot>tr.light-yellow>td,
.table>tfoot>tr.light-yellow>th,
.table>tfoot>tr>td.light-yellow,
.table>tfoot>tr>th.light-green,
.table>thead>tr.light-yellow>td,
.table>thead>tr.light-yellow>th,
.table>thead>tr>td.light-yellow,
.table>thead>tr>th.light-yellow {
  background-color: #fefde7;
}

/* 取消TR底色設定 bootstrap.min 等都要取消
.table-striped > tbody > tr:nth-of-type(2n+1) {
    background-color: #f9f9f9;
}
*/
/* --------------- 以上標準bootstrap.min table CSS -------------------*/
@media (max-width: 736px) {
  .table-rwd {
    min-width: 100%;
  }

  /*針對tr去做隱藏*/
  tr.tr-only-hide {
    display: none !important;
  }

  /*讓tr變成區塊主要讓他有個區塊*/
  tr.tr-only-hide-light-green {
    display: none !important;
  }

  .table-rwd tr {
    display: block;
    margin-top: 5px;
  }

  .table-rwd td {
    text-align: left;
    font-size: 1em;
    overflow: hidden;
    width: 100%;
    display: block;
  }

  .table-rwd td:before {
    /*最重要的就是這串*/
    content: attr(data-th) " : ";
    /*最重要的就是這串*/
    /*display: inline-block;*/
    /*單獨一列顯示*/
    text-transform: uppercase;
    font-weight: bold;
    margin-right: 10px;
    color: #888;
    /*RWD 標題顏色*/
    padding: 8px 0;
    /*border-bottom: 1px solid #ddd;*/
    width: 100%;
    margin-bottom: 5px;
    /*background:#e7e7e7;*/
    /*background:#f6f6f6;*/
  }

  /*當RWD縮小的時候.table-bordered 會有兩條線，所以針對.table-bordered去做修正*/
  .table-rwd.table-bordered td, .table-rwd.table-bordered th, .table-rwd.table-bordered {
    border: 0;
  }
}

/* --------------- RWD TABLE CSS CODE END -------------------*/
/* --------------- SPAN class START -------------------*/
.category_none {
  font-size: 1rem;
  line-height: 1.42857143;
  font-weight: 500;
  color: #5a5a5a;
  ;
  /*background: #ffe9af;*/
  /*a7f0ff*/
  /*padding: 4px 12px;*/
  vertical-align: top;
  /*border-top: 1px solid #ddd;*/
  word-break: break-all;
  /*自動折行*/
  /*border-radius: 99em;*/
}

.category {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.42857143;
  font-weight: bold;
  color: #a93838;
  padding: 4px 12px;
  vertical-align: top;
  word-break: break-all;
}

.category_1 {
  font-size: 1rem;
  line-height: 1.42857143;
  font-weight: 500;
  color: #333333;
  background: #bed5ee;
  padding: 4px 12px;
  vertical-align: top;
  word-break: break-all;
  /*自動折行*/
  /*border-radius: 99em;*/
}

.category_2 {
  font-size: 1rem;
  line-height: 1.42857143;
  font-weight: 500;
  color: #333333;
  background: #faedc4;
  /*fef289*/
  padding: 4px 12px;
  vertical-align: top;
  word-break: break-all;
  /*自動折行*/
  /*border-radius: 99em;*/
}

.category_3 {
  font-size: 1rem;
  line-height: 1.42857143;
  font-weight: 500;
  color: #333333;
  background: #ffd1ba;
  /*fbd6be*/
  padding: 4px 12px;
  vertical-align: top;
  word-break: break-all;
  /*自動折行*/
  /*border-radius: 99em;*/
}

.category_4 {
  font-size: 1rem;
  line-height: 1.42857143;
  font-weight: 500;
  color: #333333;
  background: #e3d9ee;
  /*e6e6e6*/
  padding: 4px 12px;
  vertical-align: top;
  word-break: break-all;
  /*自動折行*/
  /*border-radius: 99em;*/
}

.category_5 {
  font-size: 1rem;
  line-height: 1.42857143;
  font-weight: 500;
  color: #5a5a5a;
  background: #c9e0d2;
  /*e6e6e6*/
  padding: 4px 12px;
  vertical-align: top;
  border-top: 1px solid #ddd;
  word-break: break-all;
  /*自動折行*/
  /*border-radius: 99em;*/
}

.category_6 {
  font-size: 1rem;
  line-height: 1.42857143;
  font-weight: 500;
  color: #5a5a5a;
  background: #ffe9af;
  /*e6e6e6*/
  padding: 4px 12px;
  vertical-align: top;
  border-top: 1px solid #ddd;
  word-break: break-all;
  /*自動折行*/
  /*border-radius: 99em;*/
}

/* --------------- SPAN class END -------------------*/
/* --------------- MORE button class START -------------------*/
.news-btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

/* -- 最新消息-MORE 按鈕 --*/
.news-btn {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: .1em;
  text-align: center;
  white-space: nowrap;
  /* text-transform: uppercase; */
  vertical-align: middle;
  user-select: none;
  box-shadow: none !important;
  border-radius: 0.5em;
  transition: .3s all ease;
  font-weight: bold;
  color: #3d69bc;
  vertical-align: middle;
  padding: 2px 35px;
}

.news-btn::after {
  content: "+";
  display: inline-block;
  color: #3d69bc;
}

.more_bt a:hover::after {
  color: #FFF;
}

.re_link {
  padding-right: 0;
  padding-left: 0;
}

.more_bt {
  position: relative;
  display: inline-block;
  background-color: #FFF;
  border-radius: 15px;
  border: 1px solid #3d69bc;
  bottom: -36px;
  margin-left: 10px;
}

.more_bt.long .news-btn {
  padding: 3px 60px;
}

.more_bt a:hover {
  background-color: #3d69bc;
  border-radius: 15px;
  color: #FFF;
}

@media(min-width:1200px) {
  .links_right .more_bt {
    position: relative;
    right: 100px;
  }
}

@media(max-width:1400px) {
  .links_right .more_bt {
    position: relative;
    right: 50px;
  }
}

@media(max-width:993px) {
  .links_right .more_bt {
    position: relative;
    right: 20px;
  }
}

.gallery .more_bt {
  position: relative;
  display: inline-block;
  float: right;
  margin-right: 20px;
  margin-top: 10px;
}

/* .news-btn::after {
  position: absolute;
  font-family: 'icomoon';
  font-size: 1.1rem;
  content: "\e315";
  top: 18px;
  color: #2d2d2d;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
} */
.news-btn:hover::before {
  color: #2d2d2d;
}

.news-btn:hover::after {
  color: #2d2d2d;
}

/* -- 文學獎-MORE 按鈕 --*/
.cup-btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.cup-btn {
  display: inline-block;
  font-size: 0.938rem;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: .1em;
  text-align: center;
  white-space: nowrap;
  text-transform: uppercase;
  vertical-align: middle;
  user-select: none;
  padding: 0.275rem 2.125rem;
  /*0.375rem 2.75rem*/
  /*border: 1px solid transparent;*/
  box-shadow: none !important;
  border-radius: 0.5em;
  /*border-radius: 999em;*/
  /*999em*/
  transition: .3s all ease;
  /*border: 1px dashed #bbb;*/
}

.cup-btn::before {
  position: absolute;
  font-family: 'icomoon';
  font-size: 1.1rem;
  content: "\e315";
  top: 18px;
  /*35%*/
  right: 20px;
  color: #FFF;
  /*5a5a5a*/
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.cup-btn::after {
  position: absolute;
  font-family: 'icomoon';
  font-size: 1.1rem;
  content: "\e315";
  top: 18px;
  /*35%*/
  /*right: 35px;*/
  color: #FFF;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.cup-btn:hover::before {
  color: #fff;
}

.cup-btn:hover::after {
  color: #fff;
}

.cup-btn.btn-black {
  color: #FFF;
  background: #02aea8;
  border: 1px solid #02aea8;
}

.cup-btn.btn-black:hover {
  color: #fff;
  background-color: #fe980f;
  border: 1px solid #fe980f;
}

/* -- 相關連結-MORE 按鈕 --*/
.links-btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.links-btn {
  display: inline-block;
  font-size: 0.938rem;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: .1em;
  text-align: center;
  white-space: nowrap;
  text-transform: uppercase;
  vertical-align: middle;
  user-select: none;
  padding: 0.275rem 2.125rem;
  /*0.375rem 2.75rem*/
  /*border: 1px solid transparent;*/
  box-shadow: none !important;
  border-radius: 0.5em;
  /*border-radius: 999em;*/
  /*999em*/
  transition: .3s all ease;
  /*border: 1px dashed #bbb;*/
}

.links-btn::before {
  position: absolute;
  font-family: 'icomoon';
  font-size: 1.1rem;
  content: "\e315";
  top: 18px;
  /*35%*/
  right: 20px;
  color: #FFF;
  /*5a5a5a*/
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.links-btn::after {
  position: absolute;
  font-family: 'icomoon';
  font-size: 1.1rem;
  content: "\e315";
  top: 18px;
  /*35%*/
  /*right: 35px;*/
  color: #FFF;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.links-btn:hover::before {
  color: #fff;
}

.links-btn:hover::after {
  color: #fff;
}

.links-btn.btn-black {
  color: #FFF;
  background: #02aea8;
  border: 1px solid #02aea8;
}

.links-btn.btn-black:hover {
  color: #fff;
  background-color: #fe980f;
  border: 1px solid #fe980f;
}

/* -- 影音訊息-MORE 按鈕 --*/
.video-btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.video-btn {
  display: inline-block;
  font-size: 0.938rem;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: .1em;
  text-align: center;
  white-space: nowrap;
  text-transform: uppercase;
  vertical-align: middle;
  user-select: none;
  padding: 0.275rem 2.125rem;
  /*0.375rem 2.75rem*/
  /*border: 1px solid transparent;*/
  box-shadow: none !important;
  border-radius: 0.5em;
  /*border-radius: 999em;*/
  /*999em*/
  transition: .3s all ease;
  /*border: 1px dashed #bbb;*/
}

.video-btn::before {
  position: absolute;
  font-family: 'icomoon';
  font-size: 1.1rem;
  content: "\e315";
  top: 18px;
  /*35%*/
  right: 20px;
  color: #FFF;
  /*5a5a5a*/
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.video-btn::after {
  position: absolute;
  font-family: 'icomoon';
  font-size: 1.1rem;
  content: "\e315";
  top: 18px;
  /*35%*/
  /*right: 35px;*/
  color: #FFF;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.video-btn:hover::before {
  color: #fff;
}

.video-btn:hover::after {
  color: #fff;
}

.video-btn.btn-black {
  color: #FFF;
  background: #02aea8;
  border: 1px solid #02aea8;
}

.video-btn.btn-black:hover {
  color: #fff;
  background-color: #fe980f;
  border: 1px solid #fe980f;
}

/* -- 活動花絮-MORE 按鈕 --*/
.activity-btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.activity-btn {
  display: inline-block;
  font-size: 0.938rem;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: .1em;
  text-align: center;
  white-space: nowrap;
  text-transform: uppercase;
  vertical-align: middle;
  user-select: none;
  padding: 0.275rem 2.125rem;
  /*0.375rem 2.75rem*/
  /*border: 1px solid transparent;*/
  box-shadow: none !important;
  border-radius: 0.5em;
  /*border-radius: 999em;*/
  /*999em*/
  transition: .3s all ease;
  /*border: 1px dashed #bbb;*/
}

.activity-btn::before {
  position: absolute;
  font-family: 'icomoon';
  font-size: 1.1rem;
  content: "\e315";
  top: 18px;
  /*35%*/
  right: 20px;
  color: #FFF;
  /*5a5a5a*/
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.activity-btn::after {
  position: absolute;
  font-family: 'icomoon';
  font-size: 1.1rem;
  content: "\e315";
  top: 18px;
  /*35%*/
  /*right: 35px;*/
  color: #FFF;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.activity-btn:hover::before {
  color: #fff;
}

.activity-btn:hover::after {
  color: #fff;
}

.activity-btn.btn-black {
  color: #FFF;
  background: #02aea8;
  border: 1px solid #02aea8;
}

.activity-btn.btn-black:hover {
  color: #fff;
  background-color: #fe980f;
  border: 1px solid #fe980f;
}

@media(max-width:993px) {
  .space_margin {
    margin-bottom: 40px;
  }
}

@media(max-width:415px) {
  .space_margin {
    padding-right: 0;
    padding-left: 0;
  }
}

.table-striped>tbody>tr:nth-of-type(odd) {
  background-color: transparent !important;
}

.table-striped>tbody>tr:nth-of-type(1) {
  border-bottom: 0px solid #e4e4e4;
}

.en_box {
  position: relative;
  display: block;
  /* border:1px solid red; */
  text-align: left;
  top: -15px;
}

@media(max-width:415px) {
  .en_box {
    top: -10px;
  }

  .more_bt {
    bottom: -15px;
  }
}

/* --------------- MORE button class END -------------------*/
