
.page-banner {
    width: 100%;
    padding: 0;
    margin: 0;
    position: relative;
	height: 20vw;
}

.page-banner:before {
    content: "";
    background:color-mix(in srgb, var(--accent-color), transparent 60%);
    position: absolute;
    inset: 0;
    z-index: 2;
}

.page-banner img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-banner .text-box {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 3;
}

/* ==平板電腦====================================== */
@media screen and (min-width: 576px) and (max-width: 991px) {

	.page-banner {
		height: 30vw;
	}

}
/* ==手機電腦====================================== */
@media screen and (max-width: 575px) {

	.page-banner {
		height: 40vw;
	}

}