@charset "utf-8";
/* CSS Document */


/* --------------- RWD TABLE CSS CODE START -------------------*/

.table-rwd { }
/*這是額外做顏色，沒有什麼意義*/

/* --- 標題TR底色設定 ---*/
tr.tr-only-hide { 
	font-size: 1em;
	line-height: 1.42857143;
	font-weight: 500;
	color: #333;
	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: #ebf4fa;*/ 
	/*background-color: rgba(0, 0, 0, 0.05);*/
}
.table-striped tbody tr:nth-of-type(2n) {
	background-color: #fcfff7;              /*列表第二分色*/
	/*background-color: #e3f2fc;*/
    /*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-top: 1px solid #ddd;
}

.table > tbody > tr > td {
	font-size: 1em;
	line-height: 1.42857143;
	font-weight: 500;
	color: #212529;

    /*padding: 8px 25px;*/
	padding: 8px 10px;
    vertical-align: top;
    border-top: 1px solid #ddd;
	word-break: break-all; /*自動折行*/
}
.table_list {
	font-size: 0.9375rem !important;
}
.table_td_vertical_align {
	font-size: 1.143em !important;
	vertical-align: middle !important;
}
.table_td_vertical_align a {
	color: #f16609 !important;
}
.table > tbody > tr > td a {
	color: #333;
}

.table > tbody > tr > td i {
	margin-left: 10px;
	color: #337ab7;
}

.table > tbody > tr > td a:hover {
	color: #c33305;
	/*color: #b411fe;*/
}

th {
    text-align: left;
}

td, th {
    padding: 0;
	word-break: break-all;
}

/*-------------------------------------*/
tr.tr-only-hide-light-green { 
	font-size: 1em;
	line-height: 1.42857143;
	font-weight: 500;
	color: #fff;
	background-color: #6aaa00 !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;
    border: 1px solid #ddd;
    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: #333;*/
	color: #90bf8d;      /*#005aa0*//*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 -------------------*/



.new-btn:not(:disabled):not(.disabled) {
    cursor: pointer;
}

.new-btn {
    display: inline-block;
	font-size: 0.875rem;
    line-height: 1.5;
    font-weight: bold;
	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: 999em;       
    transition: .3s all ease;	
}

.new-btn::after {	
	position: absolute;
    font-family: 'icomoon';
	font-size: 1.5rem;    
    content: "\e315";
    
	top: 18px; /*35%*/
    /*right: 35px;*/
	color: #c33305;
	/*color: #ffd426;*/
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.new-btn:hover::after {
    color: #fff;
	/*color: #000;*/
}

.new-btn.btn-black {
	color: #234700;
	background: #92c035;
	/*color: #fff;*/
    /*background: #396aa6;*/
}

.new-btn.btn-black:hover {
	color: #fff;
	background: #c33305;
    /*background: #2cb9f0;*/
}



































