
.appicon-table {
  width: 100%;
  border-collapse: collapse;
}

.appicon-table td {
  padding: 8px;
  text-align: center;
}

.appicon-table img {
  max-height: 80px;
}
/* 在小螢幕上只顯示一行 */
@media only screen and (max-width: 600px) {
  .appicon-table {
    width: 100%;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* for momentum scrolling on iOS */
  }
  
  .appicon-table td {
    width: auto;
    float: none;
  }
  
  .appicon-table img {
    max-width: 100%;
    height: auto;
    max-height: 50px;
  }
}
