@charset "utf-8";
/* CSS Document */

/*============== 共通 css開始 ==============*/
body{
	font-family: "微軟正黑體";
	line-height: 1.5em;
	margin:0;
	color: #707070;
}

a{
	text-decoration:none;
	outline: none;
	hlbr:expression(this.onFocus=this.blur());		
}

a img{
	border:none;
}

a:hover,a:focus{
	text-decoration: none;
}

:focus,button:focus{
    outline: none;
}

.htmleditor{
	width: 100%;
	word-break:break-all;
	/* overflow-x: hidden; */
}
.htmleditor img{
	max-width: 100%;
}
.htmleditor.mobile{
	display: none;
}
@media(max-width: 767px){
	.htmleditor.desk{
		display: none;
	}
	.htmleditor.mobile{
		display: block;
	}
}


.gs_container{
	padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
	width: 1600px;
}

@media(max-width: 1640px){
	.gs_container{
		width: 1140px;
	}
}

@media(max-width: 1199px){
	.gs_container{
		width: 960px;
	}
}

@media(max-width: 991px){
	.gs_container{
		width: 720px;
	}
}

@media(max-width: 767px){
	.gs_container{
		width: 540px;
	}
}

@media(max-width: 575px){
	.gs_container{
		width: 100%;
	}
}
/*============== 共通 css開始 ==============*/

#head_wrap{
	position: fixed;
	top: 0;
	left: 0;
	box-shadow: 0 0 5px #D2D2D2;
	width: 100%;
	z-index: 99999;
	background: #fff;
}

#head_top_wrap{
	padding: 10px 0;
	border-bottom: 1px solid #D2D2D2;
}

#head_top_block{
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.head_switch_block{
	display: flex;
	align-items: center;
}

.head_switch_bar{
	margin: 0 15px;
	width: 40px;
	height: 10px;
	border-radius: 30px;
	background: #fff;
	border: 1px solid #707070;
	position: relative;
	transition: all 0.8s ease-in;
}

.head_switch_bar.active{
	background: #707070;
}

.head_switch_icon{
	position: absolute;
	top: 50%;
	left: 0px;
	transform: translate(-50%, -50%);
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 0 5px #D2D2D2;
	transition: all 0.5s ease-in-out;
}

.head_switch_bar.active .head_switch_icon{
	left: 100%;
}

.head_switch_text{
	color: #707070;
	transition: all 0.4s ease-in-out;
}

.head_switch_text:hover{
	color: #D6001F;
}

.head_switch_text.active{
	color: #D6001F;
}

#head_top_right_block{
	display: flex;
	align-items: center;
}

.head_search_block{
	position: relative;
	width: 150px;
	margin-right: 10px;
}

@media(max-width: 575px){
	.head_search_block{
		display: none;
	}
}

.head_search_mobile_block{
	position: relative;
	width: 180px;
	display: none;
}

@media(max-width: 575px){
	.head_search_mobile_block{
		display: block;
	}
}

.head_search_input{
	width: 100%;
	border: 1px solid #707070;
	border-radius: 30px;
	padding-left: 25px;
	padding-right: 15px;
}

.head_search_input_icon{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 5px;
}

#head_bottom_wrap{
	padding: 10px 0;
}

@media(max-width: 991px){
	#head_bottom_wrap{
		padding: 0;
	}
}

#head_bottom_block{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/*============== 電腦版選單 ==============*/
#main_menu_block{
	margin: 0 -15px;
}

@media(max-width: 991px){
	#main_menu_block{
		display: none;
	}
}

.main_menu{
	padding: 20px;
	color: #707070;
	font-size: 20px;
	cursor: pointer;
}

.main_menu:hover{
	color: #707070;
}

.main_menu span{
	position: relative;
	padding-bottom: 5px;
}

.main_menu span:before{
	background: #707070;
	height: 3px;
	width: 0%;
	position: absolute;
	bottom: 0;
	left: 0;
	content: '';
	transition: all 0.4s ease-in-out;
}

.main_menu:hover span:before{
	width: 100%;
}

.main_menu.active span:before{
	width: 100%;
}

.main_menu2_wrap{
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	background: #EFEFEF;
	display: none;
	justify-content: center;
	padding: 20px 0;
}

.main_menu.open .main_menu2_wrap{
	display: flex;
}

@media(max-width: 991px){
	.main_menu2_wrap{
		display: none!important;
	}
}

.main_menu2_block{
	padding-left: 15px;
	border-left: 2px solid #707070;
	margin: 0 15px;
	max-width: 250px;
}

.main_menu2_top_list{
	color: #333;
}

.main_menu2_list{
	padding-left: 15px;
	display: inline-block;
	width: 100%;
	padding: 5px 0 5px 15px;
	color: #707070;
	transition: all 0.35s ease-in-out;
}

.main_menu2_list:hover{
	color: #D6001F;
}

.main_menu2_list.active{
	color: #D6001F;
}
/*============== 電腦版選單 ==============*/

/*============== 手機版選單 ==============*/
#mobile_button{
    display: none;   
}

@media(max-width: 991px){
    #mobile_button{
        display: block;
    }
}

.ham {
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
	transition: transform 400ms;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.hamRotate.active {
	transform: rotate(45deg);
}
.hamRotate180.active {
	transform: rotate(180deg);
}
.line {
	fill:none;
	transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
	stroke:#000;
	stroke-width:5.5;
	stroke-linecap:round;
}
.ham1 .top {
	stroke-dasharray: 40 139;
}

.ham1 .bottom {
	stroke-dasharray: 40 180;
}

.ham1.active .top {
	stroke-dashoffset: -98px;
}

.ham1.active .bottom {
	stroke-dashoffset: -138px;
}

#main_menu_mobile_wrap{
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	padding: 20px;
	height: calc(100vh - 109px);
	overflow-y: auto;
	display: none;
	background: #fff;
}

@media(min-width: 992px){
	#main_menu_mobile_wrap{
		display: none!important;
	}
}

#main_menu_mobile_wrap::-webkit-scrollbar {
  width: 5px;
}
 
#main_menu_mobile_wrap::-webkit-scrollbar-track {
  background: #ddd;
}
 
#main_menu_mobile_wrap::-webkit-scrollbar-thumb {
  background: #666; 
}

.main_menu_mobile{
	font-size: 20px;
	font-weight: 600;
	color: #707070;
	display: inline-block;
	width: 100%;
	cursor: pointer;
}

.main_menu_mobile:hover{
	color: #707070;
}

.main_menu_mobile span{
	padding: 10px 0;
	display: inline-block;
}

.main_menu2_mobile_wrap{
	border-top: 1px solid #707070;
	background: #EFEFEF;
	display: none;
}

.main_menu2_mobile_block{
	border-bottom: 1px solid #707070;
	padding: 0 10px;
}

.main_menu2_mobile_top_list{
	padding: 10px 0;
	color: #707070;
	font-weight: 600;
}

.main_menu2_mobile_list{
	color: #707070;
	padding-bottom: 10px;
	display: inline-block;
	width: 100%;
	font-weight: 500;
	padding-left: 15px;
}
/*============== 手機版選單 ==============*/

/*============== 主輪播 ==============*/
#slider_wrap{
	width: 100%;
}

@media(max-width: 575px){
	#slider_wrap{
		display: none;
	}
}

.slider_list{
	width: 100%;
	height: 36.9792vw; /* 1920 * 710 */
}

.slider_list_link{
	width: 100%;
	height: 100%; /* 1920 * 710 */
	display: inline-block;
}

.slider_list_img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#slider_mobile_wrap{
	width: 100%;
	display: none;
}

@media(max-width: 575px){
	#slider_mobile_wrap{
		display: block;
	}
}

.slider_mobile_list{
	width: 100%;
	height: 145.3333vw; /* 375 * 545 */
}
/*============== 主輪播 ==============*/

/*============== 快速連結 ==============*/
#index_link_list_wrap{
	background: #BCBBBB;
	width: 100%;
	overflow-x: hidden;
	margin-bottom: 60px;
}

.index_link_list_block{
	display: flex;
	flex-wrap: wrap;
}

@media(max-width: 991px){
	.index_link_list_block{
		display: none;
	}
}

.index_link_list{
	padding: 30px 2px;
	color: #fff;
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 25%;
	text-align: center;
	transition: all 0.4s ease-in-out;
}

.index_link_list:hover{
	color: #fff;
	background: #8FC31F;
}

.index_list_link_mobile_block{
	display: none;
}

@media(max-width: 991px){
	.index_list_link_mobile_block{
		display: block;
	}
}

.index_link_list_mobile{
	padding: 10px 2px;
	color: #fff;
	width: 100%;
	text-align: center;
	transition: all 0.4s ease-in-out;	
	overflow: hidden;
	display: inline-block;
}

.index_link_list_mobile:hover{
	color: #fff;
	background: #8FC31F;
}
/*============== 快速連結 ==============*/

/*============== 首頁-永續新聞 ==============*/
.index_page_title{
	padding: 10px 0;
	text-align: center;
	border-bottom: 1px solid #707070;
	margin: 20px 0;
}

.index_page_title span{
	display: inline-block;
	padding-left: 15px;
	position: relative;
	font-size: 36px;
	line-height: 1.2em;
	font-weight: 600;
	color: #707070;
}

.index_page_title span:before{
	position: absolute;
	top: 50%;
	left: 0;
	width: 8px;
	height: 90%;
	transform: translateY(-50%);
	background: #8FC31F;
	content: "";
}

.index_news_list_block{
	display: flex;
	margin: 0 -10px;
	flex-wrap: wrap;
}

.index_news_list{
	width: 33.3333%;
	padding: 0 10px;
	margin-bottom: 20px;
	display: none;
}

.index_news_list.pc_type{
	display: block;
}

@media(max-width: 991px){
	.index_news_list{
		width: 50%;
		display: block;
	}
}

.index_news_list_href{
	display: inline-block;
	color: #313131;
	border: 1px solid #707070;
	width: 100%;
}

.index_news_list_href:hover{
	color: #313131;
	opacity: 0.7;
}

.index_news_list_content_block{
	padding: 0 10px;
}

.index_news_list_date{
	padding: 10px 0;
}

.index_news_list_title{
	margin-bottom: 5px;
	font-weight: 600;
	overflow:hidden;
	display: -webkit-box;
    white-space: normal;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	width: 100%;
	overflow-x: hidden;
	height: 48px;
}

.index_news_list_button{
	margin-bottom: 5px;
	text-align: right;
}

.index_news_list_img{
	width: 100%;
	height: 278px; /* 475 * 260*/
}

@media(max-width: 1640px){
	.index_news_list_img{
		height: 194px;
	}
}

@media(max-width: 1199px){
	.index_news_list_img{
		height: 161px;
	}
}

@media(max-width: 991px){
	.index_news_list_img{
		height: 182px;
	}
}

@media(max-width: 767px){
	.index_news_list_img{
		height: 133px;
	}
}

@media(max-width: 575px){
	.index_news_list_img{
		height: calc(((100vw - 30px) / 2 - 12px) / 475 * 260);
	}
}

.index_more_button_block{
	text-align: center;
	margin-bottom: 60px;
}

.index_more_button{
	display: inline-block;
	padding: 10px 50px;
	border: 1px solid #707070;
	color: #707070;
	transition: all 0.35s ease-in-out;
}

.index_more_button:hover{
	color: #fff;
	background: #707070;
}
/*============== 首頁-永續新聞 ==============*/

/*============== 首頁-關於我們 ==============*/
#index_about_block{
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 60px;
}

#index_about_media_block{
	width: 60%;
	height: 553px; /* 920 * 540 */
}

@media(max-width: 1600px){
	#index_about_media_block{
		height: 391px;
	}
}

@media(max-width: 1199px){
	#index_about_media_block{
		height: 328px;
	}
}

@media(max-width: 991px){
	#index_about_media_block{
		width: 100%;
		height: 405px;
	}
}

@media(max-width: 767px){
	#index_about_media_block{
		height: 299px;
	}
}

@media(max-width: 575px){
	#index_about_media_block{
		height: calc((100vw - 30px) / 92 * 54);
	}
}

#index_about_media_block iframe{
	width: 100%!important;
	height: 100%!important;
}

#index_about_content_block{
	width: 40%;
	height: 553px; /* 920 * 540 */
	background: #E9E9E9;
	padding: 20px;
	display: flex;
	justify-content: center;
	color: #707070;
	overflow-y: auto;
}

@media(max-width: 1600px){
	#index_about_content_block{
		height: 391px;
	}
}

@media(max-width: 1199px){
	#index_about_content_block{
		height: 328px;
	}
}

@media(max-width: 991px){
	#index_about_content_block{
		width: 100%;
		height: auto;
	}
}

#index_about_content_block::-webkit-scrollbar {
  width: 5px;
}
 
#index_about_content_block::-webkit-scrollbar-track {
  background: #ddd;
}
 
#index_about_content_block::-webkit-scrollbar-thumb {
  background: #666; 
}

#index_about_title{
	width: 100%;
	position: relative;
	padding: 15px 0 15px 20px;
	font-size: 36px;
	font-weight: 600;
	margin-bottom: 15px;
	line-height: 1.2em;
}

#index_about_title::before{
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 10px;
	height: 32px;
	background: #37B48D;
	transform: translateY(-50%);
}
/*============== 首頁-關於我們 ==============*/

/*============== 首頁-下方資訊 ==============*/
#index_info_img{
	width: 100%;
	height: 591px; /* 1620 * 610 */
	object-fit: cover;
	margin-bottom: 20px;
}

@media(max-width: 1640px){
	#index_info_img{
		height: 418px; /* 1620 * 610 */
	}
}

@media(max-width: 1199px){
	#index_info_img{
		height: 350px; /* 1620 * 610 */
	}
}

@media(max-width: 991px){
	#index_info_img{
		height: 260px; /* 1620 * 610 */
	}
}

@media(max-width: 767px){
	#index_info_img{
		height: 192px; /* 1620 * 610 */
	}
}

@media(max-width: 575px){
	#index_info_img{
		height: calc((100vw - 30px) / 162 * 61); /* 1620 * 610 */
	}
}

#index_info_content{
	margin-bottom: 60px;
}
/*============== 首頁-下方資訊 ==============*/

/*============== 頁尾 ==============*/
#foot_top_wrap{
	background: #DEDEDE;
	padding: 30px 0;
}

#foot_top_block{
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px;
}

.foot_top_list{
	width: 33.3333%;
	padding: 0 10px;
}

@media(max-width: 991px){
	.foot_top_list{
		width: 100%;
		margin-bottom: 15px;
	}
}

.foot_top_list_title{
	color: #686868;
	margin-bottom: 15px;
	text-align: center;
	font-size: 20px;
}

.foot_top_list_title span{
	display: inline-block;
	padding-bottom: 10px;
	position: relative;
}

.foot_top_list_title span::before{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: #355533;
	content: "";
}

.foot_top_form_radio_row{
	width: 100%;
	display: flex;
	justify-content: space-around;
	padding: 5px 0;
}

.foot_top_form_radio_block{
	display: flex;
	align-items: center;
}

.foot_top_form_radio{
	width: 20px;
	height: 20px;
	margin-right: 10px;
}

.foot_top_form_title{
	margin: 0;
	font-size: 20px;
}

.foot_top_form_row{
	padding: 10px 0;
}

.foot_top_form_input{
	width: 100%;
	background: none;
	border: none;
	border-bottom: 1px solid #707070;
	padding: 5px;
	font-size: 18px;
}

.foot_top_form_captcha_block{
	display: flex;
	align-items: center;
}

.foot_top_form_checkbox_block{
	display: flex;
	align-items: center;
}

.foot_top_form_checkbox{
	width: 15px;
	height: 15px;
	margin-right: 5px;
}

.foot_top_form_checkbox_title{
	margin: 0;
}

.foot_top_form_checkbox_title a{
	color: #707070;
	transition: all 0.35s ease-in-out;
}

.foot_top_form_checkbox_title a:hover{
	opacity: 0.7;
	color: #707070;
}

.foot_top_form_button{
	background: none;
	border-radius: 6px;
	border: 1px solid #707070;
	width: 100%;
	text-align: center;
	padding: 5px 0;
	transition: all 0.4s ease-in-out;
}

.foot_top_form_button:hover{
	background: #707070;
	color: #fff;
}

#foot_icon_link_block{
	display: flex;
	justify-content: center;
}

.foot_icon_link{
	display: inline-block;
	color: #333;
	font-size: 38px;
	transition: all 0.4s ease-in-out;
	margin: 0 6px;
}

.foot_icon_link:hover{
	color: #333;
	opacity: 0.7;
}

.foot_top_row{
	text-align: center;
	padding: 10px 0;
	font-size: 18px;
}

.foot_top_link{
	color: #707070;
	transition: all 0.4s ease-in-out;
}

.foot_top_link:hover{
	color: #707070;
	opacity: 0.7;
}

.foot_top_link_button{
	background: none;
	border-radius: 6px;
	border: 1px solid #707070;
	width: 100%;
	text-align: center;
	padding: 5px 0;
	display: inline-block;
	color: #707070;
	transition: all 0.4s ease-in-out;
}

.foot_top_link_button:hover{
	background: #707070;
	color: #fff;
}

#foot_bottom_wrap{
	background: #333333;
	padding: 5px 0;
}

#foot_bottom_block{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

@media(max-width: 767px){
	#foot_bottom_block{
		justify-content: center;
	}
}

.foot_bottom_row{
	color: #fff;
	padding: 5px 0;
}

@media(max-width: 767px){
	.foot_bottom_row{
		text-align: center;
	}
}

.foot_bottom_link{
	color: #fff;
	transition: all 0.35s ease-in-out;
	display: inline-block;
}

.foot_bottom_link:hover{
	color: #fff;
	opacity: 0.7;
}
/*============== 頁尾 ==============*/

/*============== 上方大圖 ==============*/
#head_img_block{
	width: 100%;
	height: 250px;
	/* height: calc(100vw / 1920 * 250); */
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 60px;
}

@media(max-width: 575px){
	#head_img_block{
		display: none;
	}
}

#head_img_mobile_block{
	width: 100%;
	/* height: 135px; */
	height: calc(100vw / 375 * 135);
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
	align-items: center;
	justify-content: center;
	margin-bottom: 60px;
	display: none;
}

@media(max-width: 575px){
	#head_img_mobile_block{
		display: flex;
	}
}

#head_img_title{
	font-size: 40px;
	font-weight: 600;
	color: #fff;
	text-shadow: 0 0 3px #333;
	line-height: 1.2em;
	text-align: center;
	text-shadow: 6px 3px 10px rgba(0, 0, 0, 1);
}

@media(max-width: 575px){
	#head_img_title{
		font-size: 32px;
	}
}

/*============== 上方大圖 ==============*/

/*============== 永續新聞 ==============*/
.news_list_wrap{
	margin-bottom: 60px;
}

.news_list{
	display: flex;
	width: 100%;
	padding: 20px 0;
	border-bottom: 1px solid #707070;
	color: #707070;
	flex-wrap: wrap;
}

.news_list:hover{
	color: #707070;
}

.news_list_img_block{
	position: relative;
	width: 330px;
	height: 181px; /* 475 * 260 */
}

@media(max-width: 991px){
	.news_list_img_block{
		width: 100%;
		height: 378.45px;
		margin-bottom: 10px;
	}
}

@media(max-width: 767px){
	.news_list_img_block{
		height: 279.73px;
	}
}

@media(max-width: 575px){
	.news_list_img_block{
		width: 100%;
		height: calc((100vw - 30px) / 475 * 260);
	}
}

.news_list_img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.35s ease-in-out;
}

.news_list:hover .news_list_img{
	opacity: 0.7;
}

.news_list_date{
	position: absolute;
	bottom: 0;
	left: 0;
	background: #fff;
/*	box-shadow: 0 0 3px #707070;*/
	padding: 0 20px;
}

.news_list_date_row{
	padding: 5px 0;
	font-size: 18px;
	text-align: center;
}

.news_list_date_row:first-child{
	border-bottom: 2px solid #707070;
}

.news_list_content_bloack{
	padding-left: 15px;
	width: calc(100% - 330px);
}

@media(max-width: 991px){
	.news_list_content_bloack{
		width: 100%;
		padding-left: 0;
	}
}

.news_list_title{
	margin-bottom: 10px;
	font-size: 28px;
	font-weight: 600;
	overflow:hidden;
	display: -webkit-box;
    white-space: normal;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	line-height: 1.2em;
}

.news_list_intro{
	font-size: 14px;
	margin-bottom: 10px;
}

.news_list_button{
	padding: 5px 30px;
	border-radius: 30px;
	background: #8FC31F;
	color: #fff;
	display: inline-block;
	transition: all 0.35s ease-in-out;
}

.news_list:hover .news_list_button{
	color: #fff;
	background: #D6001F;
}
/*============== 永續新聞 ==============*/

/*============== 分頁 ==============*/
.gs_pagination{
	width: 100%;
	padding: 30px 0 10px 0;
	clear: both;
	text-align: center;
	background: none;
	box-shadow: none;
	margin: 0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.gs_pagination a{
    width: 35px;
    height: 35px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
    text-align: center;
	background: none;
	color: #707070;
	font-size: 14px;
	border-radius: 50%;
	transition: all 0.2s ease-in-out;
	border: 1px solid #707070;
	margin: 0 0.3em;
}

.gs_pagination strong{
    width: 35px;
    height: 35px;
	background: #707070;
	color: #FFF;
	font-size: 16px;
	margin: 0 0.3em;
	transition: all 0.2s ease-in-out;
    position: relative;
	border-radius: 50%;
	border: 1px solid #707070;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.gs_pagination a:hover, .gs_pagination strong:hover{
	color: #fff;
	background: #707070;
}
/*============== 分頁 ==============*/

/*============== 永續新聞 內容頁 ==============*/
#news_content_wrap{
	margin-bottom: 60px;
}

#news_content_title_block{
	display: inline-block;
	padding: 10px 0;
	border-bottom: 1px solid #707070;
	width: 100%;
	margin-bottom: 20px;
}

#news_content_title{
	font-weight: 600;
	font-size: 28px;
	line-height: 1.2em;
/*	width: calc(100% - 100px);*/
	padding-right: 10px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

#news_content_date{
	width: 105px;
	text-align: end;
	font-size: 18px;
}
@media(max-width: 991px){
	#news_content_date{
		width: 100%;
	}
}

#news_content_img_block{
	text-align: center;
	margin-bottom: 20px;
}

#news_content_img{
	max-width: 100%;
}

#news_content_content{
	padding-bottom: 15px;
	margin-bottom: 25px;
	border-bottom: 1px solid #707070;
	min-height: 480px;
}

#news_content_back_button_block{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.prev_item_button{
	padding: 2px 0;
	display: inline-flex;
	align-items: center;
	color: #707070;
	transition: all 0.35s ease-in-out;
}

.prev_item_button i{
	margin-right: 10px;
}

.back_button{
	padding: 6px 30px;
	border-radius: 30px;
	border: 1px solid #707070;
	color: #707070;
	transition: all 0.35s ease-in-out;
	margin: 0 5px; 
}

.back_button:hover{
	background: #707070;
	color: #fff;
}

.next_item_button{
	padding: 2px 0;
	display: inline-flex;
	align-items: center;
	color: #707070;
	transition: all 0.35s ease-in-out;
}

.next_item_button i{
	margin-left: 10px;
}

.prev_item_button:hover, .next_item_button:hover{
	opacity: 0.7;
	color: #707070;
}
/*============== 永續新聞 內容頁 ==============*/

/*============== 單一內容頁 ==============*/
#fullpage_wrap{
	margin-bottom: 60px;
}

#fullpage_content{
	margin-bottom: 25px; 
	min-height: 480px;
}

.fullpage_back_button_block{
	display: flex;
	justify-content: center;
	align-items: center;
}
/*============== 單一內容頁 ==============*/

/*============== 互動專區 利害關係人問卷/活動報名 ==============*/
.interactive_list_wrap{
	margin-bottom: 60px;
}

.interactive_list{
	display: flex;
	width: 100%;
	padding: 20px 0;
	border-bottom: 1px solid #707070;
	color: #707070;
	flex-wrap: wrap;
}

.interactive_list:hover{
	color: #707070;
}

.interactive_list_img_block{
	position: relative;
	width: 330px;
	height: 260px; /* 330 * 260 */
}

@media(max-width: 991px){
	.interactive_list_img_block{
		width: 165px;
		height: 130px;
	}
}

@media(max-width: 575px){
	.interactive_list_img_block{
		width: 100%;
		height: calc((100vw - 30px) / 33 * 26);
		margin-bottom: 10px;
	}
}

.interactive_list_img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.35s ease-in-out;
}

.interactive_list:hover .interactive_list_img{
	opacity: 0.7;
}

.interactive_list_date{
	position: absolute;
	bottom: 0;
	left: 0;
	background: #fff;
/*	box-shadow: 0 0 3px #707070;*/
	padding: 0 20px;
}

.interactive_list_date_row{
	padding: 5px 0;
	font-size: 18px;
	text-align: center;
}

.interactive_list_date_row:first-child{
	border-bottom: 2px solid #707070;
}

.interactive_list_content_bloack{
	padding-left: 15px;
	width: calc(100% - 330px);
}

@media(max-width: 991px){
	.interactive_list_content_bloack{
		width: calc(100% - 165px);
	}
}

@media(max-width: 575px){
	.interactive_list_content_bloack{
		width: 100%;
		padding-left: 0;
	}
}

.interactive_list_title{
	margin-bottom: 10px;
	font-size: 28px;
	font-weight: 600;
	overflow:hidden;
	display: -webkit-box;
    white-space: normal;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	line-height: 1.2em;
}

.interactive_list_intro{
	font-size: 14px;
	margin-bottom: 10px;
}

.interactive_list_button{
	padding: 5px 30px;
	border-radius: 30px;
	background: #8FC31F;
	color: #fff;
	display: inline-block;
	transition: all 0.35s ease-in-out;
}

.interactive_list:hover .interactive_list_button{
	color: #fff;
	background: #D6001F;
}
/*============== 互動專區 利害關係人問卷/活動報名 ==============*/

/*============== 互動專區 利害關係人問卷/活動報名 內容頁 ==============*/
#interactive_content_wrap{
	margin-bottom: 60px;
}

#interactive_content_title_block{
	display: inline-block;
	padding: 10px 0;
	border-bottom: 1px solid #707070;
	width: 100%;
	margin-bottom: 20px;
}

#interactive_content_title{
	font-weight: 600;
	font-size: 28px;
	line-height: 1.2em;
/*	width: calc(100% - 100px);*/
	padding-right: 10px;
}

#interactive_content_date{
	width: 105px;
	font-size: 18px;
	display: inline-block;
	float: right;
}

#interactive_content_img_block{
	text-align: center;
	margin-bottom: 20px;
}

#interactive_content_img{
	max-width: 100%;
}

#interactive_content_content{
	padding-bottom: 15px;
	margin-bottom: 25px;
	border-bottom: 1px solid #707070;
	min-height: 480px;
}

#interactive_content_back_button_block{
	display: flex;
	justify-content: center;
	align-items: center;
}
/*============== 互動專區 利害關係人問卷/活動報名 內容頁 ==============*/

/*============== 互動專區 新鈺藝術獎作品集 ==============*/
.works_list_wrap{
	min-height: 240px;
	margin-bottom: 60px;
}

#works_navi_list_block{
	padding: 4px 10px;
	font-size: 18px;
	margin-bottom: 15px;
}

#works_navi_name{
	text-align: right;
	font-size: 18px;
	margin-bottom: 30px;
}

.works_list_block{
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px;
}

.works_list{
	width: 25%;
	padding: 0 10px;
	margin-bottom: 25px;
}

@media(max-width: 991px){
	.works_list{
		width: 50%;
	}
}

.works_list_href{
	width: 100%;
	display: inline-block;
	color: #707070;
}

.works_list_href:hover{
	color: #707070;
}

.works_list_img{
	width: 100%;
	height: 377.5px; /* 500 * 500 */
	object-fit: cover;
	margin-bottom: 10px;
	transition: all 0.35s ease-in-out;
}

@media(max-width: 1199px){
	.works_list_img{
		height: 262.5px; /* 500 * 500 */
	}
}

@media(max-width: 1199px){
	.works_list_img{
		height: 217.5px; /* 500 * 500 */
	}
}

@media(max-width: 991px){
	.works_list_img{
		height: 335px; /* 500 * 500 */
	}
}

@media(max-width: 767px){
	.works_list_img{
		height: 245px; /* 500 * 500 */
	}
}

@media(max-width: 575px){
	.works_list_img{
		height: calc((100vw - 30px) / 2 - 10px); /* 500 * 500 */
	}
}

.works_list_href:hover .works_list_img{
	opacity: 0.7;
}

.works_list_name{
	font-size: 20px;
	margin-bottom: 10px;
	text-align: center;
}

.works_list_title{
	font-size: 18px;
	text-align: center;
	overflow:hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
/*============== 互動專區 新鈺藝術獎作品集 ==============*/

/*============== 互動專區 新鈺藝術獎作品集 內容頁 ==============*/
#works_content_wrap{
	margin-bottom: 60px;
}

#works_content_title_block{
	display: inline-block;
	padding: 10px 0;
	border-bottom: 1px solid #707070;
	width: 100%;
	margin-bottom: 10px;
	font-weight: 600;
	font-size: 20px;
	line-height: 1.2em;
}

#works_content_name{
	margin-bottom: 10px;
}

#works_content_navi_name{
	margin-bottom: 25px;
	text-align: right;
	font-size: 18px;
}

#works_content_img_block{
	text-align: center;
	margin-bottom: 20px;
}

#works_content_img{
	max-width: 100%;
}

#works_content_content{
	padding-bottom: 15px;
	margin-bottom: 25px;
	border-bottom: 1px solid #707070;
	min-height: 480px;
}

#works_content_back_button_block{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
/*============== 互動專區 新鈺藝術獎作品集 內容頁 ==============*/

/*============== 互動專區 影音專區 ==============*/
.media_list_wrap{
	min-height: 240px;
	margin-bottom: 60px;
}

.media_list_block{
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px;
}

.media_list{
	width: 33.3333%;
	padding: 0 10px;
	margin-bottom: 25px;
}

@media(max-width: 991px){
	.media_list{
		width: 50%;
	}
}

.media_list iframe{
	width: 100%;
	height: 287px!important;/* 560 * 315 */
	object-fit: cover;
	margin-bottom: 10px;
}

@media(max-width: 1640px){
	.media_list_img{
		height: 201px!important; /* 560 * 315 */
	}
}

@media(max-width: 1199px){
	.media_list_img{
		height: 167px!important; /* 560 * 315 */
	}
}

@media(max-width: 991px){
	.media_list_img{
		height: 188px!important; /* 560 * 315 */
	}
}

@media(max-width: 767px){
	.media_list_img{
		height: 138px!important; /* 560 * 315 */
	}
}

@media(max-width: 575px){
	.media_list_img{
		height: calc(((100vw - 30px) / 2 - 10px) / 560 * 315)!important; /* 560 * 315 */
	}
}

.media_list_title{
	font-size: 18px;
	text-align: center;	
	overflow:hidden;
	display: -webkit-box;
    white-space: normal;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
/*============== 互動專區 影音專區 ==============*/

/*============== 報告書下載 ==============*/
.download_list_wrap{
	min-height: 240px;
	margin-bottom: 60px;
}

#download_navi_list_block{
	padding: 4px 10px;
	font-size: 18px;
	margin-bottom: 30px;
}

.download_list_block{
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px;
}

.download_list{
	width: 25%;
	padding: 0 10px;
	margin-bottom: 25px;
}

@media(max-width: 991px){
	.download_list{
		width: 50%;
	}
}

.download_list_href{
	width: 100%;
	display: inline-block;
	color: #707070;
	border: 1px solid #707070;
}

.download_list_href:hover{
	color: #707070;
}

.download_list_img_block{
	border-bottom: 2px solid #707070;
}

.download_list_img{
	width: 100%;
	height: 375.5px; /* 500 * 500 */
	object-fit: cover;
	transition: all 0.35s ease-in-out;
}

@media(max-width: 1640px){
	.download_list_img{
		height: 260.5px; /* 500 * 500 */
	}
}

@media(max-width: 1199px){
	.download_list_img{
		height: 215.5px; /* 500 * 500 */
	}
}

@media(max-width: 991px){
	.download_list_img{
		height: 333px; /* 500 * 500 */
	}
}

@media(max-width: 767px){
	.download_list_img{
		height: 243px; /* 500 * 500 */
	}
}

@media(max-width: 575px){
	.download_list_img{
		height: calc((100vw - 30px) / 2 - 12px); /* 500 * 500 */
	}
}

.download_list_href:hover .download_list_img{
	opacity: 0.7;
}

.download_list_title_block{
	display: flex;
	align-items: center;
	justify-content: space-around;
	padding: 10px 0;
}

.download_list_title{
	font-size: 18px;
	overflow:hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	width: calc(100% - 35px);
}

.download_list_title_block i{
	font-size: 20px;
	transition: all 0.35s ease-in-out;
}

.download_list_href:hover i{
	color: #D6001F;
}
/*============== 報告書下載 ==============*/