.forums-page {
    display: flex; /* 使用 flexbox 佈局 */
    flex-direction: row; /* 元素從左到右排列 */
    padding-bottom: 10px; /* 添加內邊距 */
    margin-bottom: 10px; /* 添加底部間距 */
    margin-top: 52px;
    margin-inline-end: auto;
    margin-inline-start: auto;
    #width: 980px;
    width: 1200px;
}

.forums-image-page {
    #display: flex; /* 使用 flexbox 佈局 */
    flex-grow: 1;
    height: 100%;
    position: sticky;
    top: 0;
	#min-width: 600px;
	max-width: 500px;
	cursor:pointer;
}
.forums-image-page img{
	opacity:1;
	transition: all 0.2s;
}
.forums-image-page img:hover{
	opacity:0.7;
	transition: all 0.2s;
}
.forums-image-page img {
    display: block; /* 設置圖片為區塊元素 */
    margin: 0 auto;
    #width: 60%; /* 圖片寬度 60% */
    #height: auto; /* 圖片高度自動 */
    height: 400px;
    #width: 80%;
    #width: 420px;
    max-width:420px;
	transition:all .3s;
}
.forums-image-page-largeimg
{    
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
	min-width: 420px;
    min-height: 400px;
	transition:all .3s;
}
.forums-image-page-largeimg:hover{
	opacity:0.7;
	transition: all 0.2s;
}
.forums-image-page p {
    font-size: 30px;
    font-weight: bold;
    color: #000;
    padding: 0 0 0 20px; /* 內邊距 */
    text-align: center; /* 文字置中 */
}

.forums-style {
    flex-grow: 1;
    #width:30%;
    width:375px;
	margin-bottom: 100px;
}

.forums-style h3 {
    font-size: 20px;
    font-weight: bold;
    color: #000;
    padding: 10px;
    margin-bottom: 10px;
}
.forums-style p{
    font-size: 14px;
    color: #000;
    padding: 0 10px ;
    margin-bottom: 10px;
}
.forums-style a{
    font-size: 20px;
    padding: 0 10px ;
    margin-bottom: 10px;
    text-decoration: none; /* 移除底線 */
}
.hr
{
	border: 1px solid #e2e2e2;
    margin: 50px 0px;
}
@media(max-width:1024px)
{
	.forums-page 
	{
		display: flex;
		flex-direction: column;
		padding-bottom: 10px;
		margin-bottom: 10px;
		margin-top: 52px;
		margin-inline-end: auto;
		margin-inline-start: auto;
		width: unset;
		justify-content: center;
		align-items: center;
	}
	.forums-image-page 
	{
		flex-grow: 1;
		height: 100%;
		position: relative;
		top: 0;
		max-width: 500px;
		cursor: pointer;
	}
	.forums
	{
        margin-top: 220px;
	}
}