
/*表格-------------------------------------------------------------------------------------------------------*/



table {
    width: 100%;
    margin: 0 auto;
    border-radius: 3px;
    overflow: hidden;
}
	 tr {
	}
		 td {
			text-align:center;
			vertical-align:middle;
			font-size:.9375em;
			line-height: 24px;
			color:#333;
			padding:10px 15px;
			box-sizing:border-box;
			border-bottom: solid 1px #bebebe;
			border-right: solid 1px #bebebe;
			background: #f4f4f4;
			
		}

        td a{
            text-decoration: none;
            color: var(--primary_color);
        }

        td a:hover{
            text-decoration: none;
            opacity: 0.7;
        }

		/*第一組tr*/
		tr:first-of-type td {
			border-top: solid 1px #bebebe;
		}
		/*第三組tr*/
		tr:nth-of-type(3) td {
		}
		
		
		/*第一個td*/
		td:first-of-type {
			width:20%;
			border-left: solid 1px #bebebe;
			white-space: nowrap;
		}
			/*td.cPL_twoBtn {
				padding: 5px 0px;
			}*/
		
		/*2進位的tr*/
		tr:nth-of-type(2n+0) td {
			background:#fff;
		}




@media (max-width:768px){
	
td:first-of-type {
    width: 30%;
}
		 td {
			padding:5px 5px;
		}

}





