/* Mobile Styles 響應式樣式 */

/* Responsive Adjustment 響應式調整 */
/* mobile screen */
@media screen and (max-width: 575.98px) {
}

/* Small Devices (Landscape Phones, ≥576px and <768px) */
@media (min-width: 576px) and (max-width: 767.98px) {
}

/* Medium Devices (Tablets, ≥768px and <992px) */
@media (min-width: 768px) and (max-width: 991.98px) {
}

/* Large Devices (Desktops, ≥992px and <1200px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
}

/* Extra Large Devices (Large Desktops, ≥1200px and <1400px) */
@media (min-width: 1200px) and (max-width: 1399.98px) {
}

/* XX Large Devices (Very Large Desktops, ≥1400px) */
@media (min-width: 1400px) {
}
