.news_detail_wrap_padding{
    padding: 50px;
}

.news_header{
	position: relative;
	display: flex;
    flex-direction: row;
    align-items: start;
	margin-bottom: 20px;
    gap: 10px;
}

.news_date{
	position: relative;
	display: block;
	width: fit-content;
	padding: 5px 40px;
	color: #fff;
	font-weight: bold;
	font-size: 2rem;
	white-space: nowrap;
	border-radius: 50px;
	background-color: #163C91;
}

.news_title{
	position: relative;
	display: -webkit-box;
	padding: 5px 0;
	font-weight: bold;
	font-size: 2rem;
	color: #163C91;
    text-align: left;
}

.news_box{
    position: relative;
    display: block;
    max-width: 1024px;
    margin: 50px auto;
    min-height: 20rem;
}

/*html編輯器區塊 css - start*/
.news_wrap{
    text-align: left;
}
.news_wrap ul{
    padding-left: 15px;
}
.news_wrap ol{
    padding-left: 15px;
}
.news_wrap img,
.news_wrap video,
.news_wrap iframe {
    margin: 0 auto;
}
.news_wrap .image{
    text-align: center;
}
.news_wrap blockquote {
    overflow: hidden;
    margin-left: 0;
    margin-right: 0;
    font-style: italic;
    border-left: 5px solid #ccc;
    font-family: Georgia, serif;
    padding: 10px 20px;
    margin: 0 0 20px;
    font-size: 17.5px;
}
.news_wrap .table table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    height: 100%;
    border: 1px double #b3b3b3;
}
.news_wrap .table table td, .news_wrap .table table th {
    min-width: 2em;
    padding: .4em;
    border: 1px solid #bfbfbf;
}

/*html編輯器區塊 css - end*/


.download_file_area{
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.download_file_header{
    position: relative;
    display: block;
    width: fit-content;
}

.download_file_title{
    position: relative;
    display: block;
    font-size: 1.5rem;
    color: #000;
    padding: 2px 0;
    border-bottom: 1px solid #000;
}

.download_file_body{
    position: relative;
    display: flex;
    flex-direction: row;
    background-color: #F4F4F4;
    padding: 30px;
    gap: 40px;
}

.download_file_list{
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 10px;
    margin: 10px;
}

.download_file_list:hover .download_file_name{
    color: #f00;
}

.download_icon{
    width: 45px;
    height: 45px;
}

.download_file_name{
    position: relative;
    display: block;
    font-size: 1.3rem;
    color: #0068FF;
    text-decoration: underline;
}


.news_back_btn{
	position: relative;
	display: block;
	width: fit-content;
	font-size: 2rem;
	border-radius: 50px;
	color: #fff;
	padding: 5px 40px;
	background-color: #FF3D00;
	margin-top: 30px;
	margin-left: auto;
	margin-right: auto;
}

.news_back_btn:hover{
	transform: scale(1.1);
}

@media screen and (max-width:768px) {
    /* html編輯器區塊 - start */
    .news_wrap img,
    .news_wrap video,
    .news_wrap iframe {
        /* 讓圖片、影片、iframe 等都能跟著容器縮放 */
        max-width: 100%;
        height: auto;
        display: block; /* 避免一些瀏覽器的 inline 行為 */
    }

    /* html編輯器區塊 - end */
}

@media screen and (max-width: 680px) {
    .news_detail_wrap_padding{
        padding: 25px;
    }

    .news_header{
		flex-direction: column;
		align-items: start;
	}

	.news_title{
        padding: 0;
		font-size: 1.5rem;
	}

	.news_date{
		font-size: 1.5rem;
	}

    .download_file_title{
        font-size: 1.3rem;
    }

    .download_file_body{
        flex-direction: column;
        gap: 0px;
    }

    .download_icon{
        width: 30px;
        height: 30px;
    }

    .download_file_name{
        font-size: 1.1rem;
    }

    .news_back_btn{
		font-size: 1.3rem;
	}

}