/* 行動版面: 480px 以下。 */

.banner{
	padding: 5vw 0 0;
    background: no-repeat center bottom;
    min-height: 300px;
    background-size: cover;
}

/* 表格版面: 481px 到 768px。樣式繼承自: 行動版面。 */

@media only screen and (min-width: 481px) {
.banner{
	padding: 5vw 0 0;
    min-height: 400px;
    background-size: cover;
}
}

/* 桌面版面: 769px 到最大 1232px。樣式繼承自: 行動版面和表格版面。 */

@media only screen and (min-width: 980px) {
.banner{
	padding: 5vw 0 0;
    min-height: 600px;
    background-size: cover;
}
}

