
/* 子頁面 頂部大圖 - 滿屏橫向 */
.page-banner {
    width: 100%;
    height: 450px;
    margin-top: 90px;
    position: relative;
}
.page-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 頁面標題 欄目名稱 */
.page-title {
    padding: 50px 0 20px 0;
    text-align: center;
}
.page-title h1 {
    font-size: 42px;
    color: #111;
    margin-bottom: 10px;
    font-weight: 700;
}
.page-title .sub-title {
    font-size: 16px;
    color: #666;
    letter-spacing: 1px;
}

/* 公司介紹 圖文混排 */
.about-page {
    padding: 10px 0;
}
.about-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 50px;
}
.about-row:nth-child(even) {
    flex-direction: row-reverse;
}
.about-img {
    flex: 1;
}
.about-img img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.about-text {
    flex: 1;
    font-size: 17px;
    line-height: 2;
    color: #333;
    text-align: justify;
}
.about-container{
    margin: 5px 40px 60px 40px;
}
.about-container-text{
	font-size: 16px;
    line-height: 2;
    color: #333;
    text-align: justify;
}
.about-container-img{
	display: flex;
	align-items: center‌;
    justify-content: center;
	margin-top: 50px;
}
.about-container-img img{
	width: 33%;
	margin-left:10px;
	margin-top:10px;
	border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.text_space{
	display: inline-block;
	width:20px;
}

		
/* 響應式 */
@media (max-width: 992px) {
    .about-row, .about-row:nth-child(even) {
		flex-direction: column;
		gap: 30px;
    }
	.about-container{margin: 5px 10px 20px 10px;}
	.about-container-img{display:inline-block;}
	.about-container-img img{width: 99%;margin-left:0px;}
}
@media (max-width: 768px) {
    .nav-menu {
		position: fixed;
		top: 90px;
		left: -100%;
		width: 100%;
		height: calc(100vh - 90px);
		background: #fff;
		flex-direction: column;
		justify-content: center;
		transition: left 0.3s;
    }
    .nav-menu li { margin: 18px 0; }
    .nav-menu.active { left: 0; }
    .mobile-menu-btn { display: block; }
    .page-banner { height: 300px; }
    .page-title h1 { font-size: 32px; }
	.about-container{margin: 5px 10px 20px 10px;}
	.about-container-img{display:inline-block;}
	.about-container-img img{width: 99%;margin-left:0px;}
    /* 移动端适配 */
    .footer {
		padding: 50px 0 20px; /* 减少移动端内边距 */
    }
    .footer-wrap {
		flex-direction: column;
		text-align: center;
		gap: 30px; /* 移动端缩小间距 */
    }
    .footer-info {
		text-align: left; /* 移动端文字靠左 */
    }
    .copyright {
		margin-top: 20px;
		padding-top: 20px;
		font-size: 14px; /* 移动端版权文字缩小 */
    }
}