	@media screen and (min-width: 991.99px) {
	  .whats-new-table td .centre {
	    text-align: center !important;
	    display: block;
	    /* 或者用 inline-block */
	    width: 100%;
	  }
	}


	@media screen and (max-width: 991.98px) {

	  .whats-new-table,
	  .whats-new-table tbody,
	  .whats-new-table tr,
	  .whats-new-table td {
	    display: block;
	  }

	  /* 1. 依然隱藏原本大螢幕的橫向表頭 */
	  .whats-new-table thead {
	    display: none;
	  }

	  .whats-new-table tbody tr:nth-of-type(odd) {
	    background-color: #ffffff;
	  }


	  .whats-new-table tr {
	    margin-bottom: 25px;
	    border: 1px solid #d0eccf;
	    border-radius: 8px;
	    overflow: hidden;
	    padding-bottom: 10px;
	  }


	  .whats-new-table tr td:first-child {
	    background-color: #D9EAD3;
	    font-weight: bold;
	    font-size: 16px;
	    padding: 10px 15px;
	  }


	  .whats-new-table td {
	    padding: 10px 15px;
	  }


	  .whats-new-table td:nth-of-type(2)::before {
	    content: "上午十時至下午一時";
	    display: block;
	    font-weight: bold;
	    color: #2b5e28;
	    margin-bottom: 5px;
	    font-size: 14px;
	  }

	  .whats-new-table td:nth-of-type(3)::before {
	    content: "下午三時至下午六時";
	    display: block;
	    font-weight: bold;
	    color: #2b5e28;
	    margin-bottom: 5px;
	    font-size: 14px;
	  }

	  .location-item-none {
	    display: none !important;
	  }

	  .centre {
	    text-align: left !important;
	  }
	}