		.sourcept {
            letter-spacing:0px;
            font-weight: normal;
        }
        .newsContent * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        .newsContent h1.main-title {
            text-align: center;
            color: #222;
            margin-bottom: 40px;
            font-size: 2.5em;
            padding-bottom: 15px;
            border-bottom: 3px solid #0056b3;
            display: block;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        /* 容器 */
        .newsContent .container {
            max-width: 1200px; /* 默認寬度 */
            margin: 0 auto;
            background-color: rgb(255, 255, 255, 0.25);;
            padding: 30px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            border-radius: 8px;
            margin-bottom: 60px; /* 每個樣式區塊之間的間距 */
        }

        /* 列表標題 */
        .newsContent .list-header {
            text-align: center;
            margin-bottom: 30px;
        }
        .newsContent .list-header h2 {
            font-size: 2.2em;
            color: #222;
            border-bottom: 2px solid #0056b3;
            display: inline-block;
            padding-bottom: 10px;
            margin-bottom: 10px;
        }
        .newsContent .list-header p {
            font-size: 1.1em;
            color: #666;
        }

        /* 查看更多按鈕 */
        .newsContent .view-more-button-wrapper {
            text-align: center;
            margin-top: 40px;
        }
        .newsContent .view-more-button {
            display: inline-block;
            padding: 12px 30px;
            background-color: #a70800;
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
            font-size: 1.1em;
            font-weight: bold;
            transition: background-color 0.3s ease;
        }
        .newsContent .view-more-button:hover {
            background-color: #8a0600;
        }
		
		.grid-container.pt {
			text-align: initial;
			letter-spacing: initial;
		}

        /* 響應式通用調整 */
        @media (max-width: 768px) {
            .newsContent .main-title {
                font-size: 2em;
                margin-left: 15px;
                margin-right: 15px;
            }
            .newsContent .container {
                padding: 20px;
                margin: 0 15px 40px 15px;
            }
            .newsContent .list-header h2 {
                font-size: 1.8em;
            }
            .newsContent .view-more-button {
                padding: 10px 25px;
                font-size: 1em;
            }
        }

        @media (max-width: 480px) {
            .newsContent .main-title {
                font-size: 1.8em;
            }
            .newsContent .container {
                padding: 15px;
                margin: 0 10px 30px 10px;
            }
            .newsContent .list-header h2 {
                font-size: 1.6em;
            }
        }
		
		.newsContent .news-list-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            padding: 0;
            list-style: none;
        }

        .newsContent .news-item {
            display: block;
            text-decoration: none;
            color: #333;
            background-color: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .newsContent .news-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
        }

        .newsContent .news-item-thumbnail {
            width: 100%;
            height: 200px;
            overflow: hidden;
            border-bottom: 1px solid #eee;
			position: relative;
        }

        .newsContent .news-item-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.3s ease;
        }

        .newsContent .news-item:hover .news-item-thumbnail img {
            transform: scale(1.05);
        }

        .newsContent .news-item-content {
            padding: 15px;
        }

        .newsContent .news-item-title {
            font-size: 1em;
            font-weight: bold;
            line-height: 1.2;
            margin-bottom: 10px;
            color: black;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .newsContent .news-item-meta {
            font-size: 0.85em;
            color: #777;
        }
        .newsContent .news-item-meta span {
            margin-right: 10px;
        }
		
		.newsContent .news-item-thumbnail::before {
			content: ' ';
			width: 1.5em;
			height: 1.5em;
			display: block;
			background-size: contain;
			position: absolute;
			bottom: .5em;
			left: .5em;
			z-index:1;
		}
		
		.newsContent .news-item-thumbnail.newsType::before{
			background-image: url(iconNews.png);
		}
		
		.newsContent .news-item-thumbnail.galleryType::before{
			background-image: url(iconGallery.png);
		}
		
		.newsContent .news-item-thumbnail.videoType::before{
			background-image: url(iconVideo.png);
		}

        /* 樣式一響應式 */
        @media (max-width: 992px) {
            .newsContent .news-list-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            }
        }
        @media (max-width: 768px) {
            .newsContent .news-list-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .newsContent .news-item-thumbnail {
                height: 180px;
            }
            .newsContent .news-item-title {
                font-size: 1.15em;
            }
        }
        @media (max-width: 480px) {
            .newsContent .news-item-thumbnail {
                height: 160px;
            }
            .newsContent .news-item-content {
                padding: 12px;
            }
            .newsContent .news-item-title {
                font-size: 1.05em;
            }
            .newsContent .news-item-meta {
                font-size: 0.8em;
            }
        }