﻿.autoSC {
    width:100%;
    height:auto;
}
.autoSC img { 
  max-width: 100%;
  width    : 100%;
  height   : auto; 
}
img.smallscreen { 
  display: none; 
}
/* 如果使用者視窗寬度 <= 768px */
@media screen and (max-width: 768px) {
  img { 
    display: none; 
  }
  img.smallscreen { 
    display: block; 
  }
}
