@charset "utf-8";
/*-----------------------for both-----------------------*/
.hidden-content {
  display: none;
  max-width: 600px;
}
.type {
  background: #efefef;
  padding: 8px;
  margin: 5px 0px;
}
span.classTag {
  font-size: 14px;
  font-weight: normal;
  display: inline-block;
  padding: 15px;
  background: #858585;
  color: #fff;
  line-height: 120%;
  border-radius: 2px;
}
span.classTagOrange {
  background: #f90
}
/*-------------table Display--------------------*/
/*.table-scrollable::-webkit-scrollbar {
  display: none;
}*/
.tableDisplay {
  border-collapse: collapse;
}
.tableDisplay th {
  padding: 10px;
  /*word-break: break-all;*/
  background: #333;
  color: #fff;
  border-bottom: 1px solid #ddd;
  border: 1px solid #ddd;
}
.tableDisplay td {
  word-break:normal;
  border: 1px solid #ddd;
  padding: 10px;
}
.tableDisplay tr:nth-child(odd) td {
  background: #f9f9f9;
}
.tableDisplay tr td.grayTd {
  background: #ededed;
}
.tableDisplay tr td.title {
  background: #E95378;
  color: #fff;
  font-size: 19px;
  border: 0;
  text-align: center;
}
/*date nav*/
#tabsNav {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
  background: #f5f5f5;
}
#tabsNav li a {
  display: block;
  border-bottom: 3px solid #f5f5f5;
  text-decoration: none;
  color: #888;
  text-align: center;
  padding: 10px 15px;
}
#tabsNav li.active a {
  border-bottom: 3px solid #E9332F;
  color: #333;
  background: #ededed;
}
#tabsNav li a:hover {
  color: #333;
  border-bottom: 3px solid #ccc;
}
/*-----------------------for PC-----------------------*/
@media screen and (min-width:801px) {
  /*-----------------------css table----------------------*/
  /*.table-scrollable {
    overflow-x: hidden;

  }*/
  .css-table {
    display: table;
    width: 100%;
  }
  .css-table .thead {
    display: table-header-group;
  }
  .css-table .tbody {
    display: table-row-group;
  }
  .css-table .tr {
    display: table-row;
  }
  .css-table .th, .css-table .td {
    display: table-cell;
    padding: 5px 10px;
    border-bottom: 1px solid #e0e0e0;
    vertical-align: middle;
  }
  .css-table .th {
    background: #333;
    color: #fff;
  }
  .css-table .td {
    word-break: break-all;
      padding-top: 20px;
  }
  .css-table .center {
    text-align: center;
  }
  .tdHeader span {
    color: #E95378
  }
  /*date nav*/
  #tabsNav li a {
    font-size: 17px;
    padding: 10px 30px;
  }
  #tabsNav li {
    float: left;
  }
  /*-----------------------data table----------------------*/
  .data-table {
    display: table;
    width: 100%;
    border-top: 1px solid #ddd;
  }
  .data-table .thead {
    display: table-header-group;
  }
  .data-table .tbody {
    display: table-row-group;
  }
  .data-table .tr {
    display: table-row;
  }
  .data-table .th, .data-table .td {
    display: table-cell;
    padding: 6px 10px;
    border-bottom: 1px solid #e0e0e0;
    vertical-align: middle;
  }
  .data-table .tdHeader {
    font-weight: bold;
    vertical-align: text-top;
    background: #f9f9f9;
  }
  .tdHeader span { /*電腦版新增*/
    color: #E36926 /*用第一主題色*/
  }
}
/*------------------for mobile------------------------*/
@media screen and (max-width:800px) {
  /*--------------- card table -----------------*/
  .card-table {
    /*border-top: 1px solid #ddd;*/
    margin: 0 -15px;
  }
  .card-table .thead {
    display: none;
  }
  .card-table .tr {
    border-bottom: 1px solid #ddd;
    padding: 15px;
    display: block;
  }
  .card-table .th {
    border: currentColor;
    width: 100%;
    display: inline-block;
  }
  .card-table .td {
    border: currentColor;
    width: 100%;
    display: block;
  }
  .card-table .tdHeader {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 19px;
    color: #E95378
  }
  .tdHeader span {
    color: #000;
    font-size: 15px
  }
  /*--------------- css table -----------------*/
  .mob-table {
    display: block;
    overflow-x: auto;
  }
  .mob-table .thead {
    display: table-header-group;
  }
  .mob-table .tbody {
    display: table-row-group;
  }
  .mob-table .tr {
    display: table-row;
  }
  .mob-table .th, .mob-table .td {
    display: table-cell;
    padding: 5px 10px;
    border-bottom: 1px solid #e0e0e0;
    vertical-align: middle;
    white-space: nowrap;
  }
  .mob-table .th {
    background: #333;
    color: #fff;
  }
  .mob-table .center {
    text-align: center;
  }
  .mob-table .tr:nth-child(odd) {
    background: #f5f5f5;
  }
  /*date nav*/
  #tabsNav {
    margin: 0 -15px;
  }
  #tabsNav li {
    display: inline-block;
  }
}