.main_content{
	padding-bottom: 60px;
}
/*banner*/
.banner_block{
	background-position: center;
	background-repeat: no-repeat;
	background-color: #000;
	height: 250px;
	overflow: hidden;
    position: relative;
}
/*20230823 Amy 新增banner link*/
.banner_block .banner_block_link {
    position: absolute;
    width: 100%;
    height: 100%;	
    top: 0;
    left: 0;
    z-index: 1;
}
.banner_block .container{
	position: relative;
	height: 100%;	
}
/*page title*/
.banner_title_block{
	position: absolute;
	left: 50px;
	bottom: 30px;	
}
.banner_title{
	font-size: 40px;
	line-height: 50px;
	color: #fff;
}
/*main title*/
.page_main_title{
	font-size: 30px;
	line-height: 1.5em;
	position: relative;
	/*padding-top: 30px;*/
	/*padding-top: 10px;*/
	/*padding-bottom: 12px;*/
	padding-bottom: 5px;
	/*margin-bottom: 19px;*/
	margin-bottom: 15px;
}
.page_main_title:after{
	content: '';
	width: 120px;
	/*height: 4px;*/
	height: 3px;
	display: block;
	position: absolute;
	background: #f67c0b;
	left: 0;
	bottom: 0;
}

@media screen and (max-width: 1259px){
	/*page title*/
	.banner_title_block{
		left: 30px;
	}	
}
@media screen and (max-width: 768px){
	/*banner*/
	.banner_block{
		height: 130px;
		padding-top: 56px;
		/*border-top: 55px solid #fff;*/
		/*box-sizing: content-box;*/
	}
	/*page title*/
	.banner_title_block{
		height: 100%;
		left: 10px;
		bottom: 0;
		display: -webkit-flex;
	  	display: flex;
	  	-webkit-align-items: center;
	    align-items: center;
	  	-webkit-justify-content: flex-start;
	    justify-content: flex-start;
		overflow: hidden;
	}
	.banner_title{
		font-size: 30px;
		line-height: 1.5em;
	}
}

/*麵包屑*/
.bread_list,
.bread_list li a{
	display: block;
}
.bread_list{
	position: absolute;
	right: 50px;
	bottom: 17px;	
    z-index: 5;
}
.bread_list li{
	display: inline-block;
}
.bread_list a{
	color: #fff;
	text-decoration: none;
}
.bread_list a:hover,
.bread_list a:active{
	text-decoration: underline;
}
.bread_list a:before{
	content: '/';
	display: inline-block;
	color: #fff;
	margin-left: 5px;
	margin-right: 5px;
}

.bread_list li:first-child a:before{
	display: none;
}

@media screen and (max-width: 1259px){
	/*麵包屑*/
	.bread_list{
		right: 30px;	
	}
	/*平板 block table*/
	.t_block_table,
	.t_block_table>tbody,
	.t_block_table>tbody>tr,
	.t_block_table>tbody>tr>th,
	.t_block_table>tbody>tr>td{
		display: block;
	}
}

@media screen and (max-width: 768px){
	/*手機板 block table*/
	.m_block_table,
	.m_block_table>tbody,
	.m_block_table>tbody>tr,
	.m_block_table>tbody>tr>th,
	.m_block_table>tbody>tr>td{
		display: block;
	}
}

/*btn commom class*/
a.common_btn,
.common_btn{
    color: #fff;
    overflow: hidden;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
    position: relative;
    display: block;
    border-radius: 3px;
    z-index: 1;
    text-decoration: none;
    text-align: center;
}
.common_btn:before, 
.common_btn:after {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    bottom: 100%;
    left: 0;
    z-index: -1;
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
    transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.common_btn:hover:before, 
.common_btn:hover:after,
.common_btn.active:before, 
.common_btn.active:after{
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}
.common_btn:hover:after {
    -webkit-transition-delay: 0.175s;
    transition-delay: 0.175s;
} 
/*根據不同底色做修改*/
.common_btn{
	/*hover before*/
	background: #68aedf;
}
.common_btn:before {
	/*hover layer1*/
    background: #336f98;
}
.common_btn:after {
	/*hover layer2*/
	background: #4293cc;
}
/*根據不同底色做修改 - 橘色*/
a.common_btn.orange_type,
.common_btn.orange_type{
	color: #d06e13;
	border: 1px solid #d06e13;
	/*hover before*/
	background: transparent;
}
.common_btn.orange_type.active,
a.common_btn.orange_type:hover,
.common_btn.orange_type:hover{
	color: #fff;
}
.common_btn.orange_type:before {
	/*hover layer1*/
    background: #F3B780;
}
.common_btn.orange_type:after {
	/*hover layer2*/
	background: #d06e13;
}

/*common input*/
.common_input{
	font-size: 16px;
    line-height: 36px;
	border-radius: 3px;
    border: none;
    padding: 6px;
    outline: none;
}

/*common select(white icon)*/
select.common_sel{
	width: 100%;
    font-size: 16px;
    /*line-height: 36px;*/
    line-height: 32px;
    height: 32px;
	background: url(../images/common/yageo_common_select_icon.png) right center no-repeat;
	border-radius: 3px;
    border: none;
    appearance: none;
    -moz-appearance:none; /* Firefox */
    -webkit-appearance:none; /* Safari and Chrome */
    /*padding: 6px 30px 6px 15px;*/
    padding: 0 30px 0 15px;
}
select.common_sel::-ms-expand {
    display: none;
}
select.common_sel{
    outline: none;
}
/*common select(blue bg)*/
select.common_sel.blue_bg{
	color: #fff;
	background-color: #68aedf;
}
/*common select(orange bg)*/
select.common_sel.orange_bg{
	color: #fff;
	background-color: #e98121;
}
/*common select(gray icon)*/
select.common_sel.gray_type{
	background-image: url(../images/common/yageo_common_select_icon_gray.png);
}
/*common select(black icon)*/
select.common_sel.black_type{
	background-image: url(../images/common/yageo_common_select_icon_b.png);
}

.common_more_btn{
	font-size: 16px;
	line-height: 24px;
	color: #939b4f;
	border: 1px solid #939b4f;
	border-radius: 3px;
	background: #fff;
	padding: 8px 5px;
	width: 170px;
	display: block;
	margin: 0 auto;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
}
.common_more_btn span:after{
	font-family: 'FontAwesome';
    content: "\f068";
    margin-left: 3px;
}
.common_more_btn.close span:after{
	content: "\f067";
}
.common_more_btn:hover{
	color: #fff;
}
.common_more_btn.common_btn{
	/*hover before*/
	background: #fff;
}
.common_more_btn.common_btn:before {
	/*hover layer1*/
    background: #B5BA85;
}
.common_more_btn.common_btn:after {
	/*hover layer2*/
	background: #939b4f;
}

@media screen and (max-width: 768px){
	select.common_sel{
		line-height: 40px;
		height: 40px;
	}
}



/*---編輯器開合區塊---*/
.app_html_block{
	background: #eceff1;
	padding-top: 30px;
	/*padding-bottom: 40px;*/
	padding-bottom: 25px;
}
#app_html_down{
	display: none;
}

.common_more_btn.app_html_more{
	color: #e98121;
	border: 1px solid #e98121;
	/*margin-top: 80px;*/
	margin-top: 10px;
	margin-right: 0;
}
.common_more_btn.app_html_more:hover{
	color: #fff;
}
.common_more_btn.app_html_more.common_btn{
	/*hover before*/
	background: transparent;
}
.common_more_btn.app_html_more.common_btn:before {
	/*hover layer1*/
    background: #F3B780;
}
.common_more_btn.app_html_more.common_btn:after {
	/*hover layer2*/
	background: #e98121;
}


/*---common table---*/
/*---破壞式table---*/
.prod_table,
.common_table,
.destory_table{
	width: 100%;
	border-collapse: collapse;
}
.prod_table tr th,
.prod_table tr td,
.common_table tr th,
.common_table tr td,
.destory_table tr th,
.destory_table tr td{
	text-align: center;
	font-size: 14px;
	line-height: 21px;
}
.prod_table tr th,
.common_table tr th,
.destory_table tr th{
	position: relative;
	color: #fff;
	background-color: #d06e13;
	padding: 8px 5px 8px 5px;	
}
.prod_table tr td,
.common_table tr td,
.destory_table tr td{
	padding: 6px 5px;
}
.common_table tr th{
	padding: 8px 15px;
}
.common_table tr td{
	/*height: 50px;*/
	padding: 6px 15px;
}
.prod_table tr th,
.destory_table tr th{
	/*height: 65px;*/
}
.prod_table tr td,
.destory_table tr td{
	/*padding: 8px 5px 8px 5px;*/
}

.common_table tr td,
.destory_table tr td{
	border-bottom: 1px solid #e5e5e5;
	-webkit-transition: .2s linear;
    -moz-transition: .2s linear;
    -o-transition: .2s linear;
    transition: .2s linear;
}
.prod_table tbody tr:nth-child(odd) td,
.common_table tbody tr:nth-child(odd) td,
.destory_table tbody tr:nth-child(odd) td{
	background: #eceff1;
}
.common_table tbody tr:nth-child(odd):hover td,
.common_table tr:hover td,
.destory_table tbody tr:nth-child(odd):hover td,
.destory_table tr:hover td{
	background: #cad0d4;
}
/*link*/
.prod_table tr td a,
.common_table tr td a,
.destory_table tr td a{
	font-size: 18px;
	color: #8f9195;
	text-decoration: none;
	margin-left: 5px;
}
.prod_table tr td a{
	display: inline-block;
}
.prod_table tr td img{
	width: 80px;
	height: auto;
	display: block;
	margin: 0 auto;
}
.prod_table tr td a:first-child
.common_table tr td a:first-child,
.destory_table tr td a:first-child{
	margin-left: 0;
}
.prod_table tr td a:hover,
.common_table tr td a:hover,
.destory_table tr td a:hover{
	color: #d06e13;
	text-decoration: none;
}

@media (max-width:768px){
	/*---common table---*/
	.common_table,
	.common_table tbody,
	.common_table tr,
	.common_table tr td,
	.common_table tr th{
		display: block;
		width: 100%;
	}
	.common_table tr{
		border-bottom: 1px solid #e5e5e5;
	}
	.common_table tr td{
		/*padding: 13px 10px;*/
		border-bottom: 0;
	}

	/*---破壞式table---*/
	.common_table thead,
	.destory_table thead{
		display: none;
	}
	.destory_table tr td{
		display: block;
		width: 100%;
		min-height: 40px;
		height: auto !important;
		position: relative;
		padding: 8px 8px 8px 50% !important;
		box-sizing: border-box;
	}
	.destory_table tbody tr td:before{
		content: attr(data-title);
		box-sizing: border-box;
		position: absolute;
		left: 0;
		top: 0;
		display: block;
		color: #fff;
		background-color: #d06e13;
		text-align: center;
		padding: 8px 0;
		width: 50%;
		height: 100%;
	}
	.destory_table tr{
		display: block;
	    margin-bottom: 20px;
	}
	.destory_table tr:last-child{
		margin-bottom: 0;
	}
	.destory_table tbody tr:nth-child(odd):hover td,
	.destory_table tr:hover td,
	.destory_table tbody tr:nth-child(odd) td{
		background: inherit;
	}
	.destory_table tbody tr td:nth-child(odd),
	.destory_table tbody tr:hover td:nth-child(odd){
		background: #eceff1;
	}	
}

/*--- blue link list ---*/
.blue_link_list{
	display: block;
	/*margin-bottom: -10px;*/
	margin-bottom: 5px;
}
.blue_link_list li{
	display: inline-block;
	overflow: hidden;
	margin-right: 15px;
	margin-bottom: 10px;
}
.blue_link_list li a{
	display: block;
	width: 210px;
	color: #707070;
	height: 54px;
	padding: 3px 12px;
	color: #707070;
	background: #dcdcdc;
	border-radius: 3px;
	text-decoration: none;
	-webkit-transition: .3s linear;
	-moz-transition: .3s linear;
	-o-transition: .3s linear;
	transition: .3s linear;
}
.blue_link_list li a span{
	height: 48px;
	line-height: 24px;
	overflow: hidden;
}
.blue_link_list li a:hover,
.blue_link_list li a.active{
	color: #fff;
}
.blue_link_list .common_btn.active:before, 
.blue_link_list .common_btn.active:after {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}
.blue_link_list .common_btn.active:after {
    -webkit-transition-delay: 0.175s;
    transition-delay: 0.175s;
} 
/*根據不同底色做修改*/
.blue_link_list .common_btn{
	/*hover before*/
	background: #dcdcdc;
}
.blue_link_list .common_btn:before {
	/*hover layer1*/
    background: #ACC9DD;
}
.blue_link_list .common_btn:after {
	/*hover layer2*/
	background: #68aedf;
}
/*mobile select*/
.m_select.common_sel{
	background-color: #68aedf;
	color: #fff;
}
@media (max-width:768px){
	.select_block{
		margin-bottom: 20px;
	}
}

/*page block*/
/*頁碼區域*/
.page_block{
	/*width:240px;*/
	width:255px;
	text-align: center;
	margin:60px auto 0;
	margin-top: 20px;
}
.page_block:after{
	content: '';
	display: block;
	clear: both;
}
.page_block .prev_page,
.page_block .next_page,
.page_block input,
.page_block div{
	width: 44px;
	height: 44px;
	float: left;
	line-height: 40px;
}
.page_block .next_page,
.page_block input,
.page_block div{
	margin-left: 5px;
}
.page_block .prev_page,
.page_block .next_page{
	border:none;
}
.page_block .prev_page,
.page_block .next_page{
	padding-top: 1px;
}
.page_block div,
.page_block input{
	font-size: 16px;
	background: #fff;
	border:none;
}
.page_block div{
	width: 35px;
	color:#263238;
}
.page_block .total_page{
	width: 55px;
}
.page_block a{
	margin-bottom: -18px;
	transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    background: #fff;
    text-decoration: none;
}
.page_block a:hover{
	background-color: #52a2db;
	border:none;
}
.page_block input{
	width: 50px;
	text-align: center;
	color:#52a2db;
	padding:0 5px 5px 5px;
	border-radius: 0;
	-webkit-appearance: none;
	border: 1px solid #DBE0E3;
}
.page_block input:focus{
	outline:none
}
.page_block .prev_page:before,
.page_block .next_page:before{
	width: 9px; 
	height: 14px; 
	font-size: 18px;
	content: "\f104";
	display: inline-block;
	color: #263238;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
}
.page_block .prev_page:hover:before,
.page_block .next_page:hover:before{
	color: #fff;
	text-decoration: none;
}
.page_block .next_page:before{
	content: "\f105";
}
@media screen and (max-width: 768px){
	.page_block{
		margin-top: 0;
	}
}

/*上/下方區塊樣式*/
/*灰色區塊*/
.fin_html_block{
	padding: 60px 0 80px 0;
	padding-top: 30px;
	padding-bottom: 25px;
	background: #eceff1;
}
/*白色區塊*/
.fin_bottom_block{
	/*padding-top: 80px;*/
	padding-top: 30px;
	/*padding-bottom: 100px;*/
}
/*一般上下container間距*/
.normal_container_setting{
	/*padding-top: 60px;
	padding-bottom: 100px;*/
	padding-top: 30px;
}


/*下方 link list 樣式*/
.bottom_link_list{
	display: block;
	margin-bottom: 15px;
}
.bottom_link_list li{
	min-width: 200px;
	display: inline-block;
	margin-right: 10px;
}
.bottom_link_list li a{
	display: block;
	height: 40px;
	overflow: hidden;
	border-radius: 3px;
	line-height: 40px;
	/*padding: 0 4px;*/
    padding: 0 10px;
}

/*三角列表項目*/
.tri_item_ul_list li{
	padding-left: 15px;
	position: relative;
	/*margin-bottom: 5px;*/
}
.tri_item_ul_list li:before{
	font-family: 'FontAwesome';
    content: "\f0da";
    color: #e9d764;
	position: absolute;
    left: 0;
    top: 0;
}

/*(m) page top select*/
@media (max-width:768px){
	.prod_search_type_select_block{
		margin-bottom: 20px;
		margin-top: -30px;
		margin-right: -10px;
		margin-left: -10px;
	}
	.prod_search_type_select_block .common_sel{
		border-radius: 0;
	}
}

#bottom_link_title{
	margin-top: -63px;
	padding-top: 63px;
}

/* ----- Ryan ----- */
.fin_html_block.remove_background {
    background:#FFF;
}

/*Elison*/
.download_select_block {
    margin-bottom: 20px;
}
@media (max-width: 768px) {
    .tab_select_wrap {
        padding-top:0px;
        margin-top:30px;
    }
    .download_select_block .common_sel {
        border-radius:0;
    }
}



/*20220207 Elison新增頁碼PC樣式*/
.page_block.pc_page_block {
    width:700px;
    display: flex;
    justify-content: center;
    padding-top:0;
}
.pc_page_block .page_number_block {
    width:auto;
    display:flex;
    align-items: flex-start;
    margin-right:20px;
}
.pc_page_block .page_number_block *{
    float:none;
    /*height:40px;*/
    /*margin-bottom:auto;*/
    padding-top:0;
}
.pc_page_block .page_number {
        color: #263238;
        background-color:transparent!important;
        margin:0 4px;

}
.pc_page_block .page_number:hover,.pc_page_block .page_number.active {
    color:#FF6F00;
}
.pc_page_block .has_more_page {
        color: #263238;
}
.pc_page_block  .prev_page, .pc_page_block .next_page,
.pc_page_block .first_page, .pc_page_block .last_page {
    width: 20px;
    height: 44px;
    line-height: 40px;
}
.pc_page_block .first_page, .pc_page_block .last_page {
    /*height: 44px;*/
}
.pc_page_block .first_page:before, .pc_page_block .last_page:before {
    width: 9px;
    height: 14px;
    font-size: 18px;
    content: "\f101";
    display: inline-block;
    color: #263238;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
}
.pc_page_block .first_page:before {
    content: "\f100";
}
.page_block .first_page:hover:before, .page_block .last_page:hover:before {
    color: #fff;
    text-decoration: none;
}
@media screen and (max-width: 1259px){
	.pc_page_block{
		display:none!important;
	}	
}