table { 
    width: 100%; 
    border-collapse: collapse; 
    background: #382a21;
  }
  /* Zebra striping */
  tr:nth-of-type(odd) { 
    background: #23130A; 
  }
  th { 
    background: #38220E; 
    color: #FFAD4A; 
    border-bottom: 3px #FFAD4A solid;
    /*font-weight: bold;*/ 
  }
  tr td{    vertical-align: center;
    line-height: 1.2rem;
}
  td, th { 
    padding: 2%;
    border-left: 10px solid #23130A;
    border-right: 10px solid #23130A;

    text-align: center; 
  }
  @media only screen and (max-width: 470px),(min-device-width: 470px) and (max-device-width: 1024px)  {
    .container{
      width: 100%;
    }
    /* Force table to not be like tables anymore */
    table, thead, tbody, th, td, tr { 
      display: block; 
    }
    
    /* Hide table headers (but not display: none;, for accessibility) */
    thead tr { 
      position: absolute;
      top: -9999px;
      left: -9999px;
    }
    
    tr { border: 1px solid #ccc; 
      padding: 2%;}
    
    td { 

      /* Behave  like a "row" */
      border: none;
      /*border-bottom: 1px solid #d86f6f; */

      position: relative;
      padding-left: 5%; 
      text-align: left;
    }
    
    td:before { 
      /* Now like a table header */
      position:relative;
      /* Top/left values mimic padding */
      top: 0px;
      left: 0px;
      width: 45%; 
      padding-right: 10px; 
      white-space: nowrap;
    }
    
    /*Label the data*/
    td:nth-of-type(1):before { content: "時間:"; }
    td:nth-of-type(2):before { content: "活動主題:"; }
    td:nth-of-type(3):before { content: "備註:"; }
    td:nth-of-type(4):before { content: "地點:"; }
   
  }

